From e2855ce08c8d213f8066968964ecb92fa55b2351 Mon Sep 17 00:00:00 2001 From: Briana Eng Date: Wed, 28 Sep 2016 14:14:42 -0700 Subject: [PATCH 01/31] Initial tasks app created --- .ruby-gemset | 1 - .ruby-version | 1 - Gemfile | 47 +++++ Gemfile.lock | 163 ++++++++++++++++++ Rakefile | 6 + app/assets/images/.keep | 0 app/assets/javascripts/application.js | 16 ++ app/assets/stylesheets/application.css | 15 ++ app/controllers/application_controller.rb | 5 + app/controllers/concerns/.keep | 0 app/helpers/application_helper.rb | 2 + app/mailers/.keep | 0 app/models/.keep | 0 app/models/concerns/.keep | 0 app/views/layouts/application.html.erb | 14 ++ bin/bundle | 3 + bin/rails | 9 + bin/rake | 9 + bin/setup | 29 ++++ bin/spring | 15 ++ config.ru | 4 + config/application.rb | 26 +++ config/boot.rb | 3 + config/database.yml | 25 +++ config/environment.rb | 5 + config/environments/development.rb | 41 +++++ config/environments/production.rb | 79 +++++++++ config/environments/test.rb | 42 +++++ config/initializers/assets.rb | 11 ++ config/initializers/backtrace_silencers.rb | 7 + config/initializers/cookies_serializer.rb | 3 + .../initializers/filter_parameter_logging.rb | 4 + config/initializers/inflections.rb | 16 ++ config/initializers/mime_types.rb | 4 + config/initializers/session_store.rb | 3 + config/initializers/wrap_parameters.rb | 14 ++ config/locales/en.yml | 23 +++ config/routes.rb | 56 ++++++ config/secrets.yml | 22 +++ db/seeds.rb | 7 + lib/assets/.keep | 0 lib/tasks/.keep | 0 log/.keep | 0 public/404.html | 67 +++++++ public/422.html | 67 +++++++ public/500.html | 66 +++++++ public/favicon.ico | 0 public/robots.txt | 5 + test/controllers/.keep | 0 test/fixtures/.keep | 0 test/helpers/.keep | 0 test/integration/.keep | 0 test/mailers/.keep | 0 test/models/.keep | 0 test/test_helper.rb | 10 ++ vendor/assets/javascripts/.keep | 0 vendor/assets/stylesheets/.keep | 0 57 files changed, 943 insertions(+), 2 deletions(-) delete mode 100644 .ruby-gemset delete mode 100644 .ruby-version create mode 100644 Gemfile create mode 100644 Gemfile.lock create mode 100644 Rakefile create mode 100644 app/assets/images/.keep create mode 100644 app/assets/javascripts/application.js create mode 100644 app/assets/stylesheets/application.css create mode 100644 app/controllers/application_controller.rb create mode 100644 app/controllers/concerns/.keep create mode 100644 app/helpers/application_helper.rb create mode 100644 app/mailers/.keep create mode 100644 app/models/.keep create mode 100644 app/models/concerns/.keep create mode 100644 app/views/layouts/application.html.erb create mode 100755 bin/bundle create mode 100755 bin/rails create mode 100755 bin/rake create mode 100755 bin/setup create mode 100755 bin/spring create mode 100644 config.ru create mode 100644 config/application.rb create mode 100644 config/boot.rb create mode 100644 config/database.yml create mode 100644 config/environment.rb create mode 100644 config/environments/development.rb create mode 100644 config/environments/production.rb create mode 100644 config/environments/test.rb create mode 100644 config/initializers/assets.rb create mode 100644 config/initializers/backtrace_silencers.rb create mode 100644 config/initializers/cookies_serializer.rb create mode 100644 config/initializers/filter_parameter_logging.rb create mode 100644 config/initializers/inflections.rb create mode 100644 config/initializers/mime_types.rb create mode 100644 config/initializers/session_store.rb create mode 100644 config/initializers/wrap_parameters.rb create mode 100644 config/locales/en.yml create mode 100644 config/routes.rb create mode 100644 config/secrets.yml create mode 100644 db/seeds.rb create mode 100644 lib/assets/.keep create mode 100644 lib/tasks/.keep create mode 100644 log/.keep create mode 100644 public/404.html create mode 100644 public/422.html create mode 100644 public/500.html create mode 100644 public/favicon.ico create mode 100644 public/robots.txt create mode 100644 test/controllers/.keep create mode 100644 test/fixtures/.keep create mode 100644 test/helpers/.keep create mode 100644 test/integration/.keep create mode 100644 test/mailers/.keep create mode 100644 test/models/.keep create mode 100644 test/test_helper.rb create mode 100644 vendor/assets/javascripts/.keep create mode 100644 vendor/assets/stylesheets/.keep diff --git a/.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..e87fad5fc --- /dev/null +++ b/Gemfile @@ -0,0 +1,47 @@ +source 'https://rubygems.org' + + +# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' +gem 'rails', '4.2.7' +# Use sqlite3 as the database for Active Record +gem 'sqlite3' +# Use SCSS for stylesheets +gem 'sass-rails', '~> 5.0' +# Use Uglifier as compressor for JavaScript assets +gem 'uglifier', '>= 1.3.0' +# Use CoffeeScript for .coffee assets and views +gem 'coffee-rails', '~> 4.1.0' +# See https://github.com/rails/execjs#readme for more supported runtimes +# gem 'therubyracer', platforms: :ruby + +# Use jquery as the JavaScript library +gem 'jquery-rails' +# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks +gem 'turbolinks' +# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder +gem 'jbuilder', '~> 2.0' +# bundle exec rake doc:rails generates the API under doc/api. +gem 'sdoc', '~> 0.4.0', group: :doc + +# Use ActiveModel has_secure_password +# gem 'bcrypt', '~> 3.1.7' + +# Use Unicorn as the app server +# gem 'unicorn' + +# Use Capistrano for deployment +# gem 'capistrano-rails', group: :development + +group :development, :test do + # Call 'byebug' anywhere in the code to stop execution and get a debugger console + gem 'byebug' +end + +group :development do + # Access an IRB console on exception pages or by using <%= console %> in views + gem 'web-console', '~> 2.0' + + # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring + gem 'spring' +end + diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 000000000..187046034 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,163 @@ +GEM + remote: https://rubygems.org/ + specs: + actionmailer (4.2.7) + actionpack (= 4.2.7) + actionview (= 4.2.7) + activejob (= 4.2.7) + mail (~> 2.5, >= 2.5.4) + rails-dom-testing (~> 1.0, >= 1.0.5) + actionpack (4.2.7) + actionview (= 4.2.7) + activesupport (= 4.2.7) + rack (~> 1.6) + rack-test (~> 0.6.2) + rails-dom-testing (~> 1.0, >= 1.0.5) + rails-html-sanitizer (~> 1.0, >= 1.0.2) + actionview (4.2.7) + activesupport (= 4.2.7) + builder (~> 3.1) + erubis (~> 2.7.0) + rails-dom-testing (~> 1.0, >= 1.0.5) + rails-html-sanitizer (~> 1.0, >= 1.0.2) + activejob (4.2.7) + activesupport (= 4.2.7) + globalid (>= 0.3.0) + activemodel (4.2.7) + activesupport (= 4.2.7) + builder (~> 3.1) + activerecord (4.2.7) + activemodel (= 4.2.7) + activesupport (= 4.2.7) + arel (~> 6.0) + activesupport (4.2.7) + i18n (~> 0.7) + json (~> 1.7, >= 1.7.7) + minitest (~> 5.1) + thread_safe (~> 0.3, >= 0.3.4) + tzinfo (~> 1.1) + arel (6.0.3) + binding_of_caller (0.7.2) + debug_inspector (>= 0.0.1) + builder (3.2.2) + byebug (9.0.5) + coffee-rails (4.1.1) + coffee-script (>= 2.2.0) + railties (>= 4.0.0, < 5.1.x) + coffee-script (2.4.1) + coffee-script-source + execjs + coffee-script-source (1.10.0) + concurrent-ruby (1.0.2) + debug_inspector (0.0.2) + erubis (2.7.0) + execjs (2.7.0) + globalid (0.3.7) + activesupport (>= 4.1.0) + i18n (0.7.0) + jbuilder (2.6.0) + activesupport (>= 3.0.0, < 5.1) + multi_json (~> 1.2) + jquery-rails (4.2.1) + rails-dom-testing (>= 1, < 3) + railties (>= 4.2.0) + thor (>= 0.14, < 2.0) + json (1.8.3) + loofah (2.0.3) + nokogiri (>= 1.5.9) + mail (2.6.4) + mime-types (>= 1.16, < 4) + mime-types (3.1) + mime-types-data (~> 3.2015) + mime-types-data (3.2016.0521) + mini_portile2 (2.1.0) + minitest (5.9.1) + multi_json (1.12.1) + nokogiri (1.6.8) + mini_portile2 (~> 2.1.0) + pkg-config (~> 1.1.7) + pkg-config (1.1.7) + rack (1.6.4) + rack-test (0.6.3) + rack (>= 1.0) + rails (4.2.7) + actionmailer (= 4.2.7) + actionpack (= 4.2.7) + actionview (= 4.2.7) + activejob (= 4.2.7) + activemodel (= 4.2.7) + activerecord (= 4.2.7) + activesupport (= 4.2.7) + bundler (>= 1.3.0, < 2.0) + railties (= 4.2.7) + sprockets-rails + rails-deprecated_sanitizer (1.0.3) + activesupport (>= 4.2.0.alpha) + rails-dom-testing (1.0.7) + activesupport (>= 4.2.0.beta, < 5.0) + nokogiri (~> 1.6.0) + rails-deprecated_sanitizer (>= 1.0.1) + rails-html-sanitizer (1.0.3) + loofah (~> 2.0) + railties (4.2.7) + actionpack (= 4.2.7) + activesupport (= 4.2.7) + rake (>= 0.8.7) + thor (>= 0.18.1, < 2.0) + rake (11.3.0) + rdoc (4.2.2) + json (~> 1.4) + sass (3.4.22) + sass-rails (5.0.6) + railties (>= 4.0.0, < 6) + sass (~> 3.1) + sprockets (>= 2.8, < 4.0) + sprockets-rails (>= 2.0, < 4.0) + tilt (>= 1.1, < 3) + sdoc (0.4.1) + json (~> 1.7, >= 1.7.7) + rdoc (~> 4.0) + spring (1.7.2) + sprockets (3.7.0) + concurrent-ruby (~> 1.0) + rack (> 1, < 3) + sprockets-rails (3.2.0) + actionpack (>= 4.0) + activesupport (>= 4.0) + sprockets (>= 3.0.0) + sqlite3 (1.3.11) + thor (0.19.1) + thread_safe (0.3.5) + tilt (2.0.5) + turbolinks (5.0.1) + turbolinks-source (~> 5) + turbolinks-source (5.0.0) + tzinfo (1.2.2) + thread_safe (~> 0.1) + uglifier (3.0.2) + execjs (>= 0.3.0, < 3) + web-console (2.3.0) + activemodel (>= 4.0) + binding_of_caller (>= 0.7.2) + railties (>= 4.0) + sprockets-rails (>= 2.0, < 4.0) + +PLATFORMS + ruby + +DEPENDENCIES + byebug + coffee-rails (~> 4.1.0) + jbuilder (~> 2.0) + jquery-rails + rails (= 4.2.7) + sass-rails (~> 5.0) + sdoc (~> 0.4.0) + spring + sqlite3 + turbolinks + uglifier (>= 1.3.0) + web-console (~> 2.0) + +BUNDLED WITH + 1.13.1 diff --git a/Rakefile b/Rakefile new file mode 100644 index 000000000..ba6b733dd --- /dev/null +++ b/Rakefile @@ -0,0 +1,6 @@ +# Add your own tasks in files placed in lib/tasks ending in .rake, +# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. + +require File.expand_path('../config/application', __FILE__) + +Rails.application.load_tasks diff --git a/app/assets/images/.keep b/app/assets/images/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app/assets/javascripts/application.js b/app/assets/javascripts/application.js new file mode 100644 index 000000000..e07c5a830 --- /dev/null +++ b/app/assets/javascripts/application.js @@ -0,0 +1,16 @@ +// This is a manifest file that'll be compiled into application.js, which will include all the files +// listed below. +// +// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts, +// or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path. +// +// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the +// compiled file. +// +// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details +// about supported directives. +// +//= require jquery +//= require jquery_ujs +//= require turbolinks +//= require_tree . diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css new file mode 100644 index 000000000..f9cd5b348 --- /dev/null +++ b/app/assets/stylesheets/application.css @@ -0,0 +1,15 @@ +/* + * This is a manifest file that'll be compiled into application.css, which will include all the files + * listed below. + * + * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets, + * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path. + * + * You're free to add application-wide styles to this file and they'll appear at the bottom of the + * compiled file so the styles you add here take precedence over styles defined in any styles + * defined in the other CSS/SCSS files in this directory. It is generally better to create a new + * file per style scope. + * + *= require_tree . + *= require_self + */ diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb new file mode 100644 index 000000000..d83690e1b --- /dev/null +++ b/app/controllers/application_controller.rb @@ -0,0 +1,5 @@ +class ApplicationController < ActionController::Base + # Prevent CSRF attacks by raising an exception. + # For APIs, you may want to use :null_session instead. + protect_from_forgery with: :exception +end diff --git a/app/controllers/concerns/.keep b/app/controllers/concerns/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb new file mode 100644 index 000000000..de6be7945 --- /dev/null +++ b/app/helpers/application_helper.rb @@ -0,0 +1,2 @@ +module ApplicationHelper +end diff --git a/app/mailers/.keep b/app/mailers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app/models/.keep b/app/models/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app/models/concerns/.keep b/app/models/concerns/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb new file mode 100644 index 000000000..46eeb110b --- /dev/null +++ b/app/views/layouts/application.html.erb @@ -0,0 +1,14 @@ + + + + TaskListRails + <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %> + <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %> + <%= csrf_meta_tags %> + + + +<%= yield %> + + + diff --git a/bin/bundle b/bin/bundle new file mode 100755 index 000000000..66e9889e8 --- /dev/null +++ b/bin/bundle @@ -0,0 +1,3 @@ +#!/usr/bin/env ruby +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) +load Gem.bin_path('bundler', 'bundle') diff --git a/bin/rails b/bin/rails new file mode 100755 index 000000000..0138d79b7 --- /dev/null +++ b/bin/rails @@ -0,0 +1,9 @@ +#!/usr/bin/env ruby +begin + load File.expand_path('../spring', __FILE__) +rescue LoadError => e + raise unless e.message.include?('spring') +end +APP_PATH = File.expand_path('../../config/application', __FILE__) +require_relative '../config/boot' +require 'rails/commands' diff --git a/bin/rake b/bin/rake new file mode 100755 index 000000000..d87d5f578 --- /dev/null +++ b/bin/rake @@ -0,0 +1,9 @@ +#!/usr/bin/env ruby +begin + load File.expand_path('../spring', __FILE__) +rescue LoadError => e + raise unless e.message.include?('spring') +end +require_relative '../config/boot' +require 'rake' +Rake.application.run diff --git a/bin/setup b/bin/setup new file mode 100755 index 000000000..acdb2c138 --- /dev/null +++ b/bin/setup @@ -0,0 +1,29 @@ +#!/usr/bin/env ruby +require 'pathname' + +# path to your application root. +APP_ROOT = Pathname.new File.expand_path('../../', __FILE__) + +Dir.chdir APP_ROOT do + # This script is a starting point to setup your application. + # Add necessary setup steps to this file: + + puts "== Installing dependencies ==" + system "gem install bundler --conservative" + system "bundle check || bundle install" + + # puts "\n== Copying sample files ==" + # unless File.exist?("config/database.yml") + # system "cp config/database.yml.sample config/database.yml" + # end + + puts "\n== Preparing database ==" + system "bin/rake db:setup" + + puts "\n== Removing old logs and tempfiles ==" + system "rm -f log/*" + system "rm -rf tmp/cache" + + puts "\n== Restarting application server ==" + system "touch tmp/restart.txt" +end diff --git a/bin/spring b/bin/spring new file mode 100755 index 000000000..7fe232c3a --- /dev/null +++ b/bin/spring @@ -0,0 +1,15 @@ +#!/usr/bin/env ruby + +# This file loads spring without using Bundler, in order to be fast. +# It gets overwritten when you run the `spring binstub` command. + +unless defined?(Spring) + require 'rubygems' + require 'bundler' + + if (match = Bundler.default_lockfile.read.match(/^GEM$.*?^ (?: )*spring \((.*?)\)$.*?^$/m)) + Gem.paths = { 'GEM_PATH' => [Bundler.bundle_path.to_s, *Gem.path].uniq.join(Gem.path_separator) } + gem 'spring', match[1] + require 'spring/binstub' + end +end diff --git a/config.ru b/config.ru new file mode 100644 index 000000000..bd83b2541 --- /dev/null +++ b/config.ru @@ -0,0 +1,4 @@ +# This file is used by Rack-based servers to start the application. + +require ::File.expand_path('../config/environment', __FILE__) +run Rails.application diff --git a/config/application.rb b/config/application.rb new file mode 100644 index 000000000..902432bad --- /dev/null +++ b/config/application.rb @@ -0,0 +1,26 @@ +require File.expand_path('../boot', __FILE__) + +require 'rails/all' + +# Require the gems listed in Gemfile, including any gems +# you've limited to :test, :development, or :production. +Bundler.require(*Rails.groups) + +module TaskListRails + class Application < Rails::Application + # Settings in config/environments/* take precedence over those specified here. + # Application configuration should go into files in config/initializers + # -- all .rb files in that directory are automatically loaded. + + # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone. + # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC. + # config.time_zone = 'Central Time (US & Canada)' + + # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded. + # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s] + # config.i18n.default_locale = :de + + # Do not swallow errors in after_commit/after_rollback callbacks. + config.active_record.raise_in_transactional_callbacks = true + end +end diff --git a/config/boot.rb b/config/boot.rb new file mode 100644 index 000000000..6b750f00b --- /dev/null +++ b/config/boot.rb @@ -0,0 +1,3 @@ +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) + +require 'bundler/setup' # Set up gems listed in the Gemfile. diff --git a/config/database.yml b/config/database.yml new file mode 100644 index 000000000..1c1a37ca8 --- /dev/null +++ b/config/database.yml @@ -0,0 +1,25 @@ +# SQLite version 3.x +# gem install sqlite3 +# +# Ensure the SQLite 3 gem is defined in your Gemfile +# gem 'sqlite3' +# +default: &default + adapter: sqlite3 + pool: 5 + timeout: 5000 + +development: + <<: *default + database: db/development.sqlite3 + +# Warning: The database defined as "test" will be erased and +# re-generated from your development database when you run "rake". +# Do not set this db to the same as development or production. +test: + <<: *default + database: db/test.sqlite3 + +production: + <<: *default + database: db/production.sqlite3 diff --git a/config/environment.rb b/config/environment.rb new file mode 100644 index 000000000..ee8d90dc6 --- /dev/null +++ b/config/environment.rb @@ -0,0 +1,5 @@ +# Load the Rails application. +require File.expand_path('../application', __FILE__) + +# Initialize the Rails application. +Rails.application.initialize! diff --git a/config/environments/development.rb b/config/environments/development.rb new file mode 100644 index 000000000..b55e2144b --- /dev/null +++ b/config/environments/development.rb @@ -0,0 +1,41 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # In the development environment your application's code is reloaded on + # every request. This slows down response time but is perfect for development + # since you don't have to restart the web server when you make code changes. + config.cache_classes = false + + # Do not eager load code on boot. + config.eager_load = false + + # Show full error reports and disable caching. + config.consider_all_requests_local = true + config.action_controller.perform_caching = false + + # Don't care if the mailer can't send. + config.action_mailer.raise_delivery_errors = false + + # Print deprecation notices to the Rails logger. + config.active_support.deprecation = :log + + # Raise an error on page load if there are pending migrations. + config.active_record.migration_error = :page_load + + # Debug mode disables concatenation and preprocessing of assets. + # This option may cause significant delays in view rendering with a large + # number of complex assets. + config.assets.debug = true + + # Asset digests allow you to set far-future HTTP expiration dates on all assets, + # yet still be able to expire them through the digest params. + config.assets.digest = true + + # Adds additional error checking when serving assets at runtime. + # Checks for improperly declared sprockets dependencies. + # Raises helpful error messages. + config.assets.raise_runtime_errors = true + + # Raises error for missing translations + # config.action_view.raise_on_missing_translations = true +end diff --git a/config/environments/production.rb b/config/environments/production.rb new file mode 100644 index 000000000..5c1b32e48 --- /dev/null +++ b/config/environments/production.rb @@ -0,0 +1,79 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # Code is not reloaded between requests. + config.cache_classes = true + + # Eager load code on boot. This eager loads most of Rails and + # your application in memory, allowing both threaded web servers + # and those relying on copy on write to perform better. + # Rake tasks automatically ignore this option for performance. + config.eager_load = true + + # Full error reports are disabled and caching is turned on. + config.consider_all_requests_local = false + config.action_controller.perform_caching = true + + # Enable Rack::Cache to put a simple HTTP cache in front of your application + # Add `rack-cache` to your Gemfile before enabling this. + # For large-scale production use, consider using a caching reverse proxy like + # NGINX, varnish or squid. + # config.action_dispatch.rack_cache = true + + # Disable serving static files from the `/public` folder by default since + # Apache or NGINX already handles this. + config.serve_static_files = ENV['RAILS_SERVE_STATIC_FILES'].present? + + # Compress JavaScripts and CSS. + config.assets.js_compressor = :uglifier + # config.assets.css_compressor = :sass + + # Do not fallback to assets pipeline if a precompiled asset is missed. + config.assets.compile = false + + # Asset digests allow you to set far-future HTTP expiration dates on all assets, + # yet still be able to expire them through the digest params. + config.assets.digest = true + + # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb + + # Specifies the header that your server uses for sending files. + # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache + # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX + + # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies. + # config.force_ssl = true + + # Use the lowest log level to ensure availability of diagnostic information + # when problems arise. + config.log_level = :debug + + # Prepend all log lines with the following tags. + # config.log_tags = [ :subdomain, :uuid ] + + # Use a different logger for distributed setups. + # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new) + + # Use a different cache store in production. + # config.cache_store = :mem_cache_store + + # Enable serving of images, stylesheets, and JavaScripts from an asset server. + # config.action_controller.asset_host = 'http://assets.example.com' + + # Ignore bad email addresses and do not raise email delivery errors. + # Set this to true and configure the email server for immediate delivery to raise delivery errors. + # config.action_mailer.raise_delivery_errors = false + + # Enable locale fallbacks for I18n (makes lookups for any locale fall back to + # the I18n.default_locale when a translation cannot be found). + config.i18n.fallbacks = true + + # Send deprecation notices to registered listeners. + config.active_support.deprecation = :notify + + # Use default logging formatter so that PID and timestamp are not suppressed. + config.log_formatter = ::Logger::Formatter.new + + # Do not dump schema after migrations. + config.active_record.dump_schema_after_migration = false +end diff --git a/config/environments/test.rb b/config/environments/test.rb new file mode 100644 index 000000000..1c19f08b2 --- /dev/null +++ b/config/environments/test.rb @@ -0,0 +1,42 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # The test environment is used exclusively to run your application's + # test suite. You never need to work with it otherwise. Remember that + # your test database is "scratch space" for the test suite and is wiped + # and recreated between test runs. Don't rely on the data there! + config.cache_classes = true + + # Do not eager load code on boot. This avoids loading your whole application + # just for the purpose of running a single test. If you are using a tool that + # preloads Rails for running tests, you may have to set it to true. + config.eager_load = false + + # Configure static file server for tests with Cache-Control for performance. + config.serve_static_files = true + config.static_cache_control = 'public, max-age=3600' + + # Show full error reports and disable caching. + config.consider_all_requests_local = true + config.action_controller.perform_caching = false + + # Raise exceptions instead of rendering exception templates. + config.action_dispatch.show_exceptions = false + + # Disable request forgery protection in test environment. + config.action_controller.allow_forgery_protection = false + + # Tell Action Mailer not to deliver emails to the real world. + # The :test delivery method accumulates sent emails in the + # ActionMailer::Base.deliveries array. + config.action_mailer.delivery_method = :test + + # Randomize the order test cases are executed. + config.active_support.test_order = :random + + # Print deprecation notices to the stderr. + config.active_support.deprecation = :stderr + + # Raises error for missing translations + # config.action_view.raise_on_missing_translations = true +end diff --git a/config/initializers/assets.rb b/config/initializers/assets.rb new file mode 100644 index 000000000..01ef3e663 --- /dev/null +++ b/config/initializers/assets.rb @@ -0,0 +1,11 @@ +# Be sure to restart your server when you modify this file. + +# Version of your assets, change this if you want to expire all your assets. +Rails.application.config.assets.version = '1.0' + +# Add additional assets to the asset load path +# Rails.application.config.assets.paths << Emoji.images_path + +# Precompile additional assets. +# application.js, application.css, and all non-JS/CSS in app/assets folder are already added. +# Rails.application.config.assets.precompile += %w( search.js ) diff --git a/config/initializers/backtrace_silencers.rb b/config/initializers/backtrace_silencers.rb new file mode 100644 index 000000000..59385cdf3 --- /dev/null +++ b/config/initializers/backtrace_silencers.rb @@ -0,0 +1,7 @@ +# Be sure to restart your server when you modify this file. + +# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces. +# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ } + +# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code. +# Rails.backtrace_cleaner.remove_silencers! diff --git a/config/initializers/cookies_serializer.rb b/config/initializers/cookies_serializer.rb new file mode 100644 index 000000000..7f70458de --- /dev/null +++ b/config/initializers/cookies_serializer.rb @@ -0,0 +1,3 @@ +# Be sure to restart your server when you modify this file. + +Rails.application.config.action_dispatch.cookies_serializer = :json diff --git a/config/initializers/filter_parameter_logging.rb b/config/initializers/filter_parameter_logging.rb new file mode 100644 index 000000000..4a994e1e7 --- /dev/null +++ b/config/initializers/filter_parameter_logging.rb @@ -0,0 +1,4 @@ +# Be sure to restart your server when you modify this file. + +# Configure sensitive parameters which will be filtered from the log file. +Rails.application.config.filter_parameters += [:password] diff --git a/config/initializers/inflections.rb b/config/initializers/inflections.rb new file mode 100644 index 000000000..ac033bf9d --- /dev/null +++ b/config/initializers/inflections.rb @@ -0,0 +1,16 @@ +# Be sure to restart your server when you modify this file. + +# Add new inflection rules using the following format. Inflections +# are locale specific, and you may define rules for as many different +# locales as you wish. All of these examples are active by default: +# ActiveSupport::Inflector.inflections(:en) do |inflect| +# inflect.plural /^(ox)$/i, '\1en' +# inflect.singular /^(ox)en/i, '\1' +# inflect.irregular 'person', 'people' +# inflect.uncountable %w( fish sheep ) +# end + +# These inflection rules are supported but not enabled by default: +# ActiveSupport::Inflector.inflections(:en) do |inflect| +# inflect.acronym 'RESTful' +# end diff --git a/config/initializers/mime_types.rb b/config/initializers/mime_types.rb new file mode 100644 index 000000000..dc1899682 --- /dev/null +++ b/config/initializers/mime_types.rb @@ -0,0 +1,4 @@ +# Be sure to restart your server when you modify this file. + +# Add new mime types for use in respond_to blocks: +# Mime::Type.register "text/richtext", :rtf diff --git a/config/initializers/session_store.rb b/config/initializers/session_store.rb new file mode 100644 index 000000000..15d065a84 --- /dev/null +++ b/config/initializers/session_store.rb @@ -0,0 +1,3 @@ +# Be sure to restart your server when you modify this file. + +Rails.application.config.session_store :cookie_store, key: '_TaskListRails_session' diff --git a/config/initializers/wrap_parameters.rb b/config/initializers/wrap_parameters.rb new file mode 100644 index 000000000..33725e95f --- /dev/null +++ b/config/initializers/wrap_parameters.rb @@ -0,0 +1,14 @@ +# Be sure to restart your server when you modify this file. + +# This file contains settings for ActionController::ParamsWrapper which +# is enabled by default. + +# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array. +ActiveSupport.on_load(:action_controller) do + wrap_parameters format: [:json] if respond_to?(:wrap_parameters) +end + +# To enable root element in JSON for ActiveRecord objects. +# ActiveSupport.on_load(:active_record) do +# self.include_root_in_json = true +# end diff --git a/config/locales/en.yml b/config/locales/en.yml new file mode 100644 index 000000000..065395716 --- /dev/null +++ b/config/locales/en.yml @@ -0,0 +1,23 @@ +# Files in the config/locales directory are used for internationalization +# and are automatically loaded by Rails. If you want to use locales other +# than English, add the necessary files in this directory. +# +# To use the locales, use `I18n.t`: +# +# I18n.t 'hello' +# +# In views, this is aliased to just `t`: +# +# <%= t('hello') %> +# +# To use a different locale, set it with `I18n.locale`: +# +# I18n.locale = :es +# +# This would use the information in config/locales/es.yml. +# +# To learn more, please read the Rails Internationalization guide +# available at http://guides.rubyonrails.org/i18n.html. + +en: + hello: "Hello world" diff --git a/config/routes.rb b/config/routes.rb new file mode 100644 index 000000000..3f66539d5 --- /dev/null +++ b/config/routes.rb @@ -0,0 +1,56 @@ +Rails.application.routes.draw do + # The priority is based upon order of creation: first created -> highest priority. + # See how all your routes lay out with "rake routes". + + # You can have the root of your site routed with "root" + # root 'welcome#index' + + # Example of regular route: + # get 'products/:id' => 'catalog#view' + + # Example of named route that can be invoked with purchase_url(id: product.id) + # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase + + # Example resource route (maps HTTP verbs to controller actions automatically): + # resources :products + + # Example resource route with options: + # resources :products do + # member do + # get 'short' + # post 'toggle' + # end + # + # collection do + # get 'sold' + # end + # end + + # Example resource route with sub-resources: + # resources :products do + # resources :comments, :sales + # resource :seller + # end + + # Example resource route with more complex sub-resources: + # resources :products do + # resources :comments + # resources :sales do + # get 'recent', on: :collection + # end + # end + + # Example resource route with concerns: + # concern :toggleable do + # post 'toggle' + # end + # resources :posts, concerns: :toggleable + # resources :photos, concerns: :toggleable + + # Example resource route within a namespace: + # namespace :admin do + # # Directs /admin/products/* to Admin::ProductsController + # # (app/controllers/admin/products_controller.rb) + # resources :products + # end +end diff --git a/config/secrets.yml b/config/secrets.yml new file mode 100644 index 000000000..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/seeds.rb b/db/seeds.rb new file mode 100644 index 000000000..4edb1e857 --- /dev/null +++ b/db/seeds.rb @@ -0,0 +1,7 @@ +# This file should contain all the record creation needed to seed the database with its default values. +# The data can then be loaded with the rake db:seed (or created alongside the db with db:setup). +# +# Examples: +# +# cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }]) +# Mayor.create(name: 'Emanuel', city: cities.first) diff --git a/lib/assets/.keep b/lib/assets/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/lib/tasks/.keep b/lib/tasks/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/log/.keep b/log/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/public/404.html b/public/404.html new file mode 100644 index 000000000..b612547fc --- /dev/null +++ b/public/404.html @@ -0,0 +1,67 @@ + + + + The page you were looking for doesn't exist (404) + + + + + + +
+
+

The page you were looking for doesn't exist.

+

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

+
+

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

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

The change you wanted was rejected.

+

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

+
+

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

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

We're sorry, but something went wrong.

+
+

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

+
+ + diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 000000000..e69de29bb diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 000000000..3c9c7c01f --- /dev/null +++ b/public/robots.txt @@ -0,0 +1,5 @@ +# See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file +# +# To ban all spiders from the entire site uncomment the next two lines: +# User-agent: * +# Disallow: / diff --git a/test/controllers/.keep b/test/controllers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/fixtures/.keep b/test/fixtures/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/helpers/.keep b/test/helpers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/integration/.keep b/test/integration/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/mailers/.keep b/test/mailers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/models/.keep b/test/models/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/test_helper.rb b/test/test_helper.rb new file mode 100644 index 000000000..92e39b2d7 --- /dev/null +++ b/test/test_helper.rb @@ -0,0 +1,10 @@ +ENV['RAILS_ENV'] ||= 'test' +require File.expand_path('../../config/environment', __FILE__) +require 'rails/test_help' + +class ActiveSupport::TestCase + # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order. + fixtures :all + + # Add more helper methods to be used by all tests here... +end diff --git a/vendor/assets/javascripts/.keep b/vendor/assets/javascripts/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/vendor/assets/stylesheets/.keep b/vendor/assets/stylesheets/.keep new file mode 100644 index 000000000..e69de29bb From c4ae1fc5c1ee26656b6b2ebde8c7957db9b88a31 Mon Sep 17 00:00:00 2001 From: Briana Eng Date: Wed, 28 Sep 2016 15:19:48 -0700 Subject: [PATCH 02/31] Index and show pages created --- app/assets/javascripts/tasks.coffee | 3 + app/assets/stylesheets/tasks.scss | 3 + app/controllers/tasks_controller.rb | 45 ++ app/helpers/tasks_helper.rb | 2 + app/views/tasks/create.html.erb | 2 + app/views/tasks/destroy.html.erb | 2 + app/views/tasks/edit.html.erb | 2 + app/views/tasks/index.html.erb | 10 + app/views/tasks/new.html.erb | 2 + app/views/tasks/show.html.erb | 15 + app/views/tasks/update.html.erb | 2 + config/routes.rb | 17 + db/development.sqlite3 | 0 log/development.log | 556 ++++++++++++++++++++++ test/controllers/tasks_controller_test.rb | 39 ++ 15 files changed, 700 insertions(+) create mode 100644 app/assets/javascripts/tasks.coffee create mode 100644 app/assets/stylesheets/tasks.scss create mode 100644 app/controllers/tasks_controller.rb create mode 100644 app/helpers/tasks_helper.rb create mode 100644 app/views/tasks/create.html.erb create mode 100644 app/views/tasks/destroy.html.erb create mode 100644 app/views/tasks/edit.html.erb create mode 100644 app/views/tasks/index.html.erb create mode 100644 app/views/tasks/new.html.erb create mode 100644 app/views/tasks/show.html.erb create mode 100644 app/views/tasks/update.html.erb create mode 100644 db/development.sqlite3 create mode 100644 log/development.log create mode 100644 test/controllers/tasks_controller_test.rb diff --git a/app/assets/javascripts/tasks.coffee b/app/assets/javascripts/tasks.coffee new file mode 100644 index 000000000..24f83d18b --- /dev/null +++ b/app/assets/javascripts/tasks.coffee @@ -0,0 +1,3 @@ +# Place all the behaviors and hooks related to the matching controller here. +# All this logic will automatically be available in application.js. +# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/app/assets/stylesheets/tasks.scss b/app/assets/stylesheets/tasks.scss new file mode 100644 index 000000000..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/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb new file mode 100644 index 000000000..317f71fb1 --- /dev/null +++ b/app/controllers/tasks_controller.rb @@ -0,0 +1,45 @@ +class TasksController < ApplicationController + def index + @alltasks = TasksController.alltasks + end + + def show + @alltasks = TasksController.alltasks + @task = nil + + num = params[:id].to_i + + @alltasks.each do |task| + if task[:id] == num + @task = task + end + end + + if @task == nil + render :file => 'public/404.html', :status => :not_found, :layout => false + end + end + + def create + end + + def new + end + + def edit + end + + def update + end + + def destroy + end + + def self.alltasks + [ + {id: 1, title: "Do app", description: "Creating rails app", completion: true, completed_at: "9/28"}, + {id: 2, title: "Eat", description: "Eat food", completion: false, completed_at: nil}, + {id: 3, title: "Sleep", description: "Get lots of sleep", completion: true, completed_at: "9/27"} + ] + end +end diff --git a/app/helpers/tasks_helper.rb b/app/helpers/tasks_helper.rb new file mode 100644 index 000000000..ce894d00c --- /dev/null +++ b/app/helpers/tasks_helper.rb @@ -0,0 +1,2 @@ +module TasksHelper +end diff --git a/app/views/tasks/create.html.erb b/app/views/tasks/create.html.erb new file mode 100644 index 000000000..fcad439c4 --- /dev/null +++ b/app/views/tasks/create.html.erb @@ -0,0 +1,2 @@ +

Tasks#create

+

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

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

Tasks#destroy

+

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

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

Tasks#edit

+

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

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

Your Tasks

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

Tasks#new

+

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

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

<%= @task[:title] %>

+

Description:

+

+ <%= @task[:description] %> +

+

Status:

+

+ <% if @task[:completion] == true %> + Done at: <%= @task[:completed_at] %> + <% else %> + Still in progress + <% end %> +

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

Tasks#update

+

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

diff --git a/config/routes.rb b/config/routes.rb index 3f66539d5..336c754f7 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,4 +1,21 @@ Rails.application.routes.draw do + + root to: 'tasks#index' + + get 'tasks/index', as: 'index' + + get 'tasks/show/:id' => 'tasks#show', as: 'show' + + post 'tasks/create' => 'tasks#create' + + get 'tasks/new' => 'tasks#new', as: 'new' + + get 'tasks/:id/edit' => 'tasks#edit', as: 'edit' + + put 'tasks/:id/update' => 'tasks#show' + + delete 'tasks/:id/destroy' => 'tasks#destroy', as: 'destroy' + # The priority is based upon order of creation: first created -> highest priority. # See how all your routes lay out with "rake routes". diff --git a/db/development.sqlite3 b/db/development.sqlite3 new file mode 100644 index 000000000..e69de29bb diff --git a/log/development.log b/log/development.log new file mode 100644 index 000000000..0ec4754db --- /dev/null +++ b/log/development.log @@ -0,0 +1,556 @@ + + +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) diff --git a/test/controllers/tasks_controller_test.rb b/test/controllers/tasks_controller_test.rb new file mode 100644 index 000000000..63a91970b --- /dev/null +++ b/test/controllers/tasks_controller_test.rb @@ -0,0 +1,39 @@ +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 + +end From c0c0104f173772efbf80cffd656507d6d9561d8b Mon Sep 17 00:00:00 2001 From: Briana Eng Date: Wed, 28 Sep 2016 16:13:01 -0700 Subject: [PATCH 03/31] Added some css and created inital forms --- app/assets/stylesheets/style.css | 58 + app/controllers/tasks_controller.rb | 8 +- app/views/layouts/application.html.erb | 6 + app/views/tasks/destroy.html.erb | 1 + app/views/tasks/edit.html.erb | 19 +- app/views/tasks/new.html.erb | 14 +- app/views/tasks/show.html.erb | 8 +- config/routes.rb | 6 +- log/development.log | 3259 ++++++++++++++++++++++++ 9 files changed, 3368 insertions(+), 11 deletions(-) create mode 100644 app/assets/stylesheets/style.css diff --git a/app/assets/stylesheets/style.css b/app/assets/stylesheets/style.css new file mode 100644 index 000000000..32731d5cc --- /dev/null +++ b/app/assets/stylesheets/style.css @@ -0,0 +1,58 @@ +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; + border-bottom: black 1px solid; +} + +nav a { + margin: 20px; +} + +footer { + margin-top: auto; + text-align: center; + font-size: .7em; + padding: 1em; +} diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index 317f71fb1..2b4448a6b 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -1,4 +1,6 @@ class TasksController < ApplicationController + # skip_before_filter :verify_authenticity_token #NOT SURE IF NEEDED?? + def index @alltasks = TasksController.alltasks end @@ -27,9 +29,11 @@ def new end def edit + show end def update + show end def destroy @@ -37,9 +41,9 @@ def destroy def self.alltasks [ - {id: 1, title: "Do app", description: "Creating rails app", completion: true, completed_at: "9/28"}, + {id: 1, title: "Do app", description: "Creating rails app", completion: true, completed_at: "noon 9/28"}, {id: 2, title: "Eat", description: "Eat food", completion: false, completed_at: nil}, - {id: 3, title: "Sleep", description: "Get lots of sleep", completion: true, completed_at: "9/27"} + {id: 3, title: "Sleep", description: "Get lots of sleep", completion: true, completed_at: "8am 9/27"} ] end end diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index 46eeb110b..0000a2f95 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -7,6 +7,12 @@ <%= csrf_meta_tags %> +

      + +
      <%= yield %> diff --git a/app/views/tasks/destroy.html.erb b/app/views/tasks/destroy.html.erb index a90559f9d..182c6290e 100644 --- a/app/views/tasks/destroy.html.erb +++ b/app/views/tasks/destroy.html.erb @@ -1,2 +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 index 374190308..023d8bf16 100644 --- a/app/views/tasks/edit.html.erb +++ b/app/views/tasks/edit.html.erb @@ -1,2 +1,17 @@ -

      Tasks#edit

      -

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

      +

      Edit Your Task

      +
      +
      + + + + + + + <% if @task[:completion] == false %> + + + <% end %> + + +
      +
      diff --git a/app/views/tasks/new.html.erb b/app/views/tasks/new.html.erb index 2484008a3..32fc7eb9d 100644 --- a/app/views/tasks/new.html.erb +++ b/app/views/tasks/new.html.erb @@ -1,2 +1,12 @@ -

      Tasks#new

      -

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

      +

      Add a Task

      +
      +
      + + + + + + + +
      +
      diff --git a/app/views/tasks/show.html.erb b/app/views/tasks/show.html.erb index 3c5f5c3dd..9bb771a02 100644 --- a/app/views/tasks/show.html.erb +++ b/app/views/tasks/show.html.erb @@ -1,5 +1,5 @@ +

      <%= @task[:title] %>

      -

      <%= @task[:title] %>

      Description:

      <%= @task[:description] %> @@ -7,9 +7,13 @@

      Status:

      <% if @task[:completion] == true %> - Done at: <%= @task[:completed_at] %> + Done @ <%= @task[:completed_at] %> <% else %> Still in progress <% end %>

      +
      +
      <%= link_to("Edit", edit_path(@task[:id])) %>
      +
      <%= link_to("Delete", destroy_path(@task[:id])) %>
      +
      diff --git a/config/routes.rb b/config/routes.rb index 336c754f7..45e5d61c8 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -6,15 +6,15 @@ get 'tasks/show/:id' => 'tasks#show', as: 'show' - post 'tasks/create' => 'tasks#create' + get 'tasks/create' => 'tasks#create' #CHANGE TO POST get 'tasks/new' => 'tasks#new', as: 'new' get 'tasks/:id/edit' => 'tasks#edit', as: 'edit' - put 'tasks/:id/update' => 'tasks#show' + get 'tasks/:id/update' => 'tasks#show' #CHANGE TO POST - delete 'tasks/:id/destroy' => 'tasks#destroy', as: 'destroy' + get 'tasks/:id/destroy' => 'tasks#destroy', as: 'destroy' #CHANGE TO DELETE # The priority is based upon order of creation: first created -> highest priority. # See how all your routes lay out with "rake routes". diff --git a/log/development.log b/log/development.log index 0ec4754db..3a88fa968 100644 --- a/log/development.log +++ b/log/development.log @@ -554,3 +554,3262 @@ 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) From 6eb8ca65aecb8712e078f2c1306d251d673cdb48 Mon Sep 17 00:00:00 2001 From: Briana Eng Date: Thu, 29 Sep 2016 09:26:17 -0700 Subject: [PATCH 04/31] Generated model and moved logic to controller (from html) --- app/controllers/tasks_controller.rb | 8 + app/models/task.rb | 2 + app/views/tasks/edit.html.erb | 6 +- app/views/tasks/show.html.erb | 5 +- db/development.sqlite3 | Bin 0 -> 20480 bytes db/migrate/20160928232311_create_tasks.rb | 11 + db/schema.rb | 24 + log/development.log | 514 ++++++++++++++++++++++ test/fixtures/tasks.yml | 11 + test/models/task_test.rb | 7 + 10 files changed, 583 insertions(+), 5 deletions(-) create mode 100644 app/models/task.rb create mode 100644 db/migrate/20160928232311_create_tasks.rb create mode 100644 db/schema.rb create mode 100644 test/fixtures/tasks.yml create mode 100644 test/models/task_test.rb diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index 2b4448a6b..b05921310 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -20,6 +20,14 @@ def show if @task == nil render :file => 'public/404.html', :status => :not_found, :layout => false end + + @status = nil + + if @task[:completion] == true + @status = "Done at #{@task[:completed_at]}" + else + @status = "Still in progress" + end end def create diff --git a/app/models/task.rb b/app/models/task.rb new file mode 100644 index 000000000..935f76e12 --- /dev/null +++ b/app/models/task.rb @@ -0,0 +1,2 @@ +class Task < ActiveRecord::Base +end diff --git a/app/views/tasks/edit.html.erb b/app/views/tasks/edit.html.erb index 023d8bf16..055fdc7b8 100644 --- a/app/views/tasks/edit.html.erb +++ b/app/views/tasks/edit.html.erb @@ -7,11 +7,11 @@ - <% if @task[:completion] == false %> + <%# if @task[:completion] == false %> - <% end %> - + <%# end %> +
      diff --git a/app/views/tasks/show.html.erb b/app/views/tasks/show.html.erb index 9bb771a02..34ddc2476 100644 --- a/app/views/tasks/show.html.erb +++ b/app/views/tasks/show.html.erb @@ -6,11 +6,12 @@

      Status:

      - <% if @task[:completion] == true %> + + <%= @status %>

      diff --git a/db/development.sqlite3 b/db/development.sqlite3 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..083dab17ad710e7874ee35c97b62091cc55d3213 100644 GIT binary patch literal 20480 zcmeI&!EVzq7zgmU=?F|39j6?)eDZ}w8|vCh2o950z(N&Wx|LL-7b=r@EFwv}#GSZS zyaDgVD{$l)a7v5XO@#}m>TlJJ?ZmFXpHH8fcNg7QE4m!#snpc6_ASP&QzFZd4IWW*=#hn3r5&yvNTnvN>`L%dYeA9GJ zJ)iiUMM|(6l^12GUcwx=ZZ_ilKD~eLpt61fe_edZ`^UvAb8}YvX_*fS1Rwwb2tWV= z5P$##AOHafKmY<;A+XOXUh}x|?D$3Vd9&4QH5$7nF694PakvNq0uX=z1Rwwb2tWV= z5P$##Ag~a4WP11!G;m!O2 literal 0 HcmV?d00001 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/schema.rb b/db/schema.rb new file mode 100644 index 000000000..eb94c7f5f --- /dev/null +++ b/db/schema.rb @@ -0,0 +1,24 @@ +# encoding: UTF-8 +# This file is auto-generated from the current state of the database. Instead +# of editing this file, please use the migrations feature of Active Record to +# incrementally modify your database, and then regenerate this schema definition. +# +# Note that this schema.rb definition is the authoritative source for your +# database schema. If you need to create the application database on another +# system, you should be using db:schema:load, not running all the migrations +# from scratch. The latter is a flawed and unsustainable approach (the more migrations +# you'll amass, the slower it'll run and the greater likelihood for issues). +# +# It's strongly recommended that you check this file into your version control system. + +ActiveRecord::Schema.define(version: 20160928232311) 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 + end + +end diff --git a/log/development.log b/log/development.log index 3a88fa968..4038a3a5e 100644 --- a/log/development.log +++ b/log/development.log @@ -3813,3 +3813,517 @@ 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) diff --git a/test/fixtures/tasks.yml b/test/fixtures/tasks.yml new file mode 100644 index 000000000..8c190d429 --- /dev/null +++ b/test/fixtures/tasks.yml @@ -0,0 +1,11 @@ +# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + title: MyString + description: MyString + completed_at: 2016-09-28 16:23:11 + +two: + title: MyString + description: MyString + completed_at: 2016-09-28 16:23:11 diff --git a/test/models/task_test.rb b/test/models/task_test.rb new file mode 100644 index 000000000..3ca215970 --- /dev/null +++ b/test/models/task_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class TaskTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end From 98ae21212cbd93dcb803add423263b8372b4df81 Mon Sep 17 00:00:00 2001 From: Briana Eng Date: Thu, 29 Sep 2016 15:41:39 -0700 Subject: [PATCH 05/31] Added functionality to create a new task and delete a task --- app/assets/stylesheets/style.css | 10 +- app/controllers/tasks_controller.rb | 55 +- app/views/layouts/application.html.erb | 6 +- app/views/tasks/create.html.erb | 6 +- app/views/tasks/edit.html.erb | 4 +- app/views/tasks/index.html.erb | 4 +- app/views/tasks/new.html.erb | 14 +- app/views/tasks/show.html.erb | 11 +- config/routes.rb | 6 +- db/development.sqlite3 | Bin 20480 -> 20480 bytes log/development.log | 2454 ++++++++++++++++++++++++ 11 files changed, 2512 insertions(+), 58 deletions(-) diff --git a/app/assets/stylesheets/style.css b/app/assets/stylesheets/style.css index 32731d5cc..baf120436 100644 --- a/app/assets/stylesheets/style.css +++ b/app/assets/stylesheets/style.css @@ -46,8 +46,14 @@ nav { border-bottom: black 1px solid; } -nav a { - margin: 20px; +input[type="text"], textarea, label { + width : 100%; + margin: 0; + display: block; +} + +input[type="submit"] { + margin: 0 auto; } footer { diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index b05921310..be4f98795 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -1,28 +1,12 @@ class TasksController < ApplicationController - # skip_before_filter :verify_authenticity_token #NOT SURE IF NEEDED?? def index - @alltasks = TasksController.alltasks + @tasks = Task.all end def show - @alltasks = TasksController.alltasks - @task = nil + @task = Task.find(params[:id]) - num = params[:id].to_i - - @alltasks.each do |task| - if task[:id] == num - @task = task - end - end - - if @task == nil - render :file => 'public/404.html', :status => :not_found, :layout => false - end - - @status = nil - if @task[:completion] == true @status = "Done at #{@task[:completed_at]}" else @@ -30,28 +14,41 @@ def show end end - def create + def new + @task = Task.new end - def new + def create + @task = Task.new + + @task.title = params[:task][:title] + @task.description = params[:task][:description] + @task.completed_at = params[:task][:completed_at] + + @task.save + + redirect_to root_path end def edit - show + @task = Task.find(params[:id]) end def update - show + @task = Task.find(params[:id]) + + @task.title = params[:post][:title] + @task.description = params[:post][:description] + @task.completed_at = params[:post][:completed_at] + + @task.save end def destroy - end + @task = Task.find(params[:id]) + + @task.destroy - def self.alltasks - [ - {id: 1, title: "Do app", description: "Creating rails app", completion: true, completed_at: "noon 9/28"}, - {id: 2, title: "Eat", description: "Eat food", completion: false, completed_at: nil}, - {id: 3, title: "Sleep", description: "Get lots of sleep", completion: true, completed_at: "8am 9/27"} - ] + redirect_to root_path end end diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index 0000a2f95..a72d392d4 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -1,7 +1,7 @@ - TaskListRails + Task List <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %> <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %> <%= csrf_meta_tags %> @@ -9,8 +9,8 @@
      diff --git a/app/views/tasks/create.html.erb b/app/views/tasks/create.html.erb index fcad439c4..48a2a9e92 100644 --- a/app/views/tasks/create.html.erb +++ b/app/views/tasks/create.html.erb @@ -1,2 +1,4 @@ -

      Tasks#create

      -

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

      +
      +

      <%= @task.title %>

      +

      <%= @task.description %>

      +
      diff --git a/app/views/tasks/edit.html.erb b/app/views/tasks/edit.html.erb index 055fdc7b8..5ce9a4182 100644 --- a/app/views/tasks/edit.html.erb +++ b/app/views/tasks/edit.html.erb @@ -1,11 +1,11 @@

      Edit Your Task

      -
      + - + <%# if @task[:completion] == false %> diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb index a15c82290..78c2770c4 100644 --- a/app/views/tasks/index.html.erb +++ b/app/views/tasks/index.html.erb @@ -1,9 +1,9 @@

      Your Tasks

        - <% @alltasks.each do |task| %> + <% @tasks.each do |task| %>
      1. - <%= link_to(task[:title], show_path(task[:id])) %> + <%= link_to(task.title, show_path(task[:id])) %>
      2. <% end %>
      diff --git a/app/views/tasks/new.html.erb b/app/views/tasks/new.html.erb index 32fc7eb9d..050d849be 100644 --- a/app/views/tasks/new.html.erb +++ b/app/views/tasks/new.html.erb @@ -1,12 +1,12 @@

      Add a Task

      - - - + <%= form_for @task, url: create_path do |f| %> + <%= f.label :title %> + <%= f.text_field :title%> - - + <%= f.label :description %> + <%= f.text_area :description %> - - + <%= f.submit %> + <% end %>
      diff --git a/app/views/tasks/show.html.erb b/app/views/tasks/show.html.erb index 34ddc2476..7cff4ce85 100644 --- a/app/views/tasks/show.html.erb +++ b/app/views/tasks/show.html.erb @@ -1,20 +1,15 @@ -

      <%= @task[:title] %>

      +

      <%= @task.title %>

      Description:

      - <%= @task[:description] %> + <%= @task.description %>

      Status:

      - <%= @status %>

      <%= link_to("Edit", edit_path(@task[:id])) %>
      -
      <%= link_to("Delete", destroy_path(@task[:id])) %>
      +
      <%= button_to("Delete", {action: "destroy", id: @task[:id]}, method: :delete, data: {confirm: "Are you sure you want to delete this?"}) %>
      diff --git a/config/routes.rb b/config/routes.rb index 45e5d61c8..bd411fb85 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -6,15 +6,15 @@ get 'tasks/show/:id' => 'tasks#show', as: 'show' - get 'tasks/create' => 'tasks#create' #CHANGE TO POST + post 'tasks/create' => 'tasks#create', as: 'create' get 'tasks/new' => 'tasks#new', as: 'new' get 'tasks/:id/edit' => 'tasks#edit', as: 'edit' - get 'tasks/:id/update' => 'tasks#show' #CHANGE TO POST + put 'tasks/:id/update' => 'posts#update', as: 'update' - get 'tasks/:id/destroy' => 'tasks#destroy', as: 'destroy' #CHANGE TO DELETE + delete 'tasks/:id/destroy' => 'tasks#destroy', as: 'destroy' # The priority is based upon order of creation: first created -> highest priority. # See how all your routes lay out with "rake routes". diff --git a/db/development.sqlite3 b/db/development.sqlite3 index 083dab17ad710e7874ee35c97b62091cc55d3213..1d58bf6511150bc1bf8b052f6a70e83645b994ab 100644 GIT binary patch delta 218 zcmZozz}T>Wae_3Xz(g5mMuCk9OY}Jy`8P4}Z{kncEGQ7cU+=@t&LFPJ;OJPASe$K? zl3JWxlvz-cnV+XWooWxU}R=wVu4%6hYiUzMZBgNn(G-F pnW~!^7+@F&kpjx_GB7YO@_%LE|GHVw;59!tCnK{sBgmn}>;Od~G#UT^ delta 45 scmZozz}T>Wae_1>^F$eEM&^wPOZ1r-1U3sgJmH@>L5z);0SMq+03"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) From 8081bee624994621dabf64f730adbe929a62ffe7 Mon Sep 17 00:00:00 2001 From: Briana Eng Date: Fri, 30 Sep 2016 10:29:28 -0700 Subject: [PATCH 06/31] Added button to complete task and updated date/time so it prints more clearly --- app/assets/stylesheets/style.css | 4 + app/controllers/tasks_controller.rb | 29 +- app/views/tasks/create.html.erb | 5 +- app/views/tasks/edit.html.erb | 20 +- app/views/tasks/index.html.erb | 6 +- app/views/tasks/show.html.erb | 5 +- config/routes.rb | 4 +- db/development.sqlite3 | Bin 20480 -> 20480 bytes log/development.log | 4195 +++++++++++++++++++++++++++ 9 files changed, 4243 insertions(+), 25 deletions(-) diff --git a/app/assets/stylesheets/style.css b/app/assets/stylesheets/style.css index baf120436..9f46c9647 100644 --- a/app/assets/stylesheets/style.css +++ b/app/assets/stylesheets/style.css @@ -62,3 +62,7 @@ footer { font-size: .7em; padding: 1em; } + +.done { + text-decoration: line-through; +} diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index be4f98795..68a61efca 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -6,9 +6,10 @@ def index def show @task = Task.find(params[:id]) + @datetime = @task.completed_at - if @task[:completion] == true - @status = "Done at #{@task[:completed_at]}" + if @task.completed_at != nil + @status = "Done at #{@datetime.strftime('%H:%M %P')} on #{@datetime.strftime('%B %e, %Y')}" else @status = "Still in progress" end @@ -34,14 +35,30 @@ def edit @task = Task.find(params[:id]) end - def update + def button @task = Task.find(params[:id]) - @task.title = params[:post][:title] - @task.description = params[:post][:description] - @task.completed_at = params[:post][:completed_at] + @task.completed_at = Time.now @task.save + + redirect_to show_path + end + + def update + @task = Task.find(params[:id]) + + @task.update(title: params[:task][:title], description: params[:task][:description], completed_at: params[:task][:completed_at]) + + # @task = Task.find(params[:id]) + # + # @task.title = params[:task][:title] + # @task.description = params[:task][:description] + # @task.completed_at = params[:task][:completed_at] + # + # @task.save + + redirect_to root_path end def destroy diff --git a/app/views/tasks/create.html.erb b/app/views/tasks/create.html.erb index 48a2a9e92..f0a4243b9 100644 --- a/app/views/tasks/create.html.erb +++ b/app/views/tasks/create.html.erb @@ -1,4 +1 @@ -
      -

      <%= @task.title %>

      -

      <%= @task.description %>

      -
      +

      Tasks#create

      diff --git a/app/views/tasks/edit.html.erb b/app/views/tasks/edit.html.erb index 5ce9a4182..d082d2033 100644 --- a/app/views/tasks/edit.html.erb +++ b/app/views/tasks/edit.html.erb @@ -1,17 +1,15 @@

      Edit Your Task

      -
      - - + <%= form_for @task, url: update_path do |f| %> + <%= f.label :title %> + <%= f.text_field :title%> - - + <%= f.label :description %> + <%= f.text_area :description %> - <%# if @task[:completion] == false %> - - - <%# end %> + <%= f.label :completed_at %> + <%= f.datetime_local_field :completed_at %> - -
      + <%= f.submit %> + <% end %>
      diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb index 78c2770c4..f1c8eb311 100644 --- a/app/views/tasks/index.html.erb +++ b/app/views/tasks/index.html.erb @@ -3,7 +3,11 @@
        <% @tasks.each do |task| %>
      1. - <%= link_to(task.title, show_path(task[:id])) %> + <% 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/show.html.erb b/app/views/tasks/show.html.erb index 7cff4ce85..0780bdff3 100644 --- a/app/views/tasks/show.html.erb +++ b/app/views/tasks/show.html.erb @@ -10,6 +10,7 @@

      -
      <%= link_to("Edit", edit_path(@task[:id])) %>
      -
      <%= button_to("Delete", {action: "destroy", id: @task[:id]}, method: :delete, data: {confirm: "Are you sure you want to delete this?"}) %>
      +
      <%= button_to("Complete?", button_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/config/routes.rb b/config/routes.rb index bd411fb85..448f4e8a7 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -12,7 +12,9 @@ get 'tasks/:id/edit' => 'tasks#edit', as: 'edit' - put 'tasks/:id/update' => 'posts#update', as: 'update' + patch 'tasks/:id/update' => 'tasks#update', as: 'update' + + patch 'tasks/:id/show' => 'tasks#button', as: 'button' delete 'tasks/:id/destroy' => 'tasks#destroy', as: 'destroy' diff --git a/db/development.sqlite3 b/db/development.sqlite3 index 1d58bf6511150bc1bf8b052f6a70e83645b994ab..718a6ea09bba2e3f9dc3de5a716e76883bd9d300 100644 GIT binary patch delta 392 zcmZ9HJx;?w5QWz?1_|3xAQwi$R8(GOXT7X)UYi=#;Ms3J_V-@>`DoiE;Ypt7 z))c!gISSWjX=bq<)OW|<>j{CKC7==xF_RiWGet9rlJWlpgcgDVS4#9q=iyvsgpgSj ztwW~OaA3{+Vrc5(aa=J(o&ZY#<6_4pe{16o**DTX0X~vXHp(7kB z&n4#v?Vq(Bm!r6tJXH7Q+M4)wYVD-7rnbNGHiB!8lqo=&^$2RgXbK!4?U9X#0jAC6 HXW)2W=s8}} delta 200 zcmZozz}T>Wae_3Xz(g5mMuCk93-!4f7#JA&H!<*U;!oKuC=kJ4@59c{Ag;>b=vb0i zoNbhnTAW;zSx}OhpQmVKU}&amV5w_lsbFMeWo&9?YOZHsWM*Vyfm_Ch4aqb`yrvnN Z>lqrE%9FCH0?KT1_|MPC4ggKNFSh^y diff --git a/log/development.log b/log/development.log index 882782c4c..a6981ec25 100644 --- a/log/development.log +++ b/log/development.log @@ -6781,3 +6781,4198 @@ 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 From fb18d1bb02ced3a7460cbd58a1f8507568938d55 Mon Sep 17 00:00:00 2001 From: Briana Eng Date: Fri, 30 Sep 2016 11:04:37 -0700 Subject: [PATCH 07/31] Added strikethrough for if a task is complete, updated complete button so you can toggle between complete/not complete (in case it's accidentally pressed) --- app/assets/stylesheets/style.css | 2 +- app/controllers/tasks_controller.rb | 6 +- app/views/tasks/index.html.erb | 4 +- db/development.sqlite3 | Bin 20480 -> 20480 bytes log/development.log | 971 ++++++++++++++++++++++++++++ 5 files changed, 979 insertions(+), 4 deletions(-) diff --git a/app/assets/stylesheets/style.css b/app/assets/stylesheets/style.css index 9f46c9647..03b565045 100644 --- a/app/assets/stylesheets/style.css +++ b/app/assets/stylesheets/style.css @@ -63,6 +63,6 @@ footer { padding: 1em; } -.done { +.done span { text-decoration: line-through; } diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index 68a61efca..fb0acfe1a 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -38,7 +38,11 @@ def edit def button @task = Task.find(params[:id]) - @task.completed_at = Time.now + if @task.completed_at == nil + @task.completed_at = Time.now + else + @task.completed_at = nil + end @task.save diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb index f1c8eb311..c3bc30064 100644 --- a/app/views/tasks/index.html.erb +++ b/app/views/tasks/index.html.erb @@ -3,10 +3,10 @@
        <% @tasks.each do |task| %>
      1. - <% if task.completed_at != nil %> + <% if task[:completed_at] == nil %> <%= link_to(task.title, show_path(task[:id])) %> <% else %> -
        <%= link_to(task.title, show_path(task[:id])) %>
        +
        <%= link_to(task.title, show_path(task[:id])) %>
        <% end %>
      2. <% end %> diff --git a/db/development.sqlite3 b/db/development.sqlite3 index 718a6ea09bba2e3f9dc3de5a716e76883bd9d300..7e89bbdedcf32f9e9794748ba2b251944b825488 100644 GIT binary patch delta 174 zcmZozz}T>Wae_3X#Y7orMvILJOZ2&z`8F}|ZQ}3a_t-2bFq3cca=YSsLuqM8$6P*k z27Msyn3r0vP?8wO&(0t&3gng~7H3z22qObSGhG8qT^Fzn0~Q%$0|i41D+5C-Q!_m? nBU3YTW0)SOjIoumiJqyMrGc?=0WUj)HQ4;r%`@%O1Q_`N?FlQ$ delta 174 zcmZozz}T>Wae_3X-b5K^M!k&*OZ2&z_%<={ZQ}3a+q79wU?$(><#xsO<~w$wiq3hDJulx(0^221W|Woa_u(R2Uf;n&}!?>KYj;7@Aud8CaQG=ox?k sT*gwt$k@uz!pg{8&%)5s+{6GTV{A~s%g$ge3beK)b@NR7Gyz6l015&v$^ZZW diff --git a/log/development.log b/log/development.log index a6981ec25..e5248ae75 100644 --- a/log/development.log +++ b/log/development.log @@ -10976,3 +10976,974 @@ Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c 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) From 50f9c68489dc897236bb2ee2ca14de6ff3510420 Mon Sep 17 00:00:00 2001 From: Briana Eng Date: Fri, 30 Sep 2016 11:18:19 -0700 Subject: [PATCH 08/31] Changed time to 12-hr instead of 24-hr --- app/controllers/tasks_controller.rb | 2 +- db/development.sqlite3 | Bin 20480 -> 20480 bytes log/development.log | 529 ++++++++++++++++++++++++++++ 3 files changed, 530 insertions(+), 1 deletion(-) diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index fb0acfe1a..01df21703 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -9,7 +9,7 @@ def show @datetime = @task.completed_at if @task.completed_at != nil - @status = "Done at #{@datetime.strftime('%H:%M %P')} on #{@datetime.strftime('%B %e, %Y')}" + @status = "Done at #{@datetime.strftime('%I:%M %P')} on #{@datetime.strftime('%B %e, %Y')}" else @status = "Still in progress" end diff --git a/db/development.sqlite3 b/db/development.sqlite3 index 7e89bbdedcf32f9e9794748ba2b251944b825488..4c53ce4da959c2dc6296f4f40f9dd101368382f4 100644 GIT binary patch delta 83 zcmZozz}T>Wae_3X?L--8M%#@EYxNoRHVX>OWae_3X#Y7orMvILJYxNmDHVX>O"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: + <%# button_to("😸", button_path(task[:id]), method: :patch) %> <% else %> -
        <%= link_to(task.title, show_path(task[:id])) %>
        +
        <%= link_to(task.title, show_path(task[:id])) %>
        + <%# button_to("😸", button_path(task[:id]), method: :patch) %> <% end %> <% end %> diff --git a/db/development.sqlite3 b/db/development.sqlite3 index 4c53ce4da959c2dc6296f4f40f9dd101368382f4..90ac130e3c5e9c647a056ec6ec6976ef3320aa8e 100644 GIT binary patch delta 344 zcmZXOJx;?w5Jq>2P`X`HSSbJ{6lo&7nVs3q{xpt76mf${6bRSQK|@7OfI#kCg(Co6 z&cKxr#A#y5Gtw0EN$-2>4PS5g+bLhYpI!0Q=iSFtieJ_fHIvu!NYtYKK1n9x@>cfQ zAT5gGseHVDZVrN;Wg0TT5l|$G#wiQ{R#!Lq@THS@jjl}kEIr>*9?HY+K@c*65n=;^ zpkP1U#He7wg6<@mly~63$}Kw{F66Fgkg}F;BbBzLEGX1KV5`@BDw}2>(JEtn@KpWe eWae_3X?L--8M%#@E3-x*V#Tl6SHZkyR;_u_v+bk$BldnFVgPlQK-OSQw3=9n7($bEOxqR#l`qGXjFx%qzf$k6mxdUV;h%hoRFwiwH z)HN_tFf_9=Ft#!<&;tqq!Q?acs{Do)RzP7B6Fp;7b4vsB$sYFl{2=!kTNxYa8Cn_` XnOjV51F1uZ85$UwY;yR|&&Uq|u_{7P diff --git a/log/development.log b/log/development.log index 8f6df8e28..1a5e3424a 100644 --- a/log/development.log +++ b/log/development.log @@ -12476,3 +12476,1812 @@ Processing by TasksController#index as HTML Task Load (0.2ms) SELECT "tasks".* FROM "tasks" Rendered tasks/index.html.erb within layouts/application (2.3ms) Completed 200 OK in 37ms (Views: 35.2ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 11:32:44 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.8ms) +Completed 200 OK in 27ms (Views: 24.7ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/style.self-7eae9af17f0b777879a070edef2b100f5ca8d5007644b2b40a7c66e99c1b7974.css?body=1" for ::1 at 2016-09-30 11:32:44 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 11:32:44 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 11:32:44 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 11:32:44 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 11:32:44 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 11:32:44 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 11:32:44 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 11:32:44 -0700 + + +Started GET "/" for ::1 at 2016-09-30 11:34:10 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/brianaeng/ada/week8/TaskListRails/app/views/tasks/index.html.erb:7: syntax error, unexpected '}', expecting ')' +...hecked: button_path(@task[:id]}) );@output_buffer.safe_appen... +... ^ +/Users/brianaeng/ada/week8/TaskListRails/app/views/tasks/index.html.erb:9: syntax error, unexpected keyword_else, expecting ')' +'.freeze; else + ^ +/Users/brianaeng/ada/week8/TaskListRails/app/views/tasks/index.html.erb:11: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/brianaeng/ada/week8/TaskListRails/app/views/tasks/index.html.erb:13: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/brianaeng/ada/week8/TaskListRails/app/views/tasks/index.html.erb:17: syntax error, unexpected keyword_ensure, expecting ')' +/Users/brianaeng/ada/week8/TaskListRails/app/views/tasks/index.html.erb:19: syntax error, unexpected keyword_end, expecting ')'): + app/views/tasks/index.html.erb:7: syntax error, unexpected '}', expecting ')' + app/views/tasks/index.html.erb:9: syntax error, unexpected keyword_else, expecting ')' + app/views/tasks/index.html.erb:11: syntax error, unexpected keyword_end, expecting ')' + app/views/tasks/index.html.erb:13: syntax error, unexpected keyword_end, expecting ')' + app/views/tasks/index.html.erb:17: syntax error, unexpected keyword_ensure, expecting ')' + app/views/tasks/index.html.erb:19: syntax error, unexpected keyword_end, expecting ')' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.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 (3.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 (68.5ms) + 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.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.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 (47.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 (103.5ms) + + +Started GET "/" for ::1 at 2016-09-30 11:34:22 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/brianaeng/ada/week8/TaskListRails/app/views/tasks/index.html.erb:7: syntax error, unexpected '}', expecting ')' +...hecked: button_path(@task[:id]})) );@output_buffer.safe_appe... +... ^ +/Users/brianaeng/ada/week8/TaskListRails/app/views/tasks/index.html.erb:9: syntax error, unexpected keyword_else, expecting ')' +'.freeze; else + ^ +/Users/brianaeng/ada/week8/TaskListRails/app/views/tasks/index.html.erb:11: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/brianaeng/ada/week8/TaskListRails/app/views/tasks/index.html.erb:13: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/brianaeng/ada/week8/TaskListRails/app/views/tasks/index.html.erb:17: syntax error, unexpected keyword_ensure, expecting ')' +/Users/brianaeng/ada/week8/TaskListRails/app/views/tasks/index.html.erb:19: syntax error, unexpected keyword_end, expecting ')'): + app/views/tasks/index.html.erb:7: syntax error, unexpected '}', expecting ')' + app/views/tasks/index.html.erb:9: syntax error, unexpected keyword_else, expecting ')' + app/views/tasks/index.html.erb:11: syntax error, unexpected keyword_end, expecting ')' + app/views/tasks/index.html.erb:13: syntax error, unexpected keyword_end, expecting ')' + app/views/tasks/index.html.erb:17: syntax error, unexpected keyword_ensure, expecting ')' + app/views/tasks/index.html.erb:19: syntax error, unexpected keyword_end, expecting ')' + + + Rendered /Users/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 (4.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/diagnostics.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.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.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.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 (106.7ms) + + +Started GET "/" for ::1 at 2016-09-30 11:34:38 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 22ms (Views: 21.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/style.self-7eae9af17f0b777879a070edef2b100f5ca8d5007644b2b40a7c66e99c1b7974.css?body=1" for ::1 at 2016-09-30 11:34:38 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 11:34:38 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 11:34:38 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 11:34:38 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 11:34:38 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 11:34:38 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 11:34:38 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 11:34:38 -0700 + + +Started GET "/tasks/show/12" for ::1 at 2016-09-30 11:34:42 -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 24ms (Views: 22.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-09-30 11:34:45 -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.4ms) +Completed 200 OK in 30ms (Views: 28.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 11:34: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.1ms) +Completed 200 OK in 34ms (Views: 33.3ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 11: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 (1.7ms) +Completed 200 OK in 15ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-7eae9af17f0b777879a070edef2b100f5ca8d5007644b2b40a7c66e99c1b7974.css?body=1" for ::1 at 2016-09-30 11:35:09 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 11:35:09 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 11:35:09 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 11:35:09 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 11:35:09 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 11:35:09 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 11:35:09 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 11:35:09 -0700 + + +Started GET "/" for ::1 at 2016-09-30 11:35: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.3ms) +Completed 200 OK in 32ms (Views: 30.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/style.self-7eae9af17f0b777879a070edef2b100f5ca8d5007644b2b40a7c66e99c1b7974.css?body=1" for ::1 at 2016-09-30 11:35:11 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 11:35:11 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 11:35:11 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 11:35:11 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 11:35:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 11:35:11 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 11:35:11 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 11:35:11 -0700 + + +Started GET "/" for ::1 at 2016-09-30 11:35: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.9ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/style.self-7eae9af17f0b777879a070edef2b100f5ca8d5007644b2b40a7c66e99c1b7974.css?body=1" for ::1 at 2016-09-30 11:35:28 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 11:35:29 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 11:35:29 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 11:35:29 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 11:35:29 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 11:35:29 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 11:35:29 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 11:35:29 -0700 + + +Started GET "/" for ::1 at 2016-09-30 11:37:17 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.8ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `[]' for nil:NilClass): + 8: <%= button_to("Complete?", button_path(@task[:id]), method: :patch) %> + 9: <%= link_to(task.title, show_path(task[:id])) %> + 10: <% else %> + 11: <%= button_to("Complete?", button_path(@task[:id]), method: :patch) %> + 12:
        <%= link_to(task.title, show_path(task[:id])) %>
        + 13: <% end %> + 14: + app/views/tasks/index.html.erb:11:in `block in _app_views_tasks_index_html_erb__1460788860764195402_70277494638200' + app/views/tasks/index.html.erb:4:in `_app_views_tasks_index_html_erb__1460788860764195402_70277494638200' + + + 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.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.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 (69.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.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.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 (104.0ms) + + +Started GET "/" for ::1 at 2016-09-30 11:38:35 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/style.self-7eae9af17f0b777879a070edef2b100f5ca8d5007644b2b40a7c66e99c1b7974.css?body=1" for ::1 at 2016-09-30 11:38:35 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 11:38:35 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 11:38:35 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 11:38:35 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 11:38:35 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 11:38:35 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 11:38:35 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 11:38:35 -0700 + + +Started GET "/" for ::1 at 2016-09-30 11:42:37 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 20ms (Views: 19.0ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/style.self-7eae9af17f0b777879a070edef2b100f5ca8d5007644b2b40a7c66e99c1b7974.css?body=1" for ::1 at 2016-09-30 11:42:37 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 11:42:37 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 11:42:37 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 11:42:37 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 11:42:37 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 11:42:37 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 11:42:37 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 11:42:37 -0700 + + +Started PATCH "/tasks/12/show" for ::1 at 2016-09-30 11:42:39 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"deBR9MMXO4dhoiUV0z2bfsA9cNm4xIzOuYwMjgVrAt3nq8weWwSyfZoVCZGfNy+pzvjo4FuqXBGBhPoSjfKY3A==", "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] +  (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:42:39.377510"], ["id", 12]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/tasks/show/12 +Completed 302 Found in 7ms (ActiveRecord: 2.8ms) + + +Started GET "/tasks/show/12" for ::1 at 2016-09-30 11:42:39 -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.7ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 11:42:43 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 28ms (Views: 27.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/12/show" for ::1 at 2016-09-30 11:42:44 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"N5qKRBFixgkwcyqfHC+xVHlfx2OCYM6S9hZzCuTEWW2l0ReuiXFP88vEBhtQJQWDd5pfWmEOHk3OHoWWbF3DbA==", "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", "2016-09-30 18:42:44.119963"], ["updated_at", "2016-09-30 18:42:44.120394"], ["id", 12]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/tasks/show/12 +Completed 302 Found in 6ms (ActiveRecord: 2.8ms) + + +Started GET "/tasks/show/12" for ::1 at 2016-09-30 11:42:44 -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.8ms) +Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 11:42:47 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.7ms) +Completed 200 OK in 36ms (Views: 35.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/13/show" for ::1 at 2016-09-30 11:42:48 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"Q/DqkfkwkKOwyyLG1fYhQhNOEqafJrZbQsfJ0ps8NZDRu3d7YSMZWUt8DkKZ/JWVHYuKn3xIZoR6zz9OE6WvkQ==", "id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 13]] +  (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:42:48.518843"], ["id", 13]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/tasks/show/13 +Completed 302 Found in 6ms (ActiveRecord: 2.8ms) + + +Started GET "/tasks/show/13" for ::1 at 2016-09-30 11:42:48 -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 (0.8ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 11:42:50 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 26ms (Views: 25.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/13" for ::1 at 2016-09-30 11:42: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 (1.4ms) +Completed 200 OK in 33ms (Views: 31.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 11:42:53 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 39ms (Views: 37.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/13/show" for ::1 at 2016-09-30 11:42:55 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"15p+MpIHcH7wyOa0Zp+GecIL7tMdxOAtE3B9LR42LttF0ePYChT5hAt/yjAqlTKuzM526v6qMPIreIuxlq+02g==", "id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 13]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-09-30 18:42:55.066876"], ["updated_at", "2016-09-30 18:42:55.067291"], ["id", 13]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/tasks/show/13 +Completed 302 Found in 5ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks/show/13" for ::1 at 2016-09-30 11:42:55 -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 (0.8ms) +Completed 200 OK in 17ms (Views: 15.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 11:42:56 -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 33ms (Views: 32.1ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/12/show" for ::1 at 2016-09-30 11:42:58 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"GOyLI/dElewgYMvtyJGtIB0L5/5cxvIuCXWdlSCpqpKKpxbJb1ccFtvX52mEmxn3E85/x7+oIvExfWsJqDAwkw==", "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", nil], ["updated_at", "2016-09-30 18:42:58.381684"], ["id", 12]] +  (2.6ms) commit transaction +Redirected to http://localhost:3000/tasks/show/12 +Completed 302 Found in 6ms (ActiveRecord: 3.0ms) + + +Started GET "/tasks/show/12" for ::1 at 2016-09-30 11:42:58 -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.7ms) +Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 11:42:59 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 27ms (Views: 26.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/13/show" for ::1 at 2016-09-30 11:43:01 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"+TYj/9zBlUf/jmQjOtzYPUHiLxuc9ToqiajB22Zzx1xrfb4VRNIcvQQ5SKd21mzqTye3In+b6vWxoDdH7updXQ==", "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", nil], ["updated_at", "2016-09-30 18:43:01.401354"], ["id", 13]] +  (2.4ms) 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 11:43:01 -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 17ms (Views: 16.2ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 11:43:02 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 36ms (Views: 34.8ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/15/show" for ::1 at 2016-09-30 11:43:04 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"V0WCGy8W7Hu5upCg6rF7GBEyIOVXu37ZEvclu2vIDhrFDh/xtwVlgUINvCSmu8/PH/e43LTVrgYq/9Mn41GUGw==", "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:43:04.009111"], ["id", 15]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/tasks/show/15 +Completed 302 Found in 6ms (ActiveRecord: 2.8ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-09-30 11:43:04 -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: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 11:43:05 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 30ms (Views: 29.2ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-09-30 11:43:22 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 19ms (Views: 18.6ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/style.self-7eae9af17f0b777879a070edef2b100f5ca8d5007644b2b40a7c66e99c1b7974.css?body=1" for ::1 at 2016-09-30 11:43:22 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 11:43:22 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 11:43:22 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 11:43:22 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 11:43:22 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 11:43:22 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 11:43:22 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 11:43:22 -0700 + + +Started GET "/" for ::1 at 2016-09-30 11:43:55 -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 30ms (Views: 29.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-8d240142bd2fe0a644666ad91a9d9cd1c951c4ba2956a289c8be174359acbf05.css?body=1" for ::1 at 2016-09-30 11:43:55 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 11:43:55 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 11:43:55 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 11:43:55 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 11:43:55 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 11:43:55 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 11:43:55 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 11:43:55 -0700 + + +Started GET "/" for ::1 at 2016-09-30 11:43:57 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 19ms (Views: 18.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-8d240142bd2fe0a644666ad91a9d9cd1c951c4ba2956a289c8be174359acbf05.css?body=1" for ::1 at 2016-09-30 11:43:57 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 11:43:57 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 11:43:57 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 11:43:57 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 11:43:57 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 11:43:57 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 11:43:57 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 11:43:57 -0700 + + +Started GET "/" for ::1 at 2016-09-30 11:44:13 -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 36ms (Views: 35.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 11:44:13 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 11:44:13 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 11:44:13 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 11:44:13 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 11:44:13 -0700 + + +Started GET "/assets/style.self-85079399bf594cf5494c61c7daa16743e9dd52fcde73594d1b421ef20e5ff422.css?body=1" for ::1 at 2016-09-30 11:44:13 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 11:44:13 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 11:44:13 -0700 + + +Started GET "/" for ::1 at 2016-09-30 11:44:32 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 32ms (Views: 30.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-554eaefc9e97f9ac4a9c16406a7d5f7ae5bc928cc439aed370e134fbef7e5d98.css?body=1" for ::1 at 2016-09-30 11:44:32 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 11:44:32 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 11:44:32 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 11:44:32 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 11:44:32 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 11:44:32 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 11:44:32 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 11:44:32 -0700 + + +Started GET "/" for ::1 at 2016-09-30 11:44:43 -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 29ms (Views: 28.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/style.self-c60bbe5790a2797b8e837ff9237d90c7f9e6771c65ad43e991ae059c182d2938.css?body=1" for ::1 at 2016-09-30 11:44:43 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 11:44:43 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 11:44:43 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 11:44:43 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 11:44:43 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 11:44:43 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 11:44:43 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 11:44:43 -0700 + + +Started GET "/" for ::1 at 2016-09-30 11:44:48 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 29ms (Views: 28.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-e2ecc1ec3fa050a55ed9104a96818fd4d3f8ba8970ecb3b788aef6cd8ca2c4be.css?body=1" for ::1 at 2016-09-30 11:44:48 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 11:44:48 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 11:44:48 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 11:44:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 11:44:48 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 11:44:48 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 11:44:48 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 11:44:48 -0700 + + +Started GET "/" for ::1 at 2016-09-30 11:45:09 -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 19ms (Views: 18.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/style.self-e2ecc1ec3fa050a55ed9104a96818fd4d3f8ba8970ecb3b788aef6cd8ca2c4be.css?body=1" for ::1 at 2016-09-30 11:45:09 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 11:45:09 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 11:45:09 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 11:45:09 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 11:45:09 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 11:45:09 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 11:45:09 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 11:45:09 -0700 + + +Started GET "/tasks/show/12" for ::1 at 2016-09-30 11:45:09 -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.8ms) +Completed 200 OK in 25ms (Views: 23.4ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/12/show" for ::1 at 2016-09-30 11:45:11 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"qYF+H8rJSt5bzWq99vWD8iJTlkiu82gkZRefykOTqyM7yuP1UtrDJKB6Rjm6/zclLJYOcU2duPtdH2lWywoxIg==", "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", "2016-09-30 18:45:11.395262"], ["updated_at", "2016-09-30 18:45:11.395724"], ["id", 12]] +  (2.6ms) commit transaction +Redirected to http://localhost:3000/tasks/show/12 +Completed 302 Found in 6ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks/show/12" for ::1 at 2016-09-30 11:45:11 -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.7ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/12/show" for ::1 at 2016-09-30 11:45:12 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"F8VAvS60MRIkz9sSzF1JmNq2zmVo2z/fDfeNIoXLFniFjt1Xtqe46N9495aAV/1P1HNWXIu17wA1/3u+DVKMeQ==", "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", nil], ["updated_at", "2016-09-30 18:45:12.146421"], ["id", 12]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/tasks/show/12 +Completed 302 Found in 5ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks/show/12" for ::1 at 2016-09-30 11:45:12 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 11:45:13 -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 26ms (Views: 24.8ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-09-30 13:37:11 -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 (7.6ms) +Completed 200 OK in 315ms (Views: 304.1ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/show/12" for ::1 at 2016-09-30 13:37: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 (1.9ms) +Completed 200 OK in 31ms (Views: 17.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/12/show" for ::1 at 2016-09-30 13:37:16 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"a+VR/5hjlGPNcH4UWTB3NzYBhUviCLQxl9xrBK+4CpXYPzdbzQLg/aa6V3Qz9CYvX7gEhJnp0/HXbnnB16sAIQ==", "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-09-30 20:37:16.543567"], ["updated_at", "2016-09-30 20:37:16.545648"], ["id", 12]] +  (2.3ms) commit transaction +Redirected to http://localhost:3000/tasks/show/12 +Completed 302 Found in 10ms (ActiveRecord: 3.0ms) + + +Started GET "/tasks/show/12" for ::1 at 2016-09-30 13:37: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 (0.9ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/12/show" for ::1 at 2016-09-30 13:37:17 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"y0iDgB9CNyvAZug4SWW7oeAmfY0KSNU0SPoJPu0yGDZ4kuUkSiNDtauswVgjoeq5iZ/8QnGpsvQISBv7lSESgg==", "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", nil], ["updated_at", "2016-09-30 20:37:17.117910"], ["id", 12]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/tasks/show/12 +Completed 302 Found in 6ms (ActiveRecord: 2.8ms) + + +Started GET "/tasks/show/12" for ::1 at 2016-09-30 13:37:17 -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.8ms) +Completed 200 OK in 31ms (Views: 16.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 13:37: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.8ms) +Completed 200 OK in 24ms (Views: 23.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/12" for ::1 at 2016-09-30 13:37:40 -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 (9.3ms) +Completed 200 OK in 41ms (Views: 39.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 13:37:57 -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 29ms (Views: 28.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/13" for ::1 at 2016-09-30 13:37:59 -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.4ms) +Completed 200 OK in 23ms (Views: 21.5ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/13/show" for ::1 at 2016-09-30 13:38:00 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"GVEK38ci6pixwr6KKNJlexAIupqJyT6do51A+vWwFV6qi2x7kkOeBtoIl+pCFjRjebE7VfIoWV3jL1I/jaMf6g==", "id"=>"13"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 13]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-09-30 20:38:00.516566"], ["updated_at", "2016-09-30 20:38:00.517445"], ["id", 13]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/tasks/show/13 +Completed 302 Found in 8ms (ActiveRecord: 3.2ms) + + +Started GET "/tasks/show/13" for ::1 at 2016-09-30 13:38:00 -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 (0.7ms) +Completed 200 OK in 15ms (Views: 13.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 13:38: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.5ms) +Completed 200 OK in 29ms (Views: 28.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/13" for ::1 at 2016-09-30 13:38:03 -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.4ms) +Completed 200 OK in 30ms (Views: 28.4ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 13:38:05 -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 30ms (Views: 29.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/13" for ::1 at 2016-09-30 13:38:18 -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.7ms) +Completed 200 OK in 34ms (Views: 32.2ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 13:38:19 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 31ms (Views: 29.9ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 13:38:20 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 20ms (Views: 18.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-e2ecc1ec3fa050a55ed9104a96818fd4d3f8ba8970ecb3b788aef6cd8ca2c4be.css?body=1" for ::1 at 2016-09-30 13:38:20 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 13:38:20 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 13:38:20 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 13:38:20 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 13:38:20 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 13:38:20 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 13:38:20 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 13:38:20 -0700 + + +Started GET "/tasks/show/12" for ::1 at 2016-09-30 13:38:24 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.4ms) 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.2ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/12/show" for ::1 at 2016-09-30 13:38:25 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"Csdk+v7CGiE7Bv/Z99RCEtKwWRult4kp0uIydGXcwzq5HQJeq6Nuv1DM1rmdEBMKuwnY1N5W7umSUCCxHc/Jjg==", "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-09-30 20:38:25.059774"], ["updated_at", "2016-09-30 20:38:25.060186"], ["id", 12]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/tasks/show/12 +Completed 302 Found in 6ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks/show/12" for ::1 at 2016-09-30 13:38:25 -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 (0.6ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 13:38:26 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 24ms (Views: 22.8ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 13:38:51 -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 37ms (Views: 34.9ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/style.self-152af96673054df1def07134af7733d3848cff81e616f6bd3e7a4e966effa715.css?body=1" for ::1 at 2016-09-30 13:38:51 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 13:38:51 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 13:38:51 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 13:38:51 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 13:38:51 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 13:38:51 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 13:38:51 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 13:38:51 -0700 + + +Started GET "/tasks/show/13" for ::1 at 2016-09-30 13:38: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.4ms) +Completed 200 OK in 23ms (Views: 21.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 13:38:55 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 27ms (Views: 25.7ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-09-30 13:39:18 -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.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-5e6b870337e5725c540e749f213e2028210df64347d43f554c6dd4f119bf29da.css?body=1" for ::1 at 2016-09-30 13:39:18 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 13:39:18 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 13:39:18 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 13:39:18 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 13:39:18 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 13:39:18 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 13:39:18 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 13:39:18 -0700 + + +Started GET "/tasks/show/15" for ::1 at 2016-09-30 13:39:20 -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 27ms (Views: 24.6ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/15/show" for ::1 at 2016-09-30 13:39:21 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"zmEOz6kTLp3G3QBnQyr5wrzfrzgEafHyyzYNBrAtFb19u2hr/HJaA60XKQcp7qja1WYu93+IljKLhB/DyD4fCQ==", "id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-09-30 20:39:21.078464"], ["updated_at", "2016-09-30 20:39:21.079135"], ["id", 15]] +  (2.4ms) 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 13:39:21 -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.8ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/15/show" for ::1 at 2016-09-30 13:39:21 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"n4tZ7KrXwqRlTCS7VwV6vnBHBvcjHHdo0hne1BLfYWEsUT9I/7a2Og6GDds9wSumGf6HOFj9EKiSq8wRasxr1Q==", "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 20:39:21.677877"], ["id", 15]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/tasks/show/15 +Completed 302 Found in 6ms (ActiveRecord: 2.8ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-09-30 13:39:21 -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 14ms (Views: 13.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 13:39:22 -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 25ms (Views: 23.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-09-30 13:39:23 -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.4ms) +Completed 200 OK in 33ms (Views: 31.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/15/edit" for ::1 at 2016-09-30 13:39:25 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] + Rendered tasks/edit.html.erb within layouts/application (15.9ms) +Completed 200 OK in 32ms (Views: 30.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 13:39:26 -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 24ms (Views: 22.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-09-30 13:47:00 -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.6ms) +Completed 200 OK in 22ms (Views: 20.8ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 13:47:04 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 29ms (Views: 28.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/12" for ::1 at 2016-09-30 13:47: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.4ms) +Completed 200 OK in 21ms (Views: 19.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 13:47:07 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 35ms (Views: 34.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/12" for ::1 at 2016-09-30 13:47:11 -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.5ms) +Completed 200 OK in 35ms (Views: 33.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 13:47:13 -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 32ms (Views: 31.2ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 13:49:39 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 24ms (Views: 21.2ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/style.self-5e6b870337e5725c540e749f213e2028210df64347d43f554c6dd4f119bf29da.css?body=1" for ::1 at 2016-09-30 13:49:39 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 13:49:39 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 13:49:39 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 13:49:39 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 13:49:39 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 13:49:39 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 13:49:39 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 13:49:39 -0700 + + +Started GET "/tasks/show/13" for ::1 at 2016-09-30 13:49:40 -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.0ms) +Completed 200 OK in 24ms (Views: 22.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/13/show" for ::1 at 2016-09-30 13:49:41 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"5Q3mr99A4Sr3IlKg9IKtGrjAZvQD3OWGzSNv1+hW9oBW14ALiiGVtJzoe8CeRvwC0XnnO3g9gkaNkX0SkEX8NA==", "id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 13]] +  (0.1ms) begin transaction + SQL (0.7ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", nil], ["updated_at", "2016-09-30 20:49:41.540719"], ["id", 13]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/tasks/show/13 +Completed 302 Found in 7ms (ActiveRecord: 3.3ms) + + +Started GET "/tasks/show/13" for ::1 at 2016-09-30 13:49:41 -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 15ms (Views: 14.0ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/13/show" for ::1 at 2016-09-30 13:49:42 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"D8gPbXsIie6dY8n/KNK65RpL/TXZXUBGh2cVvbw84t68EmnJLmn9cPap4J9CFuv9c/J8+qK8J4bH1Qd4xC/oag==", "id"=>"13"} + Task Load (0.2ms) 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 20:49:42.560604"], ["updated_at", "2016-09-30 20:49:42.561108"], ["id", 13]] +  (2.6ms) commit transaction +Redirected to http://localhost:3000/tasks/show/13 +Completed 302 Found in 6ms (ActiveRecord: 3.1ms) + + +Started GET "/tasks/show/13" for ::1 at 2016-09-30 13:49:42 -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 16ms (Views: 14.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 13:49:43 -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 23ms (Views: 21.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-30 13:50:05 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (3.7ms) +Completed 200 OK in 33ms (Views: 28.5ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-09-30 13:50:07 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 31ms (Views: 30.0ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/show/12" for ::1 at 2016-09-30 13:50:07 -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.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/12/show" for ::1 at 2016-09-30 13:50:09 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"mXNtFEJ6h/pxTvW9SkaE3lxOdUbN6RR35z6Np2TCQkQqqQuwFxvzZBqE3N0ggtXGNff0ibYIc7enjJ9iHNFI8A==", "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", nil], ["updated_at", "2016-09-30 20:50:09.019604"], ["id", 12]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/tasks/show/12 +Completed 302 Found in 6ms (ActiveRecord: 2.8ms) + + +Started GET "/tasks/show/12" for ::1 at 2016-09-30 13:50:09 -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.7ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/12/edit" for ::1 at 2016-09-30 13:50:10 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] + Rendered tasks/edit.html.erb within layouts/application (2.9ms) +Completed 200 OK in 19ms (Views: 18.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 13:50:12 -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 24ms (Views: 23.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/13" for ::1 at 2016-09-30 14:55:27 -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 24ms (Views: 16.4ms | ActiveRecord: 0.7ms) + + +Started GET "/" for ::1 at 2016-09-30 14:55:29 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 33ms (Views: 32.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/show/13" for ::1 at 2016-09-30 15:01:57 -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.2ms) +Completed 200 OK in 32ms (Views: 30.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/13/show" for ::1 at 2016-09-30 15:01:58 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"+aajTSwaiwfmSTippf613yudZhmbyutulLnIf40O63xKfMXpeXv/mY2DEcnPOuTHQiTn1uArjK7UC9q69R3hyA==", "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", nil], ["updated_at", "2016-09-30 22:01:58.161844"], ["id", 13]] +  (2.3ms) commit transaction +Redirected to http://localhost:3000/tasks/show/13 +Completed 302 Found in 6ms (ActiveRecord: 2.8ms) + + +Started GET "/tasks/show/13" for ::1 at 2016-09-30 15:01:58 -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.6ms) +Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 15:01: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.6ms) +Completed 200 OK in 27ms (Views: 26.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/13" for ::1 at 2016-09-30 15:02:00 -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.2ms) +Completed 200 OK in 36ms (Views: 32.7ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 15:02:02 -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 32ms (Views: 31.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-30 15:32:42 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (3.6ms) +Completed 200 OK in 27ms (Views: 25.8ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks/create" for ::1 at 2016-09-30 15:33:04 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"acL9RpGJZPetdxp34sYwxVfvzWzuetRxqmo78yhKVfXaGJvixOgQaca9MxeIAmHdPlZMo5Wbs7Hq2Ck2UFlfQQ==", "task"=>{"title"=>"lala", "description"=>"lalalala"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.5ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "lala"], ["description", "lalalala"], ["created_at", "2016-09-30 22:33:04.950501"], ["updated_at", "2016-09-30 22:33:04.950501"]] +  (2.8ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 7ms (ActiveRecord: 3.4ms) + + +Started GET "/" for ::1 at 2016-09-30 15:33:04 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/16" for ::1 at 2016-09-30 15:33:06 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] + Rendered tasks/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 23ms (Views: 21.6ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/16/show" for ::1 at 2016-09-30 15:33:09 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"i0cZiUPJ7b0kDBWW0A4GF07yXezIzbDczatuK9lkqIk4nX8tFqiZI0/GPPa6ylcPJ0vcI7Ms1xyNGXzuoXeiPQ==", "id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-09-30 22:33:09.357838"], ["updated_at", "2016-09-30 22:33:09.358247"], ["id", 16]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/tasks/show/16 +Completed 302 Found in 6ms (ActiveRecord: 2.8ms) + + +Started GET "/tasks/show/16" for ::1 at 2016-09-30 15:33:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/16/edit" for ::1 at 2016-09-30 15:33:11 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] + Rendered tasks/edit.html.erb within layouts/application (2.0ms) +Completed 200 OK in 18ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/16/update" for ::1 at 2016-09-30 15:33:13 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"Fugp+mFOWf+jEdC7U69olGLNQi7aZXtzngDWzk13VDmlMk9eNC8tYcjb+ds5azmMC3TD4aGEHLPessQLNWRejQ==", "task"=>{"title"=>"lala", "description"=>"lalalala", "completed_at"=>"2016-09-30T22:33:09"}, "commit"=>"Update Task", "id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] +  (0.1ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-09-30 22:33:09.000000"], ["updated_at", "2016-09-30 22:33:13.870705"], ["id", 16]] +  (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 15:33:13 -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 16ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/16" for ::1 at 2016-09-30 15:33:15 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] + Rendered tasks/show.html.erb within layouts/application (1.7ms) +Completed 200 OK in 25ms (Views: 23.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 15:33:19 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 27ms (Views: 26.1ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-09-30 15:33:20 -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.1ms) +Completed 200 OK in 28ms (Views: 27.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 15:33:22 -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 33ms (Views: 31.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/12" for ::1 at 2016-09-30 15:38:06 -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.3ms) +Completed 200 OK in 31ms (Views: 29.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 15:38:09 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 36ms (Views: 35.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/12" for ::1 at 2016-09-30 15:38:12 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] + Rendered tasks/show.html.erb within layouts/application (1.8ms) +Completed 200 OK in 30ms (Views: 29.0ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/12/destroy" for ::1 at 2016-09-30 15:38:14 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"TApVAPWu2XSNL5sY3VmHNYzk91S+5obPSakfxrLtSB7/0DOkoM+t6ublsni3ndYt5V12m8UH4Q8JGw0Dyv5Cqg==", "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] +  (0.1ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 12]] +  (2.7ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 3.1ms) + + +Started GET "/" for ::1 at 2016-09-30 15:38:14 -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/13" for ::1 at 2016-09-30 15:38:15 -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 (2.1ms) +Completed 200 OK in 31ms (Views: 29.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 15:38:22 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 34ms (Views: 33.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/13" for ::1 at 2016-09-30 15:38:24 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"13"} + Task Load (0.3ms) 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 32ms (Views: 30.6ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/13/show" for ::1 at 2016-09-30 15:38:25 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"ByHeHBEgbsuuklVSjNUiuihzbdugTiinSHzdAiSBYUK0+7i4REEaVcVYfDLmEXOiQcrsFNuvT2cIzs/HXJJr9g==", "id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 13]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-09-30 22:38:25.448983"], ["updated_at", "2016-09-30 22:38:25.449344"], ["id", 13]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/tasks/show/13 +Completed 302 Found in 5ms (ActiveRecord: 2.8ms) + + +Started GET "/tasks/show/13" for ::1 at 2016-09-30 15:38:25 -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.7ms) +Completed 200 OK in 22ms (Views: 20.8ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 15:38:27 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 28ms (Views: 26.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/show/13" for ::1 at 2016-09-30 15:38: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 (1.1ms) +Completed 200 OK in 42ms (Views: 40.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 15:42:07 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 32ms (Views: 31.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/13" for ::1 at 2016-09-30 15:42: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 (1.4ms) +Completed 200 OK in 34ms (Views: 31.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 15:42: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.2ms) +Completed 200 OK in 30ms (Views: 29.1ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-10-01 20:33:38 -0700 + ActiveRecord::SchemaMigration Load (0.3ms) 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 (9.8ms) +Completed 200 OK in 571ms (Views: 553.1ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/style.self-fc5b6bf8322927fbd37537fd446809ced21284bf3aba9e7529d5f7b078dd8d4c.css?body=1" for ::1 at 2016-10-01 20:33:39 -0700 + + +Started GET "/" for ::1 at 2016-10-01 20:33:41 -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 16ms (Views: 14.6ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/style.self-fc5b6bf8322927fbd37537fd446809ced21284bf3aba9e7529d5f7b078dd8d4c.css?body=1" for ::1 at 2016-10-01 20:33:41 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-01 20:33:41 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-01 20:33:41 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-01 20:33:41 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-01 20:33:41 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-01 20:33:41 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-01 20:33:41 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-01 20:33:41 -0700 + + +Started GET "/tasks/show/13" for ::1 at 2016-10-01 20:33:42 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"13"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 13]] + Rendered tasks/show.html.erb within layouts/application (2.9ms) +Completed 200 OK in 48ms (Views: 22.7ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-10-01 20:33:44 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 39ms (Views: 37.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-10-01 20:33:45 -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.9ms) +Completed 200 OK in 24ms (Views: 22.9ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/15/show" for ::1 at 2016-10-01 20:33:47 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"XBV1+OwrZhAt3bO+18OXmk0ZkabxynVv0yydCU5BCRE+NaZIA9VOI0KLM8neT40wmqau3Z2skUlFDvx7YhoKBQ==", "id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-10-02 03:33:47.290051"], ["updated_at", "2016-10-02 03:33:47.298127"], ["id", 15]] +  (2.7ms) commit transaction +Redirected to http://localhost:3000/tasks/show/15 +Completed 302 Found in 15ms (ActiveRecord: 3.2ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-10-01 20:33:47 -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 20ms (Views: 18.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-10-01 20:33:48 -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 25ms (Views: 23.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-10-01 20:33:49 -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.3ms) +Completed 200 OK in 31ms (Views: 29.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/15/show" for ::1 at 2016-10-01 20:33:50 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"V7cX7u4wWjVUpLkbwFY2ZOSmJBe9mpypdHpHHfoeMNc1l8ReAc5yBjvyOWzJ2izOMxkbbNH8eI/iWCZv1kUzww==", "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-10-02 03:33:50.210305"], ["id", 15]] +  (2.6ms) commit transaction +Redirected to http://localhost:3000/tasks/show/15 +Completed 302 Found in 7ms (ActiveRecord: 3.1ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-10-01 20:33:50 -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: 14.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-10-01 20:33:51 -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 25ms (Views: 24.0ms | ActiveRecord: 0.2ms) From 800d5153ed8194413926edb12660434ca46af0c7 Mon Sep 17 00:00:00 2001 From: Briana Eng Date: Mon, 3 Oct 2016 09:26:49 -0700 Subject: [PATCH 11/31] Added reflection --- README.md | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2b96daf9c..bc741338f 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 - From 091963e38111b64a1d5e2e6e1dd5c6712d3e47fb Mon Sep 17 00:00:00 2001 From: Briana Eng Date: Mon, 3 Oct 2016 09:27:31 -0700 Subject: [PATCH 12/31] Changed button route --- config/routes.rb | 2 +- db/development.sqlite3 | Bin 20480 -> 20480 bytes log/development.log | 421 +++++++++++++++++++++++++++++++++++++++++ 3 files changed, 422 insertions(+), 1 deletion(-) diff --git a/config/routes.rb b/config/routes.rb index 448f4e8a7..01dc7ba60 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -14,7 +14,7 @@ patch 'tasks/:id/update' => 'tasks#update', as: 'update' - patch 'tasks/:id/show' => 'tasks#button', as: 'button' + patch 'tasks/:id/button' => 'tasks#button', as: 'button' delete 'tasks/:id/destroy' => 'tasks#destroy', as: 'destroy' diff --git a/db/development.sqlite3 b/db/development.sqlite3 index 90ac130e3c5e9c647a056ec6ec6976ef3320aa8e..044262291b6476b7b84b774cbc862f85733d47af 100644 GIT binary patch delta 195 zcmZozz}T>Wae_2s%0wAw#*~c-3-$T=Js6nynHcz)_~-J?;+wTuP(X`svXz~*ps|9X znU#Twm7$TInYoFfnepT^_VS{J2D%2wG8V>0rWTWD*`+XgO#W|YAqtl>)-y3SG%_+| zU||^i5U%<=GU@hwC=vb0kT#}gw)FXv3&B)Bk)LhTN*xbb2eDX;q97vfU7ei$gnojOtsqqYKy>ooL_6r< zcF#H7s-aawj}a|Tqa`hGyUWaDFVbZ-@z!34)vUe;{**bJM*)sOS}CnE95Vnd+&-WD z+f<-&=VIs{`G!8-J5R&kO9Mv%67*rvCvICT+C3J=B3doDY6%pANMgw1wzOKN7ByEY alS&anR<2jX;kSa7nMJ`9V^U+TbN>VCz%Ld6 diff --git a/log/development.log b/log/development.log index 1a5e3424a..d2644308e 100644 --- a/log/development.log +++ b/log/development.log @@ -14285,3 +14285,424 @@ 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 25ms (Views: 24.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-10-03 09:03:35 -0700 + ActiveRecord::SchemaMigration Load (2.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (2.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (19.2ms) +Completed 200 OK in 595ms (Views: 573.1ms | ActiveRecord: 3.1ms) + + +Started GET "/" for ::1 at 2016-10-03 09:04:10 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 35ms (Views: 32.5ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/style.self-fc5b6bf8322927fbd37537fd446809ced21284bf3aba9e7529d5f7b078dd8d4c.css?body=1" for ::1 at 2016-10-03 09:04:10 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-03 09:04:10 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-03 09:04:10 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-03 09:04:10 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-03 09:04:10 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-03 09:04:10 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-03 09:04:10 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-03 09:04:10 -0700 + + +Started GET "/tasks/show/15" for ::1 at 2016-10-03 09:04:11 -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 43ms (Views: 19.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/15/button" for ::1 at 2016-10-03 09:04:12 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"JoPfetD+3f2TQfaK9awYP5v0caB5wnHSxRi4nAPXG1F3Dp6w6OnbbKb2/NQFUJTGpi313+eL2F1eBbCdl6VIxg==", "id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-10-03 16:04:12.674163"], ["updated_at", "2016-10-03 16:04:12.683258"], ["id", 15]] +  (2.7ms) commit transaction +Redirected to http://localhost:3000/tasks/show/15 +Completed 302 Found in 17ms (ActiveRecord: 3.4ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-10-03 09:04: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.3ms) +Completed 200 OK in 20ms (Views: 17.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/15/button" for ::1 at 2016-10-03 09:04:13 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"VzVeq//3DWP7wQ+oO6da1GGgu1x8iA+IoFnGu9ZAcjgGuB9hx+AL8s52BfbLW9YtXHk/I+LBpgc7RM66QjIhrw==", "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-10-03 16:04:13.431221"], ["id", 15]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/tasks/show/15 +Completed 302 Found in 6ms (ActiveRecord: 2.8ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-10-03 09:04:13 -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.6ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-10-03 09:04:14 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 24ms (Views: 23.1ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/show/13" for ::1 at 2016-10-03 09:05:01 -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.6ms) +Completed 200 OK in 24ms (Views: 22.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/13/button" for ::1 at 2016-10-03 09:05:05 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"vAR+JAXvUvalx4y1OknfQhhnn7IXcY9P9uYnjCjaok/tiT/uPfhUZ5BwhuvKtVO7Jb4bzYk4JsBt+y+NvKjx2A==", "id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 13]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", nil], ["updated_at", "2016-10-03 16:05:05.388607"], ["id", 13]] +  (2.9ms) commit transaction +Redirected to http://localhost:3000/tasks/show/13 +Completed 302 Found in 6ms (ActiveRecord: 3.3ms) + + +Started GET "/tasks/show/13" for ::1 at 2016-10-03 09:05:05 -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.6ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/13/button" for ::1 at 2016-10-03 09:05:06 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"vq1H5XyV98V6I15iJSiN09hVdWgussbMs5FbHsVpeCPvIAYvRILxVE+UVDzV1AEq5YzxF7D7b0MojFMfURsrtA==", "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-10-03 16:05:06.106889"], ["updated_at", "2016-10-03 16:05:06.107278"], ["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-10-03 09:05:06 -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.6ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/13/button" for ::1 at 2016-10-03 09:05:06 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"L5jZyCg3KlBz1wncH/gUmMPjU6OSemAt9Y/hM+L5Re9+FZgCECAswUZgA4LvBJhh/jrX3AwzyaJukukydosWeA==", "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", nil], ["updated_at", "2016-10-03 16:05:06.784128"], ["id", 13]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/tasks/show/13 +Completed 302 Found in 5ms (ActiveRecord: 2.8ms) + + +Started GET "/tasks/show/13" for ::1 at 2016-10-03 09:05:06 -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.6ms) +Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/13/button" for ::1 at 2016-10-03 09:05:07 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"Tfo3w4lD5/3maNWmcs8RAiAdCpEy74E8sdz+VicNpgAcd3YJsVThbNPf3/iCM537HcSO7qymKLMqwfZXs3/1lw==", "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-10-03 16:05:07.244544"], ["updated_at", "2016-10-03 16:05:07.245009"], ["id", 13]] +  (2.6ms) commit transaction +Redirected to http://localhost:3000/tasks/show/13 +Completed 302 Found in 6ms (ActiveRecord: 3.0ms) + + +Started GET "/tasks/show/13" for ::1 at 2016-10-03 09:05:07 -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 15ms (Views: 14.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/13/edit" for ::1 at 2016-10-03 09:05:08 -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 (73.8ms) +Completed 200 OK in 95ms (Views: 93.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-10-03 09:05:11 -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 28ms (Views: 27.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/13" for ::1 at 2016-10-03 09:05:12 -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.7ms) +Completed 200 OK in 27ms (Views: 24.5ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/13/destroy" for ::1 at 2016-10-03 09:05:14 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"IhAxwhZ3cja1PUPPOELXxuYnMrq7gTQnt/3iD3GKpF1znXAILmB0p4CKSZHIvls/2/62xSXInags4OoO5fj3yg==", "id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 13]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 13]] +  (2.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.9ms) + + +Started GET "/" for ::1 at 2016-10-03 09:05:14 -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: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/16" for ::1 at 2016-10-03 09:05:18 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] + Rendered tasks/show.html.erb within layouts/application (2.5ms) +Completed 200 OK in 26ms (Views: 24.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/16/edit" for ::1 at 2016-10-03 09:05:19 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] + Rendered tasks/edit.html.erb within layouts/application (1.7ms) +Completed 200 OK in 18ms (Views: 16.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-10-03 09:05:42 -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 23ms (Views: 22.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for ::1 at 2016-10-03 09:05:44 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (4.3ms) +Completed 200 OK in 25ms (Views: 23.3ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-10-03 09:05:49 -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 28ms (Views: 27.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/16" for ::1 at 2016-10-03 09:09:04 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] + Rendered tasks/show.html.erb within layouts/application (2.9ms) +Completed 200 OK in 25ms (Views: 23.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/16/button" for ::1 at 2016-10-03 09:09:05 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"QnYYstS1X5sM8odwayW39Sk/s93f2JnpDFf+Ey401L4T+1l47KJZCjlFjS6b2TsMFOY3okGRMGaXSvYSukaHKQ==", "id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", nil], ["updated_at", "2016-10-03 16:09:05.936618"], ["id", 16]] +  (2.5ms) commit transaction +Redirected to http://localhost:3000/tasks/show/16 +Completed 302 Found in 5ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks/show/16" for ::1 at 2016-10-03 09:09:05 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/16/button" for ::1 at 2016-10-03 09:09:07 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"m5CT7/N0zbEzxkEJ+WyVhzz9/lJvUxZI/snjPkUevFfKHdIly2PLIAZxS1cJkBl+ASR6LfEav8dl1Os/0WzvwA==", "id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] +  (0.1ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-10-03 16:09:07.335169"], ["updated_at", "2016-10-03 16:09:07.335569"], ["id", 16]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/tasks/show/16 +Completed 302 Found in 6ms (ActiveRecord: 2.8ms) + + +Started GET "/tasks/show/16" for ::1 at 2016-10-03 09:09:07 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/16/edit" for ::1 at 2016-10-03 09:09:33 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] + Rendered tasks/edit.html.erb within layouts/application (1.7ms) +Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-10-03 09:09: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.1ms) +Completed 200 OK in 33ms (Views: 31.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/16" for ::1 at 2016-10-03 09:10:31 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] + Rendered tasks/show.html.erb within layouts/application (2.7ms) +Completed 200 OK in 26ms (Views: 24.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-10-03 09:10:33 -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: 32.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/show/16" for ::1 at 2016-10-03 09:16:43 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] + Rendered tasks/show.html.erb within layouts/application (1.9ms) +Completed 200 OK in 33ms (Views: 31.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/16/button" for ::1 at 2016-10-03 09:16:44 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"A1dI/8r3URyyzFnh8VByTQzy3sLa0qrCHsNrFMPjb5lS2gk18uBXjYd7U78BrP60MStavUSbA02F3mMVV5E8Dg==", "id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", nil], ["updated_at", "2016-10-03 16:16:44.163454"], ["id", 16]] +  (2.5ms) commit transaction +Redirected to http://localhost:3000/tasks/show/16 +Completed 302 Found in 6ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks/show/16" for ::1 at 2016-10-03 09:16:44 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/16/button" for ::1 at 2016-10-03 09:16:45 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"LRbK5G0cGPc+lKxbsptKnUSM5KBd18jw3BG+AG6tVlZ8m4suVQseZgsjpgVCZ8ZkeVVg38OeYX9HDLYB+t8FwQ==", "id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-10-03 16:16:45.091517"], ["updated_at", "2016-10-03 16:16:45.092151"], ["id", 16]] +  (2.3ms) commit transaction +Redirected to http://localhost:3000/tasks/show/16 +Completed 302 Found in 6ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks/show/16" for ::1 at 2016-10-03 09:16:45 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/16/button" for ::1 at 2016-10-03 09:26:55 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"e9D9V86YFoSL5A8icXqzDhwk0LUDrJ3YSuDxGNYYDqgqXbyd9o8QFb5TBXyBhj/3If1Uyp3lNFfR/fkZQmpdPw==", "id"=>"16"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", nil], ["updated_at", "2016-10-03 16:26:55.791007"], ["id", 16]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/tasks/show/16 +Completed 302 Found in 32ms (ActiveRecord: 3.7ms) + + +Started GET "/tasks/show/16" for ::1 at 2016-10-03 09:26:55 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] + Rendered tasks/show.html.erb within layouts/application (2.3ms) +Completed 200 OK in 252ms (Views: 250.5ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/16/button" for ::1 at 2016-10-03 09:26:57 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"SRwiKi5NQaBcStIKG+XiHjrOvOD41NI6r2I+w7er4TwYkWPgFlpHMWn92FTrGW7nBxc4n2ade7U0fzbCI9myqw==", "id"=>"16"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-10-03 16:26:57.037477"], ["updated_at", "2016-10-03 16:26:57.038191"], ["id", 16]] +  (2.3ms) commit transaction +Redirected to http://localhost:3000/tasks/show/16 +Completed 302 Found in 8ms (ActiveRecord: 2.8ms) + + +Started GET "/tasks/show/16" for ::1 at 2016-10-03 09:26:57 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 17ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-10-03 09:26:58 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 30ms (Views: 28.8ms | ActiveRecord: 0.2ms) From 4b86e88e50f51acb356c3ccf3af3b40eda39588f Mon Sep 17 00:00:00 2001 From: Briana Eng Date: Mon, 3 Oct 2016 09:28:02 -0700 Subject: [PATCH 13/31] Formatted reflection --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index bc741338f..2cde02025 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ #Reflection -**What went well?** +**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?** +**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?** +**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 ✅ From f0f1d8896bd686a1bfd9669e68d160f0eed35551 Mon Sep 17 00:00:00 2001 From: Briana Eng Date: Sat, 22 Oct 2016 12:05:20 -0700 Subject: [PATCH 14/31] Initial files for omniauth --- .gitignore | 6 + Gemfile | 12 +- Gemfile.lock | 43 + app/assets/javascripts/sessions.coffee | 3 + app/assets/stylesheets/sessions.scss | 3 + app/controllers/sessions_controller.rb | 25 + app/controllers/tasks_controller.rb | 43 +- app/helpers/sessions_helper.rb | 2 + app/models/task.rb | 5 + app/models/user.rb | 13 + app/views/layouts/application.html.erb | 1 + app/views/sessions/create.html.erb | 2 + app/views/tasks/_form.html.erb | 15 + app/views/tasks/edit.html.erb | 6 +- app/views/tasks/new.html.erb | 8 +- app/views/tasks/show.html.erb | 2 +- config/initializers/omniauth.rb | 3 + config/routes.rb | 7 +- db/development.sqlite3 | Bin 20480 -> 24576 bytes .../20161004145644_add_notes_to_task.rb | 5 + db/migrate/20161018170119_create_users.rb | 12 + db/schema.rb | 12 +- log/development.log | 853 ++++++++++++++++++ test/controllers/sessions_controller_test.rb | 19 + test/controllers/tasks_controller_test.rb | 15 + test/fixtures/tasks.yml | 15 +- test/fixtures/users.yml | 17 + test/models/user_test.rb | 7 + test/test_helper.rb | 5 + 29 files changed, 1127 insertions(+), 32 deletions(-) create mode 100644 app/assets/javascripts/sessions.coffee create mode 100644 app/assets/stylesheets/sessions.scss create mode 100644 app/controllers/sessions_controller.rb create mode 100644 app/helpers/sessions_helper.rb create mode 100644 app/models/user.rb create mode 100644 app/views/sessions/create.html.erb create mode 100644 app/views/tasks/_form.html.erb create mode 100644 config/initializers/omniauth.rb create mode 100644 db/migrate/20161004145644_add_notes_to_task.rb create mode 100644 db/migrate/20161018170119_create_users.rb create mode 100644 test/controllers/sessions_controller_test.rb create mode 100644 test/fixtures/users.yml create mode 100644 test/models/user_test.rb 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/Gemfile b/Gemfile index e87fad5fc..e53f6abf0 100644 --- a/Gemfile +++ b/Gemfile @@ -1,6 +1,13 @@ source 'https://rubygems.org' - +# 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 @@ -35,6 +42,7 @@ gem 'sdoc', '~> 0.4.0', group: :doc group :development, :test do # Call 'byebug' anywhere in the code to stop execution and get a debugger console gem 'byebug' + gem 'dotenv-rails' end group :development do @@ -43,5 +51,5 @@ group :development do # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring gem 'spring' + gem 'better_errors' end - diff --git a/Gemfile.lock b/Gemfile.lock index 187046034..231771837 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -37,10 +37,16 @@ GEM thread_safe (~> 0.3, >= 0.3.4) tzinfo (~> 1.1) arel (6.0.3) + awesome_print (1.7.0) + 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) @@ -50,10 +56,21 @@ GEM coffee-script-source (1.10.0) concurrent-ruby (1.0.2) debug_inspector (0.0.2) + dotenv (2.1.1) + dotenv-rails (2.1.1) + dotenv (= 2.1.1) + railties (>= 4.0, < 5.1) erubis (2.7.0) execjs (2.7.0) + faraday (0.9.2) + multipart-post (>= 1.2, < 3) globalid (0.3.7) activesupport (>= 4.1.0) + hashie (3.4.6) + 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) @@ -63,6 +80,7 @@ GEM railties (>= 4.2.0) thor (>= 0.14, < 2.0) json (1.8.3) + jwt (1.5.6) loofah (2.0.3) nokogiri (>= 1.5.9) mail (2.6.4) @@ -73,9 +91,26 @@ GEM 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) pkg-config (1.1.7) rack (1.6.4) rack-test (0.6.3) @@ -136,6 +171,7 @@ GEM 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) @@ -146,10 +182,17 @@ PLATFORMS ruby DEPENDENCIES + awesome_print + better_errors byebug coffee-rails (~> 4.1.0) + dotenv-rails + hirb + hirb-unicode jbuilder (~> 2.0) jquery-rails + omniauth + omniauth-github rails (= 4.2.7) sass-rails (~> 5.0) sdoc (~> 0.4.0) diff --git a/app/assets/javascripts/sessions.coffee b/app/assets/javascripts/sessions.coffee new file mode 100644 index 000000000..24f83d18b --- /dev/null +++ b/app/assets/javascripts/sessions.coffee @@ -0,0 +1,3 @@ +# Place all the behaviors and hooks related to the matching controller here. +# All this logic will automatically be available in application.js. +# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/app/assets/stylesheets/sessions.scss b/app/assets/stylesheets/sessions.scss new file mode 100644 index 000000000..7bef9cf82 --- /dev/null +++ b/app/assets/stylesheets/sessions.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the sessions controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/app/controllers/sessions_controller.rb b/app/controllers/sessions_controller.rb new file mode 100644 index 000000000..38f337884 --- /dev/null +++ b/app/controllers/sessions_controller.rb @@ -0,0 +1,25 @@ +class SessionsController < ApplicationController + def create + 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 :back + end + + def destroy + session[:user_id] = nil + redirect_to :back + end + +end diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index a0dcd9143..439324d7a 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -1,11 +1,12 @@ class TasksController < ApplicationController + before_action :find_task, only: [:show, :edit, :update, :destroy, :complete_toggle] def index @tasks = Task.all end def show - @task = Task.find(params[:id]) + # @task = Task.find(params[:id]) @datetime = @task.completed_at if @task.completed_at != nil @@ -17,14 +18,15 @@ def show def new @task = Task.new + @path = "create" end def create - @task = Task.new + @task = Task.new(task_params) - @task.title = params[:task][:title] - @task.description = params[:task][:description] - @task.completed_at = params[:task][:completed_at] + # @task.title = params[:task][:title] + # @task.description = params[:task][:description] + # @task.completed_at = params[:task][:completed_at] @task.save @@ -32,32 +34,45 @@ def create end def edit - @task = Task.find(params[:id]) + # @task = Task.find(params[:id]) + @path = "update" end - def button - @task = Task.find(params[:id]) + def complete_toggle #rename to complete_toggle + # @task = Task.find(params[:id]) - @task.completed_at == nil ? @task.completed_at = Time.now : @task.completed_at = nil - - @task.save + # @task.completed_at == nil ? @task.completed_at = Time.now : @task.completed_at = nil + # + # @task.save + @task.completed? redirect_to show_path end def update - @task = Task.find(params[:id]) + # @task = Task.find(params[:id]) - @task.update(title: params[:task][:title], description: params[:task][:description], completed_at: params[:task][:completed_at]) + # @task.update(title: params[:task][:title], description: params[:task][:description], completed_at: params[:task][:completed_at]) + @task.update(task_params) redirect_to root_path end def destroy - @task = Task.find(params[:id]) + # @task = Task.find(params[:id]) @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) + end + + def find_task + @task = Task.find(params[:id]) + end end diff --git a/app/helpers/sessions_helper.rb b/app/helpers/sessions_helper.rb new file mode 100644 index 000000000..309f8b2eb --- /dev/null +++ b/app/helpers/sessions_helper.rb @@ -0,0 +1,2 @@ +module SessionsHelper +end diff --git a/app/models/task.rb b/app/models/task.rb index 935f76e12..99ba564e9 100644 --- a/app/models/task.rb +++ b/app/models/task.rb @@ -1,2 +1,7 @@ class Task < ActiveRecord::Base + 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..eb179af32 --- /dev/null +++ b/app/models/user.rb @@ -0,0 +1,13 @@ +class User < ActiveRecord::Base + 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 +end diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index a72d392d4..574f014df 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -12,6 +12,7 @@ <%= link_to_unless_current("Home", root_path) %> <%= link_to_unless_current("Add New Task", new_path) %> + <%= link_to "Log in via Github", "/auth/github" %> <%= yield %> 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/tasks/_form.html.erb b/app/views/tasks/_form.html.erb new file mode 100644 index 000000000..5c73fcf39 --- /dev/null +++ b/app/views/tasks/_form.html.erb @@ -0,0 +1,15 @@ +<%# form_for @task, url: @path do |f| %> +<%= form_for @task, url: action_name do |f| %> + <%= f.label :title %> + <%= f.text_field :title%> + + <%= f.label :description %> + <%= f.text_area :description %> + + + + <%= f.submit %> +<% end %> diff --git a/app/views/tasks/edit.html.erb b/app/views/tasks/edit.html.erb index d082d2033..ce31905b3 100644 --- a/app/views/tasks/edit.html.erb +++ b/app/views/tasks/edit.html.erb @@ -1,5 +1,7 @@

        Edit Your Task

        -
        + +<%= render partial: 'form', locals: { action_name: "update" } %> + diff --git a/app/views/tasks/new.html.erb b/app/views/tasks/new.html.erb index 050d849be..b12dc62aa 100644 --- a/app/views/tasks/new.html.erb +++ b/app/views/tasks/new.html.erb @@ -1,6 +1,7 @@

        Add a Task

        -
        - <%= form_for @task, url: create_path do |f| %> + +<%= render partial: 'form', locals: { action_name: "create" }%> + diff --git a/app/views/tasks/show.html.erb b/app/views/tasks/show.html.erb index 0780bdff3..9c48392ec 100644 --- a/app/views/tasks/show.html.erb +++ b/app/views/tasks/show.html.erb @@ -10,7 +10,7 @@

        -
        <%= button_to("Complete?", button_path(@task[:id]), method: :patch) %>
        +
        <%= 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/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/routes.rb b/config/routes.rb index 01dc7ba60..90fd6fdd2 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,5 +1,7 @@ Rails.application.routes.draw do + get 'sessions/create' + root to: 'tasks#index' get 'tasks/index', as: 'index' @@ -14,10 +16,13 @@ patch 'tasks/:id/update' => 'tasks#update', as: 'update' - patch 'tasks/:id/button' => 'tasks#button', as: 'button' + 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" + + # The priority is based upon order of creation: first created -> highest priority. # See how all your routes lay out with "rake routes". diff --git a/db/development.sqlite3 b/db/development.sqlite3 index 044262291b6476b7b84b774cbc862f85733d47af..a5ea646b046f56eebd2bb7d4deb5863025bdf756 100644 GIT binary patch delta 729 zcmZ`%PiqrF6rW_1HffWcY@}VpgVQLKv`LuR>?WH9ZMQY(K|IvnW!jx4OSijaciX5J z8$1iG`vv?8+M6hNvlOotL@$Eqt)D>9*_3D^I4}?9_wO-}ckm){@Gfz9MREWD6Z{TO z`lwQu9Z>x~l^5qhIwt`59A+{Ox!k_URtz>j)-m$#UQ*{Q&SqvzEH>lxesHBLmfJIkM)qnf=%Dv4Q@fPUbWOUL3^oX^sRV1P{%ZLb SoGj+!)h!%L%irM9;p}fUNwxO? delta 447 zcmZoTz}T>Wae}m93IhWJD-go~^F$qE(G&*VXI#8MAr{`N4E&S$Ir!9huWl9;NaUS- zl{bj1F^-vCTwI*7S$gtEo@Ka(;8XG7W8Ce+{TNzmD8Gym$GxqYz$TEh;dKTse z<_4xfds*dO_}Ll6MHw6&C)?U<*CT8*)-y3SG%_*-`aINH6lhyXYH>+sUb;eZer`cd zYDua>QfWy^ejZ2|&2kGXBU3#S6AMeAbD_>E;ALk(G6k0x#LaXK4Rj%nFfy|;HP"16"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] + Rendered tasks/show.html.erb within layouts/application (3.0ms) +Completed 200 OK in 54ms (Views: 29.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/16/edit" for ::1 at 2016-10-04 12:47:35 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] + Rendered tasks/_form.html.erb (74.3ms) + Rendered tasks/edit.html.erb within layouts/application (101.2ms) +Completed 200 OK in 134ms (Views: 133.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-10-04 12:47:37 -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 39ms (Views: 38.2ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-10-04 12:49: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 18ms (Views: 17.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/16" for ::1 at 2016-10-04 12:49:47 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 36ms (Views: 32.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/16/edit" for ::1 at 2016-10-04 12:49:48 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"16"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] + Rendered tasks/_form.html.erb (1.3ms) + Rendered tasks/edit.html.erb within layouts/application (4.1ms) +Completed 200 OK in 22ms (Views: 20.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/16/update_path" for ::1 at 2016-10-04 12:49:51 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasks/16/update_path"): + 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.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.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 (4.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.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 (113.1ms) + 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.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 (74.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.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 (160.4ms) + + +Started GET "/" for ::1 at 2016-10-04 12:50:06 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.0ms) +Completed 200 OK in 25ms (Views: 23.2ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/show/16" for ::1 at 2016-10-04 12:50:07 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] + Rendered tasks/show.html.erb within layouts/application (2.2ms) +Completed 200 OK in 25ms (Views: 22.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/16/edit" for ::1 at 2016-10-04 12:50:08 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] + Rendered tasks/_form.html.erb (1.6ms) + Rendered tasks/edit.html.erb within layouts/application (4.3ms) +Completed 200 OK in 20ms (Views: 18.7ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/16/update" for ::1 at 2016-10-04 12:50:10 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"3qhc0VjN1rpw72Ild2BemkjHMSYU/33nMqwQGMFqpJhgrdyCS71+nZU6QCKe1yZoUxWNTlVRrz6gPFWf/sZu8w==", "task"=>{"title"=>"lala!", "description"=>"New description that's longer, gonna see how the table handles it"}, "commit"=>"Update Task", "id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "title" = ?, "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", "lala!"], ["completed_at", nil], ["updated_at", "2016-10-04 19:50:10.410548"], ["id", 16]] +  (3.0ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 7ms (ActiveRecord: 3.5ms) + + +Started GET "/" for ::1 at 2016-10-04 12:50:10 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2016-10-04 12:50:21 -0700 +Processing by TasksController#new as HTML + Rendered tasks/_form.html.erb (1.6ms) + Rendered tasks/new.html.erb within layouts/application (4.4ms) +Completed 200 OK in 27ms (Views: 20.6ms | ActiveRecord: 0.5ms) + + +Started POST "/tasks/create" for ::1 at 2016-10-04 12:50:25 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"L+ADrSdJgtlM3bQRjvi6H8mUzeCYErX5/BDuXp1vb1SR5YP+NDkq/qkIlhZnT8Lt0kZxiNm8ZyBugKvZosOlPw==", "task"=>{"title"=>"new", "description"=>"done"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "new"], ["description", "done"], ["created_at", "2016-10-04 19:50:25.852872"], ["updated_at", "2016-10-04 19:50:25.852872"]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 2.8ms) + + +Started GET "/" for ::1 at 2016-10-04 12:50: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.0ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-10-04 12:54:41 -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 19ms (Views: 18.6ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/style.self-fc5b6bf8322927fbd37537fd446809ced21284bf3aba9e7529d5f7b078dd8d4c.css?body=1" for ::1 at 2016-10-04 12:54:41 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-04 12:54:41 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-04 12:54:41 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-04 12:54:41 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-04 12:54:41 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-04 12:54:41 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-04 12:54:41 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-04 12:54:41 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-10-04 12:54:41 -0700 +Processing by TasksController#new as HTML + Rendered tasks/_form.html.erb (4.7ms) + Rendered tasks/new.html.erb within layouts/application (10.6ms) +Completed 200 OK in 31ms (Views: 30.5ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks/create_path" for ::1 at 2016-10-04 12:54:44 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/create_path"): + 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.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.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 (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 (82.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 (49.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 (110.7ms) + + +Started GET "/" for ::1 at 2016-10-04 12:54: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.5ms) +Completed 200 OK in 31ms (Views: 30.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2016-10-04 12:54:55 -0700 +Processing by TasksController#new as HTML + Rendered tasks/_form.html.erb (3.0ms) + Rendered tasks/new.html.erb within layouts/application (8.6ms) +Completed 200 OK in 38ms (Views: 37.3ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks/create" for ::1 at 2016-10-04 12:54:59 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"LP6LuMAplsYFsGTNIHWQBE0xRsionvtruNJbOK37obOS+wvr01k+4eBlRsrJwuj2VuP6oOkwKbIqQh6/kldr2A==", "task"=>{"title"=>"dg", "description"=>"fdgdfg"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "dg"], ["description", "fdgdfg"], ["created_at", "2016-10-04 19:54:59.323557"], ["updated_at", "2016-10-04 19:54:59.323557"]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.6ms) + + +Started GET "/" for ::1 at 2016-10-04 12:54: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.0ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-10-04 12:58: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.9ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-fc5b6bf8322927fbd37537fd446809ced21284bf3aba9e7529d5f7b078dd8d4c.css?body=1" for ::1 at 2016-10-04 12:58:35 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-04 12:58:35 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-04 12:58:35 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-04 12:58:35 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-04 12:58:35 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-04 12:58:35 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-04 12:58:35 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-04 12:58:35 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-10-04 12:58:36 -0700 +Processing by TasksController#new as HTML + Rendered tasks/_form.html.erb (4.4ms) + Rendered tasks/new.html.erb within layouts/application (8.1ms) +Completed 200 OK in 27ms (Views: 25.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-10-04 12:58:48 -0700 +Processing by TasksController#new as HTML + Rendered tasks/_form.html.erb (0.9ms) + Rendered tasks/new.html.erb within layouts/application (2.0ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/brianaeng/ada/week8/TaskListRails/app/views/tasks/_form.html.erb:9: syntax error, unexpected '=', expecting keyword_then or ';' or '\n' +'.freeze; if :action_name = "update" + ^ +/Users/brianaeng/ada/week8/TaskListRails/app/views/tasks/_form.html.erb:17: syntax error, unexpected keyword_ensure, expecting end-of-input): + app/views/tasks/_form.html.erb:9: syntax error, unexpected '=', expecting keyword_then or ';' or '\n' + app/views/tasks/_form.html.erb:17: syntax error, unexpected keyword_ensure, expecting end-of-input + app/views/tasks/new.html.erb:3:in `_app_views_tasks_new_html_erb___2704981260397631812_70325545935160' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.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 (3.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.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 (52.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.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.7ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (110.1ms) + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateUsers (20161018170119) +  (0.1ms) begin transaction +  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "uid" varchar, "name" varchar, "provider" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  + SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20161018170119"]] +  (2.4ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + + +Started GET "/" for ::1 at 2016-10-18 11:08:53 -0700 + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" + +SyntaxError - syntax error, unexpected tIDENTIFIER, expecting keyword_end +... before_action :find_task only: [:show, :edit, :update, :de... +... ^: + app/controllers/tasks_controller.rb:2:in `' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/dependencies.rb:457:in `block in load_file' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/dependencies.rb:647:in `new_constants_in' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/dependencies.rb:456:in `load_file' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/dependencies.rb:354:in `require_or_load' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/dependencies.rb:494:in `load_missing_constant' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/dependencies.rb:184:in `const_missing' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/inflector/methods.rb:261:in `block in constantize' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/inflector/methods.rb:259:in `constantize' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/dependencies.rb:566:in `get' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/dependencies.rb:597:in `constantize' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:60:in `controller' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:39:in `serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/journey/router.rb:43:in `block in serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/journey/router.rb:30:in `serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:817:in `call' + omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!' + omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call' + omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/etag.rb:24:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/conditionalget.rb:25:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/head.rb:13:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/params_parser.rb:27:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/flash.rb:260:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/session/abstract/id.rb:225:in `context' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/session/abstract/id.rb:220:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/cookies.rb:560:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/query_cache.rb:36:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/migration.rb:377:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:88:in `__run_callbacks__' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:81:in `run_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/callbacks.rb:27:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/reloader.rb:73:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/tagged_logging.rb:68:in `block in tagged' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/tagged_logging.rb:26:in `tagged' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/request_id.rb:21:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/methodoverride.rb:22:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/runtime.rb:18:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/lock.rb:17:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/static.rb:120:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/lock.rb:17:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/content_length.rb:15:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + + + +Started POST "/__better_errors/8f1120b917087c23/variables" for ::1 at 2016-10-18 11:08:54 -0700 + + +Started GET "/" for ::1 at 2016-10-18 11:10:55 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.0ms) +Completed 200 OK in 617ms (Views: 603.5ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/style.self-fc5b6bf8322927fbd37537fd446809ced21284bf3aba9e7529d5f7b078dd8d4c.css?body=1" for ::1 at 2016-10-18 11:10:55 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-18 11:10:55 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-18 11:10:55 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-18 11:10:55 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-18 11:10:55 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-18 11:10:55 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-18 11:10:55 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-18 11:10:55 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-18 11:10:55 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-18 11:10:55 -0700 + + +Started GET "/tasks/show/15" for ::1 at 2016-10-18 11:11:37 -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 (34.0ms) +Completed 500 Internal Server Error in 64ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `button_path' for #<#:0x007fd856be0c18> +Did you mean? button_to + button_tag: + app/views/tasks/show.html.erb:13:in `_app_views_tasks_show_html_erb___910638932961606616_70283572448160' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/template.rb:145:in `block in render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:166:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/template.rb:333:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/template.rb:143:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:164:in `block in instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications/instrumenter.rb:20:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:164:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/template_renderer.rb:52:in `render_template' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/template_renderer.rb:14:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/renderer.rb:46:in `render_template' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/renderer.rb:27:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/rendering.rb:100:in `_render_template' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/streaming.rb:217:in `_render_template' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/rendering.rb:83:in `render_to_body' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rendering.rb:32:in `render_to_body' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/renderers.rb:37:in `render_to_body' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/rendering.rb:25:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rendering.rb:16:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/core_ext/benchmark.rb:12:in `ms' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:44:in `block in render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:43:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/implicit_render.rb:10:in `default_render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/base.rb:198:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rendering.rb:10:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/callbacks.rb:20:in `block in process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:117:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:505:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:92:in `__run_callbacks__' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:81:in `run_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/callbacks.rb:19:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rescue.rb:29:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:164:in `block in instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications/instrumenter.rb:20:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:164:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:30:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/railties/controller_runtime.rb:18:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/base.rb:137:in `process' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/rendering.rb:30:in `process' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal.rb:196:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal.rb:237:in `block in action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:43:in `serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/journey/router.rb:43:in `block in serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/journey/router.rb:30:in `serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:817:in `call' + omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!' + omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call' + omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/etag.rb:24:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/conditionalget.rb:25:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/head.rb:13:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/params_parser.rb:27:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/flash.rb:260:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/session/abstract/id.rb:225:in `context' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/session/abstract/id.rb:220:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/cookies.rb:560:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/query_cache.rb:36:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/migration.rb:377:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:88:in `__run_callbacks__' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:81:in `run_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/callbacks.rb:27:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/reloader.rb:73:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/tagged_logging.rb:68:in `block in tagged' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/tagged_logging.rb:26:in `tagged' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/request_id.rb:21:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/methodoverride.rb:22:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/runtime.rb:18:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/lock.rb:17:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/static.rb:120:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/lock.rb:17:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/content_length.rb:15:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + + + +Started POST "/__better_errors/13f46ccde7058f3a/variables" for ::1 at 2016-10-18 11:11:37 -0700 + + +Started GET "/" for ::1 at 2016-10-18 11:12:12 -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 19ms (Views: 18.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-18 11:12:12 -0700 + + +Started GET "/assets/style.self-fc5b6bf8322927fbd37537fd446809ced21284bf3aba9e7529d5f7b078dd8d4c.css?body=1" for ::1 at 2016-10-18 11:12:12 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-18 11:12:12 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-18 11:12:12 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-18 11:12:12 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-18 11:12:12 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-18 11:12:12 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-18 11:12:12 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-18 11:12:12 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-18 11:12:12 -0700 + + +Started GET "/tasks/show/15" for ::1 at 2016-10-18 11:12:13 -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 (3.5ms) +Completed 200 OK in 28ms (Views: 26.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/15" for ::1 at 2016-10-18 11:12:15 -0700 +Processing by TasksController#complete_toggle as HTML + Parameters: {"authenticity_token"=>"Ay8bYNUxknFy5uAghol3POr4R/l39FcNxZcWoTKvLQpGsmtdzfHXbV8/BITsQYuyaUTeIGLfDKdRV+mMjq0hbw==", "id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-10-18 18:12:15.054446"], ["updated_at", "2016-10-18 18:12:15.057072"], ["id", 15]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/tasks/show/15 +Completed 302 Found in 9ms (ActiveRecord: 3.0ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-10-18 11:12:15 -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.3ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/15" for ::1 at 2016-10-18 11:12:15 -0700 +Processing by TasksController#complete_toggle as HTML + Parameters: {"authenticity_token"=>"4AVSCZrSTI87Jho/XBLKJdO7KoVhIpoYi3hMWrQ3GPqlmCI0ghIJkxb//ps22jarUAezXHQJwbIfuLN3CDUUnw==", "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-10-18 18:12:15.875267"], ["id", 15]] +  (2.5ms) commit transaction +Redirected to http://localhost:3000/tasks/show/15 +Completed 302 Found in 7ms (ActiveRecord: 3.0ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-10-18 11:12:15 -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 17ms (Views: 16.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-10-18 11:12:16 -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 28ms (Views: 27.2ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-10-22 12:03:47 -0700 + ActiveRecord::SchemaMigration Load (2.4ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (3.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (13.9ms) +Completed 200 OK in 493ms (Views: 474.3ms | ActiveRecord: 3.7ms) + + +Started GET "/assets/style.self-fc5b6bf8322927fbd37537fd446809ced21284bf3aba9e7529d5f7b078dd8d4c.css?body=1" for ::1 at 2016-10-22 12:03:48 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 12:03:48 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 12:03:48 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-22 12:03:50 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-22 12:03:50 -0700 + + +Started GET "/auth/github/callback?code=ac7a5a155cfcb8ac994c&state=b82f34957ef44285401a6bb21528a0f816b3ed7e959c2cfb" for ::1 at 2016-10-22 12:03:50 -0700 +Processing by SessionsController#create as HTML + Parameters: {"code"=>"ac7a5a155cfcb8ac994c", "state"=>"b82f34957ef44285401a6bb21528a0f816b3ed7e959c2cfb", "provider"=>"github"} + User Load (2.4ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "16039535"], ["provider", "github"]] +Completed 500 Internal Server Error in 59ms (ActiveRecord: 2.5ms) + +NoMethodError - undefined method `build_from_github' for #: + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/dynamic_matchers.rb:26:in `method_missing' + app/controllers/sessions_controller.rb:10:in `create' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/implicit_render.rb:4:in `send_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/base.rb:198:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rendering.rb:10:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/callbacks.rb:20:in `block in process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:117:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:505:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:92:in `__run_callbacks__' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:81:in `run_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/callbacks.rb:19:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rescue.rb:29:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:164:in `block in instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications/instrumenter.rb:20:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:164:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:30:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/railties/controller_runtime.rb:18:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/base.rb:137:in `process' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/rendering.rb:30:in `process' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal.rb:196:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal.rb:237:in `block in action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:43:in `serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/journey/router.rb:43:in `block in serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/journey/router.rb:30:in `serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:817:in `call' + omniauth (1.3.1) lib/omniauth/strategy.rb:408:in `call_app!' + omniauth (1.3.1) lib/omniauth/strategy.rb:362:in `callback_phase' + omniauth-oauth2 (1.4.0) lib/omniauth/strategies/oauth2.rb:75:in `callback_phase' + omniauth (1.3.1) lib/omniauth/strategy.rb:227:in `callback_call' + omniauth (1.3.1) lib/omniauth/strategy.rb:184:in `call!' + omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call' + omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/etag.rb:24:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/conditionalget.rb:25:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/head.rb:13:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/params_parser.rb:27:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/flash.rb:260:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/session/abstract/id.rb:225:in `context' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/session/abstract/id.rb:220:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/cookies.rb:560:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/query_cache.rb:36:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/migration.rb:377:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:88:in `__run_callbacks__' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:81:in `run_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/callbacks.rb:27:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/reloader.rb:73:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/tagged_logging.rb:68:in `block in tagged' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/tagged_logging.rb:26:in `tagged' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/request_id.rb:21:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/methodoverride.rb:22:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/runtime.rb:18:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/lock.rb:17:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/static.rb:120:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/lock.rb:17:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/content_length.rb:15:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + + + +Started POST "/__better_errors/6fbfd94910f4a8fe/variables" for ::1 at 2016-10-22 12:03:52 -0700 diff --git a/test/controllers/sessions_controller_test.rb b/test/controllers/sessions_controller_test.rb new file mode 100644 index 000000000..2dbb1bdd1 --- /dev/null +++ b/test/controllers/sessions_controller_test.rb @@ -0,0 +1,19 @@ +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_redirect_to root_path + 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 index 63a91970b..015d47850 100644 --- a/test/controllers/tasks_controller_test.rb +++ b/test/controllers/tasks_controller_test.rb @@ -36,4 +36,19 @@ class TasksControllerTest < ActionController::TestCase 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 + assert_equal flash[:notice], "Access denied." + end + end diff --git a/test/fixtures/tasks.yml b/test/fixtures/tasks.yml index 8c190d429..083eb0809 100644 --- a/test/fixtures/tasks.yml +++ b/test/fixtures/tasks.yml @@ -1,11 +1,12 @@ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html -one: - title: MyString - description: MyString +adas_task: + title: "Tasky Numero Uno" + description: "The first task" + user: :ada completed_at: 2016-09-28 16:23:11 -two: - title: MyString - description: MyString - completed_at: 2016-09-28 16:23:11 +babbages_task: + title: "Make the first computer" + description: "Build it!" + user: :babbage diff --git a/test/fixtures/users.yml b/test/fixtures/users.yml new file mode 100644 index 000000000..7a21a51e3 --- /dev/null +++ b/test/fixtures/users.yml @@ -0,0 +1,17 @@ +# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +ada: + id: 1 + uid: 123 + name: "Ada" + provider: "github" + email: "ada@me.com" + created_at: 2016-09-26 12:57:50 + +babbage: + id: 2 + uid: 456 + name: "Babbage" + provider: "github" + email: "babbage@me.com" + created_at: 2016-09-26 12:57:50 diff --git a/test/models/user_test.rb b/test/models/user_test.rb new file mode 100644 index 000000000..82f61e010 --- /dev/null +++ b/test/models/user_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class UserTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end diff --git a/test/test_helper.rb b/test/test_helper.rb index 92e39b2d7..c7d8c0af0 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -7,4 +7,9 @@ class ActiveSupport::TestCase 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"}}) + end end From d92f9c104def343a748dbe009ed2e1ca47b5dcdf Mon Sep 17 00:00:00 2001 From: Briana Eng Date: Sat, 22 Oct 2016 17:32:38 -0700 Subject: [PATCH 15/31] Added user controller and links for log in/log out. Phase 1 complete. --- app/assets/javascripts/users.coffee | 3 + app/assets/stylesheets/style.css | 22 +- app/assets/stylesheets/users.scss | 3 + app/controllers/sessions_controller.rb | 2 +- app/controllers/users_controller.rb | 29 + app/helpers/users_helper.rb | 2 + app/views/layouts/application.html.erb | 16 +- app/views/users/create.html.erb | 2 + app/views/users/destroy.html.erb | 2 + app/views/users/edit.html.erb | 2 + app/views/users/index.html.erb | 2 + app/views/users/new.html.erb | 2 + app/views/users/show.html.erb | 6 + app/views/users/update.html.erb | 2 + config/routes.rb | 9 +- db/development.sqlite3 | Bin 24576 -> 24576 bytes .../20161022191446_add_user_attributes.rb | 6 + db/schema.rb | 8 +- log/development.log | 3675 +++++++++++++++++ test/controllers/users_controller_test.rb | 39 + 20 files changed, 3821 insertions(+), 11 deletions(-) create mode 100644 app/assets/javascripts/users.coffee create mode 100644 app/assets/stylesheets/users.scss create mode 100644 app/controllers/users_controller.rb create mode 100644 app/helpers/users_helper.rb create mode 100644 app/views/users/create.html.erb create mode 100644 app/views/users/destroy.html.erb create mode 100644 app/views/users/edit.html.erb create mode 100644 app/views/users/index.html.erb create mode 100644 app/views/users/new.html.erb create mode 100644 app/views/users/show.html.erb create mode 100644 app/views/users/update.html.erb create mode 100644 db/migrate/20161022191446_add_user_attributes.rb create mode 100644 test/controllers/users_controller_test.rb 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/style.css b/app/assets/stylesheets/style.css index c021bb925..1e6747094 100644 --- a/app/assets/stylesheets/style.css +++ b/app/assets/stylesheets/style.css @@ -47,7 +47,18 @@ nav { padding: 10px 10px; font-size: 1.1em; text-align: center; - border-bottom: black 1px solid; +} + +nav a { + padding: 10px 20px; +} + +.site-nav { + float: left; +} + +.user-nav { + float: right; } input[type="text"], textarea, label { @@ -70,3 +81,12 @@ footer { .done { text-decoration: line-through; } + +img { + width: 10rem; +} + +.profile { + margin: 0 auto; + text-align: center; +} 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/sessions_controller.rb b/app/controllers/sessions_controller.rb index 38f337884..6af2a793c 100644 --- a/app/controllers/sessions_controller.rb +++ b/app/controllers/sessions_controller.rb @@ -14,7 +14,7 @@ def create session[:user_id] = @user.id flash[:notice] = "Successfully logged in!" - redirect_to :back + redirect_to root_path end def destroy diff --git a/app/controllers/users_controller.rb b/app/controllers/users_controller.rb new file mode 100644 index 000000000..7908b1c48 --- /dev/null +++ b/app/controllers/users_controller.rb @@ -0,0 +1,29 @@ +class UsersController < ApplicationController + def index + end + + def show + find_user + end + + def new + end + + def create + end + + def edit + end + + def update + end + + def destroy + end + + private + def find_user + @user = User.find(params[:id].to_i) + end + +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/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index 574f014df..ce026198e 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -9,10 +9,20 @@
        - <%= link_to "Log in via Github", "/auth/github" %>
        <%= yield %> 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..1881fbdba --- /dev/null +++ b/app/views/users/edit.html.erb @@ -0,0 +1,2 @@ +

        Users#edit

        +

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

        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..c21a1adf1 --- /dev/null +++ b/app/views/users/new.html.erb @@ -0,0 +1,2 @@ +

        Users#new

        +

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

        diff --git a/app/views/users/show.html.erb b/app/views/users/show.html.erb new file mode 100644 index 000000000..3c86ef27c --- /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/config/routes.rb b/config/routes.rb index 90fd6fdd2..ebcdc3b4c 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,9 +1,8 @@ Rails.application.routes.draw do + root to: 'tasks#index' get 'sessions/create' - root to: 'tasks#index' - get 'tasks/index', as: 'index' get 'tasks/show/:id' => 'tasks#show', as: 'show' @@ -20,7 +19,11 @@ delete 'tasks/:id/destroy' => 'tasks#destroy', as: 'destroy' - get "/auth/:provider/callback" => "sessions#create" + get '/auth/:provider/callback' => 'sessions#create' + + delete '/session/destroy' => 'sessions#destroy' + + resources :users # The priority is based upon order of creation: first created -> highest priority. diff --git a/db/development.sqlite3 b/db/development.sqlite3 index a5ea646b046f56eebd2bb7d4deb5863025bdf756..6adff4d69ffec6f4917ad1d5a338e86e3ad4b58b 100644 GIT binary patch delta 415 zcmZoTz}Rqrae}m99s>gd8xX?)`$QdM@jM3IXI#8|>I|&hHyHRQ@pJGz=e^2(V`F0y zH&+u6E4#S3IAe49WL}<|+BynKiDii;iA72ZWr;<}8Hq(8kb7%Kv(^pu>HBc@8FKan91> z)S_ZeMrLuwlEmWdVj*6j2O0U38TgZdW<~PXH%c*bF~~|v8aq0c@*A2N7+aben>rO` zCgvrkXO?7?CMAK{sd?!R>A8uSIeN+YxgfiB4GnaSj1&wltqjeq3{CV*3@pq|3~(0R%Ec_qM50-3B|st@rrZ}tEH delta 160 zcmZoTz}Rqrae}m94g&)N8xX?)>qH%6@f-%-XI#8|>I|$r%nbaK_&Io<^Iqj)-Yh84 z%gxo8$jUA*F3#AjIQbFx&CSnvR!!yf+0r{t}GVkbaixA{*1 u#dh&;KA~?Tz{be`m4W{&P~aB-#0i3eoQ%xkj3tT1*~LPW 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/schema.rb b/db/schema.rb index 6827b93df..7ddda04cf 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -11,7 +11,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20161018170119) do +ActiveRecord::Schema.define(version: 20161022191446) do create_table "tasks", force: :cascade do |t| t.string "title" @@ -27,8 +27,10 @@ t.string "name" t.string "provider" t.string "email" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.string "avatar" + t.boolean "authenticated" end end diff --git a/log/development.log b/log/development.log index e238d6593..3761abdf5 100644 --- a/log/development.log +++ b/log/development.log @@ -15559,3 +15559,3678 @@ NoMethodError - undefined method `build_from_github' for #"8b7056e0773b3e9aaffa", "state"=>"c484097ae0696418644ab1ce73ea2d31d99508945d276a6e", "provider"=>"github"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "16039535"], ["provider", "github"]] +Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.5ms) + +NoMethodError - undefined method `avatar=' for #: + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activemodel-4.2.7/lib/active_model/attribute_methods.rb:433:in `method_missing' + app/models/user.rb:8:in `build_from_github' + app/controllers/sessions_controller.rb:10:in `create' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/implicit_render.rb:4:in `send_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/base.rb:198:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rendering.rb:10:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/callbacks.rb:20:in `block in process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:117:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:505:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:92:in `__run_callbacks__' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:81:in `run_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/callbacks.rb:19:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rescue.rb:29:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:164:in `block in instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications/instrumenter.rb:20:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:164:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:30:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/railties/controller_runtime.rb:18:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/base.rb:137:in `process' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/rendering.rb:30:in `process' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal.rb:196:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal.rb:237:in `block in action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:43:in `serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/journey/router.rb:43:in `block in serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/journey/router.rb:30:in `serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:817:in `call' + omniauth (1.3.1) lib/omniauth/strategy.rb:408:in `call_app!' + omniauth (1.3.1) lib/omniauth/strategy.rb:362:in `callback_phase' + omniauth-oauth2 (1.4.0) lib/omniauth/strategies/oauth2.rb:75:in `callback_phase' + omniauth (1.3.1) lib/omniauth/strategy.rb:227:in `callback_call' + omniauth (1.3.1) lib/omniauth/strategy.rb:184:in `call!' + omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call' + omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/etag.rb:24:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/conditionalget.rb:25:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/head.rb:13:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/params_parser.rb:27:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/flash.rb:260:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/session/abstract/id.rb:225:in `context' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/session/abstract/id.rb:220:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/cookies.rb:560:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/query_cache.rb:36:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/migration.rb:377:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:88:in `__run_callbacks__' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:81:in `run_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/callbacks.rb:27:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/reloader.rb:73:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/tagged_logging.rb:68:in `block in tagged' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/tagged_logging.rb:26:in `tagged' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/request_id.rb:21:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/methodoverride.rb:22:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/runtime.rb:18:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/lock.rb:17:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/static.rb:120:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/lock.rb:17:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/content_length.rb:15:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + + + +Started POST "/__better_errors/8895e8643ecd11c2/variables" for ::1 at 2016-10-22 12:10:22 -0700 + User Load (0.1ms) SELECT "users".* FROM "users" + + +Started POST "/__better_errors/8895e8643ecd11c2/variables" for ::1 at 2016-10-22 12:10:28 -0700 + + +Started GET "/" for ::1 at 2016-10-22 12:10:44 -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 18ms (Views: 17.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 12:10:45 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 12:10:45 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 12:10:45 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 12:10:45 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 12:10:45 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 12:10:45 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 12:10:45 -0700 + + +Started GET "/assets/style.self-fc5b6bf8322927fbd37537fd446809ced21284bf3aba9e7529d5f7b078dd8d4c.css?body=1" for ::1 at 2016-10-22 12:10:45 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 12:10:45 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 12:10:45 -0700 + + +Started GET "/" for ::1 at 2016-10-22 12:12:36 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.4ms) +Completed 200 OK in 30ms (Views: 26.9ms | ActiveRecord: 0.7ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 12:12:36 -0700 + + +Started GET "/assets/style.self-fc5b6bf8322927fbd37537fd446809ced21284bf3aba9e7529d5f7b078dd8d4c.css?body=1" for ::1 at 2016-10-22 12:12:36 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 12:12:36 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 12:12:36 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 12:12:36 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 12:12:36 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 12:12:36 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 12:12:36 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 12:12:36 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 12:12:36 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-22 12:12:37 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-22 12:12:38 -0700 + + +Started GET "/auth/github/callback?code=c54e359e0cecbad2ab69&state=b3adecf26734db5c8434bf2e5deb438ad3dc4c4005c80c76" for ::1 at 2016-10-22 12:12:38 -0700 +Processing by SessionsController#create as HTML + Parameters: {"code"=>"c54e359e0cecbad2ab69", "state"=>"b3adecf26734db5c8434bf2e5deb438ad3dc4c4005c80c76", "provider"=>"github"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "16039535"], ["provider", "github"]] +Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.5ms) + +NoMethodError - undefined method `avatar=' for #: + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activemodel-4.2.7/lib/active_model/attribute_methods.rb:433:in `method_missing' + app/models/user.rb:8:in `build_from_github' + app/controllers/sessions_controller.rb:10:in `create' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/implicit_render.rb:4:in `send_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/base.rb:198:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rendering.rb:10:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/callbacks.rb:20:in `block in process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:117:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:505:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:92:in `__run_callbacks__' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:81:in `run_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/callbacks.rb:19:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rescue.rb:29:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:164:in `block in instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications/instrumenter.rb:20:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:164:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:30:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/railties/controller_runtime.rb:18:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/base.rb:137:in `process' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/rendering.rb:30:in `process' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal.rb:196:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal.rb:237:in `block in action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:43:in `serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/journey/router.rb:43:in `block in serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/journey/router.rb:30:in `serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:817:in `call' + omniauth (1.3.1) lib/omniauth/strategy.rb:408:in `call_app!' + omniauth (1.3.1) lib/omniauth/strategy.rb:362:in `callback_phase' + omniauth-oauth2 (1.4.0) lib/omniauth/strategies/oauth2.rb:75:in `callback_phase' + omniauth (1.3.1) lib/omniauth/strategy.rb:227:in `callback_call' + omniauth (1.3.1) lib/omniauth/strategy.rb:184:in `call!' + omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call' + omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/etag.rb:24:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/conditionalget.rb:25:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/head.rb:13:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/params_parser.rb:27:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/flash.rb:260:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/session/abstract/id.rb:225:in `context' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/session/abstract/id.rb:220:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/cookies.rb:560:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/query_cache.rb:36:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/migration.rb:377:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:88:in `__run_callbacks__' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:81:in `run_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/callbacks.rb:27:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/reloader.rb:73:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/tagged_logging.rb:68:in `block in tagged' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/tagged_logging.rb:26:in `tagged' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/request_id.rb:21:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/methodoverride.rb:22:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/runtime.rb:18:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/lock.rb:17:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/static.rb:120:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/lock.rb:17:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/content_length.rb:15:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + + + +Started POST "/__better_errors/7ed2124af58174b0/variables" for ::1 at 2016-10-22 12:12:40 -0700 + User Load (0.1ms) SELECT "users".* FROM "users" + + +Started POST "/__better_errors/7ed2124af58174b0/variables" for ::1 at 2016-10-22 12:12:52 -0700 + + +Started GET "/" for ::1 at 2016-10-22 12:13:19 -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.6ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 12:13:19 -0700 + + +Started GET "/assets/style.self-fc5b6bf8322927fbd37537fd446809ced21284bf3aba9e7529d5f7b078dd8d4c.css?body=1" for ::1 at 2016-10-22 12:13:19 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 12:13:19 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 12:13:19 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 12:13:19 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 12:13:19 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 12:13:19 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 12:13:19 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 12:13:19 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 12:13:19 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-22 12:13:19 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-22 12:13:20 -0700 + + +Started GET "/auth/github/callback?code=83fa2d372f0e493a94ef&state=b8be83a8ad6ed8bd22117505aaf1a4bfddc7e41a0aa70d53" for ::1 at 2016-10-22 12:13:20 -0700 +Processing by SessionsController#create as HTML + Parameters: {"code"=>"83fa2d372f0e493a94ef", "state"=>"b8be83a8ad6ed8bd22117505aaf1a4bfddc7e41a0aa70d53", "provider"=>"github"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "16039535"], ["provider", "github"]] +Completed 500 Internal Server Error in 21ms (ActiveRecord: 0.6ms) + +NoMethodError - undefined method `authenticated=' for #: + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activemodel-4.2.7/lib/active_model/attribute_methods.rb:433:in `method_missing' + app/models/user.rb:9:in `build_from_github' + app/controllers/sessions_controller.rb:10:in `create' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/implicit_render.rb:4:in `send_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/base.rb:198:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rendering.rb:10:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/callbacks.rb:20:in `block in process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:117:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:505:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:92:in `__run_callbacks__' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:81:in `run_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/callbacks.rb:19:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rescue.rb:29:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:164:in `block in instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications/instrumenter.rb:20:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:164:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:30:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/railties/controller_runtime.rb:18:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/base.rb:137:in `process' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/rendering.rb:30:in `process' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal.rb:196:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal.rb:237:in `block in action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:43:in `serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/journey/router.rb:43:in `block in serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/journey/router.rb:30:in `serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:817:in `call' + omniauth (1.3.1) lib/omniauth/strategy.rb:408:in `call_app!' + omniauth (1.3.1) lib/omniauth/strategy.rb:362:in `callback_phase' + omniauth-oauth2 (1.4.0) lib/omniauth/strategies/oauth2.rb:75:in `callback_phase' + omniauth (1.3.1) lib/omniauth/strategy.rb:227:in `callback_call' + omniauth (1.3.1) lib/omniauth/strategy.rb:184:in `call!' + omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call' + omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/etag.rb:24:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/conditionalget.rb:25:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/head.rb:13:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/params_parser.rb:27:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/flash.rb:260:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/session/abstract/id.rb:225:in `context' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/session/abstract/id.rb:220:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/cookies.rb:560:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/query_cache.rb:36:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/migration.rb:377:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:88:in `__run_callbacks__' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:81:in `run_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/callbacks.rb:27:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/reloader.rb:73:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/tagged_logging.rb:68:in `block in tagged' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/tagged_logging.rb:26:in `tagged' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/request_id.rb:21:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/methodoverride.rb:22:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/runtime.rb:18:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/lock.rb:17:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/static.rb:120:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/lock.rb:17:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/content_length.rb:15:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + + + +Started POST "/__better_errors/0332f15987fdc31c/variables" for ::1 at 2016-10-22 12:13:22 -0700 + User Load (0.1ms) SELECT "users".* FROM "users" + + +Started GET "/" for ::1 at 2016-10-22 12:13:35 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.9ms) +Completed 200 OK in 24ms (Views: 21.4ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 12:13:35 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 12:13:35 -0700 + + +Started GET "/assets/style.self-fc5b6bf8322927fbd37537fd446809ced21284bf3aba9e7529d5f7b078dd8d4c.css?body=1" for ::1 at 2016-10-22 12:13:35 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 12:13:35 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 12:13:35 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 12:13:35 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 12:13:35 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 12:13:35 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 12:13:35 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 12:13:35 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-22 12:13:36 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-22 12:13:36 -0700 + + +Started GET "/auth/github/callback?code=a74bc36af521d9d3e94d&state=1fcc5190ad351b1495980f940a133aa6a7bb0c695e0138e3" for ::1 at 2016-10-22 12:13:40 -0700 +Processing by SessionsController#create as HTML + Parameters: {"code"=>"a74bc36af521d9d3e94d", "state"=>"1fcc5190ad351b1495980f940a133aa6a7bb0c695e0138e3", "provider"=>"github"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "16039535"], ["provider", "github"]] +Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.5ms) + +NoMethodError - undefined method `avatar=' for #: + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activemodel-4.2.7/lib/active_model/attribute_methods.rb:433:in `method_missing' + app/models/user.rb:8:in `build_from_github' + app/controllers/sessions_controller.rb:10:in `create' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/implicit_render.rb:4:in `send_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/base.rb:198:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rendering.rb:10:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/callbacks.rb:20:in `block in process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:117:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:505:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:92:in `__run_callbacks__' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:81:in `run_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/callbacks.rb:19:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rescue.rb:29:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:164:in `block in instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications/instrumenter.rb:20:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:164:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:30:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/railties/controller_runtime.rb:18:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/base.rb:137:in `process' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/rendering.rb:30:in `process' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal.rb:196:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal.rb:237:in `block in action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:43:in `serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/journey/router.rb:43:in `block in serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/journey/router.rb:30:in `serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:817:in `call' + omniauth (1.3.1) lib/omniauth/strategy.rb:408:in `call_app!' + omniauth (1.3.1) lib/omniauth/strategy.rb:362:in `callback_phase' + omniauth-oauth2 (1.4.0) lib/omniauth/strategies/oauth2.rb:75:in `callback_phase' + omniauth (1.3.1) lib/omniauth/strategy.rb:227:in `callback_call' + omniauth (1.3.1) lib/omniauth/strategy.rb:184:in `call!' + omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call' + omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/etag.rb:24:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/conditionalget.rb:25:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/head.rb:13:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/params_parser.rb:27:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/flash.rb:260:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/session/abstract/id.rb:225:in `context' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/session/abstract/id.rb:220:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/cookies.rb:560:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/query_cache.rb:36:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/migration.rb:377:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:88:in `__run_callbacks__' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:81:in `run_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/callbacks.rb:27:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/reloader.rb:73:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/tagged_logging.rb:68:in `block in tagged' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/tagged_logging.rb:26:in `tagged' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/request_id.rb:21:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/methodoverride.rb:22:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/runtime.rb:18:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/lock.rb:17:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/static.rb:120:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/lock.rb:17:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/content_length.rb:15:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + + + +Started POST "/__better_errors/fd0efe1fa5378628/variables" for ::1 at 2016-10-22 12:13:41 -0700 + User Load (0.3ms) SELECT "users".* FROM "users" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to AddUserAttributes (20161022191446) +  (0.2ms) begin transaction +  (0.6ms) ALTER TABLE "users" ADD "avatar" varchar +  (0.3ms) ALTER TABLE "users" ADD "authenticated" boolean + SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20161022191446"]] +  (2.4ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + + +Started GET "/" for ::1 at 2016-10-22 12:16:10 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.1ms) +Completed 200 OK in 319ms (Views: 306.7ms | ActiveRecord: 0.7ms) + + +Started GET "/auth/github" for ::1 at 2016-10-22 12:16:11 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-22 12:16:12 -0700 + + +Started GET "/auth/github/callback?code=9b848171984428a588c4&state=74d22dba73f5266a23d1329ba2bea6ad7ff8d8188aa1b15f" for ::1 at 2016-10-22 12:16:12 -0700 +Processing by SessionsController#create as HTML + Parameters: {"code"=>"9b848171984428a588c4", "state"=>"74d22dba73f5266a23d1329ba2bea6ad7ff8d8188aa1b15f", "provider"=>"github"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "16039535"], ["provider", "github"]] +  (0.1ms) begin transaction + SQL (0.8ms) INSERT INTO "users" ("uid", "provider", "name", "email", "avatar", "authenticated", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "16039535"], ["provider", "github"], ["name", "Briana"], ["email", "brianaeng@gmail.com"], ["avatar", "https://avatars.githubusercontent.com/u/16039535?v=3"], ["authenticated", "t"], ["created_at", "2016-10-22 19:16:14.408740"], ["updated_at", "2016-10-22 19:16:14.408740"]] +  (4.7ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 44ms (ActiveRecord: 6.4ms) + + +Started GET "/" for ::1 at 2016-10-22 12:16: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.5ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 12:16:14 -0700 + + +Started GET "/assets/style.self-fc5b6bf8322927fbd37537fd446809ced21284bf3aba9e7529d5f7b078dd8d4c.css?body=1" for ::1 at 2016-10-22 12:16:14 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 12:16:14 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 12:16:14 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 12:16:14 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 12:16:14 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 12:16:14 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 12:16:14 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 12:16:14 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 12:16:14 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-22 12:16:16 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-22 12:16:16 -0700 + + +Started GET "/auth/github/callback?code=5fd4bd8ba894eb95c393&state=836e6fae9112f93108ad9eb25ae8225bd3d375a0910346ca" for ::1 at 2016-10-22 12:16:16 -0700 +Processing by SessionsController#create as HTML + Parameters: {"code"=>"5fd4bd8ba894eb95c393", "state"=>"836e6fae9112f93108ad9eb25ae8225bd3d375a0910346ca", "provider"=>"github"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "16039535"], ["provider", "github"]] +Redirected to http://localhost:3000/ +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-10-22 12:16: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.7ms) +Completed 200 OK in 22ms (Views: 21.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 12:16:17 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 12:16:17 -0700 + + +Started GET "/assets/style.self-fc5b6bf8322927fbd37537fd446809ced21284bf3aba9e7529d5f7b078dd8d4c.css?body=1" for ::1 at 2016-10-22 12:16:17 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 12:16:17 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 12:16:17 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 12:16:17 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 12:16:17 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 12:16:17 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 12:16:17 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 12:16:17 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-22 12:16:19 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-22 12:16:19 -0700 + + +Started GET "/auth/github/callback?code=6a57a24699269ccb1cbb&state=e0d2a3fed22508c4f32b90d24e292f6b10f21ce79c902f0c" for ::1 at 2016-10-22 12:16:19 -0700 +Processing by SessionsController#create as HTML + Parameters: {"code"=>"6a57a24699269ccb1cbb", "state"=>"e0d2a3fed22508c4f32b90d24e292f6b10f21ce79c902f0c", "provider"=>"github"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "16039535"], ["provider", "github"]] +Redirected to http://localhost:3000/ +Completed 302 Found in 2ms (ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-10-22 12:16:20 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 12:16:20 -0700 + + +Started GET "/assets/style.self-fc5b6bf8322927fbd37537fd446809ced21284bf3aba9e7529d5f7b078dd8d4c.css?body=1" for ::1 at 2016-10-22 12:16:20 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 12:16:20 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 12:16:20 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 12:16:20 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 12:16:20 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 12:16:20 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 12:16:20 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 12:16:20 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 12:16:20 -0700 + + +Started GET "/" for ::1 at 2016-10-22 12:16: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.2ms) +Completed 200 OK in 30ms (Views: 29.1ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 12:16:25 -0700 + + +Started GET "/assets/style.self-fc5b6bf8322927fbd37537fd446809ced21284bf3aba9e7529d5f7b078dd8d4c.css?body=1" for ::1 at 2016-10-22 12:16:25 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 12:16:25 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 12:16:25 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 12:16:25 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 12:16:25 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 12:16:25 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 12:16:25 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 12:16:25 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 12:16:25 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-22 12:16:26 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-22 12:16:26 -0700 + + +Started GET "/auth/github/callback?code=225a54924392fa3faa38&state=ab647f0ddd3b1536b9d6aa4c45464256562e7c51a3673f8c" for ::1 at 2016-10-22 12:16:30 -0700 +Processing by SessionsController#create as HTML + Parameters: {"code"=>"225a54924392fa3faa38", "state"=>"ab647f0ddd3b1536b9d6aa4c45464256562e7c51a3673f8c", "provider"=>"github"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "16039535"], ["provider", "github"]] +Redirected to http://localhost:3000/ +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-10-22 12:16:31 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 27ms (Views: 26.2ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-10-22 12:17:05 -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 20ms (Views: 19.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 12:17:05 -0700 + + +Started GET "/assets/style.self-fc5b6bf8322927fbd37537fd446809ced21284bf3aba9e7529d5f7b078dd8d4c.css?body=1" for ::1 at 2016-10-22 12:17:05 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 12:17:05 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 12:17:05 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 12:17:05 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 12:17:05 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 12:17:05 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 12:17:05 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 12:17:05 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 12:17:05 -0700 + + +Started GET "/session/destroy" for ::1 at 2016-10-22 12:17:08 -0700 +Processing by SessionsController#destroy as HTML +Redirected to http://localhost:3000/ +Completed 302 Found in 2ms (ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-10-22 12:17:08 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 20ms (Views: 19.2ms | ActiveRecord: 0.1ms) + + +Started GET "/auth/github" for ::1 at 2016-10-22 12:17:09 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-22 12:17:10 -0700 + + +Started GET "/auth/github/callback?code=bd66138b83294fb45213&state=09b4132dc13c828fe514027f0780ce97b1fe751bdc1c6a34" for ::1 at 2016-10-22 12:17:14 -0700 +Processing by SessionsController#create as HTML + Parameters: {"code"=>"bd66138b83294fb45213", "state"=>"09b4132dc13c828fe514027f0780ce97b1fe751bdc1c6a34", "provider"=>"github"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "16039535"], ["provider", "github"]] +Redirected to http://localhost:3000/ +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-10-22 12:17:16 -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 17ms (Views: 16.1ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-10-22 12:17:32 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 31ms (Views: 29.3ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 12:17:32 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 12:17:32 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 12:17:32 -0700 + + +Started GET "/assets/style.self-fc5b6bf8322927fbd37537fd446809ced21284bf3aba9e7529d5f7b078dd8d4c.css?body=1" for ::1 at 2016-10-22 12:17:32 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 12:17:32 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 12:17:32 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 12:17:32 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 12:17:32 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 12:17:32 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 12:17:32 -0700 + + +Started GET "/" for ::1 at 2016-10-22 17:12:04 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.9ms) +Completed 200 OK in 297ms (Views: 286.9ms | ActiveRecord: 0.5ms) + + +Started GET "/session/destroy" for ::1 at 2016-10-22 17:12:07 -0700 + +ActionController::RoutingError (No route matches [GET] "/session/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 (2.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.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (43.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.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 (176.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.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 (86.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.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (164.8ms) + + +Started GET "/" for ::1 at 2016-10-22 17:13: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.1ms) +Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.2ms) + + +Started GET "/auth/github" for ::1 at 2016-10-22 17:13:35 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-22 17:13:35 -0700 + + +Started GET "/auth/github/callback?code=708ef694bc95079d4445&state=f01b5da9681b378c74d49aef591a92bdc6c579c25ea20655" for ::1 at 2016-10-22 17:13:36 -0700 +Processing by SessionsController#create as HTML + Parameters: {"code"=>"708ef694bc95079d4445", "state"=>"f01b5da9681b378c74d49aef591a92bdc6c579c25ea20655", "provider"=>"github"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "16039535"], ["provider", "github"]] +Redirected to http://localhost:3000/ +Completed 302 Found in 15ms (ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-10-22 17:13: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 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-fc5b6bf8322927fbd37537fd446809ced21284bf3aba9e7529d5f7b078dd8d4c.css?body=1" for ::1 at 2016-10-22 17:13:37 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:13:37 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:13:37 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:13:37 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:13:37 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:13:37 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:13:37 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:13:37 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:13:37 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:13:37 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-22 17:13:40 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-22 17:13:41 -0700 + + +Started GET "/auth/github/callback?code=402f73c3248e0ffc4e50&state=ae3031185b5e437f3bdf2b3efc61058bfd34022090a6cdbc" for ::1 at 2016-10-22 17:13:41 -0700 +Processing by SessionsController#create as HTML + Parameters: {"code"=>"402f73c3248e0ffc4e50", "state"=>"ae3031185b5e437f3bdf2b3efc61058bfd34022090a6cdbc", "provider"=>"github"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "16039535"], ["provider", "github"]] +Redirected to http://localhost:3000/ +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-10-22 17:13: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.1ms) +Completed 200 OK in 18ms (Views: 17.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:13:42 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:13:42 -0700 + + +Started GET "/assets/style.self-fc5b6bf8322927fbd37537fd446809ced21284bf3aba9e7529d5f7b078dd8d4c.css?body=1" for ::1 at 2016-10-22 17:13:42 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:13:42 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:13:42 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:13:42 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:13:42 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:13:42 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:13:42 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:13:42 -0700 + + +Started GET "/" for ::1 at 2016-10-22 17:14:27 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 24ms (Views: 23.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-fc5b6bf8322927fbd37537fd446809ced21284bf3aba9e7529d5f7b078dd8d4c.css?body=1" for ::1 at 2016-10-22 17:14:27 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:14:27 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:14:27 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:14:27 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:14:27 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:14:27 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:14:27 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:14:27 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:14:27 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:14:27 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-22 17:14:28 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-22 17:14:28 -0700 + + +Started GET "/auth/github/callback?code=edd00fe96578ceb81c7f&state=00e89faa2aa31a622786afac029dc65b434147fef53745f6" for ::1 at 2016-10-22 17:14:28 -0700 +Processing by SessionsController#create as HTML + Parameters: {"code"=>"edd00fe96578ceb81c7f", "state"=>"00e89faa2aa31a622786afac029dc65b434147fef53745f6", "provider"=>"github"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "16039535"], ["provider", "github"]] +Redirected to http://localhost:3000/ +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-10-22 17:14:30 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 26ms (Views: 25.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:14:30 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:14:30 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:14:30 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:14:30 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:14:30 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:14:30 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:14:30 -0700 + + +Started GET "/assets/style.self-fc5b6bf8322927fbd37537fd446809ced21284bf3aba9e7529d5f7b078dd8d4c.css?body=1" for ::1 at 2016-10-22 17:14:30 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:14:30 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:14:30 -0700 + + +Started GET "/" for ::1 at 2016-10-22 17:14: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.9ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:14:44 -0700 + + +Started GET "/assets/style.self-fc5b6bf8322927fbd37537fd446809ced21284bf3aba9e7529d5f7b078dd8d4c.css?body=1" for ::1 at 2016-10-22 17:14:44 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:14:44 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:14:44 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:14:44 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:14:44 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:14:44 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:14:44 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:14:44 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:14:44 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-22 17:14:45 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-22 17:14:45 -0700 + + +Started GET "/auth/github/callback?code=383078516fac76b61607&state=d8260f64982e917ad15de0e42713d47815cbcabcd33ecc5f" for ::1 at 2016-10-22 17:14:48 -0700 +Processing by SessionsController#create as HTML + Parameters: {"code"=>"383078516fac76b61607", "state"=>"d8260f64982e917ad15de0e42713d47815cbcabcd33ecc5f", "provider"=>"github"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "16039535"], ["provider", "github"]] +Redirected to http://localhost:3000/ +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-10-22 17:14:50 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 21ms (Views: 20.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-10-22 17:15:20 -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 "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:15:20 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:15:20 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:15:20 -0700 + + +Started GET "/assets/style.self-fc5b6bf8322927fbd37537fd446809ced21284bf3aba9e7529d5f7b078dd8d4c.css?body=1" for ::1 at 2016-10-22 17:15:20 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:15:20 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:15:20 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:15:20 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:15:20 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:15:20 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:15:20 -0700 + + +Started DELETE "/session/destroy" for ::1 at 2016-10-22 17:15:22 -0700 +Processing by SessionsController#destroy as HTML + Parameters: {"authenticity_token"=>"LITapWp1pteZKR1JOVc3Y2cKSgaaWxazjVSeTEx6gqh6r1I2ywsxqcWhoINPclkPwRqdConMG+NrQ3iNdsE21A=="} +Redirected to http://localhost:3000/ +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-10-22 17:15:22 -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 20ms (Views: 19.4ms | ActiveRecord: 0.1ms) + + +Started GET "/auth/github" for ::1 at 2016-10-22 17:15:24 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-22 17:15:24 -0700 + + +Started GET "/auth/github/callback?code=3462bd6909526d6229ef&state=61c87ea9d6d447c2e25b8e73224c25b3bf2aa01f7e4114ab" for ::1 at 2016-10-22 17:15:25 -0700 +Processing by SessionsController#create as HTML + Parameters: {"code"=>"3462bd6909526d6229ef", "state"=>"61c87ea9d6d447c2e25b8e73224c25b3bf2aa01f7e4114ab", "provider"=>"github"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "16039535"], ["provider", "github"]] +Redirected to http://localhost:3000/ +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-10-22 17:15:27 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:15:27 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:15:27 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:15:27 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:15:27 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:15:27 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:15:27 -0700 + + +Started GET "/assets/style.self-fc5b6bf8322927fbd37537fd446809ced21284bf3aba9e7529d5f7b078dd8d4c.css?body=1" for ::1 at 2016-10-22 17:15:27 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:15:27 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:15:27 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:15:27 -0700 + + +Started GET "/" for ::1 at 2016-10-22 17:17:15 -0700 +Processing by TasksController#index as HTML + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.7ms) +Completed 500 Internal Server Error in 31ms (ActiveRecord: 0.8ms) + +ActionController::UrlGenerationError - No route matches {:action=>"show", :controller=>"users"} missing required keys: [:id]: + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/journey/formatter.rb:46:in `generate' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:721:in `generate' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:752:in `generate' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:799:in `url_for' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:280:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:223:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:345:in `block (2 levels) in define_url_helper' + app/views/layouts/application.html.erb:18:in `_app_views_layouts_application_html_erb__2850675598940942552_70210601432020' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/template.rb:145:in `block in render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:166:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/template.rb:333:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/template.rb:143:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/template_renderer.rb:52:in `render_template' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/template_renderer.rb:14:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/renderer.rb:46:in `render_template' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/renderer.rb:27:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/rendering.rb:100:in `_render_template' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/streaming.rb:217:in `_render_template' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/rendering.rb:83:in `render_to_body' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rendering.rb:32:in `render_to_body' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/renderers.rb:37:in `render_to_body' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/rendering.rb:25:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rendering.rb:16:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/core_ext/benchmark.rb:12:in `ms' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:44:in `block in render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:43:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/implicit_render.rb:10:in `default_render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/base.rb:198:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rendering.rb:10:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/callbacks.rb:20:in `block in process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:117:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:505:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:92:in `__run_callbacks__' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:81:in `run_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/callbacks.rb:19:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rescue.rb:29:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:164:in `block in instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications/instrumenter.rb:20:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:164:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:30:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/railties/controller_runtime.rb:18:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/base.rb:137:in `process' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/rendering.rb:30:in `process' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal.rb:196:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal.rb:237:in `block in action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:43:in `serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/journey/router.rb:43:in `block in serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/journey/router.rb:30:in `serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:817:in `call' + omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!' + omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call' + omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/etag.rb:24:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/conditionalget.rb:25:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/head.rb:13:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/params_parser.rb:27:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/flash.rb:260:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/session/abstract/id.rb:225:in `context' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/session/abstract/id.rb:220:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/cookies.rb:560:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/query_cache.rb:36:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/migration.rb:377:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:88:in `__run_callbacks__' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:81:in `run_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/callbacks.rb:27:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/reloader.rb:73:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/tagged_logging.rb:68:in `block in tagged' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/tagged_logging.rb:26:in `tagged' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/request_id.rb:21:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/methodoverride.rb:22:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/runtime.rb:18:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/lock.rb:17:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/static.rb:120:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/lock.rb:17:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/content_length.rb:15:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + + + +Started POST "/__better_errors/ba37a4596a4e1bc6/variables" for ::1 at 2016-10-22 17:17:15 -0700 + + +Started GET "/" for ::1 at 2016-10-22 17:17:28 -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 500 Internal Server Error in 23ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/layouts/application.html.erb:18:in `_app_views_layouts_application_html_erb__2850675598940942552_70210646154140' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/template.rb:145:in `block in render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:166:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/template.rb:333:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/template.rb:143:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/template_renderer.rb:52:in `render_template' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/template_renderer.rb:14:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/renderer.rb:46:in `render_template' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/renderer.rb:27:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/rendering.rb:100:in `_render_template' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/streaming.rb:217:in `_render_template' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/rendering.rb:83:in `render_to_body' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rendering.rb:32:in `render_to_body' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/renderers.rb:37:in `render_to_body' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/rendering.rb:25:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rendering.rb:16:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/core_ext/benchmark.rb:12:in `ms' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:44:in `block in render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:43:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/implicit_render.rb:10:in `default_render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/base.rb:198:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rendering.rb:10:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/callbacks.rb:20:in `block in process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:117:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:505:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:92:in `__run_callbacks__' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:81:in `run_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/callbacks.rb:19:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rescue.rb:29:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:164:in `block in instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications/instrumenter.rb:20:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:164:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:30:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/railties/controller_runtime.rb:18:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/base.rb:137:in `process' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/rendering.rb:30:in `process' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal.rb:196:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal.rb:237:in `block in action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:43:in `serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/journey/router.rb:43:in `block in serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/journey/router.rb:30:in `serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:817:in `call' + omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!' + omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call' + omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/etag.rb:24:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/conditionalget.rb:25:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/head.rb:13:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/params_parser.rb:27:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/flash.rb:260:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/session/abstract/id.rb:225:in `context' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/session/abstract/id.rb:220:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/cookies.rb:560:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/query_cache.rb:36:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/migration.rb:377:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:88:in `__run_callbacks__' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:81:in `run_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/callbacks.rb:27:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/reloader.rb:73:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/tagged_logging.rb:68:in `block in tagged' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/tagged_logging.rb:26:in `tagged' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/request_id.rb:21:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/methodoverride.rb:22:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/runtime.rb:18:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/lock.rb:17:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/static.rb:120:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/lock.rb:17:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/content_length.rb:15:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + + + +Started POST "/__better_errors/a30fee1bef153bd8/variables" for ::1 at 2016-10-22 17:17:28 -0700 + + +Started GET "/" for ::1 at 2016-10-22 17:17: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.1ms) +Completed 500 Internal Server Error in 28ms (ActiveRecord: 0.2ms) + +ActionController::UrlGenerationError - No route matches {:action=>"show", :controller=>"users"} missing required keys: [:id]: + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/journey/formatter.rb:46:in `generate' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:721:in `generate' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:752:in `generate' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:799:in `url_for' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:280:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:223:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:345:in `block (2 levels) in define_url_helper' + app/views/layouts/application.html.erb:18:in `_app_views_layouts_application_html_erb__2850675598940942552_70210646032720' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/template.rb:145:in `block in render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:166:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/template.rb:333:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/template.rb:143:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/template_renderer.rb:52:in `render_template' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/template_renderer.rb:14:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/renderer.rb:46:in `render_template' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/renderer.rb:27:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/rendering.rb:100:in `_render_template' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/streaming.rb:217:in `_render_template' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/rendering.rb:83:in `render_to_body' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rendering.rb:32:in `render_to_body' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/renderers.rb:37:in `render_to_body' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/rendering.rb:25:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rendering.rb:16:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/core_ext/benchmark.rb:12:in `ms' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:44:in `block in render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:43:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/implicit_render.rb:10:in `default_render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/base.rb:198:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rendering.rb:10:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/callbacks.rb:20:in `block in process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:117:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:505:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:92:in `__run_callbacks__' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:81:in `run_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/callbacks.rb:19:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rescue.rb:29:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:164:in `block in instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications/instrumenter.rb:20:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:164:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:30:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/railties/controller_runtime.rb:18:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/base.rb:137:in `process' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/rendering.rb:30:in `process' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal.rb:196:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal.rb:237:in `block in action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:43:in `serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/journey/router.rb:43:in `block in serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/journey/router.rb:30:in `serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:817:in `call' + omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!' + omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call' + omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/etag.rb:24:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/conditionalget.rb:25:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/head.rb:13:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/params_parser.rb:27:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/flash.rb:260:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/session/abstract/id.rb:225:in `context' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/session/abstract/id.rb:220:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/cookies.rb:560:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/query_cache.rb:36:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/migration.rb:377:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:88:in `__run_callbacks__' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:81:in `run_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/callbacks.rb:27:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/reloader.rb:73:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/tagged_logging.rb:68:in `block in tagged' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/tagged_logging.rb:26:in `tagged' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/request_id.rb:21:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/methodoverride.rb:22:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/runtime.rb:18:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/lock.rb:17:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/static.rb:120:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/lock.rb:17:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/content_length.rb:15:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + + + +Started POST "/__better_errors/13158950dbe04bb5/variables" for ::1 at 2016-10-22 17:17:52 -0700 + + +Started GET "/" for ::1 at 2016-10-22 17:18:04 -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 500 Internal Server Error in 22ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/layouts/application.html.erb:18:in `_app_views_layouts_application_html_erb__2850675598940942552_70210629406920' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/template.rb:145:in `block in render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:166:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/template.rb:333:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/template.rb:143:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/template_renderer.rb:52:in `render_template' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/template_renderer.rb:14:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/renderer.rb:46:in `render_template' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/renderer.rb:27:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/rendering.rb:100:in `_render_template' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/streaming.rb:217:in `_render_template' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/rendering.rb:83:in `render_to_body' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rendering.rb:32:in `render_to_body' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/renderers.rb:37:in `render_to_body' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/rendering.rb:25:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rendering.rb:16:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/core_ext/benchmark.rb:12:in `ms' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:44:in `block in render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:43:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/implicit_render.rb:10:in `default_render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/base.rb:198:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rendering.rb:10:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/callbacks.rb:20:in `block in process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:117:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:505:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:92:in `__run_callbacks__' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:81:in `run_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/callbacks.rb:19:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rescue.rb:29:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:164:in `block in instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications/instrumenter.rb:20:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:164:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:30:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/railties/controller_runtime.rb:18:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/base.rb:137:in `process' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/rendering.rb:30:in `process' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal.rb:196:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal.rb:237:in `block in action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:43:in `serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/journey/router.rb:43:in `block in serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/journey/router.rb:30:in `serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:817:in `call' + omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!' + omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call' + omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/etag.rb:24:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/conditionalget.rb:25:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/head.rb:13:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/params_parser.rb:27:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/flash.rb:260:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/session/abstract/id.rb:225:in `context' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/session/abstract/id.rb:220:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/cookies.rb:560:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/query_cache.rb:36:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/migration.rb:377:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:88:in `__run_callbacks__' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:81:in `run_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/callbacks.rb:27:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/reloader.rb:73:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/tagged_logging.rb:68:in `block in tagged' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/tagged_logging.rb:26:in `tagged' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/request_id.rb:21:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/methodoverride.rb:22:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/runtime.rb:18:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/lock.rb:17:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/static.rb:120:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/lock.rb:17:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/content_length.rb:15:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + + + +Started POST "/__better_errors/466809d60b6d6ff4/variables" for ::1 at 2016-10-22 17:18:04 -0700 + + +Started GET "/" for ::1 at 2016-10-22 17:18:22 -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 500 Internal Server Error in 36ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/layouts/application.html.erb:18:in `_app_views_layouts_application_html_erb__2850675598940942552_70210605737700' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/template.rb:145:in `block in render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:166:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/template.rb:333:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/template.rb:143:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/template_renderer.rb:52:in `render_template' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/template_renderer.rb:14:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/renderer.rb:46:in `render_template' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/renderer.rb:27:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/rendering.rb:100:in `_render_template' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/streaming.rb:217:in `_render_template' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/rendering.rb:83:in `render_to_body' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rendering.rb:32:in `render_to_body' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/renderers.rb:37:in `render_to_body' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/rendering.rb:25:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rendering.rb:16:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/core_ext/benchmark.rb:12:in `ms' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:44:in `block in render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:43:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/implicit_render.rb:10:in `default_render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/base.rb:198:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rendering.rb:10:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/callbacks.rb:20:in `block in process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:117:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:505:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:92:in `__run_callbacks__' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:81:in `run_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/callbacks.rb:19:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rescue.rb:29:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:164:in `block in instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications/instrumenter.rb:20:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:164:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:30:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/railties/controller_runtime.rb:18:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/base.rb:137:in `process' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/rendering.rb:30:in `process' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal.rb:196:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal.rb:237:in `block in action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:43:in `serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/journey/router.rb:43:in `block in serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/journey/router.rb:30:in `serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:817:in `call' + omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!' + omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call' + omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/etag.rb:24:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/conditionalget.rb:25:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/head.rb:13:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/params_parser.rb:27:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/flash.rb:260:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/session/abstract/id.rb:225:in `context' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/session/abstract/id.rb:220:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/cookies.rb:560:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/query_cache.rb:36:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/migration.rb:377:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:88:in `__run_callbacks__' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:81:in `run_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/callbacks.rb:27:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/reloader.rb:73:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/tagged_logging.rb:68:in `block in tagged' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/tagged_logging.rb:26:in `tagged' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/request_id.rb:21:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/methodoverride.rb:22:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/runtime.rb:18:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/lock.rb:17:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/static.rb:120:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/lock.rb:17:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/content_length.rb:15:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + + + +Started POST "/__better_errors/8db4f2c4963adf32/variables" for ::1 at 2016-10-22 17:18:22 -0700 + + +Started GET "/" for ::1 at 2016-10-22 17:19:07 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 21ms (Views: 19.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:19:07 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:19:07 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:19:07 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:19:07 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:19:07 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:19:07 -0700 + + +Started GET "/assets/style.self-fc5b6bf8322927fbd37537fd446809ced21284bf3aba9e7529d5f7b078dd8d4c.css?body=1" for ::1 at 2016-10-22 17:19:07 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:19:07 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:19:07 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:19:07 -0700 + + +Started GET "/users/1" for ::1 at 2016-10-22 17:19:09 -0700 + +ActionController::RoutingError - uninitialized constant UsersController: + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:63:in `rescue in controller' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:58:in `controller' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:39:in `serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/journey/router.rb:43:in `block in serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/journey/router.rb:30:in `serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:817:in `call' + omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!' + omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call' + omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/etag.rb:24:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/conditionalget.rb:25:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/head.rb:13:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/params_parser.rb:27:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/flash.rb:260:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/session/abstract/id.rb:225:in `context' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/session/abstract/id.rb:220:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/cookies.rb:560:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/query_cache.rb:36:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/migration.rb:377:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:88:in `__run_callbacks__' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:81:in `run_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/callbacks.rb:27:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/reloader.rb:73:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/tagged_logging.rb:68:in `block in tagged' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/tagged_logging.rb:26:in `tagged' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/request_id.rb:21:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/methodoverride.rb:22:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/runtime.rb:18:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/lock.rb:17:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/static.rb:120:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/lock.rb:17:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/content_length.rb:15:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + + + +Started POST "/__better_errors/a747e9668b418cc5/variables" for ::1 at 2016-10-22 17:19:09 -0700 + + +Started GET "/" for ::1 at 2016-10-22 17:21:05 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.4ms) +Completed 200 OK in 223ms (Views: 220.1ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:21:05 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:21:05 -0700 + + +Started GET "/assets/style.self-fc5b6bf8322927fbd37537fd446809ced21284bf3aba9e7529d5f7b078dd8d4c.css?body=1" for ::1 at 2016-10-22 17:21:05 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:21:05 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:21:05 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:21:05 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:21:05 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:21:05 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:21:05 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:21:05 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:21:05 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:21:05 -0700 + + +Started GET "/users/1" for ::1 at 2016-10-22 17:21:06 -0700 +Processing by UsersController#show as HTML + Parameters: {"authenticity_token"=>"gAwgfvDllWcww/iLgOdWK1au5dfZAydDWI9EAsoiAyLWJ6jtUZsCGWxLRUH2wjhH8L4y28qUKhO+mKLD8Jm3Xg==", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Rendered users/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 31ms (Views: 22.4ms | ActiveRecord: 0.3ms) + + +Started GET "/users/1" for ::1 at 2016-10-22 17:21:57 -0700 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Rendered users/show.html.erb within layouts/application (0.0ms) +Completed 200 OK in 30ms (Views: 20.9ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:21:57 -0700 + + +Started GET "/assets/style.self-fc5b6bf8322927fbd37537fd446809ced21284bf3aba9e7529d5f7b078dd8d4c.css?body=1" for ::1 at 2016-10-22 17:21:57 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:21:57 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:21:57 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:21:57 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:21:57 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:21:57 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:21:57 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:21:57 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:21:57 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:21:57 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:21:57 -0700 + + +Started GET "/users/1" for ::1 at 2016-10-22 17:22:41 -0700 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Rendered users/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 20ms (Views: 18.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:22:41 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:22:41 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:22:41 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:22:41 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:22:41 -0700 + + +Started GET "/assets/style.self-fc5b6bf8322927fbd37537fd446809ced21284bf3aba9e7529d5f7b078dd8d4c.css?body=1" for ::1 at 2016-10-22 17:22:41 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:22:41 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:22:41 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:22:41 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:22:41 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:22:41 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:22:41 -0700 + + +Started GET "/users/1" for ::1 at 2016-10-22 17:22:54 -0700 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Rendered users/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 31ms (Views: 28.9ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:22:54 -0700 + + +Started GET "/assets/style.self-fc5b6bf8322927fbd37537fd446809ced21284bf3aba9e7529d5f7b078dd8d4c.css?body=1" for ::1 at 2016-10-22 17:22:54 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:22:54 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:22:54 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:22:54 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:22:54 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:22:54 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:22:54 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:22:54 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:22:54 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:22:54 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:22:54 -0700 + + +Started GET "/users/1" for ::1 at 2016-10-22 17:23:04 -0700 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Rendered users/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 23ms (Views: 21.6ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:23:04 -0700 + + +Started GET "/assets/style.self-fc5b6bf8322927fbd37537fd446809ced21284bf3aba9e7529d5f7b078dd8d4c.css?body=1" for ::1 at 2016-10-22 17:23:04 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:23:04 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:23:04 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:23:04 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:23:04 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:23:04 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:23:04 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:23:04 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:23:04 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:23:04 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:23:04 -0700 + + +Started GET "/users/1" for ::1 at 2016-10-22 17:23:13 -0700 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Rendered users/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:23:13 -0700 + + +Started GET "/assets/style.self-fc5b6bf8322927fbd37537fd446809ced21284bf3aba9e7529d5f7b078dd8d4c.css?body=1" for ::1 at 2016-10-22 17:23:13 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:23:13 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:23:13 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:23:13 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:23:13 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:23:13 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:23:13 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:23:13 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:23:13 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:23:13 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:23:13 -0700 + + +Started GET "/users/1" for ::1 at 2016-10-22 17:23:44 -0700 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Rendered users/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:23:44 -0700 + + +Started GET "/assets/style.self-fc5b6bf8322927fbd37537fd446809ced21284bf3aba9e7529d5f7b078dd8d4c.css?body=1" for ::1 at 2016-10-22 17:23:44 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:23:44 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:23:44 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:23:44 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:23:44 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:23:44 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:23:44 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:23:44 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:23:44 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:23:44 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:23:44 -0700 + + +Started GET "/users/1" for ::1 at 2016-10-22 17:23:45 -0700 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Rendered users/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 31ms (Views: 29.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:23:45 -0700 + + +Started GET "/assets/style.self-fc5b6bf8322927fbd37537fd446809ced21284bf3aba9e7529d5f7b078dd8d4c.css?body=1" for ::1 at 2016-10-22 17:23:45 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:23:45 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:23:45 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:23:45 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:23:45 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:23:45 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:23:45 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:23:45 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:23:45 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:23:45 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:23:45 -0700 + + +Started GET "/users/1" for ::1 at 2016-10-22 17:24:32 -0700 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Rendered users/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 39ms (Views: 37.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:24:32 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:24:32 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:24:32 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:24:32 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:24:32 -0700 + + +Started GET "/assets/style.self-d97a78865ccebf574a38af265ac4475be5748953162568c431926d3f01fd60cf.css?body=1" for ::1 at 2016-10-22 17:24:32 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:24:32 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:24:32 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:24:32 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:24:32 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:24:32 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:24:32 -0700 + + +Started GET "/users/1" for ::1 at 2016-10-22 17:25:33 -0700 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Rendered users/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 35ms (Views: 33.7ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:25:33 -0700 + + +Started GET "/assets/style.self-ec6c5e21d22011a322c591427cb450113518c2ade2fb62dd9901efee98fbeaa0.css?body=1" for ::1 at 2016-10-22 17:25:33 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:25:33 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:25:33 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:25:33 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:25:33 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:25:33 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:25:33 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:25:33 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:25:33 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:25:33 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:25:33 -0700 + + +Started GET "/users/1" for ::1 at 2016-10-22 17:25:34 -0700 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Rendered users/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 20ms (Views: 18.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:25:34 -0700 + + +Started GET "/assets/style.self-ec6c5e21d22011a322c591427cb450113518c2ade2fb62dd9901efee98fbeaa0.css?body=1" for ::1 at 2016-10-22 17:25:34 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:25:34 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:25:34 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:25:34 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:25:34 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:25:34 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:25:34 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:25:34 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:25:34 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:25:34 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:25:34 -0700 + + +Started GET "/users/1" for ::1 at 2016-10-22 17:26:01 -0700 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Rendered users/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 38ms (Views: 37.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:26:01 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:26:01 -0700 + + +Started GET "/assets/style.self-765c466b79df2a7253bc2a4e617a47b3026aa3e54551f7d4827ea7e9e1901514.css?body=1" for ::1 at 2016-10-22 17:26:01 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:26:01 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:26:01 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:26:01 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:26:01 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:26:01 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:26:01 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:26:01 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:26:01 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:26:01 -0700 + + +Started GET "/users/1" for ::1 at 2016-10-22 17:26:02 -0700 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Rendered users/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:26:02 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:26:02 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:26:02 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:26:02 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:26:02 -0700 + + +Started GET "/assets/style.self-765c466b79df2a7253bc2a4e617a47b3026aa3e54551f7d4827ea7e9e1901514.css?body=1" for ::1 at 2016-10-22 17:26:02 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:26:02 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:26:02 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:26:02 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:26:02 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:26:02 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:26:02 -0700 + + +Started GET "/users/1" for ::1 at 2016-10-22 17:26:08 -0700 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Rendered users/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 41ms (Views: 39.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:26:08 -0700 + + +Started GET "/assets/style.self-aad0379035c18607eafd13ea6a6a343ac955d635d1812df915d72b921f893169.css?body=1" for ::1 at 2016-10-22 17:26:08 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:26:08 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:26:08 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:26:08 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:26:08 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:26:08 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:26:08 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:26:08 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:26:08 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:26:08 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:26:08 -0700 + + +Started GET "/users/1" for ::1 at 2016-10-22 17:26:15 -0700 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Rendered users/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 39ms (Views: 37.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:26:15 -0700 + + +Started GET "/assets/style.self-ab89736520a8077bb2ed1232abd0032ba1aa37692be45a1fe8325eacc05973c4.css?body=1" for ::1 at 2016-10-22 17:26:15 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:26:15 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:26:15 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:26:15 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:26:15 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:26:15 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:26:15 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:26:15 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:26:15 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:26:15 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:26:15 -0700 + + +Started GET "/users/1" for ::1 at 2016-10-22 17:27:16 -0700 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Rendered users/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 37ms (Views: 35.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:27:16 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:27:16 -0700 + + +Started GET "/assets/style.self-25a6c75918e00c256a08b01ed10f957311f0a523490d595b8097aa8fa34514f6.css?body=1" for ::1 at 2016-10-22 17:27:16 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:27:16 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:27:16 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:27:16 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:27:16 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:27:16 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:27:16 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:27:16 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:27:16 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:27:16 -0700 + + +Started GET "/users/1" for ::1 at 2016-10-22 17:27:37 -0700 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Rendered users/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 38ms (Views: 35.6ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:27:37 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:27:37 -0700 + + +Started GET "/assets/style.self-76288522cfc26bc32bdba9548d0c31050f554bf295b501f5a6ca68d082bdd737.css?body=1" for ::1 at 2016-10-22 17:27:37 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:27:37 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:27:37 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:27:37 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:27:37 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:27:38 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:27:38 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:27:38 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:27:38 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:27:38 -0700 + + +Started GET "/users/1" for ::1 at 2016-10-22 17:27:38 -0700 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Rendered users/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 26ms (Views: 25.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:27:38 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:27:38 -0700 + + +Started GET "/assets/style.self-76288522cfc26bc32bdba9548d0c31050f554bf295b501f5a6ca68d082bdd737.css?body=1" for ::1 at 2016-10-22 17:27:38 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:27:38 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:27:38 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:27:38 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:27:38 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:27:38 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:27:38 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:27:38 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:27:38 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:27:38 -0700 + + +Started GET "/users/1" for ::1 at 2016-10-22 17:28:04 -0700 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Rendered users/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 37ms (Views: 36.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:28:04 -0700 + + +Started GET "/assets/style.self-c673c152337ce8d80ff42b981f71cd00bdb6bfeb4e9f1cd33545bad688b5ae81.css?body=1" for ::1 at 2016-10-22 17:28:04 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:28:04 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:28:04 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:28:04 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:28:04 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:28:04 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:28:04 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:28:04 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:28:04 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:28:04 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:28:04 -0700 + + +Started GET "/users/1" for ::1 at 2016-10-22 17:28:14 -0700 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Rendered users/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 36ms (Views: 35.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:28:14 -0700 + + +Started GET "/assets/style.self-30a06e0a25b60944c8e808ded17fd2af748d5432a602524df5ee247b81bcc6c6.css?body=1" for ::1 at 2016-10-22 17:28:14 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:28:14 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:28:14 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:28:14 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:28:14 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:28:14 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:28:14 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:28:14 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:28:14 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:28:14 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:28:14 -0700 + + +Started GET "/users/1" for ::1 at 2016-10-22 17:28:24 -0700 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Rendered users/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 48ms (Views: 46.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:28:24 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:28:24 -0700 + + +Started GET "/assets/style.self-7e2e04963c38bb341213b314b12d92ec23fc791f05b8fa3e920daedc0936280d.css?body=1" for ::1 at 2016-10-22 17:28:24 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:28:24 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:28:24 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:28:24 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:28:24 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:28:24 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:28:24 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:28:24 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:28:24 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:28:24 -0700 + + +Started GET "/users/1" for ::1 at 2016-10-22 17:28:25 -0700 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Rendered users/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 20ms (Views: 18.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:28:25 -0700 + + +Started GET "/assets/style.self-7e2e04963c38bb341213b314b12d92ec23fc791f05b8fa3e920daedc0936280d.css?body=1" for ::1 at 2016-10-22 17:28:25 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:28:25 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:28:25 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:28:25 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:28:25 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:28:25 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:28:25 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:28:25 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:28:25 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:28:25 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:28:25 -0700 + + +Started GET "/users/1" for ::1 at 2016-10-22 17:28:43 -0700 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Rendered users/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 44ms (Views: 42.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:28:43 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:28:43 -0700 + + +Started GET "/assets/style.self-1d94233a6ba0f6a5250a01640fb08a554db4484b4e57dfcefb7e1bd4f0c56c5b.css?body=1" for ::1 at 2016-10-22 17:28:43 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:28:43 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:28:43 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:28:43 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:28:43 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:28:43 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:28:43 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:28:43 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:28:43 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:28:44 -0700 + + +Started GET "/" for ::1 at 2016-10-22 17:29:01 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 27ms (Views: 23.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-10-22 17:29:02 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"15"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] + Rendered tasks/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 25ms (Views: 22.3ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-10-22 17:29: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.7ms) +Completed 200 OK in 26ms (Views: 24.9ms | ActiveRecord: 0.1ms) + + +Started GET "/users/1" for ::1 at 2016-10-22 17:29:41 -0700 +Processing by UsersController#show as HTML + Parameters: {"authenticity_token"=>"c/Iyha/yvj2qaljhQ4flRrspyPN5hUxkDw2ztRki+x0l2boWDowpQ/bi5Ss1oosqHTkf/2oSQTTpGlV0I5lPYQ==", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Rendered users/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 36ms (Views: 34.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-f58945bd243e7bcfb1fc1b7ce4838b2338fbf100b7977fb1a610e2195114ee55.css?body=1" for ::1 at 2016-10-22 17:29:41 -0700 + + +Started GET "/users/1" for ::1 at 2016-10-22 17:29:48 -0700 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Rendered users/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 24ms (Views: 22.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:29:48 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:29:48 -0700 + + +Started GET "/assets/style.self-f58945bd243e7bcfb1fc1b7ce4838b2338fbf100b7977fb1a610e2195114ee55.css?body=1" for ::1 at 2016-10-22 17:29:48 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:29:48 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:29:48 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:29:48 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:29:48 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:29:48 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:29:48 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:29:48 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:29:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:29:48 -0700 + + +Started GET "/users/1" for ::1 at 2016-10-22 17:29:56 -0700 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Rendered users/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 45ms (Views: 44.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:29:56 -0700 + + +Started GET "/assets/style.self-b93a5443291a20e9ef2e87652f832cdbcef1cc3b22b2bd59c5653a9fbcea7c06.css?body=1" for ::1 at 2016-10-22 17:29:56 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:29:56 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:29:56 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:29:56 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:29:56 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:29:56 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:29:56 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:29:56 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:29:56 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:29:56 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:29:56 -0700 + + +Started GET "/users/1" for ::1 at 2016-10-22 17:29:57 -0700 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Rendered users/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 33ms (Views: 31.1ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:29:57 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:29:57 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:29:57 -0700 + + +Started GET "/assets/style.self-b93a5443291a20e9ef2e87652f832cdbcef1cc3b22b2bd59c5653a9fbcea7c06.css?body=1" for ::1 at 2016-10-22 17:29:57 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:29:57 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:29:57 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:29:57 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:29:57 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:29:57 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:29:57 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:29:57 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:29:57 -0700 + + +Started GET "/users/1" for ::1 at 2016-10-22 17:30:02 -0700 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Rendered users/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 22ms (Views: 20.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:30:02 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:30:02 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:30:02 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:30:02 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:30:02 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:30:02 -0700 + + +Started GET "/assets/style.self-f58945bd243e7bcfb1fc1b7ce4838b2338fbf100b7977fb1a610e2195114ee55.css?body=1" for ::1 at 2016-10-22 17:30:02 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:30:02 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:30:02 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:30:02 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:30:02 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:30:02 -0700 + + +Started GET "/users/1" for ::1 at 2016-10-22 17:30:23 -0700 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Rendered users/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 48ms (Views: 46.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:30:23 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:30:23 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:30:23 -0700 + + +Started GET "/assets/style.self-82fb385015ab3355da6f7e16197b2b443b8aba156e8d8f858edb070bda39ff24.css?body=1" for ::1 at 2016-10-22 17:30:23 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:30:23 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:30:23 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:30:23 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:30:23 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:30:23 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:30:23 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:30:23 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:30:23 -0700 + + +Started DELETE "/session/destroy" for ::1 at 2016-10-22 17:30:52 -0700 +Processing by SessionsController#destroy as HTML + Parameters: {"authenticity_token"=>"ENu9sVTmlnXtDweIfMB0q/A3rXs8T9Z5WzQXjSWZm59G8DUi9ZgBC7GHukIK5RrHVid6dy/Y2ym9I/FMHyIv4w=="} +Redirected to http://localhost:3000/users/1 +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/users/1" for ::1 at 2016-10-22 17:30:52 -0700 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Rendered users/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 21ms (Views: 20.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-10-22 17:30:54 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 21ms (Views: 20.3ms | ActiveRecord: 0.1ms) + + +Started GET "/user/1/show" for ::1 at 2016-10-22 17:31:03 -0700 + +ActionController::RoutingError (No route matches [GET] "/user/1/show"): + 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.9ms) + 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.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/routing_error.html.erb within rescues/layout (85.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.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 (51.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.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 (107.9ms) + + +Started GET "/auth/github" for ::1 at 2016-10-22 17:31:08 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-22 17:31:08 -0700 + + +Started GET "/auth/github/callback?code=2ae2eaaf8b33283b3a77&state=a53b5ce0bbdb2bb9c95498ddf97a9ed21b6b84c1a6192418" for ::1 at 2016-10-22 17:31:09 -0700 +Processing by SessionsController#create as HTML + Parameters: {"code"=>"2ae2eaaf8b33283b3a77", "state"=>"a53b5ce0bbdb2bb9c95498ddf97a9ed21b6b84c1a6192418", "provider"=>"github"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "16039535"], ["provider", "github"]] +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-10-22 17:31:10 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 20ms (Views: 19.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:31:10 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:31:10 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:31:10 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:31:10 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:31:10 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:31:10 -0700 + + +Started GET "/assets/style.self-82fb385015ab3355da6f7e16197b2b443b8aba156e8d8f858edb070bda39ff24.css?body=1" for ::1 at 2016-10-22 17:31:10 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:31:10 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:31:10 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:31:10 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:31:10 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:31:10 -0700 + + +Started GET "/users/1" for ::1 at 2016-10-22 17:31:12 -0700 +Processing by UsersController#show as HTML + Parameters: {"authenticity_token"=>"i7h1yPY1oUxexd8/AF01CSRSTVuRmfGgND6PyQdHpRLdk/1bV0s2MgJNYvV2eFtlgkKaV4IO/PDSKWkIPfwRbg==", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Rendered users/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 19ms (Views: 18.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-10-22 17:31:13 -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 23ms (Views: 22.3ms | ActiveRecord: 0.1ms) + + +Started DELETE "/session/destroy" for ::1 at 2016-10-22 17:31:14 -0700 +Processing by SessionsController#destroy as HTML + Parameters: {"authenticity_token"=>"z0e/zG4Nv4py5mB4xckDUbHHL8NYtrOKClAgg8i04quZbDdfz3Mo9C5u3bKz7G09F9f4z0shvtrsR8ZC8g9W1w=="} +Redirected to http://localhost:3000/ +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-10-22 17:31: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.2ms) +Completed 200 OK in 20ms (Views: 18.9ms | ActiveRecord: 0.2ms) + + +Started GET "/users/1" for ::1 at 2016-10-22 17:31:18 -0700 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Rendered users/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-10-22 17:31: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.7ms) +Completed 200 OK in 22ms (Views: 21.0ms | ActiveRecord: 0.2ms) + + +Started GET "/auth/github" for ::1 at 2016-10-22 17:31:21 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-22 17:31:22 -0700 + + +Started GET "/auth/github/callback?code=681d97bd12ddc5436029&state=35ae65edd40d4437e4b198d3b513fd589c8e5323e10099fe" for ::1 at 2016-10-22 17:31:22 -0700 +Processing by SessionsController#create as HTML + Parameters: {"code"=>"681d97bd12ddc5436029", "state"=>"35ae65edd40d4437e4b198d3b513fd589c8e5323e10099fe", "provider"=>"github"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "16039535"], ["provider", "github"]] +Redirected to http://localhost:3000/ +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-10-22 17:31:23 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 22ms (Views: 21.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:31:23 -0700 + + +Started GET "/assets/style.self-82fb385015ab3355da6f7e16197b2b443b8aba156e8d8f858edb070bda39ff24.css?body=1" for ::1 at 2016-10-22 17:31:23 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:31:23 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:31:23 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:31:23 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-22 17:31:23 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:31:23 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:31:23 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:31:23 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:31:23 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:31:23 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:31:23 -0700 diff --git a/test/controllers/users_controller_test.rb b/test/controllers/users_controller_test.rb new file mode 100644 index 000000000..d84749b5f --- /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 From c5d2a5f2441bac72156b40fa30f4e0e8465b1f2c Mon Sep 17 00:00:00 2001 From: Briana Eng Date: Sat, 22 Oct 2016 17:38:36 -0700 Subject: [PATCH 16/31] Made it so the welcome page tells you to login if guest or shows tasks if signed in. --- app/assets/stylesheets/style.css | 2 +- app/views/layouts/application.html.erb | 2 ++ app/views/tasks/index.html.erb | 33 +++++++++++++++----------- app/views/users/show.html.erb | 2 +- 4 files changed, 23 insertions(+), 16 deletions(-) diff --git a/app/assets/stylesheets/style.css b/app/assets/stylesheets/style.css index 1e6747094..fa04b258f 100644 --- a/app/assets/stylesheets/style.css +++ b/app/assets/stylesheets/style.css @@ -86,7 +86,7 @@ img { width: 10rem; } -.profile { +.center { margin: 0 auto; text-align: center; } diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index ce026198e..ad21c4f98 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -9,10 +9,12 @@
        diff --git a/app/views/sessions/new.html.erb b/app/views/sessions/new.html.erb new file mode 100644 index 000000000..b747fc6e0 --- /dev/null +++ b/app/views/sessions/new.html.erb @@ -0,0 +1,25 @@ + diff --git a/app/views/tasks/_form.html.erb b/app/views/tasks/_form.html.erb index a8b0edfd3..2b45f20ce 100644 --- a/app/views/tasks/_form.html.erb +++ b/app/views/tasks/_form.html.erb @@ -1,6 +1,10 @@ <% if flash[:notice] != nil %>
        - <%= flash[:notice].join("
        ").html_safe %> + <% if flash[:notice].length > 1 %> + <%= flash[:notice].join("
        ").html_safe %> + <% else %> + <%= flash[:notice] %> + <% end %>
        <% end %> diff --git a/app/views/users/new.html.erb b/app/views/users/new.html.erb index c21a1adf1..be42e27fd 100644 --- a/app/views/users/new.html.erb +++ b/app/views/users/new.html.erb @@ -1,2 +1,9 @@ -

        Users#new

        -

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

        +
        +

        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/config/routes.rb b/config/routes.rb index 705183a2b..7b4af86af 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,6 +1,14 @@ 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' @@ -21,9 +29,9 @@ delete 'tasks/:id/destroy' => 'tasks#destroy', as: 'destroy' - get '/auth/:provider/callback' => 'sessions#create' + get '/auth/:provider/callback' => 'sessions#create_via_github' - delete '/session/destroy' => 'sessions#destroy' + # delete '/session/destroy' => 'sessions#destroy' resources :users diff --git a/db/development.sqlite3 b/db/development.sqlite3 index 984cccb205c3c311bc6ef8921922ffcdf399eb8f..9f268ee7c3b03f1532f03540aa62a5863baa2cef 100644 GIT binary patch delta 730 zcmZp8z}WDBae}m99RmXcI}pPF*F+s-$vOtzXI#A8HyGHst~2mY;^*MH&U=-|l{bI0 zqCh;?=IdOHj4XWW47ron46bAlx{CD_I@$cYY#y)OZe&=1(|sm7^E3Afo@@FWDRi*4)OGJF98OZ zp#zB2OU}nj4P%+dq%L%r~PE0f{OD}cxD%P{8 za?9{Hc8@ajFAUYsNv}^fGDvcE%&w?1DR8a|*7u6^@dz_&6kq~7N*(GbpgS`2(m~F_ z;U-{M8C&RC7#oQ$NKZd+&r&DzlCYe#$SBLO zl>9`)u;ijJkHBoFj9~o~!z3eby~)Y(3#GXEPcZQR=Kse3k^c?4!;h@l0pnm*B7B z+sjwZr^kDow~AMv=ONE@pv6@@jGmjP+vGE|y=LJ5%KsXu@h1Po05*9JCT4NY(&E&j zVopY8amJFw;_PBcUZ95<`I8y=lYv?z`6nmGFO=ZoKgYoToBtdCNB%eb&-owm-{rr- Rf0_Rr(4"F4BLux/ZlPne1vltSBlmf2ehlSJ2cnVcFRG1JRaRkBGXmFbjRg+nUEBhfz+PvF24nvAj1G0Kp8DiHW05Y3swNA=="} +Redirected to http://localhost:3000/ +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-10-23 15:11:02 -0700 +Processing by PagesController#index as HTML + Rendered pages/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 37ms (Views: 36.7ms | ActiveRecord: 0.0ms) + + +Started GET "/signup" for ::1 at 2016-10-23 15:11:15 -0700 +Processing by UsersController#new as HTML + Rendered users/new.html.erb within layouts/application (38.7ms) +Completed 200 OK in 93ms (Views: 92.3ms | ActiveRecord: 0.0ms) + + +Started GET "/auth/github" for ::1 at 2016-10-23 15:11:41 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-23 15:11:41 -0700 + + +Started GET "/auth/github/callback?code=1d61d7d592278e137dea&state=1ab0ea675d59427106f847b328b332c2dc7a814344820f94" for ::1 at 2016-10-23 15:11:42 -0700 +Processing by SessionsController#create as HTML + Parameters: {"code"=>"1d61d7d592278e137dea", "state"=>"1ab0ea675d59427106f847b328b332c2dc7a814344820f94", "provider"=>"github"} + User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "16039535"], ["provider", "github"]] +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.2ms) + + +Started GET "/" for ::1 at 2016-10-23 15:11:45 -0700 +Processing by PagesController#index as HTML +Redirected to http://localhost:3000/tasks/index +Completed 302 Found in 2ms (ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-10-23 15:11:45 -0700 +Processing by TasksController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? [["user_id", 1]] + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 29ms (Views: 27.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/pages.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 15:11:45 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 15:11:45 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 15:11:45 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-23 15:11:45 -0700 + + +Started GET "/assets/style.self-1fe4698d0f7cea3c62dbbaed163fc07040d827f3f6fbaa79bcc3e896a9fcceeb.css?body=1" for ::1 at 2016-10-23 15:11:45 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-23 15:11:45 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 15:11:45 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-23 15:11:45 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-23 15:11:45 -0700 + + +Started GET "/assets/pages.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 15:11:45 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 15:11:45 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 15:11:45 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 15:11:45 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-23 15:11:45 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-10-23 15:11:46 -0700 +Processing by TasksController#new as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/_form.html.erb (40.7ms) + Rendered tasks/new.html.erb within layouts/application (57.6ms) +Completed 200 OK in 89ms (Views: 87.4ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-10-23 15:11:49 -0700 +Processing by PagesController#index as HTML +Redirected to http://localhost:3000/tasks/index +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-10-23 15:11:49 -0700 +Processing by TasksController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? [["user_id", 1]] + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 29ms (Views: 26.7ms | ActiveRecord: 0.3ms) + + +Started DELETE "/session/destroy" for ::1 at 2016-10-23 15:11:52 -0700 +Processing by SessionsController#destroy as HTML + Parameters: {"authenticity_token"=>"uCdpI5GrLcI82KSipqNODqFiEluBIpEDNQXt2sikEnU4P3R7yH0ea6JvIvBhBnXJWDOkrZpaQ5/CCTXGvU6yUA=="} +Redirected to http://localhost:3000/ +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-10-23 15:11:52 -0700 +Processing by PagesController#index as HTML + Rendered pages/index.html.erb within layouts/application (0.1ms) +Completed 200 OK in 23ms (Views: 22.8ms | ActiveRecord: 0.0ms) + + +Started GET "/signup" for ::1 at 2016-10-23 15:11:55 -0700 +Processing by UsersController#new as HTML + Rendered users/new.html.erb within layouts/application (1.1ms) +Completed 200 OK in 23ms (Views: 22.7ms | ActiveRecord: 0.0ms) + + +Started GET "/signup" for ::1 at 2016-10-23 15:12:32 -0700 +Processing by UsersController#new as HTML + Rendered users/new.html.erb within layouts/application (2.1ms) +Completed 200 OK in 44ms (Views: 39.4ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/pages.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 15:12:32 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 15:12:32 -0700 + + +Started GET "/assets/style.self-1fe4698d0f7cea3c62dbbaed163fc07040d827f3f6fbaa79bcc3e896a9fcceeb.css?body=1" for ::1 at 2016-10-23 15:12:32 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-23 15:12:32 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 15:12:32 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-23 15:12:32 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-23 15:12:32 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 15:12:32 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-23 15:12:32 -0700 + + +Started GET "/assets/pages.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 15:12:32 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 15:12:32 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 15:12:32 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 15:12:32 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-23 15:12:32 -0700 + + +Started GET "/" for ::1 at 2016-10-23 15:12:36 -0700 +Processing by PagesController#index as HTML + Rendered pages/index.html.erb within layouts/application (0.0ms) +Completed 200 OK in 37ms (Views: 36.4ms | ActiveRecord: 0.0ms) + + +Started GET "/sgnup" for ::1 at 2016-10-23 15:13:08 -0700 + +ActionController::RoutingError (No route matches [GET] "/sgnup"): + 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.5ms) + 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.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 (4.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.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 (106.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.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.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.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 (86.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.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.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (176.7ms) + + +Started GET "/signup" for ::1 at 2016-10-23 15:13:11 -0700 +Processing by UsersController#new as HTML + Rendered users/new.html.erb within layouts/application (0.8ms) +Completed 200 OK in 25ms (Views: 24.4ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-10-23 15:13:25 -0700 +Processing by PagesController#index as HTML + Rendered pages/index.html.erb within layouts/application (0.0ms) +Completed 200 OK in 24ms (Views: 23.5ms | ActiveRecord: 0.0ms) + + +Started GET "/signup" for ::1 at 2016-10-23 15:13:27 -0700 +Processing by UsersController#new as HTML + Rendered users/new.html.erb within layouts/application (1.7ms) +Completed 200 OK in 31ms (Views: 30.6ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-10-23 15:58:52 -0700 +Processing by PagesController#index as HTML + Rendered pages/index.html.erb within layouts/application (0.0ms) +Completed 200 OK in 23ms (Views: 22.7ms | ActiveRecord: 0.0ms) + + +Started GET "/login" for ::1 at 2016-10-23 15:58:57 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (0.9ms) +Completed 200 OK in 24ms (Views: 23.9ms | ActiveRecord: 0.0ms) + + +Started GET "/signup" for ::1 at 2016-10-23 16:02:28 -0700 +Processing by UsersController#new as HTML + Rendered users/new.html.erb within layouts/application (1.3ms) +Completed 200 OK in 41ms (Views: 29.8ms | ActiveRecord: 0.4ms) + + +Started POST "/users" for ::1 at 2016-10-23 16:02:38 -0700 +Processing by UsersController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"9+U8YfPZsMqNqzSi6s7kiwujUh0KRqlW9uvwjx/u3OB3/SE5qg+DYxMcsvAta99M8vLk6xE+e8oB5yiTagR8xQ==", "user"=>{"name"=>"Testing", "email"=>"test@test.com", "password"=>"[FILTERED]"}, "commit"=>"Create an account"} +  (0.1ms) begin transaction + SQL (0.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Testing"], ["email", "test@test.com"], ["password_digest", "$2a$10$CJ/CA6UicrxGeJAgYINKIuB7tVlfYZ9Vdoa1VcrVHQkBhS/d1b2K."], ["created_at", "2016-10-23 23:02:38.830762"], ["updated_at", "2016-10-23 23:02:38.830762"]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/tasks/index +Completed 302 Found in 93ms (ActiveRecord: 3.1ms) + + +Started GET "/tasks/index" for ::1 at 2016-10-23 16:02:38 -0700 +Processing by TasksController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? [["user_id", 2]] + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 35ms (Views: 30.3ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/new" for ::1 at 2016-10-23 16:02:44 -0700 +Processing by TasksController#new as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/_form.html.erb (2.9ms) + Rendered tasks/new.html.erb within layouts/application (7.5ms) +Completed 200 OK in 38ms (Views: 28.4ms | ActiveRecord: 0.3ms) + + +Started POST "/tasks/create" for ::1 at 2016-10-23 16:02:46 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"x0J85vmTkXtld9rZtQT5naqA0AxDuim5HOKKGS2RmEtHWmG+oEWi0vvAXItyocJaU9Fm+ljC+yXr7lIFWHs4bg==", "task"=>{"user_id"=>"2", "title"=>"dcgdfg", "description"=>"dsgfg"}, "commit"=>"Create Task"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] +  (0.1ms) begin transaction + SQL (0.5ms) INSERT INTO "tasks" ("title", "description", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "dcgdfg"], ["description", "dsgfg"], ["user_id", 2], ["created_at", "2016-10-23 23:02:46.399497"], ["updated_at", "2016-10-23 23:02:46.399497"]] +  (3.7ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 9ms (ActiveRecord: 4.4ms) + + +Started GET "/" for ::1 at 2016-10-23 16:02:46 -0700 +Processing by PagesController#index as HTML +Redirected to http://localhost:3000/tasks/index +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-10-23 16:02:46 -0700 +Processing by TasksController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? [["user_id", 2]] + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 32ms (Views: 30.3ms | ActiveRecord: 0.3ms) + + +Started GET "/users/2" for ::1 at 2016-10-23 16:02:48 -0700 +Processing by UsersController#show as HTML + Parameters: {"authenticity_token"=>"LiS/r3r0acGEtLaSSKy9q12pBGQllGiqw55Jeuko5AWuPKL3IyJaaBoDMMCPCYZspPiykj7sujY0kpFmnMJEIA==", "id"=>"2"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] + Rendered users/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 29ms (Views: 28.0ms | ActiveRecord: 0.1ms) + + +Started DELETE "/logout" for ::1 at 2016-10-23 16:02:52 -0700 +Processing by SessionsController#destroy as HTML + Parameters: {"authenticity_token"=>"y90hEagbaAx8cCfXtgAwxsW0uR+PeVoEZmnaDTbe2StLxTxJ8c1bpeLHoYVxpQsBPOUP6ZQBiJiRZQIRQzR5Dg=="} +Redirected to http://localhost:3000/ +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-10-23 16:02:52 -0700 +Processing by PagesController#index as HTML + Rendered pages/index.html.erb within layouts/application (0.0ms) +Completed 200 OK in 23ms (Views: 22.6ms | ActiveRecord: 0.0ms) + + +Started GET "/login" for ::1 at 2016-10-23 16:02:56 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (0.5ms) +Completed 200 OK in 21ms (Views: 21.0ms | ActiveRecord: 0.0ms) + + +Started POST "/login" for ::1 at 2016-10-23 16:03:02 -0700 +Processing by SessionsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"+cuJ9JFc/Ya9fZr7xMYm8+4eZAyAEwvyVciqyrTaGSZ505SsyIrOLyPKHKkDYx00F0/S+ptr2W6ixHLWwTC5Aw==", "session"=>{"email"=>"test@test.com", "password"=>"[FILTERED]"}, "commit"=>"Log in"} +Completed 500 Internal Server Error in 18ms (ActiveRecord: 0.0ms) + +NameError - undefined local variable or method `auth_hash' for # +Did you mean? auth_hash: + app/controllers/sessions_controller.rb:7:in `create' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/implicit_render.rb:4:in `send_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/base.rb:198:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rendering.rb:10:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/callbacks.rb:20:in `block in process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:117:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:505:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:92:in `__run_callbacks__' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:81:in `run_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/callbacks.rb:19:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rescue.rb:29:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:164:in `block in instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications/instrumenter.rb:20:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:164:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:30:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/railties/controller_runtime.rb:18:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/base.rb:137:in `process' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/rendering.rb:30:in `process' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal.rb:196:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal.rb:237:in `block in action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:43:in `serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/journey/router.rb:43:in `block in serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/journey/router.rb:30:in `serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:817:in `call' + omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!' + omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call' + omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/etag.rb:24:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/conditionalget.rb:38:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/head.rb:13:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/params_parser.rb:27:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/flash.rb:260:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/session/abstract/id.rb:225:in `context' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/session/abstract/id.rb:220:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/cookies.rb:560:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/query_cache.rb:36:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/migration.rb:377:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:88:in `__run_callbacks__' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:81:in `run_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/callbacks.rb:27:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/reloader.rb:73:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/tagged_logging.rb:68:in `block in tagged' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/tagged_logging.rb:26:in `tagged' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/request_id.rb:21:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/methodoverride.rb:22:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/runtime.rb:18:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/lock.rb:17:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/static.rb:120:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/lock.rb:17:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/content_length.rb:15:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + + + +Started POST "/__better_errors/1d9e0c74be9d07c5/variables" for ::1 at 2016-10-23 16:03:02 -0700 + + +Started GET "/login" for ::1 at 2016-10-23 16:07:21 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (0.8ms) +Completed 200 OK in 27ms (Views: 26.1ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/pages.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:07:21 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:07:21 -0700 + + +Started GET "/assets/style.self-1fe4698d0f7cea3c62dbbaed163fc07040d827f3f6fbaa79bcc3e896a9fcceeb.css?body=1" for ::1 at 2016-10-23 16:07:21 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:07:21 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-23 16:07:21 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-23 16:07:21 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:07:21 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-23 16:07:21 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-23 16:07:21 -0700 + + +Started GET "/assets/pages.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:07:21 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:07:21 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:07:21 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:07:21 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-23 16:07:21 -0700 + + +Started GET "/" for ::1 at 2016-10-23 16:07:24 -0700 +Processing by PagesController#index as HTML + Rendered pages/index.html.erb within layouts/application (0.0ms) +Completed 200 OK in 33ms (Views: 31.8ms | ActiveRecord: 0.0ms) + + +Started GET "/signup" for ::1 at 2016-10-23 16:07:25 -0700 +Processing by UsersController#new as HTML + Rendered users/new.html.erb within layouts/application (1.0ms) +Completed 200 OK in 45ms (Views: 30.7ms | ActiveRecord: 0.7ms) + + +Started GET "/login" for ::1 at 2016-10-23 16:07:30 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (0.8ms) +Completed 200 OK in 27ms (Views: 26.5ms | ActiveRecord: 0.0ms) + + +Started POST "/login" for ::1 at 2016-10-23 16:07:34 -0700 +Processing by SessionsController#create_via_login as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"wIJLdijKInHEEx+5f2wnw2m3UwKd28cXhXS8wwoayY1AmlYucRwR2Fqkmeu4yRwEkObl9IajFYtyeGTff/BpqA==", "session"=>{"email"=>"test@test.com", "password"=>"[FILTERED]"}, "commit"=>"Log in"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "test@test.com"]] +Redirected to http://localhost:3000/ +Completed 302 Found in 78ms (ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-10-23 16:07:34 -0700 +Processing by PagesController#index as HTML +Redirected to http://localhost:3000/tasks/index +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-10-23 16:07:34 -0700 +Processing by TasksController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? [["user_id", 2]] + Rendered tasks/index.html.erb within layouts/application (5.4ms) +Completed 200 OK in 42ms (Views: 37.5ms | ActiveRecord: 0.5ms) + + +Started DELETE "/logout" for ::1 at 2016-10-23 16:07:37 -0700 +Processing by SessionsController#destroy as HTML + Parameters: {"authenticity_token"=>"bDVSpxncRloeXnYRa9mfwTHdkcpJFcbHwGZsRpXrT+/sLU//QAp184Dp8EOsfKQGyIwnPFJtFFs3arRa4AHvyg=="} +Redirected to http://localhost:3000/ +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-10-23 16:07:37 -0700 +Processing by PagesController#index as HTML + Rendered pages/index.html.erb within layouts/application (0.0ms) +Completed 200 OK in 40ms (Views: 40.0ms | ActiveRecord: 0.0ms) + + +Started GET "/auth/github" for ::1 at 2016-10-23 16:07:38 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-23 16:07:38 -0700 + + +Started GET "/auth/github/callback?code=21f58c547b1304163375&state=206dbc28d566d60fb1183a250a2bedcce23a1ca7eb888ff2" for ::1 at 2016-10-23 16:07:39 -0700 +Processing by SessionsController#create_via_github as HTML + Parameters: {"code"=>"21f58c547b1304163375", "state"=>"206dbc28d566d60fb1183a250a2bedcce23a1ca7eb888ff2", "provider"=>"github"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "16039535"], ["provider", "github"]] +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-10-23 16:07:40 -0700 +Processing by PagesController#index as HTML +Redirected to http://localhost:3000/tasks/index +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-10-23 16:07:40 -0700 +Processing by TasksController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? [["user_id", 1]] + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 31ms (Views: 29.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/pages.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:07:40 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:07:40 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:07:40 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:07:40 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-23 16:07:40 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-23 16:07:40 -0700 + + +Started GET "/assets/style.self-1fe4698d0f7cea3c62dbbaed163fc07040d827f3f6fbaa79bcc3e896a9fcceeb.css?body=1" for ::1 at 2016-10-23 16:07:40 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-23 16:07:40 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-23 16:07:40 -0700 + + +Started GET "/assets/pages.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:07:40 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:07:40 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:07:40 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:07:40 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-23 16:07:40 -0700 + + +Started DELETE "/logout" for ::1 at 2016-10-23 16:07:42 -0700 +Processing by SessionsController#destroy as HTML + Parameters: {"authenticity_token"=>"jTrp1h+sldf39+gHxAznUNzAEkbiKRSpj/W+oiDZzqcNIvSORnqmfmlAblUDqdyXJZGksPlRxjV4+Wa+VTNugg=="} +Redirected to http://localhost:3000/ +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-10-23 16:07:42 -0700 +Processing by PagesController#index as HTML + Rendered pages/index.html.erb within layouts/application (0.1ms) +Completed 200 OK in 24ms (Views: 23.1ms | ActiveRecord: 0.0ms) + + +Started GET "/signup" for ::1 at 2016-10-23 16:07:43 -0700 +Processing by UsersController#new as HTML + Rendered users/new.html.erb within layouts/application (1.7ms) +Completed 200 OK in 37ms (Views: 35.5ms | ActiveRecord: 0.0ms) + + +Started GET "/login" for ::1 at 2016-10-23 16:07:46 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (0.5ms) +Completed 200 OK in 21ms (Views: 20.3ms | ActiveRecord: 0.0ms) + + +Started POST "/login" for ::1 at 2016-10-23 16:07:49 -0700 +Processing by SessionsController#create_via_login as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"XondRFk1HvGB7DB841tPd9oUEHKq3l/grvO7/1s6Z3LekcAcAOMtWB9bti4k/nSwI0WmhLGmjXxZ/2PjLtDHVw==", "session"=>{"email"=>"test@test.com", "password"=>"[FILTERED]"}, "commit"=>"Log in"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "test@test.com"]] +Redirected to http://localhost:3000/ +Completed 302 Found in 88ms (ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-10-23 16:07:49 -0700 +Processing by PagesController#index as HTML +Redirected to http://localhost:3000/tasks/index +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-10-23 16:07:49 -0700 +Processing by TasksController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? [["user_id", 2]] + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 23ms (Views: 21.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2016-10-23 16:07:51 -0700 +Processing by TasksController#new as HTML + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/_form.html.erb (3.3ms) + Rendered tasks/new.html.erb within layouts/application (7.6ms) +Completed 200 OK in 38ms (Views: 34.9ms | ActiveRecord: 0.3ms) + + +Started POST "/tasks/create" for ::1 at 2016-10-23 16:07:52 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"a/7CClRAPoa5yKnLiR+DJAYNvADQZ8RbkaeDmYP2qcnr5t9SDZYNLyd/L5lOurjj/1wK9ssfFsdmq1uF9hwJ7A==", "task"=>{"user_id"=>"2", "title"=>"", "description"=>""}, "commit"=>"Create Task"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] +  (0.1ms) begin transaction +  (0.1ms) rollback transaction +Redirected to http://localhost:3000/tasks/new +Completed 302 Found in 5ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2016-10-23 16:07:52 -0700 +Processing by TasksController#new as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/_form.html.erb (1.2ms) + Rendered tasks/new.html.erb within layouts/application (3.2ms) +Completed 200 OK in 34ms (Views: 32.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-10-23 16:07:53 -0700 +Processing by PagesController#index as HTML +Redirected to http://localhost:3000/tasks/index +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-10-23 16:07:53 -0700 +Processing by TasksController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? [["user_id", 2]] + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 32ms (Views: 29.8ms | ActiveRecord: 0.3ms) + + +Started DELETE "/logout" for ::1 at 2016-10-23 16:08:36 -0700 +Processing by SessionsController#destroy as HTML + Parameters: {"authenticity_token"=>"j6CiYd7BiqgMEhp6uW1dB+BRKE7UXUJBVNNiJ9SOs/APuL85hxe5AZKlnCh+yGbAGQCeuM8lkN2j37o7oWQT1Q=="} +Redirected to http://localhost:3000/ +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-10-23 16:08:36 -0700 +Processing by PagesController#index as HTML + Rendered pages/index.html.erb within layouts/application (0.1ms) +Completed 200 OK in 24ms (Views: 23.8ms | ActiveRecord: 0.0ms) + + +Started GET "/signup" for ::1 at 2016-10-23 16:08:37 -0700 +Processing by UsersController#new as HTML + Rendered users/new.html.erb within layouts/application (1.1ms) +Completed 200 OK in 43ms (Views: 29.7ms | ActiveRecord: 1.4ms) + + +Started GET "/login" for ::1 at 2016-10-23 16:08:39 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (0.6ms) +Completed 200 OK in 26ms (Views: 25.5ms | ActiveRecord: 0.0ms) + + +Started POST "/login" for ::1 at 2016-10-23 16:08:40 -0700 +Processing by SessionsController#create_via_login as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"s347YQcjkyze5mTlhk6XwFIWcPZgRcHg0W3ggQXCshEzZiY5XvWghUBR4rdB66wHq0fGAHs9E3wmYTidcCgSNA==", "session"=>{"email"=>"", "password"=>"[FILTERED]"}, "commit"=>"Log in"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", ""]] +Redirected to http://localhost:3000login +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started POST "/login" for ::1 at 2016-10-23 16:08:40 -0700 +Processing by SessionsController#create_via_login as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"s347YQcjkyze5mTlhk6XwFIWcPZgRcHg0W3ggQXCshEzZiY5XvWghUBR4rdB66wHq0fGAHs9E3wmYTidcCgSNA==", "session"=>{"email"=>"", "password"=>"[FILTERED]"}, "commit"=>"Log in"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", ""]] +Redirected to http://localhost:3000login +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started POST "/login" for ::1 at 2016-10-23 16:08:50 -0700 +Processing by SessionsController#create_via_login as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"s347YQcjkyze5mTlhk6XwFIWcPZgRcHg0W3ggQXCshEzZiY5XvWghUBR4rdB66wHq0fGAHs9E3wmYTidcCgSNA==", "session"=>{"email"=>"dfs@test.com", "password"=>"[FILTERED]"}, "commit"=>"Log in"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "dfs@test.com"]] +Redirected to http://localhost:3000login +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-10-23 16:09:49 -0700 +Processing by PagesController#index as HTML + Rendered pages/index.html.erb within layouts/application (0.3ms) +Completed 200 OK in 33ms (Views: 32.6ms | ActiveRecord: 0.0ms) + + +Started GET "/signup" for ::1 at 2016-10-23 16:09:50 -0700 +Processing by UsersController#new as HTML + Rendered users/new.html.erb within layouts/application (1.2ms) +Completed 200 OK in 45ms (Views: 26.6ms | ActiveRecord: 1.0ms) + + +Started GET "/login" for ::1 at 2016-10-23 16:09:52 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (1.0ms) +Completed 200 OK in 31ms (Views: 30.7ms | ActiveRecord: 0.0ms) + + +Started POST "/login" for ::1 at 2016-10-23 16:09:56 -0700 +Processing by SessionsController#create_via_login as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"kQXDCZ2NIBuxfVa22Gy2lH/sZRFmyaU9v47kx+zbvN0RHd5RxFsTsi/K0OQfyY1Thr3T532xd6FIgjzbmTEc+A==", "session"=>{"email"=>"dsfds@test.com", "password"=>"[FILTERED]"}, "commit"=>"Log in"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "dsfds@test.com"]] +Redirected to http://localhost:3000login +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started POST "/login" for ::1 at 2016-10-23 16:09:56 -0700 +Processing by SessionsController#create_via_login as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"kQXDCZ2NIBuxfVa22Gy2lH/sZRFmyaU9v47kx+zbvN0RHd5RxFsTsi/K0OQfyY1Thr3T532xd6FIgjzbmTEc+A==", "session"=>{"email"=>"dsfds@test.com", "password"=>"[FILTERED]"}, "commit"=>"Log in"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "dsfds@test.com"]] +Redirected to http://localhost:3000login +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started POST "/login" for ::1 at 2016-10-23 16:10:02 -0700 +Processing by SessionsController#create_via_login as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"kQXDCZ2NIBuxfVa22Gy2lH/sZRFmyaU9v47kx+zbvN0RHd5RxFsTsi/K0OQfyY1Thr3T532xd6FIgjzbmTEc+A==", "session"=>{"email"=>"test@test.com", "password"=>"[FILTERED]"}, "commit"=>"Log in"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "test@test.com"]] +Redirected to http://localhost:3000login +Completed 302 Found in 76ms (ActiveRecord: 0.1ms) + + +Started POST "/login" for ::1 at 2016-10-23 16:10:09 -0700 +Processing by SessionsController#create_via_login as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"kQXDCZ2NIBuxfVa22Gy2lH/sZRFmyaU9v47kx+zbvN0RHd5RxFsTsi/K0OQfyY1Thr3T532xd6FIgjzbmTEc+A==", "session"=>{"email"=>"test@test.com", "password"=>"[FILTERED]"}, "commit"=>"Log in"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "test@test.com"]] +Redirected to http://localhost:3000/ +Completed 302 Found in 79ms (ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-10-23 16:10:09 -0700 +Processing by PagesController#index as HTML +Redirected to http://localhost:3000/tasks/index +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-10-23 16:10:09 -0700 +Processing by TasksController#index as HTML + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? [["user_id", 2]] + Rendered tasks/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 29ms (Views: 25.0ms | ActiveRecord: 0.6ms) + + +Started DELETE "/logout" for ::1 at 2016-10-23 16:10:14 -0700 +Processing by SessionsController#destroy as HTML + Parameters: {"authenticity_token"=>"SLkW8sRxPqsHtMJSeS79vLH+6RtG/07y3znh6D0ih4/IoQuqnacNApkDRAC+i8Z7SK9f7V2HnG4oNTn0SMgnqg=="} +Redirected to http://localhost:3000/ +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-10-23 16:10:14 -0700 +Processing by PagesController#index as HTML + Rendered pages/index.html.erb within layouts/application (0.1ms) +Completed 200 OK in 21ms (Views: 20.2ms | ActiveRecord: 0.0ms) + + +Started GET "/login" for ::1 at 2016-10-23 16:10:18 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (0.6ms) +Completed 200 OK in 21ms (Views: 20.2ms | ActiveRecord: 0.0ms) + + +Started GET "/login" for ::1 at 2016-10-23 16:10:38 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (0.7ms) +Completed 200 OK in 42ms (Views: 41.7ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/pages.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:10:39 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:10:39 -0700 + + +Started GET "/assets/style.self-1fe4698d0f7cea3c62dbbaed163fc07040d827f3f6fbaa79bcc3e896a9fcceeb.css?body=1" for ::1 at 2016-10-23 16:10:39 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-23 16:10:39 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:10:39 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-23 16:10:39 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:10:39 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-23 16:10:39 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-23 16:10:39 -0700 + + +Started GET "/assets/pages.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:10:39 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:10:39 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:10:39 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:10:39 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-23 16:10:39 -0700 + + +Started POST "/login" for ::1 at 2016-10-23 16:10:42 -0700 +Processing by SessionsController#create_via_login as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"aQGcBpqJW89FFf7KpvlxzI4VawWHl04ixMDNbwtONTvpGYFew19oZtuieJhhXEoLd0Td85zvnL4zzBVzfqSVHg==", "session"=>{"email"=>"ssdfd@test.com", "password"=>"[FILTERED]"}, "commit"=>"Log in"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "ssdfd@test.com"]] +Redirected to http://localhost:3000/login +Completed 302 Found in 5ms (ActiveRecord: 0.4ms) + + +Started GET "/login" for ::1 at 2016-10-23 16:10:42 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (4.4ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `join' for "Login failed!":String +Did you mean? JSON: + app/views/sessions/new.html.erb:3:in `_app_views_sessions_new_html_erb___606295091157386815_70106409021460' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/template.rb:145:in `block in render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:166:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/template.rb:333:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/template.rb:143:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:164:in `block in instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications/instrumenter.rb:20:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:164:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/template_renderer.rb:52:in `render_template' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/template_renderer.rb:14:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/renderer.rb:46:in `render_template' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/renderer/renderer.rb:27:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/rendering.rb:100:in `_render_template' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/streaming.rb:217:in `_render_template' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/rendering.rb:83:in `render_to_body' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rendering.rb:32:in `render_to_body' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/renderers.rb:37:in `render_to_body' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/rendering.rb:25:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rendering.rb:16:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/core_ext/benchmark.rb:12:in `ms' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:44:in `block in render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:43:in `render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/implicit_render.rb:10:in `default_render' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/base.rb:198:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rendering.rb:10:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/callbacks.rb:20:in `block in process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:117:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:505:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:92:in `__run_callbacks__' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:81:in `run_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/callbacks.rb:19:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rescue.rb:29:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:164:in `block in instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications/instrumenter.rb:20:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/notifications.rb:164:in `instrument' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/instrumentation.rb:30:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/railties/controller_runtime.rb:18:in `process_action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/abstract_controller/base.rb:137:in `process' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionview-4.2.7/lib/action_view/rendering.rb:30:in `process' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal.rb:196:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_controller/metal.rb:237:in `block in action' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:43:in `serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/journey/router.rb:43:in `block in serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/journey/router.rb:30:in `serve' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/routing/route_set.rb:817:in `call' + omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!' + omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call' + omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/etag.rb:24:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/conditionalget.rb:25:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/head.rb:13:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/params_parser.rb:27:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/flash.rb:260:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/session/abstract/id.rb:225:in `context' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/session/abstract/id.rb:220:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/cookies.rb:560:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/query_cache.rb:36:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activerecord-4.2.7/lib/active_record/migration.rb:377:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:88:in `__run_callbacks__' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/callbacks.rb:81:in `run_callbacks' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/callbacks.rb:27:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/reloader.rb:73:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/tagged_logging.rb:68:in `block in tagged' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/tagged_logging.rb:26:in `tagged' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/request_id.rb:21:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/methodoverride.rb:22:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/runtime.rb:18:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/activesupport-4.2.7/lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/lock.rb:17:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/static.rb:120:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/lock.rb:17:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/rack-1.6.4/lib/rack/content_length.rb:15:in `call' + () Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/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' + + + +Started POST "/__better_errors/cda060379cf07ba8/variables" for ::1 at 2016-10-23 16:10:42 -0700 + + +Started POST "/__better_errors/cda060379cf07ba8/variables" for ::1 at 2016-10-23 16:10:48 -0700 + + +Started GET "/login" for ::1 at 2016-10-23 16:11:52 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (1.1ms) +Completed 200 OK in 24ms (Views: 23.9ms | ActiveRecord: 0.0ms) + + +Started GET "/login" for ::1 at 2016-10-23 16:11:56 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (0.5ms) +Completed 200 OK in 22ms (Views: 21.4ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/pages.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:11:56 -0700 + + +Started GET "/assets/style.self-1fe4698d0f7cea3c62dbbaed163fc07040d827f3f6fbaa79bcc3e896a9fcceeb.css?body=1" for ::1 at 2016-10-23 16:11:56 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:11:56 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:11:56 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-23 16:11:56 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:11:56 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-23 16:11:56 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-23 16:11:56 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-23 16:11:56 -0700 + + +Started GET "/assets/pages.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:11:56 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:11:56 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:11:56 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:11:56 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-23 16:11:56 -0700 + + +Started POST "/login" for ::1 at 2016-10-23 16:12:01 -0700 +Processing by SessionsController#create_via_login as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"OjOG48trTgmv1ORW9Rec3rSY+ObV6I/SRE9o8iuxGl+6K5u7kr19oDFjYgQysqcZTclOEM6QXU6zQ7DuXlu6eg==", "session"=>{"email"=>"ddfgk@test.com", "password"=>"[FILTERED]"}, "commit"=>"Log in"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "ddfgk@test.com"]] +Redirected to http://localhost:3000/login +Completed 302 Found in 2ms (ActiveRecord: 0.3ms) + + +Started GET "/login" for ::1 at 2016-10-23 16:12:01 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (0.6ms) +Completed 200 OK in 25ms (Views: 24.5ms | ActiveRecord: 0.0ms) + + +Started POST "/login" for ::1 at 2016-10-23 16:12:04 -0700 +Processing by SessionsController#create_via_login as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"/h+cEnAKqfHWt/tWdgdsovGp7KsOfD0wFmZ1cXHNpj5+B4FKKdyaWEgAfQSxoldlCPhaXRUE76zhaq1tBCcGGw==", "session"=>{"email"=>"test@test.com", "password"=>"[FILTERED]"}, "commit"=>"Log in"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "test@test.com"]] +Redirected to http://localhost:3000/ +Completed 302 Found in 89ms (ActiveRecord: 0.6ms) + + +Started GET "/" for ::1 at 2016-10-23 16:12:04 -0700 +Processing by PagesController#index as HTML +Redirected to http://localhost:3000/tasks/index +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-10-23 16:12:04 -0700 +Processing by TasksController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? [["user_id", 2]] + Rendered tasks/index.html.erb within layouts/application (7.4ms) +Completed 200 OK in 50ms (Views: 45.0ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/index" for ::1 at 2016-10-23 16:12:06 -0700 +Processing by TasksController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? [["user_id", 2]] + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 38ms (Views: 35.1ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/pages.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:12:06 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:12:06 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-23 16:12:06 -0700 + + +Started GET "/assets/style.self-1fe4698d0f7cea3c62dbbaed163fc07040d827f3f6fbaa79bcc3e896a9fcceeb.css?body=1" for ::1 at 2016-10-23 16:12:06 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:12:06 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-23 16:12:06 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-23 16:12:06 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:12:06 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-23 16:12:06 -0700 + + +Started GET "/assets/pages.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:12:06 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:12:06 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:12:06 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:12:06 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-23 16:12:06 -0700 + + +Started DELETE "/logout" for ::1 at 2016-10-23 16:12:07 -0700 +Processing by SessionsController#destroy as HTML + Parameters: {"authenticity_token"=>"azC0m78cEwP3ebjMKijfF916rC1FVyHwERxbuJkuJXPrKKnD5sogqmnOPp7tjeTQJCsa214v82zmEIOk7MSFVg=="} +Redirected to http://localhost:3000/ +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-10-23 16:12:07 -0700 +Processing by PagesController#index as HTML + Rendered pages/index.html.erb within layouts/application (0.0ms) +Completed 200 OK in 28ms (Views: 27.3ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-10-23 16:13:28 -0700 +Processing by PagesController#index as HTML + Rendered pages/index.html.erb within layouts/application (0.1ms) +Completed 200 OK in 30ms (Views: 29.8ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/pages.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:13:28 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:13:28 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-23 16:13:28 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:13:28 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-23 16:13:28 -0700 + + +Started GET "/assets/style.self-1fe4698d0f7cea3c62dbbaed163fc07040d827f3f6fbaa79bcc3e896a9fcceeb.css?body=1" for ::1 at 2016-10-23 16:13:28 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-23 16:13:28 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:13:28 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-23 16:13:28 -0700 + + +Started GET "/assets/pages.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:13:28 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:13:28 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:13:28 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:13:28 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-23 16:13:28 -0700 + + +Started GET "/login" for ::1 at 2016-10-23 16:13:29 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (2.1ms) +Completed 200 OK in 40ms (Views: 38.6ms | ActiveRecord: 0.0ms) + + +Started GET "/login" for ::1 at 2016-10-23 16:13:41 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (1.0ms) +Completed 200 OK in 22ms (Views: 21.9ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/pages.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:13:41 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:13:41 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:13:41 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-23 16:13:41 -0700 + + +Started GET "/assets/style.self-1fe4698d0f7cea3c62dbbaed163fc07040d827f3f6fbaa79bcc3e896a9fcceeb.css?body=1" for ::1 at 2016-10-23 16:13:41 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:13:41 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-23 16:13:41 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-23 16:13:41 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-23 16:13:41 -0700 + + +Started GET "/assets/pages.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:13:41 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:13:41 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:13:41 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:13:41 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-23 16:13:41 -0700 + + +Started GET "/login" for ::1 at 2016-10-23 16:13:48 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (1.0ms) +Completed 200 OK in 32ms (Views: 31.1ms | ActiveRecord: 0.0ms) + + +Started GET "/auth/github" for ::1 at 2016-10-23 16:13:49 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-23 16:13:49 -0700 + + +Started GET "/auth/github/callback?code=30fbbc83b96ff92c4403&state=40860481b91e051b3318c77ce8caf8ffa377dd00a33ee1cc" for ::1 at 2016-10-23 16:13:50 -0700 +Processing by SessionsController#create_via_github as HTML + Parameters: {"code"=>"30fbbc83b96ff92c4403", "state"=>"40860481b91e051b3318c77ce8caf8ffa377dd00a33ee1cc", "provider"=>"github"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "16039535"], ["provider", "github"]] +Redirected to http://localhost:3000/ +Completed 302 Found in 2ms (ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-10-23 16:13:51 -0700 +Processing by PagesController#index as HTML +Redirected to http://localhost:3000/tasks/index +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-10-23 16:13:51 -0700 +Processing by TasksController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? [["user_id", 1]] + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 24ms (Views: 22.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/pages.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:13:52 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:13:52 -0700 + + +Started GET "/assets/style.self-1fe4698d0f7cea3c62dbbaed163fc07040d827f3f6fbaa79bcc3e896a9fcceeb.css?body=1" for ::1 at 2016-10-23 16:13:52 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:13:52 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:13:52 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-23 16:13:52 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-23 16:13:52 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-23 16:13:52 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-23 16:13:52 -0700 + + +Started GET "/assets/pages.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:13:52 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:13:52 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:13:52 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:13:52 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-23 16:13:52 -0700 + + +Started DELETE "/logout" for ::1 at 2016-10-23 16:13:53 -0700 +Processing by SessionsController#destroy as HTML + Parameters: {"authenticity_token"=>"AzJpg9UkwsS14C59s65HzqRguGcvLiz1ciUWQLPWg1ODKnTbjPLxbStXqC90C3wJXTEOkTRW/mmFKc5cxjwjdg=="} +Redirected to http://localhost:3000/ +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-10-23 16:13:53 -0700 +Processing by PagesController#index as HTML + Rendered pages/index.html.erb within layouts/application (0.1ms) +Completed 200 OK in 26ms (Views: 25.9ms | ActiveRecord: 0.0ms) + + +Started GET "/login" for ::1 at 2016-10-23 16:13:54 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (2.4ms) +Completed 200 OK in 34ms (Views: 33.3ms | ActiveRecord: 0.0ms) + + +Started GET "/login" for ::1 at 2016-10-23 16:14:15 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (2.1ms) +Completed 200 OK in 37ms (Views: 36.5ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/pages.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:14:15 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:14:15 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:14:15 -0700 + + +Started GET "/assets/style.self-1fe4698d0f7cea3c62dbbaed163fc07040d827f3f6fbaa79bcc3e896a9fcceeb.css?body=1" for ::1 at 2016-10-23 16:14:15 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:14:15 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-23 16:14:15 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-23 16:14:15 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-23 16:14:16 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-23 16:14:16 -0700 + + +Started GET "/assets/pages.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:14:16 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:14:16 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:14:16 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:14:16 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-23 16:14:16 -0700 + + +Started GET "/login" for ::1 at 2016-10-23 16:15:19 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (1.0ms) +Completed 200 OK in 47ms (Views: 46.4ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-f28fb8fee437d3f250f6fa40ffe2165edf2fc3cea30a165b9efb078add2e8609.css?body=1" for ::1 at 2016-10-23 16:15:19 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:15:19 -0700 + + +Started GET "/assets/pages.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:15:19 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-23 16:15:19 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-23 16:15:19 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:15:19 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:15:19 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-23 16:15:19 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-23 16:15:19 -0700 + + +Started GET "/assets/pages.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:15:19 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:15:19 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:15:19 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:15:19 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-23 16:15:19 -0700 + + +Started GET "/login" for ::1 at 2016-10-23 16:15:19 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (0.8ms) +Completed 200 OK in 27ms (Views: 26.1ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/pages.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:15:19 -0700 + + +Started GET "/assets/style.self-f28fb8fee437d3f250f6fa40ffe2165edf2fc3cea30a165b9efb078add2e8609.css?body=1" for ::1 at 2016-10-23 16:15:19 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:15:19 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-23 16:15:19 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:15:19 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:15:19 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-23 16:15:19 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-23 16:15:19 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-23 16:15:19 -0700 + + +Started GET "/assets/pages.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:15:19 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:15:19 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:15:19 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:15:19 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-23 16:15:19 -0700 + + +Started GET "/login" for ::1 at 2016-10-23 16:16:17 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (0.5ms) +Completed 200 OK in 41ms (Views: 40.4ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-e595f3db48d0d5935fe054a330f1da7fd90af674107e99ac20e63deef9d46c3f.css?body=1" for ::1 at 2016-10-23 16:16:17 -0700 + + +Started GET "/assets/pages.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:16:17 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-23 16:16:17 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:16:17 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:16:17 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-23 16:16:17 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:16:17 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-23 16:16:17 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-23 16:16:17 -0700 + + +Started GET "/assets/pages.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:16:17 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:16:17 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:16:17 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-23 16:16:17 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:16:17 -0700 + + +Started GET "/login" for ::1 at 2016-10-23 16:16:18 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (0.6ms) +Completed 200 OK in 27ms (Views: 26.1ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/pages.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:16:18 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:16:18 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-23 16:16:18 -0700 + + +Started GET "/assets/style.self-e595f3db48d0d5935fe054a330f1da7fd90af674107e99ac20e63deef9d46c3f.css?body=1" for ::1 at 2016-10-23 16:16:18 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:16:18 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:16:18 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-23 16:16:18 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-23 16:16:18 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-23 16:16:18 -0700 + + +Started GET "/assets/pages.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:16:18 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:16:18 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:16:18 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:16:18 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-23 16:16:18 -0700 + + +Started GET "/login" for ::1 at 2016-10-23 16:16:53 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (0.6ms) +Completed 200 OK in 56ms (Views: 55.2ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/pages.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:16:53 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:16:53 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-23 16:16:53 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:16:53 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-23 16:16:53 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:16:53 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-23 16:16:53 -0700 + + +Started GET "/assets/style.self-e7e91c491ae47b4ec0b10a07b76245e142fee8af09aa2b507df0f13fd1c724eb.css?body=1" for ::1 at 2016-10-23 16:16:53 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-23 16:16:53 -0700 + + +Started GET "/assets/pages.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:16:53 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:16:53 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:16:53 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-23 16:16:53 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:16:53 -0700 + + +Started GET "/login" for ::1 at 2016-10-23 16:16:58 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (0.7ms) +Completed 200 OK in 40ms (Views: 39.2ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/pages.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:16:58 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:16:58 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:16:58 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-23 16:16:58 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-23 16:16:58 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:16:58 -0700 + + +Started GET "/assets/style.self-a8fc735aa33539f0a323a75765820306a38d3c734a791ac8773197bb37ef767e.css?body=1" for ::1 at 2016-10-23 16:16:58 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-23 16:16:58 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-23 16:16:58 -0700 + + +Started GET "/assets/pages.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:16:58 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:16:58 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:16:58 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:16:58 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-23 16:16:58 -0700 + + +Started GET "/" for ::1 at 2016-10-23 16:17:06 -0700 +Processing by PagesController#index as HTML + Rendered pages/index.html.erb within layouts/application (0.0ms) +Completed 200 OK in 24ms (Views: 23.3ms | ActiveRecord: 0.0ms) + + +Started GET "/login" for ::1 at 2016-10-23 16:17:07 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (3.5ms) +Completed 200 OK in 44ms (Views: 43.0ms | ActiveRecord: 0.0ms) + + +Started GET "/signup" for ::1 at 2016-10-23 16:17:09 -0700 +Processing by UsersController#new as HTML + Rendered users/new.html.erb within layouts/application (1.3ms) +Completed 200 OK in 27ms (Views: 25.5ms | ActiveRecord: 0.0ms) + + +Started GET "/login" for ::1 at 2016-10-23 16:17:37 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (1.1ms) +Completed 200 OK in 39ms (Views: 37.2ms | ActiveRecord: 0.0ms) + + +Started GET "/login" for ::1 at 2016-10-23 16:17:41 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (0.7ms) +Completed 200 OK in 40ms (Views: 39.0ms | ActiveRecord: 0.0ms) + + +Started GET "/signup" for ::1 at 2016-10-23 16:17:42 -0700 +Processing by UsersController#new as HTML + Rendered users/new.html.erb within layouts/application (1.7ms) +Completed 200 OK in 41ms (Views: 39.5ms | ActiveRecord: 0.0ms) + + +Started GET "/signup" for ::1 at 2016-10-23 16:18:09 -0700 +Processing by UsersController#new as HTML + Rendered users/new.html.erb within layouts/application (1.2ms) +Completed 200 OK in 25ms (Views: 23.9ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-a8fc735aa33539f0a323a75765820306a38d3c734a791ac8773197bb37ef767e.css?body=1" for ::1 at 2016-10-23 16:18:09 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:18:09 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:18:09 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:18:09 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-23 16:18:09 -0700 + + +Started GET "/assets/pages.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:18:09 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-23 16:18:09 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-23 16:18:09 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-23 16:18:09 -0700 + + +Started GET "/assets/pages.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:18:09 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:18:09 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:18:09 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:18:09 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-23 16:18:09 -0700 + + +Started GET "/login" for ::1 at 2016-10-23 16:18:15 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (1.4ms) +Completed 200 OK in 39ms (Views: 38.5ms | ActiveRecord: 0.0ms) + + +Started GET "/login" for ::1 at 2016-10-23 16:18:39 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (1.1ms) +Completed 200 OK in 24ms (Views: 23.4ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/pages.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:18:39 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:18:39 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-23 16:18:39 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:18:39 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-23 16:18:39 -0700 + + +Started GET "/assets/style.self-a8fc735aa33539f0a323a75765820306a38d3c734a791ac8773197bb37ef767e.css?body=1" for ::1 at 2016-10-23 16:18:39 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:18:39 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-23 16:18:39 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-23 16:18:39 -0700 + + +Started GET "/assets/pages.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:18:39 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:18:39 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:18:39 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:18:39 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-23 16:18:39 -0700 + + +Started GET "/signup" for ::1 at 2016-10-23 16:18:43 -0700 +Processing by UsersController#new as HTML + Rendered users/new.html.erb within layouts/application (1.8ms) +Completed 200 OK in 29ms (Views: 28.2ms | ActiveRecord: 0.0ms) + + +Started GET "/login" for ::1 at 2016-10-23 16:19:20 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (1.5ms) +Completed 200 OK in 25ms (Views: 24.0ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/pages.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:19:20 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:19:20 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:19:20 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-23 16:19:20 -0700 + + +Started GET "/assets/style.self-a8fc735aa33539f0a323a75765820306a38d3c734a791ac8773197bb37ef767e.css?body=1" for ::1 at 2016-10-23 16:19:20 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-23 16:19:20 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:19:20 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-23 16:19:20 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-23 16:19:20 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:19:20 -0700 + + +Started GET "/assets/pages.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:19:20 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:19:20 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:19:20 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-23 16:19:20 -0700 + + +Started GET "/signup" for ::1 at 2016-10-23 16:19:26 -0700 +Processing by UsersController#new as HTML + Rendered users/new.html.erb within layouts/application (1.8ms) +Completed 200 OK in 36ms (Views: 35.2ms | ActiveRecord: 0.0ms) + + +Started GET "/login" for ::1 at 2016-10-23 16:19:28 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (2.3ms) +Completed 200 OK in 43ms (Views: 42.3ms | ActiveRecord: 0.0ms) + + +Started GET "/signup" for ::1 at 2016-10-23 16:19:38 -0700 +Processing by UsersController#new as HTML + Rendered users/new.html.erb within layouts/application (0.7ms) +Completed 200 OK in 41ms (Views: 39.8ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/pages.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:19:38 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:19:38 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:19:38 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-23 16:19:38 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-23 16:19:38 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:19:38 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-23 16:19:38 -0700 + + +Started GET "/assets/style.self-945119f87de7e82bc03934ca0d60d05e83bcd1657b1bd83dd5945a5e48927068.css?body=1" for ::1 at 2016-10-23 16:19:38 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-23 16:19:38 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:19:38 -0700 + + +Started GET "/assets/pages.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:19:38 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:19:38 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:19:38 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-23 16:19:38 -0700 + + +Started GET "/signup" for ::1 at 2016-10-23 16:19:39 -0700 +Processing by UsersController#new as HTML + Rendered users/new.html.erb within layouts/application (1.0ms) +Completed 200 OK in 26ms (Views: 25.7ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/pages.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:19:39 -0700 + + +Started GET "/assets/style.self-945119f87de7e82bc03934ca0d60d05e83bcd1657b1bd83dd5945a5e48927068.css?body=1" for ::1 at 2016-10-23 16:19:39 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-23 16:19:39 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-23 16:19:39 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:19:39 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:19:39 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:19:39 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-23 16:19:39 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-23 16:19:39 -0700 + + +Started GET "/assets/pages.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:19:39 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:19:39 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:19:39 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:19:39 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-23 16:19:39 -0700 + + +Started GET "/login" for ::1 at 2016-10-23 16:19:40 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (0.8ms) +Completed 200 OK in 25ms (Views: 23.0ms | ActiveRecord: 0.0ms) + + +Started GET "/login" for ::1 at 2016-10-23 16:19:49 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (1.1ms) +Completed 200 OK in 33ms (Views: 32.2ms | ActiveRecord: 0.0ms) + + +Started GET "/signup" for ::1 at 2016-10-23 16:19:51 -0700 +Processing by UsersController#new as HTML + Rendered users/new.html.erb within layouts/application (1.9ms) +Completed 200 OK in 36ms (Views: 35.1ms | ActiveRecord: 0.0ms) + + +Started GET "/login" for ::1 at 2016-10-23 16:20:28 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (1.2ms) +Completed 200 OK in 40ms (Views: 38.6ms | ActiveRecord: 0.0ms) + + +Started GET "/login" for ::1 at 2016-10-23 16:23:32 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (3.0ms) +Completed 200 OK in 40ms (Views: 30.7ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/pages.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:23:32 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:23:32 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:23:32 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-23 16:23:32 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-23 16:23:32 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-23 16:23:32 -0700 + + +Started GET "/assets/style.self-1fe4698d0f7cea3c62dbbaed163fc07040d827f3f6fbaa79bcc3e896a9fcceeb.css?body=1" for ::1 at 2016-10-23 16:23:32 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:23:32 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-23 16:23:32 -0700 + + +Started GET "/assets/pages.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:23:32 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:23:32 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:23:33 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:23:33 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-23 16:23:33 -0700 + + +Started POST "/signup" for ::1 at 2016-10-23 16:23:48 -0700 + +ActionController::RoutingError (No route matches [POST] "/signup"): + 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.5ms) + 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.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 (1.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.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 (82.2ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.9ms) + 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 (50.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 (112.8ms) + + +Started GET "/login" for ::1 at 2016-10-23 16:25:18 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (1.7ms) +Completed 200 OK in 23ms (Views: 22.7ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/pages.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:25:18 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:25:18 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:25:18 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-23 16:25:18 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-23 16:25:18 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:25:18 -0700 + + +Started GET "/assets/style.self-1fe4698d0f7cea3c62dbbaed163fc07040d827f3f6fbaa79bcc3e896a9fcceeb.css?body=1" for ::1 at 2016-10-23 16:25:18 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-23 16:25:18 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-23 16:25:18 -0700 + + +Started GET "/assets/pages.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:25:18 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:25:18 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:25:18 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:25:18 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-23 16:25:18 -0700 + + +Started POST "/users" for ::1 at 2016-10-23 16:25:26 -0700 +Processing by UsersController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"tKpfKG4bP/gv6+XEfEf3NBuQeQvDAoSxKzMASWEGiQA0skJwN80MUbFcY5a74szz4sHP/dh6Vi3cP9hVFOwpJQ==", "user"=>{"name"=>"TESTING", "email"=>"test1@test.com", "password"=>"[FILTERED]"}, "commit"=>"Create an account"} +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "TESTING"], ["email", "test1@test.com"], ["password_digest", "$2a$10$1.6lS8kaa5vguEJs.8zFhO3GZ1OqU/lgc20bCAkxz4pCzS/JYLHV2"], ["created_at", "2016-10-23 23:25:26.889032"], ["updated_at", "2016-10-23 23:25:26.889032"]] +  (2.9ms) commit transaction +Redirected to http://localhost:3000/tasks/index +Completed 302 Found in 93ms (ActiveRecord: 3.4ms) + + +Started GET "/tasks/index" for ::1 at 2016-10-23 16:25:26 -0700 +Processing by TasksController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? [["user_id", 3]] + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 38ms (Views: 33.2ms | ActiveRecord: 0.7ms) + + +Started GET "/users/3" for ::1 at 2016-10-23 16:25:28 -0700 +Processing by UsersController#show as HTML + Parameters: {"authenticity_token"=>"ZyU11uL4VpLpBwUFcisM4wK9VNyphCSpwnstmcBIxgHnPSiOuy5lO3ewg1e1jjck++ziKrL89jU1d/WFtaJmJA==", "id"=>"3"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] + Rendered users/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 40ms (Views: 38.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-10-23 16:25:31 -0700 +Processing by PagesController#index as HTML +Redirected to http://localhost:3000/tasks/index +Completed 302 Found in 2ms (ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-10-23 16:25:31 -0700 +Processing by TasksController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? [["user_id", 3]] + Rendered tasks/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 48ms (Views: 46.0ms | ActiveRecord: 0.2ms) + + +Started DELETE "/logout" for ::1 at 2016-10-23 16:25:32 -0700 +Processing by SessionsController#destroy as HTML + Parameters: {"authenticity_token"=>"DBMAvx5YEoI2xN/c3aeGDAwMxVIWpGeOJe4x9n0f8HqMCx3nR44hK6hzWY4aAr3L9V1zpA3ctRLS4unqCPVQXw=="} +Redirected to http://localhost:3000/ +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-10-23 16:25:32 -0700 +Processing by PagesController#index as HTML + Rendered pages/index.html.erb within layouts/application (0.0ms) +Completed 200 OK in 25ms (Views: 24.8ms | ActiveRecord: 0.0ms) + + +Started GET "/login" for ::1 at 2016-10-23 16:25:34 -0700 +Processing by SessionsController#new as HTML + Rendered sessions/new.html.erb within layouts/application (5.7ms) +Completed 200 OK in 33ms (Views: 32.2ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-10-23 16:25:41 -0700 +Processing by PagesController#index as HTML + Rendered pages/index.html.erb within layouts/application (0.1ms) +Completed 200 OK in 22ms (Views: 20.9ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/pages.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:25:41 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:25:41 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:25:41 -0700 + + +Started GET "/assets/style.self-1fe4698d0f7cea3c62dbbaed163fc07040d827f3f6fbaa79bcc3e896a9fcceeb.css?body=1" for ::1 at 2016-10-23 16:25:41 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-23 16:25:41 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-23 16:25:41 -0700 + + +Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 16:25:41 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-23 16:25:41 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-23 16:25:41 -0700 + + +Started GET "/assets/pages.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:25:41 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:25:41 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:25:41 -0700 + + +Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 16:25:41 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-23 16:25:41 -0700 From d24cdeff6e3c10b83c4ca5b5de9d6411ab2cc004 Mon Sep 17 00:00:00 2001 From: Briana Eng Date: Sun, 23 Oct 2016 16:31:33 -0700 Subject: [PATCH 28/31] Added default icon for users signing up via Task List. --- app/assets/images/default_icon.jpg | Bin 0 -> 2176 bytes app/controllers/users_controller.rb | 2 + app/views/users/edit.html.erb | 9 ++- db/development.sqlite3 | Bin 28672 -> 28672 bytes log/development.log | 110 ++++++++++++++++++++++++++++ 5 files changed, 119 insertions(+), 2 deletions(-) create mode 100644 app/assets/images/default_icon.jpg diff --git a/app/assets/images/default_icon.jpg b/app/assets/images/default_icon.jpg new file mode 100644 index 0000000000000000000000000000000000000000..602d89b511df093fc0a87697ac9b08fa47bc290d GIT binary patch literal 2176 zcma)%dpOg5AIE>c--eB;tx-%WiCCC~6cJC!=CB+>jtQZKmUK(qqMJl55~dn*V_I4{ zpC;0Q9G0?mV9p+6iMp8-xArL2^*n#w&-;6QKcDaQ{#>8y{rXDYN(KQm$(m>lfDix# zEFD1d9>DC0^rxH#KmZN^fZ38Y1+1_P2tOPM1Uy`FK#2f|2c+R}xD;GkN=h0jy>#Ue z($WYyl&q|rtSkzR`YtqT#Y*(b6(}rLK>>?htD>T^cKt7bGBPsqD0w9`S_!9!QN;Zk z{J#&$LjZ#SGJ#AOhyfrB2*ZGqCqVKNHYf#xOPoIifiP(qgcN+qgn|Dv0bx>bNE!`5 zAOwd)2)HzCc?X1GaEzLi^ww2a8B0e$YTVV*jRp#NRwvFkIUP>>Q&HV{69xnz2==}F z$N?b?Ol>QCm8F5>Mn9^8qz6EKn`2-Yzyf$8U)1@N=O4NQB5p8~pr+3tu?;ij$i&Gp{Hb<_hI96>3S3rOydi7ZevC=$39BIMh31fYOeXWUhjCw5 zRnAxP4`t(Ni|jr#Z+xk5+W?ZF)F6F<-DuZWcjP{zbpJ1Mh6 z&HA0BEK_(I*cqI)&UHvocZ5^;nrDRbwvBGzOgGeQxZd=cWDe19v_I!kqfUH%FIclc z@njeF>jkaMNjOSq`O)f(du+q%P9jOs|IE$$c3{I$is z7QHzZg+?=wt*AA13wow0VJ@t2@=X_BdU1DUGlfR-eQ;b%4{q$JUEDd$?;Pc7GTo=q zu|F6XYUK;c)&7xpdnYnRXuEctWK)OU+$pC|CO#RN9l%_i92kCey+hnzLa!MNvHBZ_ z^s+w$=k0cpCEn8M)M-AgFLam)Exh$XCCf2UH)HNA$0d{K63$Yb4@xQF%?REp^=C(T z>JQJE{K$)Ly`riiuvZOH+2)X^(e5+6KGOU1jN6w?^V=u#)g!;&?U~^T@0MZlK8?t@ zNb&~F!i$Q|9k48PdMd855vLPw%xx$}NPu>x8>xW4j&?3%f%#|T>F`T_PbZm_%y`3t zmdNEOb2h%sZN4x&J>oYbQP<;H?!M1C;USiO^Bj@d_V>sbN4}bq6HO25;o7UVtYTy}v zBRak)nS8;0@R;2gO6js){HEpPR?`Sew*j14;3K2?+-@ZCtZX$|>@7@rKVGSGnb|`+ z2%gvmiGxzH2Mi#uLDk*r+Hqm_wxj3l$|x_UHBI;CCu;O}jrV&wN`QN88-l=?mOP76 zX)!3XefB*7ymqSVsLB{IbcjZL8r`S8$+>a%kp$R2HEu*u*R4oPU8C?3`u9lz*akL`N;d@6xS4Td~;0 z?5~aw_Tr`Iif1$kP36sRxvmq8gI##r$BA*Ny-CAZ=V!=>IHUbY{B2|;TG1I8OhGG<@!z>GfEoJgd4Z(xWlfCulXY z?(e7%;O@~KeBz~ zV_u#ZlQf0%@!jK(6$ELdlqa?5{axIKO>nWo660hmSzSfi{Imp<&Dzh&h=Q7`f!Hg= zA*N|c@7`k8_`LnTucc;sVXj;5y@@{?P5JwQbz<(m&SRbXn7U7l{^AcpyMIss>(1_x z0BPzvjiJ9;_`Xz=i++1_wSJQ|?Z_*eeQk={Vp@`Sd((Wds+#R-VT)s zzFb^IZ~h|xOM{GV{oEC3i-#)Q(R+Rjy kQ!swBT~*KNC+)YcMA)Exej2JFsHGyH-QS#l6e#Kb58>y1)Bpeg literal 0 HcmV?d00001 diff --git a/app/controllers/users_controller.rb b/app/controllers/users_controller.rb index ee9686f53..b20264b20 100644 --- a/app/controllers/users_controller.rb +++ b/app/controllers/users_controller.rb @@ -12,6 +12,8 @@ def new def create @user = User.new(user_params) + @user.avatar = "default_icon.jpg" + if @user.save session[:user_id] = @user.id redirect_to index_path diff --git a/app/views/users/edit.html.erb b/app/views/users/edit.html.erb index 1881fbdba..17fe8fb4d 100644 --- a/app/views/users/edit.html.erb +++ b/app/views/users/edit.html.erb @@ -1,2 +1,7 @@ -

        Users#edit

        -

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

        +

        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/db/development.sqlite3 b/db/development.sqlite3 index 9f268ee7c3b03f1532f03540aa62a5863baa2cef..f949e1a7c32e96162a44930da718318732c38cd3 100644 GIT binary patch delta 225 zcmZp8z}WDBae_2s{X`jO#`=v3Q~YIEI2oD68A}q2vx}v885kH?c&9V)C-Yt4v*De- zSy7;!x4uz{g@=JbmO<0eQJ0~SHN-VI1O!S_i%X0gK%`!Bey)*$p_#6sfv%CUf|0S6 zv4NGTiJqy6xrK!VZkd$Sw8YY!lK9Nz{5-v^f^-$5L={5=6~~~^(4+{*io$Ha;3Shm wwJeL0RP%5>zqBfktiVj~@C?sT"✓", "authenticity_token"=>"lZ/s9LT8x35/dn8u/tye+/ovNP0OYUd0RgJhFdNUaloVh/Gs7Sr01+HB+Xw5eaU8A36CCxUZleixDrkJpr7Kfw==", "user"=>{"name"=>"TESTTTTT", "email"=>"test2@test.com", "password"=>"[FILTERED]"}, "commit"=>"Create an account"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "avatar", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "TESTTTTT"], ["email", "test2@test.com"], ["password_digest", "$2a$10$ARUUbXAxqkNSb4qj8te7W.NfzHjQiKWhIU3Vd8vTTE/5eftzxrRje"], ["avatar", "default_icon.jpg"], ["created_at", "2016-10-23 23:30:54.547888"], ["updated_at", "2016-10-23 23:30:54.547888"]] +  (2.3ms) commit transaction +Redirected to http://localhost:3000/tasks/index +Completed 302 Found in 81ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks/index" for ::1 at 2016-10-23 16:30:54 -0700 +Processing by TasksController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]] + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? [["user_id", 4]] + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 28ms (Views: 24.2ms | ActiveRecord: 0.5ms) + + +Started GET "/users/4" for ::1 at 2016-10-23 16:30:55 -0700 +Processing by UsersController#show as HTML + Parameters: {"authenticity_token"=>"gU5DZloyedSIrDG3gyS9OvDbNaoAOFRUyViJMfnQyrgBVl4+A+RKfRYbt+VEgYb9CYqDXBtAhsg+VFEtjDpqnQ==", "id"=>"4"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]] + Rendered users/show.html.erb within layouts/application (72.4ms) +Completed 200 OK in 106ms (Views: 105.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/default_icon-e5141f81e8778ee0a55ceb0166bb280c58461f1fa4e8f5cf4b54a10b9a6e0afc.jpg" for ::1 at 2016-10-23 16:30:55 -0700 + + +Started GET "/" for ::1 at 2016-10-23 16:30:59 -0700 +Processing by PagesController#index as HTML +Redirected to http://localhost:3000/tasks/index +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-10-23 16:30:59 -0700 +Processing by TasksController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? [["user_id", 4]] + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 42ms (Views: 40.0ms | ActiveRecord: 0.3ms) + + +Started DELETE "/logout" for ::1 at 2016-10-23 16:31:00 -0700 +Processing by SessionsController#destroy as HTML + Parameters: {"authenticity_token"=>"dlNIaI/mwolI0KPZuyyw0NcoXQTz1u+bGcW1Q0ac4Uv2S1Uw1jDxINZnJYt8iYsXLnnr8uiuPQfuyW1fM3ZBbg=="} +Redirected to http://localhost:3000/ +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-10-23 16:31:00 -0700 +Processing by PagesController#index as HTML + Rendered pages/index.html.erb within layouts/application (0.1ms) +Completed 200 OK in 26ms (Views: 26.1ms | ActiveRecord: 0.0ms) From 286bfa05b4bfa8ee3d6f0618455771b59506dc6d Mon Sep 17 00:00:00 2001 From: Briana Eng Date: Sun, 23 Oct 2016 16:34:46 -0700 Subject: [PATCH 29/31] Fixing format of sign up/login page. --- app/assets/stylesheets/style.css | 4 + app/views/sessions/new.html.erb | 20 +- log/development.log | 486 +++++++++++++++++++++++++++++++ 3 files changed, 502 insertions(+), 8 deletions(-) diff --git a/app/assets/stylesheets/style.css b/app/assets/stylesheets/style.css index 23b8667aa..7d73d69e6 100644 --- a/app/assets/stylesheets/style.css +++ b/app/assets/stylesheets/style.css @@ -90,3 +90,7 @@ img { .alert { color: rgb(179, 0, 0); } + +.login-signup { + margin: 4rem auto; +} diff --git a/app/views/sessions/new.html.erb b/app/views/sessions/new.html.erb index b747fc6e0..214a0045f 100644 --- a/app/views/sessions/new.html.erb +++ b/app/views/sessions/new.html.erb @@ -1,19 +1,23 @@