diff --git a/app/views/users/update.html.erb b/app/views/users/update.html.erb
new file mode 100644
index 000000000..cabbde176
--- /dev/null
+++ b/app/views/users/update.html.erb
@@ -0,0 +1,2 @@
+
Users#update
+
Find me in app/views/users/update.html.erb
diff --git a/bin/bundle b/bin/bundle
new file mode 100755
index 000000000..66e9889e8
--- /dev/null
+++ b/bin/bundle
@@ -0,0 +1,3 @@
+#!/usr/bin/env ruby
+ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
+load Gem.bin_path('bundler', 'bundle')
diff --git a/bin/rails b/bin/rails
new file mode 100755
index 000000000..0138d79b7
--- /dev/null
+++ b/bin/rails
@@ -0,0 +1,9 @@
+#!/usr/bin/env ruby
+begin
+ load File.expand_path('../spring', __FILE__)
+rescue LoadError => e
+ raise unless e.message.include?('spring')
+end
+APP_PATH = File.expand_path('../../config/application', __FILE__)
+require_relative '../config/boot'
+require 'rails/commands'
diff --git a/bin/rake b/bin/rake
new file mode 100755
index 000000000..d87d5f578
--- /dev/null
+++ b/bin/rake
@@ -0,0 +1,9 @@
+#!/usr/bin/env ruby
+begin
+ load File.expand_path('../spring', __FILE__)
+rescue LoadError => e
+ raise unless e.message.include?('spring')
+end
+require_relative '../config/boot'
+require 'rake'
+Rake.application.run
diff --git a/bin/setup b/bin/setup
new file mode 100755
index 000000000..acdb2c138
--- /dev/null
+++ b/bin/setup
@@ -0,0 +1,29 @@
+#!/usr/bin/env ruby
+require 'pathname'
+
+# path to your application root.
+APP_ROOT = Pathname.new File.expand_path('../../', __FILE__)
+
+Dir.chdir APP_ROOT do
+ # This script is a starting point to setup your application.
+ # Add necessary setup steps to this file:
+
+ puts "== Installing dependencies =="
+ system "gem install bundler --conservative"
+ system "bundle check || bundle install"
+
+ # puts "\n== Copying sample files =="
+ # unless File.exist?("config/database.yml")
+ # system "cp config/database.yml.sample config/database.yml"
+ # end
+
+ puts "\n== Preparing database =="
+ system "bin/rake db:setup"
+
+ puts "\n== Removing old logs and tempfiles =="
+ system "rm -f log/*"
+ system "rm -rf tmp/cache"
+
+ puts "\n== Restarting application server =="
+ system "touch tmp/restart.txt"
+end
diff --git a/bin/spring b/bin/spring
new file mode 100755
index 000000000..7fe232c3a
--- /dev/null
+++ b/bin/spring
@@ -0,0 +1,15 @@
+#!/usr/bin/env ruby
+
+# This file loads spring without using Bundler, in order to be fast.
+# It gets overwritten when you run the `spring binstub` command.
+
+unless defined?(Spring)
+ require 'rubygems'
+ require 'bundler'
+
+ if (match = Bundler.default_lockfile.read.match(/^GEM$.*?^ (?: )*spring \((.*?)\)$.*?^$/m))
+ Gem.paths = { 'GEM_PATH' => [Bundler.bundle_path.to_s, *Gem.path].uniq.join(Gem.path_separator) }
+ gem 'spring', match[1]
+ require 'spring/binstub'
+ end
+end
diff --git a/config.ru b/config.ru
new file mode 100644
index 000000000..bd83b2541
--- /dev/null
+++ b/config.ru
@@ -0,0 +1,4 @@
+# This file is used by Rack-based servers to start the application.
+
+require ::File.expand_path('../config/environment', __FILE__)
+run Rails.application
diff --git a/config/application.rb b/config/application.rb
new file mode 100644
index 000000000..902432bad
--- /dev/null
+++ b/config/application.rb
@@ -0,0 +1,26 @@
+require File.expand_path('../boot', __FILE__)
+
+require 'rails/all'
+
+# Require the gems listed in Gemfile, including any gems
+# you've limited to :test, :development, or :production.
+Bundler.require(*Rails.groups)
+
+module TaskListRails
+ class Application < Rails::Application
+ # Settings in config/environments/* take precedence over those specified here.
+ # Application configuration should go into files in config/initializers
+ # -- all .rb files in that directory are automatically loaded.
+
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
+ # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
+ # config.time_zone = 'Central Time (US & Canada)'
+
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
+ # config.i18n.default_locale = :de
+
+ # Do not swallow errors in after_commit/after_rollback callbacks.
+ config.active_record.raise_in_transactional_callbacks = true
+ end
+end
diff --git a/config/boot.rb b/config/boot.rb
new file mode 100644
index 000000000..6b750f00b
--- /dev/null
+++ b/config/boot.rb
@@ -0,0 +1,3 @@
+ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
+
+require 'bundler/setup' # Set up gems listed in the Gemfile.
diff --git a/config/database.yml b/config/database.yml
new file mode 100644
index 000000000..1c1a37ca8
--- /dev/null
+++ b/config/database.yml
@@ -0,0 +1,25 @@
+# SQLite version 3.x
+# gem install sqlite3
+#
+# Ensure the SQLite 3 gem is defined in your Gemfile
+# gem 'sqlite3'
+#
+default: &default
+ adapter: sqlite3
+ pool: 5
+ timeout: 5000
+
+development:
+ <<: *default
+ database: db/development.sqlite3
+
+# Warning: The database defined as "test" will be erased and
+# re-generated from your development database when you run "rake".
+# Do not set this db to the same as development or production.
+test:
+ <<: *default
+ database: db/test.sqlite3
+
+production:
+ <<: *default
+ database: db/production.sqlite3
diff --git a/config/environment.rb b/config/environment.rb
new file mode 100644
index 000000000..ee8d90dc6
--- /dev/null
+++ b/config/environment.rb
@@ -0,0 +1,5 @@
+# Load the Rails application.
+require File.expand_path('../application', __FILE__)
+
+# Initialize the Rails application.
+Rails.application.initialize!
diff --git a/config/environments/development.rb b/config/environments/development.rb
new file mode 100644
index 000000000..b55e2144b
--- /dev/null
+++ b/config/environments/development.rb
@@ -0,0 +1,41 @@
+Rails.application.configure do
+ # Settings specified here will take precedence over those in config/application.rb.
+
+ # In the development environment your application's code is reloaded on
+ # every request. This slows down response time but is perfect for development
+ # since you don't have to restart the web server when you make code changes.
+ config.cache_classes = false
+
+ # Do not eager load code on boot.
+ config.eager_load = false
+
+ # Show full error reports and disable caching.
+ config.consider_all_requests_local = true
+ config.action_controller.perform_caching = false
+
+ # Don't care if the mailer can't send.
+ config.action_mailer.raise_delivery_errors = false
+
+ # Print deprecation notices to the Rails logger.
+ config.active_support.deprecation = :log
+
+ # Raise an error on page load if there are pending migrations.
+ config.active_record.migration_error = :page_load
+
+ # Debug mode disables concatenation and preprocessing of assets.
+ # This option may cause significant delays in view rendering with a large
+ # number of complex assets.
+ config.assets.debug = true
+
+ # Asset digests allow you to set far-future HTTP expiration dates on all assets,
+ # yet still be able to expire them through the digest params.
+ config.assets.digest = true
+
+ # Adds additional error checking when serving assets at runtime.
+ # Checks for improperly declared sprockets dependencies.
+ # Raises helpful error messages.
+ config.assets.raise_runtime_errors = true
+
+ # Raises error for missing translations
+ # config.action_view.raise_on_missing_translations = true
+end
diff --git a/config/environments/production.rb b/config/environments/production.rb
new file mode 100644
index 000000000..5c1b32e48
--- /dev/null
+++ b/config/environments/production.rb
@@ -0,0 +1,79 @@
+Rails.application.configure do
+ # Settings specified here will take precedence over those in config/application.rb.
+
+ # Code is not reloaded between requests.
+ config.cache_classes = true
+
+ # Eager load code on boot. This eager loads most of Rails and
+ # your application in memory, allowing both threaded web servers
+ # and those relying on copy on write to perform better.
+ # Rake tasks automatically ignore this option for performance.
+ config.eager_load = true
+
+ # Full error reports are disabled and caching is turned on.
+ config.consider_all_requests_local = false
+ config.action_controller.perform_caching = true
+
+ # Enable Rack::Cache to put a simple HTTP cache in front of your application
+ # Add `rack-cache` to your Gemfile before enabling this.
+ # For large-scale production use, consider using a caching reverse proxy like
+ # NGINX, varnish or squid.
+ # config.action_dispatch.rack_cache = true
+
+ # Disable serving static files from the `/public` folder by default since
+ # Apache or NGINX already handles this.
+ config.serve_static_files = ENV['RAILS_SERVE_STATIC_FILES'].present?
+
+ # Compress JavaScripts and CSS.
+ config.assets.js_compressor = :uglifier
+ # config.assets.css_compressor = :sass
+
+ # Do not fallback to assets pipeline if a precompiled asset is missed.
+ config.assets.compile = false
+
+ # Asset digests allow you to set far-future HTTP expiration dates on all assets,
+ # yet still be able to expire them through the digest params.
+ config.assets.digest = true
+
+ # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
+
+ # Specifies the header that your server uses for sending files.
+ # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
+
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
+ # config.force_ssl = true
+
+ # Use the lowest log level to ensure availability of diagnostic information
+ # when problems arise.
+ config.log_level = :debug
+
+ # Prepend all log lines with the following tags.
+ # config.log_tags = [ :subdomain, :uuid ]
+
+ # Use a different logger for distributed setups.
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
+
+ # Use a different cache store in production.
+ # config.cache_store = :mem_cache_store
+
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
+ # config.action_controller.asset_host = 'http://assets.example.com'
+
+ # Ignore bad email addresses and do not raise email delivery errors.
+ # Set this to true and configure the email server for immediate delivery to raise delivery errors.
+ # config.action_mailer.raise_delivery_errors = false
+
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
+ # the I18n.default_locale when a translation cannot be found).
+ config.i18n.fallbacks = true
+
+ # Send deprecation notices to registered listeners.
+ config.active_support.deprecation = :notify
+
+ # Use default logging formatter so that PID and timestamp are not suppressed.
+ config.log_formatter = ::Logger::Formatter.new
+
+ # Do not dump schema after migrations.
+ config.active_record.dump_schema_after_migration = false
+end
diff --git a/config/environments/test.rb b/config/environments/test.rb
new file mode 100644
index 000000000..1c19f08b2
--- /dev/null
+++ b/config/environments/test.rb
@@ -0,0 +1,42 @@
+Rails.application.configure do
+ # Settings specified here will take precedence over those in config/application.rb.
+
+ # The test environment is used exclusively to run your application's
+ # test suite. You never need to work with it otherwise. Remember that
+ # your test database is "scratch space" for the test suite and is wiped
+ # and recreated between test runs. Don't rely on the data there!
+ config.cache_classes = true
+
+ # Do not eager load code on boot. This avoids loading your whole application
+ # just for the purpose of running a single test. If you are using a tool that
+ # preloads Rails for running tests, you may have to set it to true.
+ config.eager_load = false
+
+ # Configure static file server for tests with Cache-Control for performance.
+ config.serve_static_files = true
+ config.static_cache_control = 'public, max-age=3600'
+
+ # Show full error reports and disable caching.
+ config.consider_all_requests_local = true
+ config.action_controller.perform_caching = false
+
+ # Raise exceptions instead of rendering exception templates.
+ config.action_dispatch.show_exceptions = false
+
+ # Disable request forgery protection in test environment.
+ config.action_controller.allow_forgery_protection = false
+
+ # Tell Action Mailer not to deliver emails to the real world.
+ # The :test delivery method accumulates sent emails in the
+ # ActionMailer::Base.deliveries array.
+ config.action_mailer.delivery_method = :test
+
+ # Randomize the order test cases are executed.
+ config.active_support.test_order = :random
+
+ # Print deprecation notices to the stderr.
+ config.active_support.deprecation = :stderr
+
+ # Raises error for missing translations
+ # config.action_view.raise_on_missing_translations = true
+end
diff --git a/config/initializers/assets.rb b/config/initializers/assets.rb
new file mode 100644
index 000000000..01ef3e663
--- /dev/null
+++ b/config/initializers/assets.rb
@@ -0,0 +1,11 @@
+# Be sure to restart your server when you modify this file.
+
+# Version of your assets, change this if you want to expire all your assets.
+Rails.application.config.assets.version = '1.0'
+
+# Add additional assets to the asset load path
+# Rails.application.config.assets.paths << Emoji.images_path
+
+# Precompile additional assets.
+# application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
+# Rails.application.config.assets.precompile += %w( search.js )
diff --git a/config/initializers/backtrace_silencers.rb b/config/initializers/backtrace_silencers.rb
new file mode 100644
index 000000000..59385cdf3
--- /dev/null
+++ b/config/initializers/backtrace_silencers.rb
@@ -0,0 +1,7 @@
+# Be sure to restart your server when you modify this file.
+
+# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
+# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
+
+# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
+# Rails.backtrace_cleaner.remove_silencers!
diff --git a/config/initializers/cookies_serializer.rb b/config/initializers/cookies_serializer.rb
new file mode 100644
index 000000000..7f70458de
--- /dev/null
+++ b/config/initializers/cookies_serializer.rb
@@ -0,0 +1,3 @@
+# Be sure to restart your server when you modify this file.
+
+Rails.application.config.action_dispatch.cookies_serializer = :json
diff --git a/config/initializers/filter_parameter_logging.rb b/config/initializers/filter_parameter_logging.rb
new file mode 100644
index 000000000..4a994e1e7
--- /dev/null
+++ b/config/initializers/filter_parameter_logging.rb
@@ -0,0 +1,4 @@
+# Be sure to restart your server when you modify this file.
+
+# Configure sensitive parameters which will be filtered from the log file.
+Rails.application.config.filter_parameters += [:password]
diff --git a/config/initializers/inflections.rb b/config/initializers/inflections.rb
new file mode 100644
index 000000000..ac033bf9d
--- /dev/null
+++ b/config/initializers/inflections.rb
@@ -0,0 +1,16 @@
+# Be sure to restart your server when you modify this file.
+
+# Add new inflection rules using the following format. Inflections
+# are locale specific, and you may define rules for as many different
+# locales as you wish. All of these examples are active by default:
+# ActiveSupport::Inflector.inflections(:en) do |inflect|
+# inflect.plural /^(ox)$/i, '\1en'
+# inflect.singular /^(ox)en/i, '\1'
+# inflect.irregular 'person', 'people'
+# inflect.uncountable %w( fish sheep )
+# end
+
+# These inflection rules are supported but not enabled by default:
+# ActiveSupport::Inflector.inflections(:en) do |inflect|
+# inflect.acronym 'RESTful'
+# end
diff --git a/config/initializers/mime_types.rb b/config/initializers/mime_types.rb
new file mode 100644
index 000000000..dc1899682
--- /dev/null
+++ b/config/initializers/mime_types.rb
@@ -0,0 +1,4 @@
+# Be sure to restart your server when you modify this file.
+
+# Add new mime types for use in respond_to blocks:
+# Mime::Type.register "text/richtext", :rtf
diff --git a/config/initializers/omniauth.rb b/config/initializers/omniauth.rb
new file mode 100644
index 000000000..fd4416122
--- /dev/null
+++ b/config/initializers/omniauth.rb
@@ -0,0 +1,3 @@
+Rails.application.config.middleware.use OmniAuth::Builder do
+ provider :github, ENV["GITHUB_CLIENT_ID"], ENV["GITHUB_CLIENT_SECRET"], scope: "user:email"
+end
diff --git a/config/initializers/session_store.rb b/config/initializers/session_store.rb
new file mode 100644
index 000000000..15d065a84
--- /dev/null
+++ b/config/initializers/session_store.rb
@@ -0,0 +1,3 @@
+# Be sure to restart your server when you modify this file.
+
+Rails.application.config.session_store :cookie_store, key: '_TaskListRails_session'
diff --git a/config/initializers/wrap_parameters.rb b/config/initializers/wrap_parameters.rb
new file mode 100644
index 000000000..33725e95f
--- /dev/null
+++ b/config/initializers/wrap_parameters.rb
@@ -0,0 +1,14 @@
+# Be sure to restart your server when you modify this file.
+
+# This file contains settings for ActionController::ParamsWrapper which
+# is enabled by default.
+
+# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
+ActiveSupport.on_load(:action_controller) do
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
+end
+
+# To enable root element in JSON for ActiveRecord objects.
+# ActiveSupport.on_load(:active_record) do
+# self.include_root_in_json = true
+# end
diff --git a/config/locales/en.yml b/config/locales/en.yml
new file mode 100644
index 000000000..065395716
--- /dev/null
+++ b/config/locales/en.yml
@@ -0,0 +1,23 @@
+# Files in the config/locales directory are used for internationalization
+# and are automatically loaded by Rails. If you want to use locales other
+# than English, add the necessary files in this directory.
+#
+# To use the locales, use `I18n.t`:
+#
+# I18n.t 'hello'
+#
+# In views, this is aliased to just `t`:
+#
+# <%= t('hello') %>
+#
+# To use a different locale, set it with `I18n.locale`:
+#
+# I18n.locale = :es
+#
+# This would use the information in config/locales/es.yml.
+#
+# To learn more, please read the Rails Internationalization guide
+# available at http://guides.rubyonrails.org/i18n.html.
+
+en:
+ hello: "Hello world"
diff --git a/config/routes.rb b/config/routes.rb
new file mode 100644
index 000000000..7b4af86af
--- /dev/null
+++ b/config/routes.rb
@@ -0,0 +1,93 @@
+Rails.application.routes.draw do
+ root to: 'pages#index'
+
+ get 'signup' => 'users#new'
+
+ get 'login' => 'sessions#new'
+
+ post 'login' => 'sessions#create_via_login'
+
+ delete 'logout' => 'sessions#destroy'
+
+ get 'pages/index'
+
+ get 'sessions/create'
+
+ get 'tasks/index', as: 'index'
+
+ get 'tasks/show/:id' => 'tasks#show', as: 'show'
+
+ post 'tasks/create' => 'tasks#create', as: 'create'
+
+ get 'tasks/new' => 'tasks#new', as: 'new'
+
+ get 'tasks/:id/edit' => 'tasks#edit', as: 'edit'
+
+ patch 'tasks/:id/update' => 'tasks#update', as: 'update'
+
+ patch 'tasks/:id/' => 'tasks#complete_toggle', as: 'complete_toggle' #changed this so might need to update
+
+ delete 'tasks/:id/destroy' => 'tasks#destroy', as: 'destroy'
+
+ get '/auth/:provider/callback' => 'sessions#create_via_github'
+
+ # delete '/session/destroy' => 'sessions#destroy'
+
+ resources :users
+
+
+ # The priority is based upon order of creation: first created -> highest priority.
+ # See how all your routes lay out with "rake routes".
+
+ # You can have the root of your site routed with "root"
+ # root 'welcome#index'
+
+ # Example of regular route:
+ # get 'products/:id' => 'catalog#view'
+
+ # Example of named route that can be invoked with purchase_url(id: product.id)
+ # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
+
+ # Example resource route (maps HTTP verbs to controller actions automatically):
+ # resources :products
+
+ # Example resource route with options:
+ # resources :products do
+ # member do
+ # get 'short'
+ # post 'toggle'
+ # end
+ #
+ # collection do
+ # get 'sold'
+ # end
+ # end
+
+ # Example resource route with sub-resources:
+ # resources :products do
+ # resources :comments, :sales
+ # resource :seller
+ # end
+
+ # Example resource route with more complex sub-resources:
+ # resources :products do
+ # resources :comments
+ # resources :sales do
+ # get 'recent', on: :collection
+ # end
+ # end
+
+ # Example resource route with concerns:
+ # concern :toggleable do
+ # post 'toggle'
+ # end
+ # resources :posts, concerns: :toggleable
+ # resources :photos, concerns: :toggleable
+
+ # Example resource route within a namespace:
+ # namespace :admin do
+ # # Directs /admin/products/* to Admin::ProductsController
+ # # (app/controllers/admin/products_controller.rb)
+ # resources :products
+ # end
+end
diff --git a/config/secrets.yml b/config/secrets.yml
new file mode 100644
index 000000000..a7c4aea9f
--- /dev/null
+++ b/config/secrets.yml
@@ -0,0 +1,22 @@
+# Be sure to restart your server when you modify this file.
+
+# Your secret key is used for verifying the integrity of signed cookies.
+# If you change this key, all old signed cookies will become invalid!
+
+# Make sure the secret is at least 30 characters and all random,
+# no regular words or you'll be exposed to dictionary attacks.
+# You can use `rake secret` to generate a secure secret key.
+
+# Make sure the secrets in this file are kept private
+# if you're sharing your code publicly.
+
+development:
+ secret_key_base: cb4a4458b3adc7beb1b5609d7e1c7300a05af8a3c367a05396f434b7b2cc0b8138b54ee5b2ff79b9d1091b7bbe6eaab61994f6352ed398b9e70e88c802d33beb
+
+test:
+ secret_key_base: 57ef48543ef48939e6416124c8076e26263a55e57a74dc2be06aa9436949a18792d45a62527f2b6bf3a7dba26424c2dde7c4bdcbc920687a3bc306ce09e1d289
+
+# Do not keep production secrets in the repository,
+# instead read values from the environment.
+production:
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
diff --git a/db/development.sqlite3 b/db/development.sqlite3
new file mode 100644
index 000000000..f949e1a7c
Binary files /dev/null and b/db/development.sqlite3 differ
diff --git a/db/migrate/20160928232311_create_tasks.rb b/db/migrate/20160928232311_create_tasks.rb
new file mode 100644
index 000000000..d48b293a3
--- /dev/null
+++ b/db/migrate/20160928232311_create_tasks.rb
@@ -0,0 +1,11 @@
+class CreateTasks < ActiveRecord::Migration
+ def change
+ create_table :tasks do |t|
+ t.string :title
+ t.string :description
+ t.datetime :completed_at
+
+ t.timestamps null: false
+ end
+ end
+end
diff --git a/db/migrate/20161004145644_add_notes_to_task.rb b/db/migrate/20161004145644_add_notes_to_task.rb
new file mode 100644
index 000000000..9d7865d52
--- /dev/null
+++ b/db/migrate/20161004145644_add_notes_to_task.rb
@@ -0,0 +1,5 @@
+class AddNotesToTask < ActiveRecord::Migration
+ def change
+ add_column :tasks, :note, :text
+ end
+end
diff --git a/db/migrate/20161018170119_create_users.rb b/db/migrate/20161018170119_create_users.rb
new file mode 100644
index 000000000..f85251a60
--- /dev/null
+++ b/db/migrate/20161018170119_create_users.rb
@@ -0,0 +1,12 @@
+class CreateUsers < ActiveRecord::Migration
+ def change
+ create_table :users do |t|
+ t.string :uid
+ t.string :name
+ t.string :provider
+ t.string :email
+
+ t.timestamps null: false
+ end
+ end
+end
diff --git a/db/migrate/20161022191446_add_user_attributes.rb b/db/migrate/20161022191446_add_user_attributes.rb
new file mode 100644
index 000000000..2a187c69d
--- /dev/null
+++ b/db/migrate/20161022191446_add_user_attributes.rb
@@ -0,0 +1,6 @@
+class AddUserAttributes < ActiveRecord::Migration
+ def change
+ add_column :users, :avatar, :string
+ add_column :users, :authenticated, :boolean
+ end
+end
diff --git a/db/migrate/20161023050759_add_user_to_task.rb b/db/migrate/20161023050759_add_user_to_task.rb
new file mode 100644
index 000000000..9aeea570a
--- /dev/null
+++ b/db/migrate/20161023050759_add_user_to_task.rb
@@ -0,0 +1,5 @@
+class AddUserToTask < ActiveRecord::Migration
+ def change
+ add_reference :tasks, :user, index: true, foreign_key: true
+ end
+end
diff --git a/db/migrate/20161023220309_add_password_to_user.rb b/db/migrate/20161023220309_add_password_to_user.rb
new file mode 100644
index 000000000..affa53528
--- /dev/null
+++ b/db/migrate/20161023220309_add_password_to_user.rb
@@ -0,0 +1,5 @@
+class AddPasswordToUser < ActiveRecord::Migration
+ def change
+ add_column :users, :password_digest, :string
+ end
+end
diff --git a/db/schema.rb b/db/schema.rb
new file mode 100644
index 000000000..f48218081
--- /dev/null
+++ b/db/schema.rb
@@ -0,0 +1,40 @@
+# encoding: UTF-8
+# This file is auto-generated from the current state of the database. Instead
+# of editing this file, please use the migrations feature of Active Record to
+# incrementally modify your database, and then regenerate this schema definition.
+#
+# Note that this schema.rb definition is the authoritative source for your
+# database schema. If you need to create the application database on another
+# system, you should be using db:schema:load, not running all the migrations
+# from scratch. The latter is a flawed and unsustainable approach (the more migrations
+# you'll amass, the slower it'll run and the greater likelihood for issues).
+#
+# It's strongly recommended that you check this file into your version control system.
+
+ActiveRecord::Schema.define(version: 20161023220309) do
+
+ create_table "tasks", force: :cascade do |t|
+ t.string "title"
+ t.string "description"
+ t.datetime "completed_at"
+ t.datetime "created_at", null: false
+ t.datetime "updated_at", null: false
+ t.text "note"
+ t.integer "user_id"
+ end
+
+ add_index "tasks", ["user_id"], name: "index_tasks_on_user_id"
+
+ create_table "users", force: :cascade do |t|
+ t.string "uid"
+ t.string "name"
+ t.string "provider"
+ t.string "email"
+ t.datetime "created_at", null: false
+ t.datetime "updated_at", null: false
+ t.string "avatar"
+ t.boolean "authenticated"
+ t.string "password_digest"
+ end
+
+end
diff --git a/db/seeds.rb b/db/seeds.rb
new file mode 100644
index 000000000..4edb1e857
--- /dev/null
+++ b/db/seeds.rb
@@ -0,0 +1,7 @@
+# This file should contain all the record creation needed to seed the database with its default values.
+# The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
+#
+# Examples:
+#
+# cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
+# Mayor.create(name: 'Emanuel', city: cities.first)
diff --git a/db/test.sqlite3 b/db/test.sqlite3
new file mode 100644
index 000000000..dd4a69a11
Binary files /dev/null and b/db/test.sqlite3 differ
diff --git a/lib/assets/.keep b/lib/assets/.keep
new file mode 100644
index 000000000..e69de29bb
diff --git a/lib/tasks/.keep b/lib/tasks/.keep
new file mode 100644
index 000000000..e69de29bb
diff --git a/log/.keep b/log/.keep
new file mode 100644
index 000000000..e69de29bb
diff --git a/log/development.log b/log/development.log
new file mode 100644
index 000000000..dcfc7004c
--- /dev/null
+++ b/log/development.log
@@ -0,0 +1,27457 @@
+
+
+Started GET "/" for ::1 at 2016-09-28 14:46:38 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (1.1ms)
+Completed 200 OK in 562ms (Views: 552.4ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 14:46:39 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 14:46:39 -0700
+
+
+Started GET "/" for ::1 at 2016-09-28 14:48:15 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 14:48:15 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 14:48:15 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 14:48:15 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 14:48:15 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 14:48:15 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 14:48:15 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 14:48:15 -0700
+
+
+Started GET "/" for ::1 at 2016-09-28 14:49:04 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.0ms)
+Completed 200 OK in 15ms (Views: 14.9ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 14:49:04 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 14:49:04 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 14:49:04 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 14:49:04 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 14:49:04 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 14:49:04 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 14:49:04 -0700
+
+
+Started GET "/" for ::1 at 2016-09-28 14:49:05 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.0ms)
+Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 14:49:05 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 14:49:05 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 14:49:05 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 14:49:05 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 14:49:05 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 14:49:05 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 14:49:05 -0700
+
+
+Started GET "/" for ::1 at 2016-09-28 14:52:27 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.0ms)
+Completed 200 OK in 13ms (Views: 12.4ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/show/tasks" for ::1 at 2016-09-28 14:52:33 -0700
+
+ActionController::RoutingError (No route matches [GET] "/show/tasks"):
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
+ railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app'
+ railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged'
+ railties (4.2.7) lib/rails/rack/logger.rb:20:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call'
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
+ activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call'
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
+ railties (4.2.7) lib/rails/engine.rb:518:in `call'
+ railties (4.2.7) lib/rails/application.rb:165:in `call'
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
+ /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (22.4ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (127.3ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.6ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (95.2ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (166.1ms)
+
+
+Started GET "/" for ::1 at 2016-09-28 14:55:29 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.6ms)
+Completed 200 OK in 24ms (Views: 23.1ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-09-28 14:55:49 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.5ms)
+Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 14:55:49 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 14:55:49 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 14:55:49 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 14:55:49 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 14:55:49 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 14:55:49 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 14:55:49 -0700
+
+
+Started GET "/" for ::1 at 2016-09-28 14:57:20 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (4.4ms)
+Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms)
+
+ActionView::Template::Error (undefined method `title' for #):
+ 3:
+ 4: <% @alltasks.each do |task| %>
+ 5:
+ 6: <%= task.title %>
+ 7:
+ 8:
<%= task.description %>
+ 9:
<%= task.completion %>
+ app/views/tasks/index.html.erb:6:in `block in _app_views_tasks_index_html_erb__2996680299606866983_70121622689820'
+ app/views/tasks/index.html.erb:4:in `each'
+ app/views/tasks/index.html.erb:4:in `_app_views_tasks_index_html_erb__2996680299606866983_70121622689820'
+
+
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.3ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (73.9ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.8ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (101.4ms)
+
+
+Started GET "/" for ::1 at 2016-09-28 14:57:48 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.6ms)
+Completed 200 OK in 13ms (Views: 12.1ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 14:57:48 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 14:57:48 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 14:57:48 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 14:57:48 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 14:57:48 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 14:57:48 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 14:57:48 -0700
+
+
+Started GET "/" for ::1 at 2016-09-28 15:04:09 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.9ms)
+Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:04:09 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:04:09 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:04:09 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:04:09 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:04:09 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:04:09 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:04:09 -0700
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:04:10 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
+
+NoMethodError (undefined method `each' for nil:NilClass):
+ app/controllers/tasks_controller.rb:12:in `show'
+
+
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (72.1ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (48.6ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.9ms)
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:04:24 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms)
+
+NoMethodError (undefined method `id' for #):
+ app/controllers/tasks_controller.rb:13:in `block in show'
+ app/controllers/tasks_controller.rb:12:in `each'
+ app/controllers/tasks_controller.rb:12:in `show'
+
+
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.4ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (65.8ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (55.3ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (114.6ms)
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:04:33 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:04:33 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:04:33 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:04:33 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:04:33 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:04:33 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:04:33 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:04:33 -0700
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:09:02 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (23.1ms)
+Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.0ms)
+
+ActionView::Template::Error (undefined local variable or method `task' for #<#:0x007f8ced74aa78>
+Did you mean? @task):
+ 1:
Tasks#show
+ 2:
+ 3:
<%= task[:title] %>
+ 4:
Description:
+ 5:
+ 6: <%= task[:description] %>
+ app/views/tasks/show.html.erb:3:in `_app_views_tasks_show_html_erb___4197276894879468389_70121627994880'
+
+
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (12.1ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.6ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (381.8ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (49.9ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.7ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (107.4ms)
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:09:32 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.8ms)
+Completed 200 OK in 23ms (Views: 22.9ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:09:32 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:09:32 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:09:32 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:09:32 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:09:32 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:09:32 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:09:32 -0700
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:10:26 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.5ms)
+Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:10:26 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:10:26 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:10:26 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:10:26 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:10:26 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:10:26 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:10:26 -0700
+
+
+Started GET "/" for ::1 at 2016-09-28 15:10:30 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 14ms (Views: 13.7ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/2" for ::1 at 2016-09-28 15:10:32 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"2"}
+ Rendered tasks/show.html.erb within layouts/application (0.1ms)
+Completed 200 OK in 23ms (Views: 21.9ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/3" for ::1 at 2016-09-28 15:10:35 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"3"}
+ Rendered tasks/show.html.erb within layouts/application (0.1ms)
+Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-09-28 15:11:20 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.8ms)
+Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:11:20 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:11:20 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:11:20 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:11:20 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:11:20 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:11:20 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:11:20 -0700
+
+
+Started GET "/" for ::1 at 2016-09-28 15:11:36 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 13ms (Views: 12.1ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:11:36 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:11:36 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:11:36 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:11:36 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:11:36 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:11:36 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:11:36 -0700
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:11:38 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.8ms)
+Completed 200 OK in 23ms (Views: 22.4ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/2" for ::1 at 2016-09-28 15:11:46 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"2"}
+ Rendered tasks/show.html.erb within layouts/application (0.1ms)
+Completed 200 OK in 29ms (Views: 27.9ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:11:59 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.1ms)
+Completed 200 OK in 27ms (Views: 26.3ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-09-28 15:14:33 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.4ms)
+Completed 200 OK in 14ms (Views: 13.7ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:14:33 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:14:33 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:14:33 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:14:33 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:14:33 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:14:33 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:14:33 -0700
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:14:34 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.9ms)
+Completed 200 OK in 24ms (Views: 23.1ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-09-28 15:20:08 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 13ms (Views: 12.5ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:20:08 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:20:08 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:20:08 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:20:08 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:20:08 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:20:08 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:20:08 -0700
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:20:09 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.1ms)
+Completed 200 OK in 23ms (Views: 22.3ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:20:42 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.1ms)
+Completed 200 OK in 28ms (Views: 26.8ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/2" for ::1 at 2016-09-28 15:20:44 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"2"}
+ Rendered tasks/show.html.erb within layouts/application (0.1ms)
+Completed 200 OK in 23ms (Views: 22.2ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-09-28 15:23:30 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:23:30 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:23:30 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:23:30 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:23:30 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:23:30 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:23:30 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:23:30 -0700
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:23:31 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (1.5ms)
+Completed 200 OK in 22ms (Views: 21.0ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:24:07 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:24:07 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:24:07 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:24:07 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:24:07 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:24:07 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:24:07 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:24:07 -0700
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:24:15 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (1.2ms)
+Completed 200 OK in 22ms (Views: 20.9ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:24:15 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:24:15 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:24:15 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:24:15 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:24:15 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:24:15 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:24:15 -0700
+
+
+Started GET "/tasks/1/edit" for ::1 at 2016-09-28 15:24:16 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/edit.html.erb within layouts/application (0.8ms)
+Completed 200 OK in 26ms (Views: 25.7ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:24:31 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.7ms)
+Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:24:31 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:24:31 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:24:31 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:24:31 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:24:31 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:24:31 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:24:31 -0700
+
+
+Started GET "/tasks/1/destroy" for ::1 at 2016-09-28 15:24:32 -0700
+
+ActionController::RoutingError (No route matches [GET] "/tasks/1/destroy"):
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
+ railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app'
+ railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged'
+ railties (4.2.7) lib/rails/rack/logger.rb:20:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call'
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
+ activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call'
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
+ railties (4.2.7) lib/rails/engine.rb:518:in `call'
+ railties (4.2.7) lib/rails/application.rb:165:in `call'
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
+ /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (76.0ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (48.0ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (104.1ms)
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:24:48 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:24:48 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:24:48 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:24:48 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:24:48 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:24:48 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:24:48 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:24:48 -0700
+
+
+Started GET "/tasks/1/destroy" for ::1 at 2016-09-28 15:24:59 -0700
+
+ActionController::RoutingError (No route matches [GET] "/tasks/1/destroy"):
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
+ railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app'
+ railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged'
+ railties (4.2.7) lib/rails/rack/logger.rb:20:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call'
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
+ activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call'
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
+ railties (4.2.7) lib/rails/engine.rb:518:in `call'
+ railties (4.2.7) lib/rails/application.rb:165:in `call'
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
+ /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (78.5ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.3ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.3ms)
+
+
+Started GET "/tasks/1/destroy" for ::1 at 2016-09-28 15:27:27 -0700
+Processing by TasksController#destroy as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/destroy.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:27:27 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:27:27 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:27:27 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:27:27 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:27:27 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:27:27 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:27:27 -0700
+
+
+Started GET "/" for ::1 at 2016-09-28 15:27:34 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 13ms (Views: 13.0ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:27:36 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.5ms)
+Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/1/destroy" for ::1 at 2016-09-28 15:27:38 -0700
+Processing by TasksController#destroy as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/destroy.html.erb within layouts/application (0.1ms)
+Completed 200 OK in 28ms (Views: 26.4ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/2" for ::1 at 2016-09-28 15:27:40 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"2"}
+ Rendered tasks/show.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 22ms (Views: 21.2ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:27:44 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.4ms)
+Completed 200 OK in 26ms (Views: 24.7ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-09-28 15:27:47 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 13ms (Views: 12.8ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:29:53 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.5ms)
+Completed 200 OK in 23ms (Views: 22.0ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-09-28 15:30:39 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.7ms)
+Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:30:39 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:30:39 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:30:39 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:30:39 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:30:39 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:30:39 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:30:39 -0700
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-28 15:30:40 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (0.6ms)
+Completed 200 OK in 29ms (Views: 28.4ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-28 15:30:51 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (0.1ms)
+Completed 200 OK in 26ms (Views: 25.5ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:32:00 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.5ms)
+Completed 200 OK in 22ms (Views: 21.0ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-28 15:32:01 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 26ms (Views: 25.2ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-28 15:32:24 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (0.0ms)
+Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:32:24 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:32:24 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:32:24 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:32:24 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:32:24 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:32:24 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:32:24 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:32:25 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.6ms)
+Completed 200 OK in 24ms (Views: 23.1ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:32:26 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.6ms)
+Completed 200 OK in 22ms (Views: 21.3ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-28 15:32:28 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 26ms (Views: 24.9ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:33:58 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:33:58 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:33:58 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:33:58 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:33:58 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:33:58 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:33:58 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:33:58 -0700
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:34:00 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.5ms)
+Completed 200 OK in 22ms (Views: 21.2ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:34:38 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 96ms (Views: 95.7ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:34:38 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:34:38 -0700
+
+
+Started GET "/assets/style.self-9ee4bb90c8c57dc16ac950f70ea35b50cb52fc93a1208c76b2b42064e114d65c.css?body=1" for ::1 at 2016-09-28 15:34:38 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:34:38 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:34:38 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:34:38 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:34:38 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:34:38 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:35:29 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 28ms (Views: 27.2ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-71d2d62cbda39b64d6e0794b0d9e1ef34e87f4778711c4d4116907c45c240d27.css?body=1" for ::1 at 2016-09-28 15:35:29 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:35:29 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:35:29 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:35:29 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:35:29 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:35:29 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:35:29 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:35:29 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:36:31 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.6ms)
+Completed 200 OK in 15ms (Views: 14.9ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-71d2d62cbda39b64d6e0794b0d9e1ef34e87f4778711c4d4116907c45c240d27.css?body=1" for ::1 at 2016-09-28 15:36:31 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:36:31 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:36:31 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:36:31 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:36:31 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:36:31 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:36:31 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:36:31 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:36:44 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 26ms (Views: 25.2ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:36:44 -0700
+
+
+Started GET "/assets/style.self-cea1b605d53fb8c8aac0eb168dd52198fb3d442ab63056bad6113edf6c4f33ad.css?body=1" for ::1 at 2016-09-28 15:36:44 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:36:44 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:36:44 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:36:44 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:36:44 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:36:44 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:36:44 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:36:52 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.4ms)
+Completed 200 OK in 29ms (Views: 28.5ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-8b4622af3908b960963f9db25f7b28614465eb329741fb054f6696b84603e079.css?body=1" for ::1 at 2016-09-28 15:36:52 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:36:52 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:36:52 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:36:52 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:36:52 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:36:52 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:36:52 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:36:52 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:36:53 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-8b4622af3908b960963f9db25f7b28614465eb329741fb054f6696b84603e079.css?body=1" for ::1 at 2016-09-28 15:36:53 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:36:53 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:36:53 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:36:53 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:36:53 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:36:53 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:36:53 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:36:53 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:37:10 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 26ms (Views: 25.0ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-8ad6b0685d689c4d0d577f6e0ab89b5fd3689b0015b5d4dd0108c1b384f4496e.css?body=1" for ::1 at 2016-09-28 15:37:10 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:37:10 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:37:10 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:37:10 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:37:10 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:37:10 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:37:10 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:37:10 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:37:11 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-8ad6b0685d689c4d0d577f6e0ab89b5fd3689b0015b5d4dd0108c1b384f4496e.css?body=1" for ::1 at 2016-09-28 15:37:12 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:37:12 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:37:12 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:37:12 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:37:12 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:37:12 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:37:12 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:37:12 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:37:17 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 28ms (Views: 27.3ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-f42b215638efbbff845d44e5135535b335652ba4821326c297dd48c7cc2fbeb7.css?body=1" for ::1 at 2016-09-28 15:37:17 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:37:17 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:37:17 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:37:17 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:37:17 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:37:17 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:37:17 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:37:17 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:38:04 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 31ms (Views: 30.4ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-f320afcdb4f1bca08d55325d79e99bcfb303bd18c15d0eb11ec0908ef652f68e.css?body=1" for ::1 at 2016-09-28 15:38:04 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:38:04 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:38:04 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:38:04 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:38:04 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:38:04 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:38:04 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:38:04 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:38:57 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 26ms (Views: 25.2ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-4a666e6a748c92c6cbdd575dc13e40cab8f6f3d1ca0ef1a77bcd6bf694460e6b.css?body=1" for ::1 at 2016-09-28 15:38:57 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:38:57 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:38:57 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:38:57 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:38:57 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:38:57 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:38:57 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:38:57 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:39:28 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.6ms)
+Completed 200 OK in 51ms (Views: 50.4ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-cce3a69af5813721a8805a4d402ddadc13128c0fc6c0db2bca70a121e278b3ac.css?body=1" for ::1 at 2016-09-28 15:39:28 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:39:28 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:39:28 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:39:28 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:39:28 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:39:28 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:39:28 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:39:28 -0700
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-28 15:39:31 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (0.1ms)
+Completed 200 OK in 27ms (Views: 25.6ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:39:33 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.4ms)
+Completed 200 OK in 37ms (Views: 34.6ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:39:34 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (1.6ms)
+Completed 200 OK in 25ms (Views: 24.1ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:39:46 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.4ms)
+Completed 200 OK in 30ms (Views: 29.5ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-e3449613dc9b6b43f32747382cfb719a998ae0a679867ac85bf3e29d80203d8e.css?body=1" for ::1 at 2016-09-28 15:39:46 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:39:46 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:39:46 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:39:46 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:39:46 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:39:46 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:39:46 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:39:46 -0700
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:39:52 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 26ms (Views: 25.4ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-a15bbc479d0a41e3957dfa3477423b5fe9d3252e1a0fe36165a065d86bcb9d30.css?body=1" for ::1 at 2016-09-28 15:39:52 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:39:52 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:39:52 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:39:52 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:39:52 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:39:52 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:39:52 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:39:52 -0700
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:40:03 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 17ms (Views: 16.8ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-a15bbc479d0a41e3957dfa3477423b5fe9d3252e1a0fe36165a065d86bcb9d30.css?body=1" for ::1 at 2016-09-28 15:40:03 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:40:03 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:40:03 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:40:03 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:40:03 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:40:03 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:40:03 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:40:03 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:40:04 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.8ms)
+Completed 200 OK in 33ms (Views: 31.2ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:40:06 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.4ms)
+Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-a15bbc479d0a41e3957dfa3477423b5fe9d3252e1a0fe36165a065d86bcb9d30.css?body=1" for ::1 at 2016-09-28 15:40:06 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:40:06 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:40:06 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:40:06 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:40:06 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:40:06 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:40:06 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:40:06 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:40:11 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 31ms (Views: 30.3ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-13ed198bb922c3953957392e724e552ec40ffe16ce6c23d2e8087c0d1e0a8255.css?body=1" for ::1 at 2016-09-28 15:40:11 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:40:11 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:40:11 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:40:11 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:40:11 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:40:11 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:40:11 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:40:11 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:40:12 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 24ms (Views: 23.5ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-13ed198bb922c3953957392e724e552ec40ffe16ce6c23d2e8087c0d1e0a8255.css?body=1" for ::1 at 2016-09-28 15:40:12 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:40:12 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:40:12 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:40:12 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:40:12 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:40:12 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:40:12 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:40:12 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:40:33 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.4ms)
+Completed 200 OK in 32ms (Views: 31.4ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-f59abb1236966ef45f8a6c318bcb5fa055eddd44c6378396bc162b8a60236f75.css?body=1" for ::1 at 2016-09-28 15:40:33 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:40:33 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:40:33 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:40:33 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:40:33 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:40:33 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:40:33 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:40:33 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:40:52 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.4ms)
+Completed 200 OK in 30ms (Views: 28.9ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:40:52 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:40:52 -0700
+
+
+Started GET "/assets/style.self-049fac9ebdf27aa0fc1a02b10079cc2dd2eef126c4f933a77acff37623823ff6.css?body=1" for ::1 at 2016-09-28 15:40:52 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:40:52 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:40:52 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:40:52 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:40:52 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:40:52 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:40:59 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 26ms (Views: 25.6ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-4104f10b939c3004f5bc909250fbbd6a23daadaef633f8fddc74bb949291c42b.css?body=1" for ::1 at 2016-09-28 15:40:59 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:40:59 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:40:59 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:40:59 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:40:59 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:40:59 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:40:59 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:40:59 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:41:06 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-4104f10b939c3004f5bc909250fbbd6a23daadaef633f8fddc74bb949291c42b.css?body=1" for ::1 at 2016-09-28 15:41:06 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:41:06 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:41:06 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:41:06 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:41:06 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:41:06 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:41:06 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:41:06 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:41:15 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 25ms (Views: 25.0ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-984b1bceee855b5eded5684883ca29c78f766ba3ca95e7cb50601dd5b44248f5.css?body=1" for ::1 at 2016-09-28 15:41:15 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:41:15 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:41:15 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:41:15 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:41:15 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:41:15 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:41:15 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:41:15 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:41:16 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-984b1bceee855b5eded5684883ca29c78f766ba3ca95e7cb50601dd5b44248f5.css?body=1" for ::1 at 2016-09-28 15:41:16 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:41:16 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:41:16 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:41:16 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:41:16 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:41:16 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:41:16 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:41:16 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:41:37 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.8ms)
+Completed 200 OK in 17ms (Views: 16.9ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-984b1bceee855b5eded5684883ca29c78f766ba3ca95e7cb50601dd5b44248f5.css?body=1" for ::1 at 2016-09-28 15:41:37 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:41:37 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:41:37 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:41:37 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:41:37 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:41:37 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:41:37 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:41:37 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:41:38 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 14ms (Views: 13.9ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-984b1bceee855b5eded5684883ca29c78f766ba3ca95e7cb50601dd5b44248f5.css?body=1" for ::1 at 2016-09-28 15:41:38 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:41:38 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:41:38 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:41:38 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:41:38 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:41:38 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:41:38 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:41:38 -0700
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:41:39 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (1.6ms)
+Completed 200 OK in 26ms (Views: 25.3ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:41:56 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 35ms (Views: 34.3ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-9955b260a4ffd64d9021c97279bcb7ee33c11c1005cc79201ce1c33710a6d3ee.css?body=1" for ::1 at 2016-09-28 15:41:56 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:41:56 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:41:56 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:41:56 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:41:56 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:41:56 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:41:56 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:41:56 -0700
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:42:00 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 32ms (Views: 31.3ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-250dc61829fbf2410096f92b37222e83552741d80e06347a0a2ff6bab303dac1.css?body=1" for ::1 at 2016-09-28 15:42:00 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:42:00 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:42:00 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:42:00 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:42:00 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:42:00 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:42:00 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:42:00 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:42:10 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.5ms)
+Completed 200 OK in 26ms (Views: 24.4ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/2" for ::1 at 2016-09-28 15:42:12 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"2"}
+ Rendered tasks/show.html.erb within layouts/application (0.4ms)
+Completed 200 OK in 24ms (Views: 23.2ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:42:17 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.6ms)
+Completed 200 OK in 39ms (Views: 37.6ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:42:45 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 26ms (Views: 25.5ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-6482876483033d94e3b0b868d8b3c7e3b00290520af5cb17d0267e2469136c86.css?body=1" for ::1 at 2016-09-28 15:42:45 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:42:45 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:42:45 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:42:45 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:42:45 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:42:45 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:42:45 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:42:45 -0700
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:42:46 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.5ms)
+Completed 200 OK in 23ms (Views: 22.0ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:42:57 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 37ms (Views: 36.0ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-f62d5dc17448eff889a7ec31e445b23ee6edb39be9917fafc645d263eedacd72.css?body=1" for ::1 at 2016-09-28 15:42:57 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:42:57 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:42:57 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:42:57 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:42:57 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:42:57 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:42:57 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:42:57 -0700
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:43:03 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 25ms (Views: 24.0ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-43fdbe071f86174850a92568c9ebbcfc9714d331788b940fbc54283328bcf467.css?body=1" for ::1 at 2016-09-28 15:43:03 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:43:03 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:43:03 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:43:03 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:43:03 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:43:03 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:43:03 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:43:03 -0700
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:43:03 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-43fdbe071f86174850a92568c9ebbcfc9714d331788b940fbc54283328bcf467.css?body=1" for ::1 at 2016-09-28 15:43:03 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:43:03 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:43:03 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:43:03 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:43:04 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:43:04 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:43:04 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:43:04 -0700
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:44:10 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.7ms)
+Completed 200 OK in 28ms (Views: 27.4ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-08c19e9336236906a3cf3a6677ca905211654e7cd8f0f1f7c0843129abf7d511.css?body=1" for ::1 at 2016-09-28 15:44:10 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:44:10 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:44:10 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:44:10 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:44:10 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:44:10 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:44:10 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:44:10 -0700
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:44:11 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-08c19e9336236906a3cf3a6677ca905211654e7cd8f0f1f7c0843129abf7d511.css?body=1" for ::1 at 2016-09-28 15:44:11 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:44:11 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:44:11 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:44:11 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:44:11 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:44:11 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:44:11 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:44:11 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:44:12 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.7ms)
+Completed 200 OK in 28ms (Views: 27.0ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:44:13 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.5ms)
+Completed 200 OK in 33ms (Views: 32.2ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:44:14 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 15ms (Views: 15.0ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-08c19e9336236906a3cf3a6677ca905211654e7cd8f0f1f7c0843129abf7d511.css?body=1" for ::1 at 2016-09-28 15:44:14 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:44:14 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:44:14 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:44:14 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:44:14 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:44:14 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:44:14 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:44:14 -0700
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:44:36 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.7ms)
+Completed 200 OK in 19ms (Views: 18.7ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-08c19e9336236906a3cf3a6677ca905211654e7cd8f0f1f7c0843129abf7d511.css?body=1" for ::1 at 2016-09-28 15:44:36 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:44:36 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:44:36 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:44:36 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:44:36 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:44:36 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:44:36 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:44:36 -0700
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:44:48 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.8ms)
+Completed 200 OK in 28ms (Views: 27.1ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-88a701e311ebe6b8fdcfe4140a634e7214575fea6eb41c48daa62dbbe0d75a3a.css?body=1" for ::1 at 2016-09-28 15:44:48 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:44:48 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:44:48 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:44:48 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:44:48 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:44:48 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:44:48 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:44:48 -0700
+
+
+Started GET "/tasks/1/destroy" for ::1 at 2016-09-28 15:44:49 -0700
+Processing by TasksController#destroy as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/destroy.html.erb within layouts/application (0.1ms)
+Completed 200 OK in 23ms (Views: 22.1ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/1/edit" for ::1 at 2016-09-28 15:44:52 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/edit.html.erb within layouts/application (0.1ms)
+Completed 200 OK in 31ms (Views: 30.2ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:45:10 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 26ms (Views: 25.8ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-d0d41547350499f86e179c1430f9680ff8cb6045fb8cddd596caa84755582ad6.css?body=1" for ::1 at 2016-09-28 15:45:11 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:45:11 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:45:11 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:45:11 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:45:11 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:45:11 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:45:11 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:45:11 -0700
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:46:02 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-d0d41547350499f86e179c1430f9680ff8cb6045fb8cddd596caa84755582ad6.css?body=1" for ::1 at 2016-09-28 15:46:02 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:46:02 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:46:02 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:46:02 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:46:02 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:46:02 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:46:02 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:46:02 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:48:29 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.5ms)
+Completed 200 OK in 24ms (Views: 23.1ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/2" for ::1 at 2016-09-28 15:48:31 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"2"}
+ Rendered tasks/show.html.erb within layouts/application (0.6ms)
+Completed 200 OK in 23ms (Views: 22.1ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:48:33 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.4ms)
+Completed 200 OK in 34ms (Views: 32.9ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:48:34 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.8ms)
+Completed 200 OK in 31ms (Views: 30.5ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:48:35 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.6ms)
+Completed 200 OK in 34ms (Views: 33.0ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/3" for ::1 at 2016-09-28 15:48:36 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"3"}
+ Rendered tasks/show.html.erb within layouts/application (0.5ms)
+Completed 200 OK in 27ms (Views: 25.6ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:48:39 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (1.0ms)
+Completed 200 OK in 45ms (Views: 44.3ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/2" for ::1 at 2016-09-28 15:48:40 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"2"}
+ Rendered tasks/show.html.erb within layouts/application (0.5ms)
+Completed 200 OK in 30ms (Views: 29.3ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:48:41 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.7ms)
+Completed 200 OK in 32ms (Views: 31.5ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/3" for ::1 at 2016-09-28 15:48:42 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"3"}
+ Rendered tasks/show.html.erb within layouts/application (0.5ms)
+Completed 200 OK in 28ms (Views: 27.5ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/3" for ::1 at 2016-09-28 15:48:51 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"3"}
+ Rendered tasks/show.html.erb within layouts/application (0.7ms)
+Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-d0d41547350499f86e179c1430f9680ff8cb6045fb8cddd596caa84755582ad6.css?body=1" for ::1 at 2016-09-28 15:48:51 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:48:51 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:48:51 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:48:51 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:48:51 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:48:51 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:48:51 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:48:51 -0700
+
+
+Started GET "/tasks/show/3" for ::1 at 2016-09-28 15:49:07 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"3"}
+ Rendered tasks/show.html.erb within layouts/application (0.4ms)
+Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-d0d41547350499f86e179c1430f9680ff8cb6045fb8cddd596caa84755582ad6.css?body=1" for ::1 at 2016-09-28 15:49:07 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:49:07 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:49:07 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:49:07 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:49:07 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:49:07 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:49:07 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:49:07 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:49:10 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.7ms)
+Completed 200 OK in 23ms (Views: 22.5ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:53:24 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.4ms)
+Completed 200 OK in 20ms (Views: 19.8ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-d0d41547350499f86e179c1430f9680ff8cb6045fb8cddd596caa84755582ad6.css?body=1" for ::1 at 2016-09-28 15:53:24 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:53:24 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:53:24 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:53:24 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:53:24 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:53:24 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:53:24 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:53:24 -0700
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:53:25 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.4ms)
+Completed 200 OK in 23ms (Views: 21.7ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/1/edit" for ::1 at 2016-09-28 15:53:26 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/edit.html.erb within layouts/application (1.1ms)
+Completed 200 OK in 24ms (Views: 23.2ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/1/edit" for ::1 at 2016-09-28 15:54:42 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/edit.html.erb within layouts/application (0.5ms)
+Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-d0d41547350499f86e179c1430f9680ff8cb6045fb8cddd596caa84755582ad6.css?body=1" for ::1 at 2016-09-28 15:54:42 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:54:42 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:54:42 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:54:42 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:54:42 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:54:42 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:54:42 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:54:42 -0700
+
+
+Started GET "/tasks/1/edit" for ::1 at 2016-09-28 15:54:49 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/edit.html.erb within layouts/application (0.4ms)
+Completed 200 OK in 16ms (Views: 14.6ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-d0d41547350499f86e179c1430f9680ff8cb6045fb8cddd596caa84755582ad6.css?body=1" for ::1 at 2016-09-28 15:54:49 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:54:49 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:54:49 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:54:49 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:54:49 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:54:49 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:54:49 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:54:49 -0700
+
+
+Started GET "/tasks/1/edit" for ::1 at 2016-09-28 15:57:27 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/edit.html.erb within layouts/application (0.4ms)
+Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-d0d41547350499f86e179c1430f9680ff8cb6045fb8cddd596caa84755582ad6.css?body=1" for ::1 at 2016-09-28 15:57:27 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:57:27 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:57:27 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:57:27 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:57:27 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:57:27 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:57:27 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:57:27 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:57:28 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (1.2ms)
+Completed 200 OK in 25ms (Views: 24.2ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/2" for ::1 at 2016-09-28 15:57:29 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"2"}
+ Rendered tasks/show.html.erb within layouts/application (0.4ms)
+Completed 200 OK in 30ms (Views: 28.9ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/2/edit" for ::1 at 2016-09-28 15:57:30 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"2"}
+ Rendered tasks/edit.html.erb within layouts/application (0.1ms)
+Completed 200 OK in 23ms (Views: 22.1ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:57:33 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 33ms (Views: 32.1ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:57:34 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.4ms)
+Completed 200 OK in 25ms (Views: 24.1ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/1/edit" for ::1 at 2016-09-28 15:57:35 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/edit.html.erb within layouts/application (0.1ms)
+Completed 200 OK in 30ms (Views: 28.7ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:57:36 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (1.0ms)
+Completed 200 OK in 33ms (Views: 32.9ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:57:42 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.5ms)
+Completed 200 OK in 31ms (Views: 30.4ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:57:44 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.8ms)
+Completed 200 OK in 33ms (Views: 32.5ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/2" for ::1 at 2016-09-28 15:57:45 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"2"}
+ Rendered tasks/show.html.erb within layouts/application (0.7ms)
+Completed 200 OK in 31ms (Views: 30.3ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/2/edit" for ::1 at 2016-09-28 15:57:50 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"2"}
+ Rendered tasks/edit.html.erb within layouts/application (0.1ms)
+Completed 200 OK in 30ms (Views: 29.1ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:57:51 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.5ms)
+Completed 200 OK in 32ms (Views: 31.1ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 15:58:40 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 26ms (Views: 25.9ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-890a428e489d3d90c29fd8e99d98e82b8be4ac1fd37cc98997d82a487f072c44.css?body=1" for ::1 at 2016-09-28 15:58:41 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:58:41 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:58:41 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:58:41 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:58:41 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:58:41 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:58:41 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:58:41 -0700
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:58:41 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.6ms)
+Completed 200 OK in 23ms (Views: 22.2ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/1/edit" for ::1 at 2016-09-28 15:58:43 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/edit.html.erb within layouts/application (0.1ms)
+Completed 200 OK in 23ms (Views: 22.2ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/1/edit" for ::1 at 2016-09-28 15:58:44 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/edit.html.erb within layouts/application (0.1ms)
+Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-890a428e489d3d90c29fd8e99d98e82b8be4ac1fd37cc98997d82a487f072c44.css?body=1" for ::1 at 2016-09-28 15:58:44 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:58:44 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:58:44 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:58:44 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:58:44 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:58:44 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:58:44 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:58:44 -0700
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:58:45 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.4ms)
+Completed 200 OK in 27ms (Views: 26.1ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:59:22 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 27ms (Views: 26.5ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-99ea67620b1c0bb7c07bb1b0115b9aa644be39c9c7e25f59e3781cb308089a3b.css?body=1" for ::1 at 2016-09-28 15:59:22 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:59:22 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:59:22 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:59:22 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:59:22 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:59:22 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:59:22 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:59:22 -0700
+
+
+Started GET "/tasks/1/edit" for ::1 at 2016-09-28 15:59:22 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/edit.html.erb within layouts/application (0.1ms)
+Completed 200 OK in 24ms (Views: 23.0ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/1/edit" for ::1 at 2016-09-28 15:59:23 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/edit.html.erb within layouts/application (0.0ms)
+Completed 200 OK in 19ms (Views: 18.2ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-99ea67620b1c0bb7c07bb1b0115b9aa644be39c9c7e25f59e3781cb308089a3b.css?body=1" for ::1 at 2016-09-28 15:59:23 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:59:23 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:59:23 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:59:23 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:59:23 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:59:23 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:59:23 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:59:23 -0700
+
+
+Started GET "/tasks/1/edit" for ::1 at 2016-09-28 15:59:24 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/edit.html.erb within layouts/application (0.0ms)
+Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-99ea67620b1c0bb7c07bb1b0115b9aa644be39c9c7e25f59e3781cb308089a3b.css?body=1" for ::1 at 2016-09-28 15:59:24 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:59:24 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:59:24 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:59:24 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:59:24 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:59:24 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:59:24 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:59:24 -0700
+
+
+Started GET "/tasks/1/edit" for ::1 at 2016-09-28 16:00:04 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/edit.html.erb within layouts/application (0.0ms)
+Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-99ea67620b1c0bb7c07bb1b0115b9aa644be39c9c7e25f59e3781cb308089a3b.css?body=1" for ::1 at 2016-09-28 16:00:04 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 16:00:04 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 16:00:04 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 16:00:04 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 16:00:04 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 16:00:04 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 16:00:04 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 16:00:04 -0700
+
+
+Started GET "/tasks/1/edit" for ::1 at 2016-09-28 16:00:05 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/edit.html.erb within layouts/application (0.1ms)
+Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-99ea67620b1c0bb7c07bb1b0115b9aa644be39c9c7e25f59e3781cb308089a3b.css?body=1" for ::1 at 2016-09-28 16:00:05 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 16:00:05 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 16:00:05 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 16:00:05 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 16:00:05 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 16:00:05 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 16:00:05 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 16:00:05 -0700
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-28 16:00:44 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (0.1ms)
+Completed 200 OK in 24ms (Views: 23.5ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 16:00:45 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.6ms)
+Completed 200 OK in 23ms (Views: 22.1ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 16:00:46 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.5ms)
+Completed 200 OK in 24ms (Views: 23.8ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/1/edit" for ::1 at 2016-09-28 16:00:48 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/edit.html.erb within layouts/application (0.1ms)
+Completed 200 OK in 34ms (Views: 33.3ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 16:01:15 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.9ms)
+Completed 200 OK in 46ms (Views: 45.5ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-7d6026d8791321cba01be92bac723a84d5beaf3d850cc946555c66bc3725288a.css?body=1" for ::1 at 2016-09-28 16:01:15 -0700
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 16:01:16 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.6ms)
+Completed 200 OK in 31ms (Views: 29.7ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/1/edit" for ::1 at 2016-09-28 16:01:17 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/edit.html.erb within layouts/application (0.1ms)
+Completed 200 OK in 32ms (Views: 31.5ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/1/edit" for ::1 at 2016-09-28 16:01:18 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/edit.html.erb within layouts/application (0.0ms)
+Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-7d6026d8791321cba01be92bac723a84d5beaf3d850cc946555c66bc3725288a.css?body=1" for ::1 at 2016-09-28 16:01:18 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 16:01:18 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 16:01:18 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 16:01:18 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 16:01:18 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 16:01:18 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 16:01:18 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 16:01:18 -0700
+
+
+Started GET "/tasks/1/edit" for ::1 at 2016-09-28 16:01:58 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/edit.html.erb within layouts/application (0.0ms)
+Completed 200 OK in 27ms (Views: 25.6ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-3fb300695ad317fd9635fc5497038df4809ea717cb61c883feb0e906840079b3.css?body=1" for ::1 at 2016-09-28 16:01:58 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 16:01:58 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 16:01:58 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 16:01:58 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 16:01:58 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 16:01:58 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 16:01:58 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 16:01:58 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 16:01:58 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.6ms)
+Completed 200 OK in 23ms (Views: 22.1ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 16:01:59 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (0.5ms)
+Completed 200 OK in 25ms (Views: 24.5ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/1/edit" for ::1 at 2016-09-28 16:02:00 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/edit.html.erb within layouts/application (0.1ms)
+Completed 200 OK in 31ms (Views: 28.7ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/1/edit" for ::1 at 2016-09-28 16:02:01 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/edit.html.erb within layouts/application (0.0ms)
+Completed 200 OK in 26ms (Views: 25.4ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-3fb300695ad317fd9635fc5497038df4809ea717cb61c883feb0e906840079b3.css?body=1" for ::1 at 2016-09-28 16:02:01 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 16:02:01 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 16:02:01 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 16:02:01 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 16:02:01 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 16:02:01 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 16:02:01 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 16:02:01 -0700
+
+
+Started GET "/tasks/1/edit" for ::1 at 2016-09-28 16:02:10 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/edit.html.erb within layouts/application (0.0ms)
+Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/style.self-d0d41547350499f86e179c1430f9680ff8cb6045fb8cddd596caa84755582ad6.css?body=1" for ::1 at 2016-09-28 16:02:10 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 16:02:10 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 16:02:10 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 16:02:10 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 16:02:10 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 16:02:10 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 16:02:10 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 16:02:10 -0700
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-28 16:02:35 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (0.0ms)
+Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-28 16:04:15 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (4.0ms)
+Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms)
+
+ActionView::Template::Error (undefined method `[]' for nil:NilClass):
+ 2:
+ 3:
+ 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
+ [1m[35mTask Load (0.1ms)[0m 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
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.2ms)[0m DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 1]]
+ [1m[36m (2.4ms)[0m [1mcommit transaction[0m
+ 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
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.3ms)[0m 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"]]
+ [1m[36m (2.5ms)[0m [1mcommit transaction[0m
+ 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
+ [1m[35mTask Load (0.3ms)[0m 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"}
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]]
+ [1m[36m (0.2ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.4ms)[0m DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 2]]
+ [1m[36m (2.5ms)[0m [1mcommit transaction[0m
+ 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
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36m (0.2ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.3ms)[0m 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"]]
+ [1m[36m (2.5ms)[0m [1mcommit transaction[0m
+ 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
+ [1m[35mTask Load (0.3ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.2ms)[0m 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
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 3]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.2ms)[0m [1mDELETE FROM "tasks" WHERE "tasks"."id" = ?[0m [["id", 3]]
+ [1m[35m (2.4ms)[0m 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
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "test task"], ["description", "descrip"], ["created_at", "2016-09-29 22:33:45.530218"], ["updated_at", "2016-09-29 22:33:45.530218"]]
+ [1m[35m (2.3ms)[0m 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
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 4]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.2ms)[0m [1mDELETE FROM "tasks" WHERE "tasks"."id" = ?[0m [["id", 4]]
+ [1m[35m (2.3ms)[0m 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
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "task!"], ["description", "descrip"], ["created_at", "2016-09-29 22:34:06.970611"], ["updated_at", "2016-09-29 22:34:06.970611"]]
+ [1m[35m (2.4ms)[0m 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
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.2ms)[0m 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
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.3ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 5]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.2ms)[0m [1mDELETE FROM "tasks" WHERE "tasks"."id" = ?[0m [["id", 5]]
+ [1m[35m (2.4ms)[0m 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
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.8ms)[0m [1mINSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "task!"], ["description", "description!"], ["created_at", "2016-09-29 22:35:17.125600"], ["updated_at", "2016-09-29 22:35:17.125600"]]
+ [1m[35m (2.2ms)[0m 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
+ [1m[36mTask Load (0.4ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.2ms)[0m 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
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "task2"], ["description", "description!"], ["created_at", "2016-09-29 22:35:57.026248"], ["updated_at", "2016-09-29 22:35:57.026248"]]
+ [1m[35m (2.8ms)[0m 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
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 7]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.2ms)[0m [1mDELETE FROM "tasks" WHERE "tasks"."id" = ?[0m [["id", 7]]
+ [1m[35m (2.4ms)[0m 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
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m 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
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.3ms)[0m 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
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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
+ [1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+Processing by TasksController#index as HTML
+ [1m[35mTask Load (0.4ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.3ms)[0m 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
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.2ms)[0m 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
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.4ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m 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
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+Processing by TasksController#index as HTML
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 6]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.3ms)[0m [1mUPDATE "tasks" SET "title" = ?, "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ?[0m [["title", nil], ["description", nil], ["updated_at", "2016-09-29 22:59:22.662579"], ["id", 6]]
+ [1m[35m (2.3ms)[0m 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
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 6]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36m (0.0ms)[0m [1mcommit transaction[0m
+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
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m 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
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 6]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.2ms)[0m [1mDELETE FROM "tasks" WHERE "tasks"."id" = ?[0m [["id", 6]]
+ [1m[35m (2.6ms)[0m 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
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.5ms)[0m [1mINSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "test"], ["description", "task descrip"], ["created_at", "2016-09-29 23:00:06.808716"], ["updated_at", "2016-09-29 23:00:06.808716"]]
+ [1m[35m (2.5ms)[0m 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
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 8]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36m (0.0ms)[0m [1mcommit transaction[0m
+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
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 8]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36m (0.0ms)[0m [1mcommit transaction[0m
+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
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 8]]
+ [1m[35m (0.0ms)[0m begin transaction
+ [1m[36m (0.0ms)[0m [1mcommit transaction[0m
+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
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.8ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.2ms)[0m 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
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m 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
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.2ms)[0m 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
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.3ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35m (0.1ms)[0m 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
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.3ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35m (0.1ms)[0m 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
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35m (0.0ms)[0m 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
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 8]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.2ms)[0m [1mUPDATE "tasks" SET "title" = ?, "updated_at" = ? WHERE "tasks"."id" = ?[0m [["title", "test!"], ["updated_at", "2016-09-29 23:14:08.676281"], ["id", 8]]
+ [1m[35m (2.5ms)[0m 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
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.3ms)[0m UPDATE "tasks" SET "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", "task descrip!"], ["updated_at", "2016-09-29 23:14:17.216705"], ["id", 8]]
+ [1m[36m (2.4ms)[0m [1mcommit transaction[0m
+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
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.4ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35m (0.1ms)[0m 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
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 8]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36m (0.0ms)[0m [1mcommit transaction[0m
+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
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35m (0.1ms)[0m 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
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.3ms)[0m 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"]]
+ [1m[36m (2.6ms)[0m [1mcommit transaction[0m
+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
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.3ms)[0m 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"]]
+ [1m[36m (2.6ms)[0m [1mcommit transaction[0m
+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
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.2ms)[0m 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
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.3ms)[0m 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]]
+ [1m[36m (2.2ms)[0m [1mcommit transaction[0m
+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
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.3ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 10]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.5ms)[0m DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 10]]
+ [1m[36m (2.8ms)[0m [1mcommit transaction[0m
+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
+ [1m[35mTask Load (0.4ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.2ms)[0m 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
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.3ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.3ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.3ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 8]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.3ms)[0m [1mUPDATE "tasks" SET "title" = ?, "description" = ?, "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ?[0m [["title", nil], ["description", nil], ["completed_at", nil], ["updated_at", "2016-09-29 23:34:30.642569"], ["id", 8]]
+ [1m[35m (2.3ms)[0m 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
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.1ms)[0m 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
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.3ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 8]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.2ms)[0m [1mDELETE FROM "tasks" WHERE "tasks"."id" = ?[0m [["id", 8]]
+ [1m[35m (2.4ms)[0m 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
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 9]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.3ms)[0m [1mUPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ?[0m [["completed_at", "0003-01-02 13:02:00.000000"], ["updated_at", "2016-09-29 23:35:00.674924"], ["id", 9]]
+ [1m[35m (2.5ms)[0m 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
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.1ms)[0m 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
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 9]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.5ms)[0m [1mUPDATE "tasks" SET "title" = ?, "description" = ?, "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ?[0m [["title", nil], ["description", nil], ["completed_at", nil], ["updated_at", "2016-09-29 23:37:25.556485"], ["id", 9]]
+ [1m[35m (2.3ms)[0m 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
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.3ms)[0m 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"]]
+ [1m[36m (2.5ms)[0m [1mcommit transaction[0m
+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
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 9]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.5ms)[0m [1mUPDATE "tasks" SET "title" = ?, "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ?[0m [["title", "update?"], ["description", "descrip"], ["updated_at", "2016-09-29 23:38:04.412917"], ["id", 9]]
+ [1m[35m (2.5ms)[0m 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
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.4ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.3ms)[0m 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]]
+ [1m[36m (2.4ms)[0m [1mcommit transaction[0m
+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
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.2ms)[0m 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
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.3ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.4ms)[0m 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"}
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 11]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.3ms)[0m [1mUPDATE "tasks" SET "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ?[0m [["description", "123!"], ["updated_at", "2016-09-29 23:49:53.396449"], ["id", 11]]
+ [1m[35m (2.3ms)[0m 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
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.1ms)[0m 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
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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
+ [1m[35mTask Load (0.1ms)[0m 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
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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
+ [1m[35mTask Load (0.2ms)[0m 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
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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
+ [1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+Processing by TasksController#index as HTML
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m 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
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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
+ [1m[35mTask Load (0.3ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.1ms)[0m 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
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.3ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m 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
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m 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
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.3ms)[0m 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"]]
+ [1m[36m (2.5ms)[0m [1mcommit transaction[0m
+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
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 12]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.2ms)[0m [1mUPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ?[0m [["completed_at", "0005-01-02 01:02:00.000000"], ["updated_at", "2016-09-30 17:06:06.374197"], ["id", 12]]
+ [1m[35m (2.5ms)[0m 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
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.1ms)[0m 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
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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
+ [1m[35mTask Load (0.4ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m 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
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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
+ [1m[35mTask Load (0.3ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.7ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m 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
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 11]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.2ms)[0m [1mUPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ?[0m [["completed_at", "2016-09-30 17:19:41.865834"], ["updated_at", "2016-09-30 17:19:41.866499"], ["id", 11]]
+ [1m[35m (2.5ms)[0m 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
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.3ms)[0m 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
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 12]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.8ms)[0m [1mUPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ?[0m [["completed_at", "2016-09-30 17:20:19.872713"], ["updated_at", "2016-09-30 17:20:19.873398"], ["id", 12]]
+ [1m[35m (2.6ms)[0m 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
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.2ms)[0m 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
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 9]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.2ms)[0m [1mUPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ?[0m [["completed_at", "2016-09-30 17:20:58.640673"], ["updated_at", "2016-09-30 17:20:58.641293"], ["id", 9]]
+ [1m[35m (2.5ms)[0m 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
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.4ms)[0m 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]]
+ [1m[36m (2.5ms)[0m [1mcommit transaction[0m
+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
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.4ms)[0m DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 9]]
+ [1m[36m (2.9ms)[0m [1mcommit transaction[0m
+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
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 11]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.2ms)[0m 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]]
+ [1m[36m (2.3ms)[0m [1mcommit transaction[0m
+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"}
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 11]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.2ms)[0m [1mUPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ?[0m [["completed_at", "2016-09-30 17:21:53.146621"], ["updated_at", "2016-09-30 17:21:53.147289"], ["id", 11]]
+ [1m[35m (2.6ms)[0m 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
+ [1m[36mTask Load (0.4ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 11]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.2ms)[0m [1mDELETE FROM "tasks" WHERE "tasks"."id" = ?[0m [["id", 11]]
+ [1m[35m (2.5ms)[0m 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
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "testing complete button"], ["description", "test"], ["created_at", "2016-09-30 17:22:51.403004"], ["updated_at", "2016-09-30 17:22:51.403004"]]
+ [1m[35m (2.4ms)[0m 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
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 13]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.2ms)[0m [1mUPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ?[0m [["completed_at", "2016-09-30 17:22:53.451356"], ["updated_at", "2016-09-30 17:22:53.451782"], ["id", 13]]
+ [1m[35m (2.3ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (1.1ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.6ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.3ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 13]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.2ms)[0m 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]]
+ [1m[36m (2.5ms)[0m [1mcommit transaction[0m
+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"}
+ [1m[35mTask Load (0.1ms)[0m 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
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.2ms)[0m 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
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered tasks/index.html.erb within layouts/application (1.6ms)
+Completed 200 OK in 23ms (Views: 21.7ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/assets/style.self-4bf77363a8b0ad24a9e6387850839759753f10d2c3a70659abc504bedae26801.css?body=1" for ::1 at 2016-09-30 10:28:30 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:28:30 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 10:28:30 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:28:30 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:28:30 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:28:30 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:28:30 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:28:30 -0700
+
+
+Started GET "/" for ::1 at 2016-09-30 10:29:51 -0700
+ [1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+Processing by TasksController#index as HTML
+ [1m[35mTask Load (0.2ms)[0m 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
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.2ms)[0m 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
+ [1m[36mTask Load (1.0ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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
+ [1m[35mTask Load (0.1ms)[0m 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
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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
+ [1m[35mTask Load (0.1ms)[0m 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
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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
+ [1m[35mTask Load (0.1ms)[0m 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
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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
+ [1m[35mTask Load (0.3ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.2ms)[0m 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
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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
+ [1m[35mTask Load (0.1ms)[0m 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
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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
+ [1m[35mTask Load (0.3ms)[0m 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
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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
+ [1m[35mTask Load (0.3ms)[0m 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
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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"]]
+ [1m[35m (2.4ms)[0m 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
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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
+ [1m[35mTask Load (0.1ms)[0m 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
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.3ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 14]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.3ms)[0m [1mUPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ?[0m [["completed_at", "2016-09-30 18:01:17.922055"], ["updated_at", "2016-09-30 18:01:17.922603"], ["id", 14]]
+ [1m[35m (2.4ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 14]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.2ms)[0m [1mUPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ?[0m [["completed_at", "2016-08-30 18:01:17.000000"], ["updated_at", "2016-09-30 18:01:33.340734"], ["id", 14]]
+ [1m[35m (2.5ms)[0m 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
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.3ms)[0m 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]]
+ [1m[36m (2.8ms)[0m [1mcommit transaction[0m
+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
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.2ms)[0m DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 14]]
+ [1m[36m (3.3ms)[0m [1mcommit transaction[0m
+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
+ [1m[35mTask Load (0.1ms)[0m 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
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["title", "tasky"], ["description", "task"], ["created_at", "2016-09-30 18:01:56.625673"], ["updated_at", "2016-09-30 18:01:56.625673"]]
+ [1m[35m (2.4ms)[0m 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
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.3ms)[0m 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"}
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35m (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.2ms)[0m 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
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ 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"}
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 15]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36m (0.1ms)[0m [1mcommit transaction[0m
+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"}
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.2ms)[0m 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]]
+ [1m[36m (2.5ms)[0m [1mcommit transaction[0m
+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"}
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 15]]
+ [1m[35m (0.0ms)[0m begin transaction
+ [1m[36mSQL (0.2ms)[0m [1mUPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ?[0m [["completed_at", nil], ["updated_at", "2016-09-30 18:03:32.766919"], ["id", 15]]
+ [1m[35m (2.4ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.2ms)[0m 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]]
+ [1m[36m (2.6ms)[0m [1mcommit transaction[0m
+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"}
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 15]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.3ms)[0m [1mUPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ?[0m [["completed_at", nil], ["updated_at", "2016-09-30 18:03:34.569033"], ["id", 15]]
+ [1m[35m (2.4ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered tasks/index.html.erb within layouts/application (1.9ms)
+Completed 200 OK in 28ms (Views: 26.0ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 11:04:44 -0700
+Processing by TasksController#index as HTML
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/index.html.erb within layouts/application (4.8ms)
+Completed 200 OK in 23ms (Views: 20.9ms | ActiveRecord: 0.6ms)
+
+
+Started GET "/assets/style.self-7eae9af17f0b777879a070edef2b100f5ca8d5007644b2b40a7c66e99c1b7974.css?body=1" for ::1 at 2016-09-30 11:04:44 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 11:04:44 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 11:04:44 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 11:04:44 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 11:04:44 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 11:04:44 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 11:04:44 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 11:04:44 -0700
+
+
+Started GET "/tasks/show/15" for ::1 at 2016-09-30 11:06:34 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"15"}
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 15]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.3ms)[0m [1mUPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ?[0m [["completed_at", "2016-09-30 18:06:35.445731"], ["updated_at", "2016-09-30 18:06:35.446388"], ["id", 15]]
+ [1m[35m (2.6ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.2ms)[0m UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", nil], ["updated_at", "2016-09-30 18:06:38.495759"], ["id", 15]]
+ [1m[36m (2.5ms)[0m [1mcommit transaction[0m
+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"}
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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
+ [1m[35mTask Load (0.2ms)[0m 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"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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"}
+ [1m[35mTask Load (0.1ms)[0m 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"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["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: