+
diff --git a/app/views/tasks/update.html.erb b/app/views/tasks/update.html.erb
new file mode 100644
index 000000000..fdb1ea609
--- /dev/null
+++ b/app/views/tasks/update.html.erb
@@ -0,0 +1,2 @@
+
Tasks#update
+
Find me in app/views/tasks/update.html.erb
diff --git a/bin/bundle b/bin/bundle
new file mode 100755
index 000000000..66e9889e8
--- /dev/null
+++ b/bin/bundle
@@ -0,0 +1,3 @@
+#!/usr/bin/env ruby
+ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
+load Gem.bin_path('bundler', 'bundle')
diff --git a/bin/rails b/bin/rails
new file mode 100755
index 000000000..0138d79b7
--- /dev/null
+++ b/bin/rails
@@ -0,0 +1,9 @@
+#!/usr/bin/env ruby
+begin
+ load File.expand_path('../spring', __FILE__)
+rescue LoadError => e
+ raise unless e.message.include?('spring')
+end
+APP_PATH = File.expand_path('../../config/application', __FILE__)
+require_relative '../config/boot'
+require 'rails/commands'
diff --git a/bin/rake b/bin/rake
new file mode 100755
index 000000000..d87d5f578
--- /dev/null
+++ b/bin/rake
@@ -0,0 +1,9 @@
+#!/usr/bin/env ruby
+begin
+ load File.expand_path('../spring', __FILE__)
+rescue LoadError => e
+ raise unless e.message.include?('spring')
+end
+require_relative '../config/boot'
+require 'rake'
+Rake.application.run
diff --git a/bin/setup b/bin/setup
new file mode 100755
index 000000000..acdb2c138
--- /dev/null
+++ b/bin/setup
@@ -0,0 +1,29 @@
+#!/usr/bin/env ruby
+require 'pathname'
+
+# path to your application root.
+APP_ROOT = Pathname.new File.expand_path('../../', __FILE__)
+
+Dir.chdir APP_ROOT do
+ # This script is a starting point to setup your application.
+ # Add necessary setup steps to this file:
+
+ puts "== Installing dependencies =="
+ system "gem install bundler --conservative"
+ system "bundle check || bundle install"
+
+ # puts "\n== Copying sample files =="
+ # unless File.exist?("config/database.yml")
+ # system "cp config/database.yml.sample config/database.yml"
+ # end
+
+ puts "\n== Preparing database =="
+ system "bin/rake db:setup"
+
+ puts "\n== Removing old logs and tempfiles =="
+ system "rm -f log/*"
+ system "rm -rf tmp/cache"
+
+ puts "\n== Restarting application server =="
+ system "touch tmp/restart.txt"
+end
diff --git a/bin/spring b/bin/spring
new file mode 100755
index 000000000..7fe232c3a
--- /dev/null
+++ b/bin/spring
@@ -0,0 +1,15 @@
+#!/usr/bin/env ruby
+
+# This file loads spring without using Bundler, in order to be fast.
+# It gets overwritten when you run the `spring binstub` command.
+
+unless defined?(Spring)
+ require 'rubygems'
+ require 'bundler'
+
+ if (match = Bundler.default_lockfile.read.match(/^GEM$.*?^ (?: )*spring \((.*?)\)$.*?^$/m))
+ Gem.paths = { 'GEM_PATH' => [Bundler.bundle_path.to_s, *Gem.path].uniq.join(Gem.path_separator) }
+ gem 'spring', match[1]
+ require 'spring/binstub'
+ end
+end
diff --git a/config.ru b/config.ru
new file mode 100644
index 000000000..bd83b2541
--- /dev/null
+++ b/config.ru
@@ -0,0 +1,4 @@
+# This file is used by Rack-based servers to start the application.
+
+require ::File.expand_path('../config/environment', __FILE__)
+run Rails.application
diff --git a/config/application.rb b/config/application.rb
new file mode 100644
index 000000000..902432bad
--- /dev/null
+++ b/config/application.rb
@@ -0,0 +1,26 @@
+require File.expand_path('../boot', __FILE__)
+
+require 'rails/all'
+
+# Require the gems listed in Gemfile, including any gems
+# you've limited to :test, :development, or :production.
+Bundler.require(*Rails.groups)
+
+module TaskListRails
+ class Application < Rails::Application
+ # Settings in config/environments/* take precedence over those specified here.
+ # Application configuration should go into files in config/initializers
+ # -- all .rb files in that directory are automatically loaded.
+
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
+ # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
+ # config.time_zone = 'Central Time (US & Canada)'
+
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
+ # config.i18n.default_locale = :de
+
+ # Do not swallow errors in after_commit/after_rollback callbacks.
+ config.active_record.raise_in_transactional_callbacks = true
+ end
+end
diff --git a/config/boot.rb b/config/boot.rb
new file mode 100644
index 000000000..6b750f00b
--- /dev/null
+++ b/config/boot.rb
@@ -0,0 +1,3 @@
+ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
+
+require 'bundler/setup' # Set up gems listed in the Gemfile.
diff --git a/config/database.yml b/config/database.yml
new file mode 100644
index 000000000..1c1a37ca8
--- /dev/null
+++ b/config/database.yml
@@ -0,0 +1,25 @@
+# SQLite version 3.x
+# gem install sqlite3
+#
+# Ensure the SQLite 3 gem is defined in your Gemfile
+# gem 'sqlite3'
+#
+default: &default
+ adapter: sqlite3
+ pool: 5
+ timeout: 5000
+
+development:
+ <<: *default
+ database: db/development.sqlite3
+
+# Warning: The database defined as "test" will be erased and
+# re-generated from your development database when you run "rake".
+# Do not set this db to the same as development or production.
+test:
+ <<: *default
+ database: db/test.sqlite3
+
+production:
+ <<: *default
+ database: db/production.sqlite3
diff --git a/config/environment.rb b/config/environment.rb
new file mode 100644
index 000000000..ee8d90dc6
--- /dev/null
+++ b/config/environment.rb
@@ -0,0 +1,5 @@
+# Load the Rails application.
+require File.expand_path('../application', __FILE__)
+
+# Initialize the Rails application.
+Rails.application.initialize!
diff --git a/config/environments/development.rb b/config/environments/development.rb
new file mode 100644
index 000000000..b55e2144b
--- /dev/null
+++ b/config/environments/development.rb
@@ -0,0 +1,41 @@
+Rails.application.configure do
+ # Settings specified here will take precedence over those in config/application.rb.
+
+ # In the development environment your application's code is reloaded on
+ # every request. This slows down response time but is perfect for development
+ # since you don't have to restart the web server when you make code changes.
+ config.cache_classes = false
+
+ # Do not eager load code on boot.
+ config.eager_load = false
+
+ # Show full error reports and disable caching.
+ config.consider_all_requests_local = true
+ config.action_controller.perform_caching = false
+
+ # Don't care if the mailer can't send.
+ config.action_mailer.raise_delivery_errors = false
+
+ # Print deprecation notices to the Rails logger.
+ config.active_support.deprecation = :log
+
+ # Raise an error on page load if there are pending migrations.
+ config.active_record.migration_error = :page_load
+
+ # Debug mode disables concatenation and preprocessing of assets.
+ # This option may cause significant delays in view rendering with a large
+ # number of complex assets.
+ config.assets.debug = true
+
+ # Asset digests allow you to set far-future HTTP expiration dates on all assets,
+ # yet still be able to expire them through the digest params.
+ config.assets.digest = true
+
+ # Adds additional error checking when serving assets at runtime.
+ # Checks for improperly declared sprockets dependencies.
+ # Raises helpful error messages.
+ config.assets.raise_runtime_errors = true
+
+ # Raises error for missing translations
+ # config.action_view.raise_on_missing_translations = true
+end
diff --git a/config/environments/production.rb b/config/environments/production.rb
new file mode 100644
index 000000000..5c1b32e48
--- /dev/null
+++ b/config/environments/production.rb
@@ -0,0 +1,79 @@
+Rails.application.configure do
+ # Settings specified here will take precedence over those in config/application.rb.
+
+ # Code is not reloaded between requests.
+ config.cache_classes = true
+
+ # Eager load code on boot. This eager loads most of Rails and
+ # your application in memory, allowing both threaded web servers
+ # and those relying on copy on write to perform better.
+ # Rake tasks automatically ignore this option for performance.
+ config.eager_load = true
+
+ # Full error reports are disabled and caching is turned on.
+ config.consider_all_requests_local = false
+ config.action_controller.perform_caching = true
+
+ # Enable Rack::Cache to put a simple HTTP cache in front of your application
+ # Add `rack-cache` to your Gemfile before enabling this.
+ # For large-scale production use, consider using a caching reverse proxy like
+ # NGINX, varnish or squid.
+ # config.action_dispatch.rack_cache = true
+
+ # Disable serving static files from the `/public` folder by default since
+ # Apache or NGINX already handles this.
+ config.serve_static_files = ENV['RAILS_SERVE_STATIC_FILES'].present?
+
+ # Compress JavaScripts and CSS.
+ config.assets.js_compressor = :uglifier
+ # config.assets.css_compressor = :sass
+
+ # Do not fallback to assets pipeline if a precompiled asset is missed.
+ config.assets.compile = false
+
+ # Asset digests allow you to set far-future HTTP expiration dates on all assets,
+ # yet still be able to expire them through the digest params.
+ config.assets.digest = true
+
+ # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
+
+ # Specifies the header that your server uses for sending files.
+ # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
+
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
+ # config.force_ssl = true
+
+ # Use the lowest log level to ensure availability of diagnostic information
+ # when problems arise.
+ config.log_level = :debug
+
+ # Prepend all log lines with the following tags.
+ # config.log_tags = [ :subdomain, :uuid ]
+
+ # Use a different logger for distributed setups.
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
+
+ # Use a different cache store in production.
+ # config.cache_store = :mem_cache_store
+
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
+ # config.action_controller.asset_host = 'http://assets.example.com'
+
+ # Ignore bad email addresses and do not raise email delivery errors.
+ # Set this to true and configure the email server for immediate delivery to raise delivery errors.
+ # config.action_mailer.raise_delivery_errors = false
+
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
+ # the I18n.default_locale when a translation cannot be found).
+ config.i18n.fallbacks = true
+
+ # Send deprecation notices to registered listeners.
+ config.active_support.deprecation = :notify
+
+ # Use default logging formatter so that PID and timestamp are not suppressed.
+ config.log_formatter = ::Logger::Formatter.new
+
+ # Do not dump schema after migrations.
+ config.active_record.dump_schema_after_migration = false
+end
diff --git a/config/environments/test.rb b/config/environments/test.rb
new file mode 100644
index 000000000..1c19f08b2
--- /dev/null
+++ b/config/environments/test.rb
@@ -0,0 +1,42 @@
+Rails.application.configure do
+ # Settings specified here will take precedence over those in config/application.rb.
+
+ # The test environment is used exclusively to run your application's
+ # test suite. You never need to work with it otherwise. Remember that
+ # your test database is "scratch space" for the test suite and is wiped
+ # and recreated between test runs. Don't rely on the data there!
+ config.cache_classes = true
+
+ # Do not eager load code on boot. This avoids loading your whole application
+ # just for the purpose of running a single test. If you are using a tool that
+ # preloads Rails for running tests, you may have to set it to true.
+ config.eager_load = false
+
+ # Configure static file server for tests with Cache-Control for performance.
+ config.serve_static_files = true
+ config.static_cache_control = 'public, max-age=3600'
+
+ # Show full error reports and disable caching.
+ config.consider_all_requests_local = true
+ config.action_controller.perform_caching = false
+
+ # Raise exceptions instead of rendering exception templates.
+ config.action_dispatch.show_exceptions = false
+
+ # Disable request forgery protection in test environment.
+ config.action_controller.allow_forgery_protection = false
+
+ # Tell Action Mailer not to deliver emails to the real world.
+ # The :test delivery method accumulates sent emails in the
+ # ActionMailer::Base.deliveries array.
+ config.action_mailer.delivery_method = :test
+
+ # Randomize the order test cases are executed.
+ config.active_support.test_order = :random
+
+ # Print deprecation notices to the stderr.
+ config.active_support.deprecation = :stderr
+
+ # Raises error for missing translations
+ # config.action_view.raise_on_missing_translations = true
+end
diff --git a/config/initializers/assets.rb b/config/initializers/assets.rb
new file mode 100644
index 000000000..01ef3e663
--- /dev/null
+++ b/config/initializers/assets.rb
@@ -0,0 +1,11 @@
+# Be sure to restart your server when you modify this file.
+
+# Version of your assets, change this if you want to expire all your assets.
+Rails.application.config.assets.version = '1.0'
+
+# Add additional assets to the asset load path
+# Rails.application.config.assets.paths << Emoji.images_path
+
+# Precompile additional assets.
+# application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
+# Rails.application.config.assets.precompile += %w( search.js )
diff --git a/config/initializers/backtrace_silencers.rb b/config/initializers/backtrace_silencers.rb
new file mode 100644
index 000000000..59385cdf3
--- /dev/null
+++ b/config/initializers/backtrace_silencers.rb
@@ -0,0 +1,7 @@
+# Be sure to restart your server when you modify this file.
+
+# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
+# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
+
+# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
+# Rails.backtrace_cleaner.remove_silencers!
diff --git a/config/initializers/cookies_serializer.rb b/config/initializers/cookies_serializer.rb
new file mode 100644
index 000000000..7f70458de
--- /dev/null
+++ b/config/initializers/cookies_serializer.rb
@@ -0,0 +1,3 @@
+# Be sure to restart your server when you modify this file.
+
+Rails.application.config.action_dispatch.cookies_serializer = :json
diff --git a/config/initializers/filter_parameter_logging.rb b/config/initializers/filter_parameter_logging.rb
new file mode 100644
index 000000000..4a994e1e7
--- /dev/null
+++ b/config/initializers/filter_parameter_logging.rb
@@ -0,0 +1,4 @@
+# Be sure to restart your server when you modify this file.
+
+# Configure sensitive parameters which will be filtered from the log file.
+Rails.application.config.filter_parameters += [:password]
diff --git a/config/initializers/inflections.rb b/config/initializers/inflections.rb
new file mode 100644
index 000000000..ac033bf9d
--- /dev/null
+++ b/config/initializers/inflections.rb
@@ -0,0 +1,16 @@
+# Be sure to restart your server when you modify this file.
+
+# Add new inflection rules using the following format. Inflections
+# are locale specific, and you may define rules for as many different
+# locales as you wish. All of these examples are active by default:
+# ActiveSupport::Inflector.inflections(:en) do |inflect|
+# inflect.plural /^(ox)$/i, '\1en'
+# inflect.singular /^(ox)en/i, '\1'
+# inflect.irregular 'person', 'people'
+# inflect.uncountable %w( fish sheep )
+# end
+
+# These inflection rules are supported but not enabled by default:
+# ActiveSupport::Inflector.inflections(:en) do |inflect|
+# inflect.acronym 'RESTful'
+# end
diff --git a/config/initializers/mime_types.rb b/config/initializers/mime_types.rb
new file mode 100644
index 000000000..dc1899682
--- /dev/null
+++ b/config/initializers/mime_types.rb
@@ -0,0 +1,4 @@
+# Be sure to restart your server when you modify this file.
+
+# Add new mime types for use in respond_to blocks:
+# Mime::Type.register "text/richtext", :rtf
diff --git a/config/initializers/session_store.rb b/config/initializers/session_store.rb
new file mode 100644
index 000000000..15d065a84
--- /dev/null
+++ b/config/initializers/session_store.rb
@@ -0,0 +1,3 @@
+# Be sure to restart your server when you modify this file.
+
+Rails.application.config.session_store :cookie_store, key: '_TaskListRails_session'
diff --git a/config/initializers/wrap_parameters.rb b/config/initializers/wrap_parameters.rb
new file mode 100644
index 000000000..33725e95f
--- /dev/null
+++ b/config/initializers/wrap_parameters.rb
@@ -0,0 +1,14 @@
+# Be sure to restart your server when you modify this file.
+
+# This file contains settings for ActionController::ParamsWrapper which
+# is enabled by default.
+
+# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
+ActiveSupport.on_load(:action_controller) do
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
+end
+
+# To enable root element in JSON for ActiveRecord objects.
+# ActiveSupport.on_load(:active_record) do
+# self.include_root_in_json = true
+# end
diff --git a/config/locales/en.yml b/config/locales/en.yml
new file mode 100644
index 000000000..065395716
--- /dev/null
+++ b/config/locales/en.yml
@@ -0,0 +1,23 @@
+# Files in the config/locales directory are used for internationalization
+# and are automatically loaded by Rails. If you want to use locales other
+# than English, add the necessary files in this directory.
+#
+# To use the locales, use `I18n.t`:
+#
+# I18n.t 'hello'
+#
+# In views, this is aliased to just `t`:
+#
+# <%= t('hello') %>
+#
+# To use a different locale, set it with `I18n.locale`:
+#
+# I18n.locale = :es
+#
+# This would use the information in config/locales/es.yml.
+#
+# To learn more, please read the Rails Internationalization guide
+# available at http://guides.rubyonrails.org/i18n.html.
+
+en:
+ hello: "Hello world"
diff --git a/config/routes.rb b/config/routes.rb
new file mode 100644
index 000000000..213d7052e
--- /dev/null
+++ b/config/routes.rb
@@ -0,0 +1,77 @@
+Rails.application.routes.draw do
+ root to: 'tasks#index'
+
+ get 'tasks/index' =>'tasks#index', as: 'index'
+ post 'tasks/show'
+
+ get 'tasks/show/:id' =>'tasks#show', as: 'show'
+
+ get 'tasks/new' =>'tasks#new', as: 'new'
+
+ get 'tasks/:id/edit' => 'tasks#edit', as: 'edit'
+
+ # patch 'tasks/update' => 'tasks#update' as: 'update'
+
+ post 'tasks/create' =>'tasks#create', as: 'create'
+
+ delete 'tasks/:id/destroy' => 'tasks#destroy', as: 'delete'
+
+ patch 'tasks/:id/update' => 'tasks#update', as: 'update'
+
+ patch 'tasks/:id/toggle_completed' => 'tasks#toggle_completed', as:'toggle'
+
+ # 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..7572dd3bb
--- /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: 244e57a42eb062ef5a35083a801cb03a91b381abc0d4f1aaceaaa431ac1a69a41b6311d367caef64ab4de4f5001e8e0bf23b1a98ab5e88a500fffe1026283f97
+
+test:
+ secret_key_base: 75772b3db2c59ee8dd22d818f184944eede34c4c99b4c52655455111c37bba47fc7e1379dfc4af05f7265eab0cf69d3241bc6467c498d0f3cc1a54320cdcdbe6
+
+# 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..ecaeba6f9
Binary files /dev/null and b/db/development.sqlite3 differ
diff --git a/db/migrate/20160928223908_create_tasks.rb b/db/migrate/20160928223908_create_tasks.rb
new file mode 100644
index 000000000..516d7d343
--- /dev/null
+++ b/db/migrate/20160928223908_create_tasks.rb
@@ -0,0 +1,11 @@
+class CreateTasks < ActiveRecord::Migration
+ def change
+ create_table :tasks do |t|
+ t.string :title
+ t.text :description
+ t.timestamp :completed_at
+
+ t.timestamps null: false
+ end
+ end
+end
diff --git a/db/migrate/20160929232917_add_new_column.rb b/db/migrate/20160929232917_add_new_column.rb
new file mode 100644
index 000000000..e803b7595
--- /dev/null
+++ b/db/migrate/20160929232917_add_new_column.rb
@@ -0,0 +1,5 @@
+class AddNewColumn < ActiveRecord::Migration
+ def change
+ add_column("Tasks", "Completed", :boolean)
+ end
+end
diff --git a/db/migrate/20160929234257_add_newcolumn.rb b/db/migrate/20160929234257_add_newcolumn.rb
new file mode 100644
index 000000000..eb881da0f
--- /dev/null
+++ b/db/migrate/20160929234257_add_newcolumn.rb
@@ -0,0 +1,5 @@
+class AddNewcolumn< ActiveRecord::Migration
+ def change
+ add_column("Tasks", "finished", :boolean)
+ end
+end
diff --git a/db/migrate/20160930192918_remove_column.rb b/db/migrate/20160930192918_remove_column.rb
new file mode 100644
index 000000000..31075acf5
--- /dev/null
+++ b/db/migrate/20160930192918_remove_column.rb
@@ -0,0 +1,5 @@
+class RemoveColumn < ActiveRecord::Migration
+ def change
+ remove_column("tasks", "Completed", :boolean)
+ end
+end
diff --git a/db/schema.rb b/db/schema.rb
new file mode 100644
index 000000000..35bf78fff
--- /dev/null
+++ b/db/schema.rb
@@ -0,0 +1,25 @@
+# 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: 20160930192918) do
+
+ create_table "tasks", force: :cascade do |t|
+ t.string "title"
+ t.text "description"
+ t.datetime "completed_at"
+ t.datetime "created_at", null: false
+ t.datetime "updated_at", null: false
+ t.boolean "finished"
+ 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/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..a21908d85
--- /dev/null
+++ b/log/development.log
@@ -0,0 +1,10785 @@
+
+
+Started GET "/" for ::1 at 2016-09-28 14:53:20 -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:25: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/sabrinawilbert/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/sabrinawilbert/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/sabrinawilbert/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (11.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (86.0ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (54.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (115.6ms)
+
+
+Started GET "/" for ::1 at 2016-09-28 14:55:02 -0700
+Processing by TasksController#index as HTML
+Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
+
+NoMethodError (undefined method `allpost' for TasksController:Class
+Did you mean? allocate):
+ app/controllers/tasks_controller.rb:3:in `index'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (50.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.1ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.4ms)
+
+
+Started GET "/" for ::1 at 2016-09-28 14:55:43 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.7ms)
+Completed 200 OK in 466ms (Views: 465.9ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 14:55:43 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 14:55:43 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 14:55:43 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 14:55:43 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 14:55:43 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 14:55:43 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 14:55:43 -0700
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 14:56:30 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (2.0ms)
+Completed 200 OK in 36ms (Views: 32.7ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-28 14:57:03 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.6ms)
+Completed 200 OK in 24ms (Views: 23.4ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 14:57:21 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (1.1ms)
+Completed 200 OK in 30ms (Views: 29.4ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/2" for ::1 at 2016-09-28 14:57:24 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"2"}
+ Rendered tasks/show.html.erb within layouts/application (1.9ms)
+Completed 200 OK in 33ms (Views: 32.1ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/2" for ::1 at 2016-09-28 14:59:22 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"2"}
+ Rendered tasks/show.html.erb within layouts/application (0.5ms)
+Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 14:59:23 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (1.1ms)
+Completed 200 OK in 25ms (Views: 24.1ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-09-28 15:04:17 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:04:24 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ Rendered tasks/show.html.erb within layouts/application (35.5ms)
+Completed 500 Internal Server Error in 39ms (ActiveRecord: 0.0ms)
+
+ActionView::Template::Error (undefined local variable or method `task' for #<#:0x007ffb8110a700>
+Did you mean? @tasks):
+ 1:
+ app/views/tasks/show.html.erb:4:in `_app_views_tasks_show_html_erb__4154760013311408135_70207494262540'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (52.6ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.8ms)
+
+
+Started GET "/" for ::1 at 2016-09-28 20:08:24 -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.0ms)
+Completed 200 OK in 19ms (Views: 16.8ms | ActiveRecord: 0.5ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-28 20:08:28 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (0.0ms)
+Completed 200 OK in 29ms (Views: 28.5ms | ActiveRecord: 0.0ms)
+
+
+Started POST "/tasks/show" for ::1 at 2016-09-28 20:08:58 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"title"=>"HomeWork", "description"=>"Add new task to db", "completed_at"=>"no"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/show.html.erb within layouts/application (2.2ms)
+Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.1ms)
+
+ActionView::Template::Error (undefined method `[]' for nil:NilClass):
+ 1:
My Tasks List
+ 2:
+ 3:
+ 4:
<%= link_to(@mytask[:title]) %>
+ 5:
<%= @mytask[:description] %>
+ 6:
<%= @mytask[:completed_at] %>
+ 7:
<%= link_to('Edit', edit_path(@mytask[:id])) %>
+ app/views/tasks/show.html.erb:4:in `_app_views_tasks_show_html_erb__4154760013311408135_70207494262540'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (47.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.4ms)
+
+
+Started POST "/tasks/show" for ::1 at 2016-09-28 20:10:21 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"title"=>"HomeWork", "description"=>"Add new task to db", "completed_at"=>"no"}
+ [1m[35mTask Load (0.3ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered tasks/show.html.erb within layouts/application (2.3ms)
+Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.5ms)
+
+ActionView::Template::Error (undefined method `[]' for nil:NilClass):
+ 1:
My Tasks List
+ 2:
+ 3:
+ 4:
<%= link_to(@mytask[:title]) %>
+ 5:
<%= @mytask[:description] %>
+ 6:
<%= @mytask[:completed_at] %>
+ 7:
<%= link_to('Edit', edit_path(@mytask[:id])) %>
+ app/views/tasks/show.html.erb:4:in `_app_views_tasks_show_html_erb__4154760013311408135_70207494262540'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (50.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.7ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.3ms)
+
+
+Started POST "/tasks/show" for ::1 at 2016-09-28 20:14:07 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"title"=>"HomeWork", "description"=>"Add new task to db", "completed_at"=>"no"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/show.html.erb within layouts/application (2.2ms)
+Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.4ms)
+
+ActionView::Template::Error (undefined method `[]' for nil:NilClass):
+ 1:
My Tasks List
+ 2:
+ 3:
+ 4:
<%= link_to(@mytask[:title]) %>
+ 5:
<%= @mytask[:description] %>
+ 6:
<%= @mytask[:completed_at] %>
+ 7:
<%= link_to('Edit', edit_path(@mytask[:id])) %>
+ app/views/tasks/show.html.erb:4:in `_app_views_tasks_show_html_erb__4154760013311408135_70207494262540'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.7ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (49.0ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.7ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.6ms)
+
+
+Started POST "/tasks/show" for ::1 at 2016-09-28 20:16:04 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"title"=>"HomeWork", "description"=>"Add new task to db", "completed_at"=>"no"}
+ [1m[35mTask Load (0.3ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered tasks/show.html.erb within layouts/application (3.9ms)
+Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.5ms)
+
+ActionView::Template::Error (undefined method `[]' for nil:NilClass):
+ 1:
My Tasks List
+ 2:
+ 3:
+ 4:
<%= link_to(@mytask[:title]) %>
+ 5:
<%= @mytask[:description] %>
+ 6:
<%= @mytask[:completed_at] %>
+ 7:
<%= link_to('Edit', edit_path(@mytask[:id])) %>
+ app/views/tasks/show.html.erb:4:in `_app_views_tasks_show_html_erb__4154760013311408135_70207494262540'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.0ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (53.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.6ms)
+
+
+Started POST "/tasks/show" for ::1 at 2016-09-28 20:20:59 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"title"=>"HomeWork", "description"=>"Add new task to db", "completed_at"=>"no"}
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/show.html.erb within layouts/application (3.4ms)
+Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.5ms)
+
+ActionView::Template::Error (undefined method `[]' for nil:NilClass):
+ 1:
My Tasks List
+ 2:
+ 3:
+ 4:
<%= link_to(@mytask[:title]) %>
+ 5:
<%= @mytask[:description] %>
+ 6:
<%= @mytask[:completed_at] %>
+ 7:
<%= link_to('Edit', edit_path(@mytask[:id])) %>
+ app/views/tasks/show.html.erb:4:in `_app_views_tasks_show_html_erb__4154760013311408135_70207494262540'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (51.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.6ms)
+
+
+Started POST "/tasks/show" for ::1 at 2016-09-28 20:24:09 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"title"=>"HomeWork", "description"=>"Add new task to db", "completed_at"=>"no"}
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered tasks/show.html.erb within layouts/application (2.5ms)
+Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.5ms)
+
+ActionView::Template::Error (undefined method `[]' for nil:NilClass):
+ 1:
My Tasks List
+ 2:
+ 3:
+ 4:
<%= link_to(@mytask[:title]) %>
+ 5:
<%= @mytask[:description] %>
+ 6:
<%= @mytask[:completed_at] %>
+ 7:
<%= link_to('Edit', edit_path(@mytask[:id])) %>
+ app/views/tasks/show.html.erb:4:in `_app_views_tasks_show_html_erb__4154760013311408135_70207494262540'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.6ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (49.7ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.0ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.7ms)
+
+
+Started POST "/tasks/show" for ::1 at 2016-09-28 20:26:04 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"title"=>"HomeWork", "description"=>"Add new task to db", "completed_at"=>"no"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/show.html.erb within layouts/application (2.6ms)
+Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.4ms)
+
+ActionView::Template::Error (undefined method `[]' for nil:NilClass):
+ 1:
My Tasks List
+ 2:
+ 3:
+ 4:
<%= link_to(@mytask[:title]) %>
+ 5:
<%= @mytask[:description] %>
+ 6:
<%= @mytask[:completed_at] %>
+ 7:
<%= link_to('Edit', edit_path(@mytask[:id])) %>
+ app/views/tasks/show.html.erb:4:in `_app_views_tasks_show_html_erb__4154760013311408135_70207494262540'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (48.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.4ms)
+
+
+Started GET "/" for ::1 at 2016-09-28 20:26:11 -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 11ms (Views: 10.5ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-28 20:26:15 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (0.1ms)
+Completed 200 OK in 25ms (Views: 24.8ms | ActiveRecord: 0.0ms)
+
+
+Started POST "/tasks/show" for ::1 at 2016-09-28 20:26:28 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"title"=>"one", "description"=>"two", "completed_at"=>"three"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/show.html.erb within layouts/application (2.2ms)
+Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms)
+
+ActionView::Template::Error (undefined method `[]' for nil:NilClass):
+ 1:
My Tasks List
+ 2:
+ 3:
+ 4:
<%= link_to(@mytask[:title]) %>
+ 5:
<%= @mytask[:description] %>
+ 6:
<%= @mytask[:completed_at] %>
+ 7:
<%= link_to('Edit', edit_path(@mytask[:id])) %>
+ app/views/tasks/show.html.erb:4:in `_app_views_tasks_show_html_erb__4154760013311408135_70207494262540'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (52.1ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.2ms)
+
+
+Started POST "/tasks/show" for ::1 at 2016-09-28 20:27:49 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"title"=>"one", "description"=>"two", "completed_at"=>"three"}
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered tasks/show.html.erb within layouts/application (2.8ms)
+Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.4ms)
+
+ActionView::Template::Error (undefined method `[]' for nil:NilClass):
+ 1:
My Tasks List
+ 2:
+ 3:
+ 4:
<%= link_to(@mytask[:title]) %>
+ 5:
<%= @mytask[:description] %>
+ 6:
<%= @mytask[:completed_at] %>
+ 7:
<%= link_to('Edit', edit_path(@mytask[:id])) %>
+ app/views/tasks/show.html.erb:4:in `_app_views_tasks_show_html_erb__4154760013311408135_70207494262540'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (50.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.5ms)
+
+
+Started POST "/tasks/show" for ::1 at 2016-09-28 20:34:10 -0700
+
+SyntaxError (/Users/sabrinawilbert/ada/TaskListRails/app/controllers/tasks_controller.rb:51: syntax error, unexpected end-of-input, expecting keyword_end):
+ app/controllers/tasks_controller.rb:51: syntax error, unexpected end-of-input, expecting keyword_end
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (45.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.6ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.3ms)
+
+
+Started POST "/tasks/show" for ::1 at 2016-09-28 20:34:47 -0700
+
+ActionController::RoutingError (undefined method `controller' for TasksController:Class
+Did you mean? controller_path):
+ app/controllers/tasks_controller.rb:36:in `'
+ app/controllers/tasks_controller.rb:1:in `'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.6ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (73.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.8ms)
+
+
+Started POST "/tasks/show" for ::1 at 2016-09-28 20:35:39 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"title"=>"one", "description"=>"two", "completed_at"=>"three"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/show.html.erb within layouts/application (2.7ms)
+Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.5ms)
+
+ActionView::Template::Error (undefined method `[]' for nil:NilClass):
+ 1:
My Tasks List
+ 2:
+ 3:
+ 4:
<%= link_to(@mytask[:title]) %>
+ 5:
<%= @mytask[:description] %>
+ 6:
<%= @mytask[:completed_at] %>
+ 7:
<%= link_to('Edit', edit_path(@mytask[:id])) %>
+ app/views/tasks/show.html.erb:4:in `_app_views_tasks_show_html_erb__4154760013311408135_70207494262540'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (49.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.6ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.0ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.1ms)
+
+
+Started POST "/tasks/show" for ::1 at 2016-09-28 20:36:12 -0700
+
+ActionController::RoutingError (undefined method `Taskscontroller' for TasksController:Class):
+ app/controllers/tasks_controller.rb:36:in `'
+ app/controllers/tasks_controller.rb:1:in `'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (67.0ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.7ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (101.9ms)
+
+
+Started POST "/tasks/show" for ::1 at 2016-09-28 20:38:45 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"title"=>"one", "description"=>"two", "completed_at"=>"three"}
+ [1m[35mTask Load (0.4ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered tasks/show.html.erb within layouts/application (2.3ms)
+Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.8ms)
+
+ActionView::Template::Error (undefined method `[]' for nil:NilClass):
+ 1:
My Tasks List
+ 2:
+ 3:
+ 4:
<%= link_to(@mytask[:title]) %>
+ 5:
<%= @mytask[:description] %>
+ 6:
<%= @mytask[:completed_at] %>
+ 7:
<%= link_to('Edit', edit_path(@mytask[:id])) %>
+ app/views/tasks/show.html.erb:4:in `_app_views_tasks_show_html_erb__4154760013311408135_70207494262540'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (53.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.0ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.4ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-28 20:40:42 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (0.1ms)
+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 20:40:43 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 20:40:43 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 20:40:43 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 20:40:43 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 20:40:43 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 20:40:43 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 20:40:43 -0700
+
+
+Started POST "/tasks/show" for ::1 at 2016-09-28 20:40:57 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"title"=>"one", "description"=>"two", "completed_at"=>"three"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/show.html.erb within layouts/application (2.0ms)
+Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.5ms)
+
+ActionView::Template::Error (undefined method `[]' for nil:NilClass):
+ 1:
My Tasks List
+ 2:
+ 3:
+ 4:
<%= link_to(@mytask[:title]) %>
+ 5:
<%= @mytask[:description] %>
+ 6:
<%= @mytask[:completed_at] %>
+ 7:
<%= link_to('Edit', edit_path(@mytask[:id])) %>
+ app/views/tasks/show.html.erb:4:in `_app_views_tasks_show_html_erb__4154760013311408135_70207494262540'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.7ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (49.7ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.1ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.1ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-28 20:44:12 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (0.1ms)
+Completed 200 OK in 13ms (Views: 12.9ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 20:44:12 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 20:44:12 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 20:44:12 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 20:44:12 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 20:44:12 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 20:44:12 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 20:44:12 -0700
+
+
+Started POST "/tasks/show" for ::1 at 2016-09-28 20:44:24 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"title"=>"one", "description"=>"two", "completed_at"=>"three"}
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered tasks/show.html.erb within layouts/application (2.4ms)
+Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.5ms)
+
+ActionView::Template::Error (undefined method `[]' for nil:NilClass):
+ 1:
My Tasks List
+ 2:
+ 3:
+ 4:
<%= link_to(@mytask[:title]) %>
+ 5:
<%= @mytask[:description] %>
+ 6:
<%= @mytask[:completed_at] %>
+ 7:
<%= link_to('Edit', edit_path(@mytask[:id])) %>
+ app/views/tasks/show.html.erb:4:in `_app_views_tasks_show_html_erb__4154760013311408135_70207494262540'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (50.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.3ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-28 20:45:55 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (0.0ms)
+Completed 200 OK in 12ms (Views: 11.5ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 20:45:55 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 20:45:55 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 20:45:55 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 20:45:55 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 20:45:55 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 20:45:55 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 20:45:55 -0700
+
+
+Started POST "/tasks/show" for ::1 at 2016-09-28 20:46:06 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"title"=>"one", "description"=>"two", "completed_at"=>"three"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/show.html.erb within layouts/application (2.7ms)
+Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.2ms)
+
+ActionView::Template::Error (undefined method `[]' for nil:NilClass):
+ 1:
My Tasks List
+ 2:
+ 3:
+ 11:
+ 12: <%= form_for @mytask do |f| %>
+ 13: <% f.label :title %>
+ 14: <% f.textfield :title %>
+ 15: <% f.label :description %>
+ app/views/tasks/new.html.erb:12:in `_app_views_tasks_new_html_erb___3216213366291846493_70226084922800'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (50.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.7ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.1ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 14:14:06 -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 12ms (Views: 11.8ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 14:14:06 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 14:14:06 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 14:14:06 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 14:14:06 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 14:14:06 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 14:14:06 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 14:14:06 -0700
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-29 14:14:11 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (3.3ms)
+Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms)
+
+SyntaxError (/Users/sabrinawilbert/ada/TaskListRails/app/views/tasks/new.html.erb:12: syntax error, unexpected tIDENTIFIER, expecting ')'
+...r.append=( form_for @mytask url: {action: "create"}do |f| );...
+... ^
+/Users/sabrinawilbert/ada/TaskListRails/app/views/tasks/new.html.erb:12: syntax error, unexpected keyword_do_block, expecting ')'
+...ytask url: {action: "create"}do |f| );@output_buffer.safe_ap...
+... ^
+/Users/sabrinawilbert/ada/TaskListRails/app/views/tasks/new.html.erb:18: syntax error, unexpected keyword_end, expecting ')'
+'.freeze; end
+ ^
+/Users/sabrinawilbert/ada/TaskListRails/app/views/tasks/new.html.erb:21: syntax error, unexpected keyword_ensure, expecting ')'
+/Users/sabrinawilbert/ada/TaskListRails/app/views/tasks/new.html.erb:23: syntax error, unexpected keyword_end, expecting ')'):
+ app/views/tasks/new.html.erb:12: syntax error, unexpected tIDENTIFIER, expecting ')'
+ app/views/tasks/new.html.erb:12: syntax error, unexpected keyword_do_block, expecting ')'
+ app/views/tasks/new.html.erb:18: syntax error, unexpected keyword_end, expecting ')'
+ app/views/tasks/new.html.erb:21: syntax error, unexpected keyword_ensure, expecting ')'
+ app/views/tasks/new.html.erb:23: syntax error, unexpected keyword_end, expecting ')'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (46.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.0ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 14:14:38 -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.9ms)
+Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 14:14:38 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 14:14:38 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 14:14:38 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 14:14:38 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 14:14:38 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 14:14:38 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 14:14:38 -0700
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-29 14:14:43 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (1.4ms)
+Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms)
+
+SyntaxError (/Users/sabrinawilbert/ada/TaskListRails/app/views/tasks/new.html.erb:12: syntax error, unexpected tIDENTIFIER, expecting keyword_end
+...r.append= form_for @mytask url:{action: "create"} do |f| @o...
+... ^
+/Users/sabrinawilbert/ada/TaskListRails/app/views/tasks/new.html.erb:12: syntax error, unexpected keyword_do_block, expecting keyword_end
+...ytask url:{action: "create"} do |f| @output_buffer.safe_appe...
+... ^
+/Users/sabrinawilbert/ada/TaskListRails/app/views/tasks/new.html.erb:21: syntax error, unexpected keyword_ensure, expecting end-of-input):
+ app/views/tasks/new.html.erb:12: syntax error, unexpected tIDENTIFIER, expecting keyword_end
+ app/views/tasks/new.html.erb:12: syntax error, unexpected keyword_do_block, expecting keyword_end
+ app/views/tasks/new.html.erb:21: syntax error, unexpected keyword_ensure, expecting end-of-input
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (64.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.7ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (57.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (118.9ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 14:19: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.5ms)
+Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 14:19:37 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 14:19:37 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 14:19:37 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 14:19:37 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 14:19:37 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 14:19:37 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 14:19:38 -0700
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-29 14:19:41 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (3.9ms)
+Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms)
+
+SyntaxError (/Users/sabrinawilbert/ada/TaskListRails/app/views/tasks/new.html.erb:12: syntax error, unexpected tIDENTIFIER, expecting keyword_end
+...er.append= form_for @mytask as: post, url:{action: "create"...
+... ^
+/Users/sabrinawilbert/ada/TaskListRails/app/views/tasks/new.html.erb:12: syntax error, unexpected keyword_do_block, expecting keyword_end
+...post, url:{action: "create"} do |f| @output_buffer.safe_appe...
+... ^
+/Users/sabrinawilbert/ada/TaskListRails/app/views/tasks/new.html.erb:21: syntax error, unexpected keyword_ensure, expecting end-of-input):
+ app/views/tasks/new.html.erb:12: syntax error, unexpected tIDENTIFIER, expecting keyword_end
+ app/views/tasks/new.html.erb:12: syntax error, unexpected keyword_do_block, expecting keyword_end
+ app/views/tasks/new.html.erb:21: syntax error, unexpected keyword_ensure, expecting end-of-input
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (50.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.7ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 14:21:04 -0700
+
+SyntaxError (/Users/sabrinawilbert/ada/TaskListRails/config/routes.rb:15: syntax error, unexpected tIDENTIFIER, expecting keyword_end
+ post 'tasks/create' =>'tasks/index' as: 'create'
+ ^):
+ config/routes.rb:15: syntax error, unexpected tIDENTIFIER, expecting keyword_end
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (47.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.6ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.7ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (102.4ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 14:21:11 -0700
+
+ActionController::RoutingError (No route matches [GET] "/tasks/index"):
+ 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/sabrinawilbert/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/sabrinawilbert/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/sabrinawilbert/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (47.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.1ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.8ms)
+
+
+Started GET "/" for ::1 at 2016-09-29 14:21:15 -0700
+
+ActionController::RoutingError (No route matches [GET] "/"):
+ 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/sabrinawilbert/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/sabrinawilbert/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/sabrinawilbert/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (41.1ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.3ms)
+
+
+Started GET "/" for ::1 at 2016-09-29 14:21:50 -0700
+
+ActionController::RoutingError (No route matches [GET] "/"):
+ 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/sabrinawilbert/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/sabrinawilbert/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/sabrinawilbert/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (47.6ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.3ms)
+
+
+Started GET "/" for ::1 at 2016-09-29 14:22: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 20ms (Views: 17.3ms | ActiveRecord: 0.4ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 14:22:06 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 14:22:06 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 14:22:06 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 14:22:06 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 14:22:06 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 14:22:06 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 14:22:06 -0700
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-29 14:22:11 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (2.4ms)
+Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.0ms)
+
+SyntaxError (/Users/sabrinawilbert/ada/TaskListRails/app/views/tasks/new.html.erb:12: syntax error, unexpected tIDENTIFIER, expecting keyword_end
+...er.append= form_for @mytask as: post, url:{action: "create"...
+... ^
+/Users/sabrinawilbert/ada/TaskListRails/app/views/tasks/new.html.erb:12: syntax error, unexpected keyword_do_block, expecting keyword_end
+...post, url:{action: "create"} do |f| @output_buffer.safe_appe...
+... ^
+/Users/sabrinawilbert/ada/TaskListRails/app/views/tasks/new.html.erb:21: syntax error, unexpected keyword_ensure, expecting end-of-input):
+ app/views/tasks/new.html.erb:12: syntax error, unexpected tIDENTIFIER, expecting keyword_end
+ app/views/tasks/new.html.erb:12: syntax error, unexpected keyword_do_block, expecting keyword_end
+ app/views/tasks/new.html.erb:21: syntax error, unexpected keyword_ensure, expecting end-of-input
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (48.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.5ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-29 14:22:42 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (1.4ms)
+Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
+
+SyntaxError (/Users/sabrinawilbert/ada/TaskListRails/app/views/tasks/new.html.erb:12: syntax error, unexpected tIDENTIFIER, expecting keyword_end
+...r.append= form_for @mytask url:{action: "create"} do |f| @o...
+... ^
+/Users/sabrinawilbert/ada/TaskListRails/app/views/tasks/new.html.erb:12: syntax error, unexpected keyword_do_block, expecting keyword_end
+...ytask url:{action: "create"} do |f| @output_buffer.safe_appe...
+... ^
+/Users/sabrinawilbert/ada/TaskListRails/app/views/tasks/new.html.erb:21: syntax error, unexpected keyword_ensure, expecting end-of-input):
+ app/views/tasks/new.html.erb:12: syntax error, unexpected tIDENTIFIER, expecting keyword_end
+ app/views/tasks/new.html.erb:12: syntax error, unexpected keyword_do_block, expecting keyword_end
+ app/views/tasks/new.html.erb:21: syntax error, unexpected keyword_ensure, expecting end-of-input
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (48.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.8ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-29 14:23:59 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (0.8ms)
+Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms)
+
+SyntaxError (/Users/sabrinawilbert/ada/TaskListRails/app/views/tasks/new.html.erb:12: syntax error, unexpected tIDENTIFIER, expecting keyword_end
+...r.append= form_for @mytask url:create_path do |f| @output_b...
+... ^):
+ app/views/tasks/new.html.erb:12: syntax error, unexpected tIDENTIFIER, expecting keyword_end
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (47.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.1ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.0ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-29 14:24:26 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (0.9ms)
+Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
+
+SyntaxError (/Users/sabrinawilbert/ada/TaskListRails/app/views/tasks/new.html.erb:12: syntax error, unexpected tIDENTIFIER, expecting keyword_end
+...r.append= form_for @mytask url: create_path do |f| @output_...
+... ^):
+ app/views/tasks/new.html.erb:12: syntax error, unexpected tIDENTIFIER, expecting keyword_end
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.7ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (50.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.6ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.4ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-29 14:24:44 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (0.9ms)
+Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
+
+SyntaxError (/Users/sabrinawilbert/ada/TaskListRails/app/views/tasks/new.html.erb:12: syntax error, unexpected tIDENTIFIER, expecting keyword_end
+...r.append= form_for @mytask url: create_path do |f| @output_...
+... ^):
+ app/views/tasks/new.html.erb:12: syntax error, unexpected tIDENTIFIER, expecting keyword_end
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (49.1ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.6ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.6ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-29 14:25:37 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (0.7ms)
+Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.4ms)
+
+SyntaxError (/Users/sabrinawilbert/ada/TaskListRails/app/views/tasks/new.html.erb:12: syntax error, unexpected tIDENTIFIER, expecting keyword_end
+...r.append= form_for @mytask url: create_path do |f| @output_...
+... ^):
+ app/views/tasks/new.html.erb:12: syntax error, unexpected tIDENTIFIER, expecting keyword_end
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (51.1ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.0ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-29 14:25:51 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (1.0ms)
+Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.3ms)
+
+SyntaxError (/Users/sabrinawilbert/ada/TaskListRails/app/views/tasks/new.html.erb:12: syntax error, unexpected tIDENTIFIER, expecting keyword_end
+...r.append= form_for @mytask url: create_path do |f| @output_...
+... ^):
+ app/views/tasks/new.html.erb:12: syntax error, unexpected tIDENTIFIER, expecting keyword_end
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (50.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (46.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (3.6ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (99.3ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-29 14:26:25 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (1.5ms)
+Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.4ms)
+
+SyntaxError (/Users/sabrinawilbert/ada/TaskListRails/app/views/tasks/new.html.erb:12: syntax error, unexpected tIDENTIFIER, expecting keyword_end
+...r.append= form_for @mytask url: create_path do |f| @output_...
+... ^):
+ app/views/tasks/new.html.erb:12: syntax error, unexpected tIDENTIFIER, expecting keyword_end
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (49.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.1ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-29 14:27:01 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (17.9ms)
+Completed 500 Internal Server Error in 21ms (ActiveRecord: 0.0ms)
+
+ActionView::Template::Error (undefined method `textfield' for #
+Did you mean? text_field):
+ 11:
+ 12: <%= form_for @mytask, url: create_path do |f| %>
+ 13: <%= f.label :title %>
+ 14: <%= f.textfield :title %>
+ 15: <%= f.label :description %>
+ 16: <%= f.text_area :description %>
+ 17: <%= f.submit %>
+ app/views/tasks/new.html.erb:14:in `block in _app_views_tasks_new_html_erb___3216213366291846493_70226084313400'
+ app/views/tasks/new.html.erb:12:in `_app_views_tasks_new_html_erb___3216213366291846493_70226084313400'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (49.7ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.0ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-29 14:27:22 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (3.6ms)
+Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 14:27:22 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 14:27:22 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 14:27:22 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 14:27:22 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 14:27:22 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 14:27:22 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 14:27:22 -0700
+
+
+Started POST "/tasks/create" for ::1 at 2016-09-29 14:28:01 -0700
+Processing by TasksController#new as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"skzIXelhWA1Z4+W34ZOJNJLTLVRdNh1QyvufTIKoI7LxUgYVHj9nxP0QDozFQbfkiE1b32DzzS/5YrSLAYLseQ==", "task"=>{"title"=>"Saturday", "description"=>"I hope this saves!"}, "commit"=>"Create Task"}
+ Rendered tasks/new.html.erb within layouts/application (1.1ms)
+Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 14:29:57 -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.6ms)
+Completed 200 OK in 21ms (Views: 18.5ms | ActiveRecord: 0.4ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-29 14:30:01 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (3.4ms)
+Completed 200 OK in 25ms (Views: 24.6ms | ActiveRecord: 0.0ms)
+
+
+Started POST "/tasks/create" for ::1 at 2016-09-29 14:30:32 -0700
+Processing by TasksController#index as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"HdyhfCIqN4ZhGH2LI5FYCv/KiJvVuBDR2utfcGlJt6xewm801XQIT8XrlrAHQ2ba5VT+EOh9wK7pcnS36mN4Zw==", "task"=>{"title"=>"Sunday", "description"=>"me again"}, "commit"=>"Create Task"}
+ [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 12ms (Views: 11.7ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/create" for ::1 at 2016-09-29 14:30:45 -0700
+
+ActionController::RoutingError (No route matches [GET] "/tasks/create"):
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
+ railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app'
+ railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged'
+ railties (4.2.7) lib/rails/rack/logger.rb:20:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call'
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
+ activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call'
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
+ railties (4.2.7) lib/rails/engine.rb:518:in `call'
+ railties (4.2.7) lib/rails/application.rb:165:in `call'
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
+ /Users/sabrinawilbert/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/sabrinawilbert/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/sabrinawilbert/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (68.1ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.0ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.0ms)
+
+
+Started GET "/tasks/create" for ::1 at 2016-09-29 14:31:03 -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.9ms)
+Completed 200 OK in 19ms (Views: 17.7ms | ActiveRecord: 0.4ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 14:31:03 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 14:31:03 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 14:31:03 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 14:31:03 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 14:31:03 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 14:31:03 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 14:31:03 -0700
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-29 14:31:07 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (5.8ms)
+Completed 200 OK in 26ms (Views: 25.7ms | ActiveRecord: 0.0ms)
+
+
+Started POST "/tasks/create" for ::1 at 2016-09-29 14:31:16 -0700
+Processing by TasksController#new as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"RoXksm1TV+QrDa/N69/mbVNHyRJmrPEwDRSj+pn4mXQFmyr6mg1oLY/+RPbPDdi9Sdm/mVtpIU8+jYg9GtJWvw==", "task"=>{"title"=>"BBB", "description"=>"CCCCC"}, "commit"=>"Create Task"}
+ Rendered tasks/new.html.erb within layouts/application (1.2ms)
+Completed 200 OK in 14ms (Views: 13.7ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 14:31:26 -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.5ms)
+Completed 200 OK in 30ms (Views: 29.4ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 14:32:12 -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 19ms (Views: 16.8ms | ActiveRecord: 0.5ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 14:32:12 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 14:32:12 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 14:32:12 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 14:32:12 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 14:32:12 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 14:32:12 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 14:32:12 -0700
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-29 14:32:14 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (3.5ms)
+Completed 200 OK in 27ms (Views: 26.1ms | ActiveRecord: 0.0ms)
+
+
+Started POST "/tasks/create" for ::1 at 2016-09-29 14:32:29 -0700
+Processing by TasksController#index as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"++2psWly3BMUJuPc1KG4LN1+YAH4qWlhKzsZdfH/JxC482f5nizj2rDVCOfwc4b8x+AWisVsuR4YojKyctXo2w==", "task"=>{"title"=>"VVVV", "description"=>"GGGGG"}, "commit"=>"Create Task"}
+ [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 13ms (Views: 12.5ms | ActiveRecord: 0.1ms)
+ [1m[36mTask Load (1.7ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-29 14:38:44 -0700
+ [1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (21.8ms)
+Completed 200 OK in 266ms (Views: 253.9ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 14:38:44 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 14:38:44 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 14:38:44 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 14:38:44 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 14:38:44 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 14:38:44 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 14:38:44 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 14:38:47 -0700
+Processing by TasksController#index as HTML
+ [1m[35mTask Load (1.0ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered tasks/index.html.erb within layouts/application (5.1ms)
+Completed 200 OK in 22ms (Views: 20.6ms | ActiveRecord: 1.0ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-29 14:40:10 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (4.0ms)
+Completed 200 OK in 28ms (Views: 27.8ms | ActiveRecord: 0.0ms)
+
+
+Started POST "/tasks/create" for ::1 at 2016-09-29 14:40:25 -0700
+Processing by TasksController#index as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"m+D5m/ma/2dVfhPzlJM1OeP9i2/rx5WX/R/7kLisYPnY/jfTDsTArvGN+MiwQQvp+WP95NYCRejOhtBXO4avMg==", "task"=>{"title"=>"MMMM", "description"=>"dvlsdkslkcl"}, "commit"=>"Create Task"}
+ [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 13ms (Views: 12.3ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-29 14:42:04 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (2.2ms)
+Completed 200 OK in 23ms (Views: 18.3ms | ActiveRecord: 0.6ms)
+
+
+Started POST "/tasks/create" for ::1 at 2016-09-29 14:42:15 -0700
+Processing by TasksController#index as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"qVycccQofDBYtDrh1yOuRG91xG1S5cisho7XnFw7bhzqQlI5M3ZD+fxH0drz8ZCUdeuy5m8gGNO1F/xb3xGh1w==", "task"=>{"title"=>"CCCCCC", "description"=>"lmllmaeoe"}, "commit"=>"Create Task"}
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered tasks/index.html.erb within layouts/application (1.4ms)
+Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-29 14:42:31 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (4.1ms)
+Completed 200 OK in 22ms (Views: 21.5ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-29 14:42:52 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (2.3ms)
+Completed 200 OK in 25ms (Views: 21.4ms | ActiveRecord: 0.4ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 14:42:52 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 14:42:52 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 14:42:52 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 14:42:52 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 14:42:52 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 14:42:52 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 14:42:52 -0700
+
+
+Started POST "/tasks/create" for ::1 at 2016-09-29 14:43:01 -0700
+Processing by TasksController#new as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"EF1cAqMVFG1uodDZjeBnqvCDG1LRlcF9aH7r691Y6uZTQ5JKVEsrpMpSO+KpMll66h1t2exQEQJb58AsXnIlLQ==", "task"=>{"title"=>"vvsssv", "description"=>"NGFDFD"}, "commit"=>"Create Task"}
+ Rendered tasks/new.html.erb within layouts/application (1.6ms)
+Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 14:43:15 -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.2ms)
+Completed 200 OK in 25ms (Views: 24.2ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 14:47: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 (2.9ms)
+Completed 200 OK in 30ms (Views: 28.5ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/tasks/show/1" for ::1 at 2016-09-29 14:47:12 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/show.html.erb within layouts/application (2.3ms)
+Completed 200 OK in 33ms (Views: 31.9ms | ActiveRecord: 0.1ms)
+
+
+Started DELETE "/tasks/1/destroy" for ::1 at 2016-09-29 14:47:58 -0700
+
+ActionController::RoutingError (No route matches [DELETE] "/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/sabrinawilbert/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/sabrinawilbert/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/sabrinawilbert/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (70.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (94.4ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 14:55:43 -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 21ms (Views: 18.5ms | ActiveRecord: 0.5ms)
+
+
+Started GET "/tasks/show/2" for ::1 at 2016-09-29 14:55:46 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"2"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 2]]
+ Rendered tasks/show.html.erb within layouts/application (3.0ms)
+Completed 200 OK in 41ms (Views: 25.2ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 14:56:18 -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.0ms)
+Completed 200 OK in 26ms (Views: 23.6ms | ActiveRecord: 0.5ms)
+
+
+Started GET "/tasks/show/2" for ::1 at 2016-09-29 14:56:34 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"2"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 2]]
+ Rendered tasks/show.html.erb within layouts/application (1.5ms)
+Completed 200 OK in 25ms (Views: 23.5ms | ActiveRecord: 0.2ms)
+
+
+Started DELETE "/tasks/2/destroy" for ::1 at 2016-09-29 14:56:38 -0700
+
+ActionController::RoutingError (No route matches [DELETE] "/tasks/2/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/sabrinawilbert/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/sabrinawilbert/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/sabrinawilbert/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (65.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.1ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.5ms)
+
+
+Started GET "/tasks/show/2" for ::1 at 2016-09-29 14:59:08 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"2"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]]
+ Rendered tasks/show.html.erb within layouts/application (1.2ms)
+Completed 200 OK in 25ms (Views: 20.4ms | ActiveRecord: 0.4ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 14:59:08 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 14:59:08 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 14:59:08 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 14:59:08 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 14:59:08 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 14:59:08 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 14:59:08 -0700
+
+
+Started DELETE "/tasks/2/destroy" for ::1 at 2016-09-29 14:59:13 -0700
+
+ActionController::RoutingError (No route matches [DELETE] "/tasks/2/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/sabrinawilbert/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/sabrinawilbert/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/sabrinawilbert/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (64.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.6ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.1ms)
+
+
+Started GET "/tasks/show/2" for ::1 at 2016-09-29 15:00:04 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"2"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 2]]
+ Rendered tasks/show.html.erb within layouts/application (1.0ms)
+Completed 200 OK in 19ms (Views: 14.5ms | ActiveRecord: 0.4ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 15:00:04 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 15:00:04 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 15:00:04 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 15:00:04 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 15:00:04 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 15:00:04 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 15:00:04 -0700
+
+
+Started GET "/tasks/show/2" for ::1 at 2016-09-29 15:00:11 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"2"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]]
+ Rendered tasks/show.html.erb within layouts/application (0.6ms)
+Completed 200 OK in 13ms (Views: 11.9ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 15:00:11 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 15:00:11 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 15:00:11 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 15:00:11 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 15:00:11 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 15:00:11 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 15:00:11 -0700
+
+
+Started DELETE "/tasks/2/destroy" for ::1 at 2016-09-29 15:00:15 -0700
+Processing by TasksController#destroy as HTML
+ Parameters: {"authenticity_token"=>"J3SjYQHRK26h8L7yX6hGskbTv1/UzGeMaDzaNzElhZVkam0p9o8UpwUDVcl7enhiXE3J1OkJt/NbpfHwsg9KXg==", "id"=>"2"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 2]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.2ms)[0m [1mDELETE FROM "tasks" WHERE "tasks"."id" = ?[0m [["id", 2]]
+ [1m[35m (1.5ms)[0m commit transaction
+ Rendered tasks/destroy.html.erb within layouts/application (0.9ms)
+Completed 200 OK in 18ms (Views: 14.6ms | ActiveRecord: 1.9ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 15:19:35 -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.6ms)
+Completed 200 OK in 21ms (Views: 20.3ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/tasks/show/5" for ::1 at 2016-09-29 15:19:49 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"5"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 5]]
+ Rendered tasks/show.html.erb within layouts/application (3.0ms)
+Completed 200 OK in 25ms (Views: 24.0ms | ActiveRecord: 0.1ms)
+
+
+Started DELETE "/tasks/5/destroy" for ::1 at 2016-09-29 15:19:52 -0700
+Processing by TasksController#destroy as HTML
+ Parameters: {"authenticity_token"=>"n5yPM7VQdI5MJUHuhy3btvBc3dS1ZFl2qHNgrc9WHAvcgkF7Qg5LR+jWqtWj/+Vm6sKrX4ihiQmb6ktqTHzTwA==", "id"=>"5"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 5]]
+ [1m[35m (0.0ms)[0m begin transaction
+ [1m[36mSQL (0.2ms)[0m [1mDELETE FROM "tasks" WHERE "tasks"."id" = ?[0m [["id", 5]]
+ [1m[35m (1.9ms)[0m commit transaction
+ Rendered tasks/destroy.html.erb within layouts/application (0.1ms)
+Completed 200 OK in 25ms (Views: 21.0ms | ActiveRecord: 2.3ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 15:19:55 -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.1ms)
+Completed 200 OK in 29ms (Views: 28.2ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/tasks/show/6" for ::1 at 2016-09-29 15:20:19 -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 (3.1ms)
+Completed 200 OK in 45ms (Views: 43.6ms | ActiveRecord: 0.1ms)
+
+
+Started DELETE "/tasks/6/destroy" for ::1 at 2016-09-29 15:20:23 -0700
+Processing by TasksController#destroy as HTML
+ Parameters: {"authenticity_token"=>"MkT0Vt1h60CBC6r8MH25CYdtWKZyS+EjbEQRPAEKAk1xWjoeKj/UiSX4QccUr4fZnfMuLU+OMVxf3Tr7giDNhg==", "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 (1.3ms)[0m commit transaction
+ Rendered tasks/destroy.html.erb within layouts/application (0.1ms)
+Completed 200 OK in 18ms (Views: 14.6ms | ActiveRecord: 1.7ms)
+
+
+Started GET "/tasks/6/destroy" for ::1 at 2016-09-29 15:21:34 -0700
+
+ActionController::RoutingError (No route matches [GET] "/tasks/6/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/sabrinawilbert/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/sabrinawilbert/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/sabrinawilbert/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (74.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.7ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (51.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (105.9ms)
+
+
+Started GET "/tasks/6/destroy" for ::1 at 2016-09-29 15:21:38 -0700
+
+ActionController::RoutingError (No route matches [GET] "/tasks/6/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/sabrinawilbert/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/sabrinawilbert/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/sabrinawilbert/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (63.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.0ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.1ms)
+
+
+Started GET "/tasks/show/6" for ::1 at 2016-09-29 15:21:43 -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]]
+Completed 404 Not Found in 2ms (ActiveRecord: 0.1ms)
+
+ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=6):
+ app/controllers/tasks_controller.rb:9:in `show'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (46.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.7ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.9ms)
+
+
+Started GET "/" for ::1 at 2016-09-29 15:21: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 20ms (Views: 19.3ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/show/4" for ::1 at 2016-09-29 15:21:54 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"4"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 4]]
+ Rendered tasks/show.html.erb within layouts/application (0.8ms)
+Completed 200 OK in 29ms (Views: 27.5ms | ActiveRecord: 0.1ms)
+
+
+Started DELETE "/tasks/4/destroy" for ::1 at 2016-09-29 15:21:58 -0700
+Processing by TasksController#destroy as HTML
+ Parameters: {"authenticity_token"=>"NOHeK2G6DO9asxGWwkXPGhi80u869yzGIm5yhk/bQ+93/xBjluQzJv5A+q3ml/HKAiKkZAcy/LkR91lBzPGMJA==", "id"=>"4"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 4]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.3ms)[0m DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 4]]
+ [1m[36m (1.7ms)[0m [1mcommit transaction[0m
+ Rendered tasks/destroy.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 19ms (Views: 14.6ms | ActiveRecord: 2.3ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 15:22: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 (2.5ms)
+Completed 200 OK in 31ms (Views: 29.6ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/tasks/show/3" for ::1 at 2016-09-29 15:22:25 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"3"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 3]]
+ Rendered tasks/show.html.erb within layouts/application (1.3ms)
+Completed 200 OK in 28ms (Views: 26.7ms | ActiveRecord: 0.1ms)
+
+
+Started DELETE "/tasks/3/destroy" for ::1 at 2016-09-29 15:22:28 -0700
+Processing by TasksController#destroy as HTML
+ Parameters: {"authenticity_token"=>"kBYP9GdCLwLZs8zP3eDsuL5laoxHQthWfPnq82+valLTCMG8kBwQy31AJ/T5MtJopPscB3qHCClPYME07IWlmQ==", "id"=>"3"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]]
+ [1m[36m (0.0ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.2ms)[0m DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 3]]
+ [1m[36m (1.4ms)[0m [1mcommit transaction[0m
+ Rendered tasks/destroy.html.erb within layouts/application (0.1ms)
+Completed 200 OK in 17ms (Views: 14.4ms | ActiveRecord: 1.7ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 15:22: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 (3.9ms)
+Completed 200 OK in 28ms (Views: 27.1ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 15:26:13 -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 19ms (Views: 16.8ms | ActiveRecord: 0.5ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-29 15:26:16 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (4.0ms)
+Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.0ms)
+
+ActionView::Template::Error (First argument in form cannot contain nil or be empty):
+ 9:
+ 10: -->
+ 11:
+ 12: <%= form_for @mytask, url: create_path do |f| %>
+ 13: <%= f.label :title %>
+ 14: <%= f.text_field :title %>
+ 15: <%= f.label :description %>
+ app/views/tasks/new.html.erb:12:in `_app_views_tasks_new_html_erb__2917095618304160232_70209917690320'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (49.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (36.6ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.9ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-29 15:26:52 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (1.7ms)
+Completed 200 OK in 20ms (Views: 15.8ms | ActiveRecord: 0.4ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 15:26:52 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 15:26:52 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 15:26:52 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 15:26:52 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 15:26:52 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 15:26:52 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 15:26:52 -0700
+
+
+Started POST "/tasks/create" for ::1 at 2016-09-29 15:33:46 -0700
+Processing by TasksController#new as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"VdNLLjr8TT4XiZ80ESEKuljfRjCmV9hrNM2x0aT9EZQWzYVmzaJy97N6dA818zRqQkEwu5uSCBQHVJoWJ9feXw==", "task"=>{"title"=>"Football", "description"=>"Let's watch the game on Sunday"}, "commit"=>"Create Task"}
+ Rendered tasks/new.html.erb within layouts/application (1.9ms)
+Completed 200 OK in 21ms (Views: 15.3ms | ActiveRecord: 0.5ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 15:34: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.8ms)
+Completed 200 OK in 28ms (Views: 26.5ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 15:36: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 (3.7ms)
+Completed 200 OK in 19ms (Views: 16.5ms | ActiveRecord: 0.4ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 15:36:03 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 15:36:03 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 15:36:03 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 15:36:03 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 15:36:03 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 15:36:03 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 15:36:04 -0700
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-29 15:36:08 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (6.8ms)
+Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.0ms)
+
+ActionView::Template::Error (First argument in form cannot contain nil or be empty):
+ 1:
Create a new Task
+ 2:
+ 7:
+ 8: <%end%>
+ 9:
<%= link_to('Add New Task', new_path) %>
+ app/views/tasks/index.html.erb:6:in `block in _app_views_tasks_index_html_erb___290184540284131632_70333550238940'
+ app/views/tasks/index.html.erb:2:in `_app_views_tasks_index_html_erb___290184540284131632_70333550238940'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (46.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (47.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.1ms)
+
+
+Started GET "/" for ::1 at 2016-09-29 16:55:14 -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 (5.2ms)
+Completed 200 OK in 230ms (Views: 227.7ms | ActiveRecord: 0.5ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 16:55:14 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 16:55:14 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 16:55:14 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 16:55:14 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 16:55:14 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 16:55:14 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 16:55:14 -0700
+
+
+Started GET "/tasks/show/14" for ::1 at 2016-09-29 16:55:18 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"14"}
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]]
+ Rendered tasks/show.html.erb within layouts/application (2.2ms)
+Completed 200 OK in 35ms (Views: 21.9ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 16:55:31 -0700
+Processing by TasksController#index as HTML
+ [1m[36mTask Load (2.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/index.html.erb within layouts/application (3.7ms)
+Completed 200 OK in 27ms (Views: 23.6ms | ActiveRecord: 2.2ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-29 16:55:32 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (36.7ms)
+Completed 500 Internal Server Error in 40ms (ActiveRecord: 0.0ms)
+
+ActionView::Template::Error (undefined method `checkbox' for #
+Did you mean? check_box):
+ 6: <%= f.label :description %>
+ 7: <%= f.text_area :description %>
+ 8: <%= f.label :finished %>
+ 9: <%= f.checkbox :finished %>
+ 10: <%= f.submit %>
+ 11: <%end%>
+ 12:
+ app/views/tasks/new.html.erb:9:in `block in _app_views_tasks_new_html_erb__1483846426362570989_70333537601260'
+ app/views/tasks/new.html.erb:3:in `_app_views_tasks_new_html_erb__1483846426362570989_70333537601260'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (45.1ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.2ms)
+
+
+Started GET "/" for ::1 at 2016-09-29 18:55: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 (1.2ms)
+Completed 200 OK in 14ms (Views: 12.9ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-29 18:56:51 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (9.1ms)
+Completed 200 OK in 32ms (Views: 31.8ms | ActiveRecord: 0.0ms)
+
+
+Started POST "/tasks/create" for ::1 at 2016-09-29 18:57:08 -0700
+Processing by TasksController#create as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"xHl+f6y3qRhQiPLuwPOM3uUq8RPachXactwaZo7boDmHZ7A3W+mW0fR7GdXkIbIO/7SHmOe3xaVBRTGhDfFv8g==", "task"=>{"title"=>"Test 1", "description"=>"go home", "finished"=>"0"}, "commit"=>"Create Task"}
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.4ms)[0m INSERT INTO "tasks" ("title", "description", "finished", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Test 1"], ["description", "go home"], ["finished", "f"], ["created_at", "2016-09-30 01:57:08.044227"], ["updated_at", "2016-09-30 01:57:08.044227"]]
+ [1m[36m (0.5ms)[0m [1mcommit transaction[0m
+Redirected to http://localhost:3000/
+Completed 302 Found in 4ms (ActiveRecord: 1.0ms)
+
+
+Started GET "/" for ::1 at 2016-09-29 18:57:08 -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.1ms)
+Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/show/15" for ::1 at 2016-09-29 19:06:09 -0700
+ [1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+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 (2.1ms)
+Completed 200 OK in 245ms (Views: 225.3ms | ActiveRecord: 0.4ms)
+
+
+Started GET "/tasks/15/edit" for ::1 at 2016-09-29 19:06:11 -0700
+Processing by TasksController#edit 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/edit.html.erb within layouts/application (1.1ms)
+Completed 200 OK in 28ms (Views: 26.9ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 19:11: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 (2.8ms)
+Completed 200 OK in 41ms (Views: 39.8ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/tasks/show/15" for ::1 at 2016-09-29 19:11:22 -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 (3.3ms)
+Completed 200 OK in 26ms (Views: 24.6ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/tasks/15/edit" for ::1 at 2016-09-29 19:11:24 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"15"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]]
+ Rendered tasks/edit.html.erb within layouts/application (1.2ms)
+Completed 200 OK in 24ms (Views: 22.8ms | ActiveRecord: 0.1ms)
+
+
+Started PUT "/tasks/15/update" for ::1 at 2016-09-29 19:11:44 -0700
+Processing by TasksController#update as HTML
+ Parameters: {"title"=>"Test 1", "description"=>"go home", "authenticity_token"=>"v380gMlrzStOqj0AZuwYqPcsLtxKAxqOQwLl+3vKH2b8YfrIPjXy4upZ1jtCPiZ47bJYV3fGyvFwm848+ODQrQ==", "finished"=>"true", "id"=>"15"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/update.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 13ms (Views: 11.6ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 19:11:56 -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 (5.5ms)
+Completed 200 OK in 28ms (Views: 26.1ms | ActiveRecord: 1.1ms)
+
+
+Started GET "/tasks/show/15" for ::1 at 2016-09-29 19:11:59 -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.0ms)
+Completed 200 OK in 45ms (Views: 44.4ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/15/edit" for ::1 at 2016-09-29 19:12:03 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"15"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]]
+ Rendered tasks/edit.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 27ms (Views: 25.3ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/15/edit" for ::1 at 2016-09-29 19:13:53 -0700
+Processing by TasksController#edit 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/edit.html.erb within layouts/application (0.5ms)
+Completed 200 OK in 12ms (Views: 11.5ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 19:13:53 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 19:13:53 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 19:13:53 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 19:13:53 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 19:13:53 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 19:13:53 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 19:13:53 -0700
+
+
+Started PUT "/tasks/15/update" for ::1 at 2016-09-29 19:14:00 -0700
+Processing by TasksController#update as HTML
+ Parameters: {"title"=>"Test 1", "description"=>"go home", "authenticity_token"=>"4/y4/KcQeJ5T3HyKOT2h/YYvwFBdUfOgDBn/9JJfTmig4na0UE5HV/cvl7Ed758tnLG222CUI98/gNQzEXWBow==", "finished"=>"false", "id"=>"15"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered tasks/update.html.erb within layouts/application (0.1ms)
+Completed 200 OK in 13ms (Views: 11.8ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 19:14:02 -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.7ms)
+Completed 200 OK in 21ms (Views: 20.1ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/tasks/show/15" for ::1 at 2016-09-29 19:14:05 -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 (1.6ms)
+Completed 200 OK in 36ms (Views: 35.0ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/show/15" for ::1 at 2016-09-29 19:14:08 -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.0ms)
+Completed 200 OK in 21ms (Views: 19.9ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/15/edit" for ::1 at 2016-09-29 19:16:00 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"15"}
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]]
+ Rendered tasks/edit.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 30ms (Views: 28.2ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/tasks/15/edit" for ::1 at 2016-09-29 19:17:07 -0700
+Processing by TasksController#edit 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/edit.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 23ms (Views: 16.1ms | ActiveRecord: 0.5ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 19:17:07 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 19:17:07 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 19:17:07 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 19:17:07 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 19:17:07 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 19:17:07 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 19:17:07 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 19:17:09 -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 28ms (Views: 25.9ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/tasks/show/7" for ::1 at 2016-09-29 19:17:11 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"7"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 7]]
+ Rendered tasks/show.html.erb within layouts/application (2.2ms)
+Completed 200 OK in 32ms (Views: 31.0ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/7/edit" for ::1 at 2016-09-29 19:17:13 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"7"}
+ [1m[35mTask Load (0.3ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 7]]
+ Rendered tasks/edit.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 26ms (Views: 24.7ms | ActiveRecord: 0.3ms)
+
+
+Started PUT "/tasks/7/update" for ::1 at 2016-09-29 19:17:18 -0700
+Processing by TasksController#update as HTML
+ Parameters: {"title"=>"Wednesday", "description"=>"Go to Mariners game on Tuesday", "authenticity_token"=>"nSAN6TgVk9y3TRWhP79uZq8MIEA4oF8ubRHGEQSuamzePsOhz0usFRO+/pobbVC2tZJWywVlj1FeiO3Wh4Slpw==", "finished"=>"", "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[36m (0.1ms)[0m [1mcommit transaction[0m
+ Rendered tasks/update.html.erb within layouts/application (0.0ms)
+Completed 200 OK in 15ms (Views: 11.7ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 19:17: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 (2.1ms)
+Completed 200 OK in 28ms (Views: 27.4ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/tasks/show/7" for ::1 at 2016-09-29 19:17:22 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"7"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 7]]
+ Rendered tasks/show.html.erb within layouts/application (2.3ms)
+Completed 200 OK in 28ms (Views: 26.6ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/7/edit" for ::1 at 2016-09-29 19:17:24 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"7"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 7]]
+ Rendered tasks/edit.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 25ms (Views: 23.6ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 19:19:38 -0700
+Processing by TasksController#index as HTML
+ [1m[36mTask Load (0.6ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/index.html.erb within layouts/application (5.8ms)
+Completed 200 OK in 26ms (Views: 24.8ms | ActiveRecord: 0.6ms)
+
+
+Started DELETE "/tasks/1/destroy" for ::1 at 2016-09-29 19:19:48 -0700
+Processing by TasksController#destroy as HTML
+ Parameters: {"authenticity_token"=>"iIMxSoakRn0ETQ6TErQPqppNH+c0MTFs+J+GPMlBKDTLnf8Ccfp5tKC+5ag2ZjF6gNNpbAn04RPLBq37Smvn/w==", "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.3ms)[0m DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 1]]
+ [1m[36m (1.8ms)[0m [1mcommit transaction[0m
+ Rendered tasks/destroy.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 17ms (Views: 13.0ms | ActiveRecord: 2.3ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 19:19:50 -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 (3.2ms)
+Completed 200 OK in 33ms (Views: 31.9ms | ActiveRecord: 0.3ms)
+
+
+Started DELETE "/tasks/15/destroy" for ::1 at 2016-09-29 19:19:56 -0700
+Processing by TasksController#destroy as HTML
+ Parameters: {"authenticity_token"=>"oHu9G/jSbtEhvEXOJbT5sbL7JVnKH3HSe18c4LxLJWDjZXNTD4xRGIVPrvUBZsdhqGVT0vfaoa1IxjcnP2Hqqw==", "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 [1mDELETE FROM "tasks" WHERE "tasks"."id" = ?[0m [["id", 15]]
+ [1m[35m (1.3ms)[0m commit transaction
+ Rendered tasks/destroy.html.erb within layouts/application (0.1ms)
+Completed 200 OK in 18ms (Views: 14.4ms | ActiveRecord: 1.6ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 19:19:58 -0700
+Processing by TasksController#index as HTML
+ [1m[36mTask Load (0.6ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/index.html.erb within layouts/application (4.3ms)
+Completed 200 OK in 34ms (Views: 32.5ms | ActiveRecord: 0.6ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 19:20: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 (5.1ms)
+Completed 200 OK in 23ms (Views: 20.0ms | ActiveRecord: 0.5ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 19:20:42 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 19:20:42 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 19:20:42 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 19:20:42 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 19:20:42 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 19:20:42 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 19:20:42 -0700
+
+
+Started DELETE "/tasks/14/destroy" for ::1 at 2016-09-29 19:20:48 -0700
+Processing by TasksController#destroy as HTML
+ Parameters: {"authenticity_token"=>"u/0kffmAXXcX4apU531e4+vQFeSNylhC97VrirZa8JX44+o1Dt5ivrMSQW/Dr2Az8U5jb7APiD3ELEBNNXA/Xg==", "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 [1mDELETE FROM "tasks" WHERE "tasks"."id" = ?[0m [["id", 14]]
+ [1m[35m (2.1ms)[0m commit transaction
+Redirected to http://localhost:3000/
+Completed 302 Found in 8ms (ActiveRecord: 2.7ms)
+
+
+Started GET "/" for ::1 at 2016-09-29 19:20:48 -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 14ms (Views: 12.9ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/" for ::1 at 2016-09-29 19:29:08 -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 80ms (Views: 79.4ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-c90648fbeff835925d772083ce67fe7fe0cf7b54b53e29b0cd51639ca6c9eadb.css?body=1" for ::1 at 2016-09-29 19:29:08 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 19:29:08 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 19:29:08 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 19:29:08 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 19:29:08 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 19:29:08 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 19:29:08 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 19:29:08 -0700
+
+
+Started GET "/" for ::1 at 2016-09-29 19:30: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.1ms)
+Completed 200 OK in 28ms (Views: 27.3ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-dfe8ff86c88855c8bc94aacd115a38a4c9f907b089704686033ef3874bdb0c68.css?body=1" for ::1 at 2016-09-29 19:30:11 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 19:30:11 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 19:30:11 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 19:30:11 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 19:30:11 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 19:30:11 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 19:30:11 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 19:30:11 -0700
+
+
+Started GET "/" for ::1 at 2016-09-29 19:32:14 -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 29ms (Views: 28.3ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-844639e2309d892d813450c8d28d7c5421c3afb81926ec81c51718a47a7aa741.css?body=1" for ::1 at 2016-09-29 19:32:14 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 19:32:14 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 19:32:14 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 19:32:14 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 19:32:14 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 19:32:14 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 19:32:14 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 19:32:14 -0700
+
+
+Started GET "/" for ::1 at 2016-09-29 19:32: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 32ms (Views: 31.5ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-5052fc0abff6cec2f9f82e04227ebcb13465ec30bad68173284724386ff39924.css?body=1" for ::1 at 2016-09-29 19:32:25 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 19:32:25 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 19:32:25 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 19:32:25 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 19:32:25 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 19:32:25 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 19:32:25 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 19:32:25 -0700
+
+
+Started GET "/" for ::1 at 2016-09-29 19:34:33 -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 28ms (Views: 27.1ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/assets/style.self-04cb70a81bd7cbfe967cfebdfe824d234e06f0af782ed65be89a71305ff9e508.css?body=1" for ::1 at 2016-09-29 19:34:33 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 19:34:33 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 19:34:33 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 19:34:33 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 19:34:33 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 19:34:33 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 19:34:33 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 19:34:33 -0700
+
+
+Started GET "/" for ::1 at 2016-09-29 19:35:54 -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.0ms)
+Completed 200 OK in 24ms (Views: 23.6ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-43be02d3c2ef81f94b1ac4903f177f6e51de773cda63f77f5c8133eebb29ded9.css?body=1" for ::1 at 2016-09-29 19:35:54 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 19:35:54 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 19:35:54 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 19:35:54 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 19:35:54 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 19:35:54 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 19:35:54 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 19:35:54 -0700
+
+
+Started GET "/" for ::1 at 2016-09-29 19:36:39 -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 23ms (Views: 22.8ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-c4e2147665eee7af15f5af12418edf902735d5d3499592f73c7c7e32e71d1f5c.css?body=1" for ::1 at 2016-09-29 19:36:39 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 19:36:39 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 19:36:39 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 19:36:39 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 19:36:39 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 19:36:39 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 19:36:39 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 19:36:39 -0700
+
+
+Started GET "/" for ::1 at 2016-09-29 19:38: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.9ms)
+Completed 200 OK in 24ms (Views: 23.2ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-a8820a747adc849ad841065f3677d518de032891d234f19f3d3a0a15f4e05404.css?body=1" for ::1 at 2016-09-29 19:38:00 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 19:38:00 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 19:38:00 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 19:38:00 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 19:38:00 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 19:38:00 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 19:38:00 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 19:38:00 -0700
+
+
+Started GET "/" for ::1 at 2016-09-29 19:39: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 (1.0ms)
+Completed 200 OK in 24ms (Views: 23.6ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-434d8639ff191d161b546bac2001690dc393086e63a4686399ec3e1176c71037.css?body=1" for ::1 at 2016-09-29 19:39:40 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 19:39:40 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 19:39:40 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 19:39:40 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 19:39:40 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 19:39:40 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 19:39:40 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 19:39:40 -0700
+
+
+Started GET "/" for ::1 at 2016-09-29 19:40:28 -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.0ms)
+Completed 200 OK in 24ms (Views: 23.0ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-3158fb480ef37b8230d623a8bce0e9d549bda7ab69d566a958ac7472a998cc27.css?body=1" for ::1 at 2016-09-29 19:40:28 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 19:40:28 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 19:40:28 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 19:40:28 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 19:40:28 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 19:40:28 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 19:40:28 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 19:40:28 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 19:41:00 -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 13ms (Views: 12.8ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/assets/style.self-3158fb480ef37b8230d623a8bce0e9d549bda7ab69d566a958ac7472a998cc27.css?body=1" for ::1 at 2016-09-29 19:41:00 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 19:41:00 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 19:41:00 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 19:41:00 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 19:41:00 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 19:41:00 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 19:41:00 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 19:41:00 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 19:43:20 -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 23ms (Views: 22.8ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-17cca8c121c4455141fd878f6425d24573c8bb9333aee34021668e6da96deb92.css?body=1" for ::1 at 2016-09-29 19:43:20 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 19:43:20 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 19:43:20 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 19:43:20 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 19:43:20 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 19:43:20 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 19:43:20 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 19:43:20 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 19:43:57 -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 24ms (Views: 24.0ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-c4de5e16bf502290a21d33fdc37db1c60696d7f3715d71c737530c22f34ed031.css?body=1" for ::1 at 2016-09-29 19:43:57 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 19:43:57 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 19:43:57 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 19:43:57 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 19:43:57 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 19:43:57 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 19:43:57 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 19:43:57 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 19:44:28 -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 25ms (Views: 24.2ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-17be8144067c372995eac8b738923b23feca37bf9da700dd9afc9ea7a7e4a504.css?body=1" for ::1 at 2016-09-29 19:44:28 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 19:44:28 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 19:44:28 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 19:44:28 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 19:44:28 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 19:44:28 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 19:44:28 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 19:44:28 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 19:49:00 -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.7ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-057a3a36ff8ad2a9d978c44ecfb168dd1230f245adcf15070ec289415809fa5d.css?body=1" for ::1 at 2016-09-29 19:49:00 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 19:49:00 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 19:49:00 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 19:49:00 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 19:49:00 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 19:49:00 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 19:49:00 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 19:49:00 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 19:50: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 (1.3ms)
+Completed 200 OK in 25ms (Views: 24.0ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-789b615c25e57b5224cdf122413d8d9ea88d9dd12be5d4bd973cefcc26bb41a1.css?body=1" for ::1 at 2016-09-29 19:50:25 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 19:50:25 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 19:50:25 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 19:50:25 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 19:50:25 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 19:50:25 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 19:50:25 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 19:50:25 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 19:50:54 -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 37ms (Views: 36.0ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-7e529da278f66c4537bfbe1e808968eef703c2820b17d9010a34fb1d6dea972c.css?body=1" for ::1 at 2016-09-29 19:50:54 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 19:50:54 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 19:50:54 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 19:50:54 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 19:50:54 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 19:50:54 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 19:50:54 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 19:50:54 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 19:51:38 -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.0ms)
+Completed 200 OK in 25ms (Views: 24.0ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-7bc92c8df344974b8adcaed81ecf4ba2ab29e5914dd4085f99c59348fcbc301d.css?body=1" for ::1 at 2016-09-29 19:51:38 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 19:51:38 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 19:51:38 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 19:51:38 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 19:51:38 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 19:51:38 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 19:51:38 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 19:51:38 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 19:55: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 (1.1ms)
+Completed 200 OK in 28ms (Views: 27.8ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-9b8b93c6b36d707b27846b81b1f532fc349beaa19398e683757166ac719ffe6e.css?body=1" for ::1 at 2016-09-29 19:55:15 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 19:55:15 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 19:55:15 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 19:55:15 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 19:55:15 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 19:55:15 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 19:55:15 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 19:55:15 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 19:56: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 (1.6ms)
+Completed 200 OK in 29ms (Views: 28.7ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/assets/style.self-372ad821760e0fc37e5f717f6dab41cf484a1917df22ae99361b0b70e856bd47.css?body=1" for ::1 at 2016-09-29 19:56:06 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 19:56:06 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 19:56:06 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 19:56:06 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 19:56:06 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 19:56:06 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 19:56:06 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 19:56:06 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 19:56:45 -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.1ms)
+Completed 200 OK in 26ms (Views: 25.1ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-3e118429c6e40ff121a8ffecb35d56b16d62abfa950eea7bfa3da5e70459095a.css?body=1" for ::1 at 2016-09-29 19:56:46 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 19:56:46 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 19:56:46 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 19:56:46 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 19:56:46 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 19:56:46 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 19:56:46 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 19:56:46 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 19:58:10 -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.1ms)
+Completed 200 OK in 26ms (Views: 25.1ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-aa1c9bd169bbe28cfbc65f493a50c8b52d20c739f80847665652f0a3498d9dfd.css?body=1" for ::1 at 2016-09-29 19:58:10 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 19:58:10 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 19:58:10 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 19:58:10 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 19:58:10 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 19:58:10 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 19:58:10 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 19:58:10 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 19:58:49 -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 25ms (Views: 24.5ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-ea7efbb481df582575c872e9b25fe021e5d7bed2b59421956631b5af53621d4a.css?body=1" for ::1 at 2016-09-29 19:58:49 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 19:58:49 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 19:58:49 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 19:58:49 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 19:58:49 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 19:58:49 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 19:58:49 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 19:58:49 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 19:59: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 23ms (Views: 22.3ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-0bd30f0c283b222c3f297e3a6bc0fb00d9f70d914adffa56cab23d22f3c256d7.css?body=1" for ::1 at 2016-09-29 19:59:06 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 19:59:06 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 19:59:06 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 19:59:06 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 19:59:06 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 19:59:06 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 19:59:06 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 19:59:06 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:00:54 -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 22ms (Views: 21.2ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-6535ff1283fd7f7102865e40da4094d461a71e0e1a79f498fa0838ad0435d66f.css?body=1" for ::1 at 2016-09-29 20:00:54 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:00:54 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:00:54 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:00:54 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:00:54 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:00:54 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:00:54 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:00:54 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:03:37 -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.0ms)
+Completed 200 OK in 23ms (Views: 22.9ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-4d748803f3636104b47840d50af72b3f25f8dc876f1fbfe999bdff8950d7d178.css?body=1" for ::1 at 2016-09-29 20:03:37 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:03:37 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:03:37 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:03:37 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:03:37 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:03:37 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:03:37 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:03:37 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:06:13 -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 22ms (Views: 21.3ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-cc38a3a305cd24cc0c4f099e67a2a21d81269ec3835f4de3df1b4630f364c2d6.css?body=1" for ::1 at 2016-09-29 20:06:13 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:06:13 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:06:13 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:06:13 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:06:13 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:06:13 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:06:13 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:06:13 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:06:28 -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 23ms (Views: 22.1ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:06:28 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:06:28 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:06:28 -0700
+
+
+Started GET "/assets/style.self-4203af75eb675fe990efd8762a033fc4f86e3aeecadc7d5b3daab77df00055b1.css?body=1" for ::1 at 2016-09-29 20:06:28 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:06:28 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:06:28 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:06:28 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:06:28 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:06: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.9ms)
+Completed 200 OK in 32ms (Views: 31.5ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-a8325ee1f62b31700bee2e4d5a1bfbdf58af47139b63dd4dff9acdf4f822fe4f.css?body=1" for ::1 at 2016-09-29 20:06:40 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:06:40 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:06:41 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:06:41 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:06:41 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:06:41 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:06:41 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:06:41 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:06: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 (1.1ms)
+Completed 200 OK in 26ms (Views: 25.2ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-2b5a5b81b9460afcc75991563cdde6a53b13427a56b9a87e3fc8c1f7f790b58c.css?body=1" for ::1 at 2016-09-29 20:06:53 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:06:53 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:06:53 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:06:53 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:06:53 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:06:53 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:06:53 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:06:53 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:07: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 (1.0ms)
+Completed 200 OK in 31ms (Views: 30.0ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-c780b1ef10142d17db0a7d18b8c81f04b0ecb274595c25546aea7d8bca6e37fe.css?body=1" for ::1 at 2016-09-29 20:07:24 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:07:24 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:07:24 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:07:24 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:07:24 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:07:24 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:07:24 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:07:24 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:09:47 -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 (11.4ms)
+Completed 200 OK in 326ms (Views: 316.6ms | ActiveRecord: 0.6ms)
+
+
+Started GET "/assets/style.self-1e34a82a304eda390adc5cbd320bad7a8ac96383a192e57ea31ad2ed63743386.css?body=1" for ::1 at 2016-09-29 20:09:48 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:09:48 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:09:48 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:09:48 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:09:48 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:09:48 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:09:48 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:09:48 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:09:51 -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 27ms (Views: 25.7ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:09: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 (1.4ms)
+Completed 200 OK in 13ms (Views: 12.7ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-1e34a82a304eda390adc5cbd320bad7a8ac96383a192e57ea31ad2ed63743386.css?body=1" for ::1 at 2016-09-29 20:09:55 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:09:55 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:09:55 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:09:55 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:09:55 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:09:55 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:09:55 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:09:55 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:10: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 24ms (Views: 23.9ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-6a74b09354999a85c6576340b8a572ec0cc9c24be62f4d3e334ae69bb293fda8.css?body=1" for ::1 at 2016-09-29 20:10:53 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:10:53 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:10:53 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:10:53 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:10:53 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:10:53 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:10:53 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:10:53 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:12:48 -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 24ms (Views: 23.4ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-79b881442409493c831da9e848c5a0560f13b399f569665583478a08c5257007.css?body=1" for ::1 at 2016-09-29 20:12:48 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:12:48 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:12:48 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:12:48 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:12:48 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:12:48 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:12:48 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:12:48 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:14: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.9ms)
+Completed 200 OK in 23ms (Views: 22.3ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-6e3cc5d1831b0cd0a70efd1fd2b85c00360cd20fcb4dcc172bee81c4987723a6.css?body=1" for ::1 at 2016-09-29 20:14:04 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:14:04 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:14:04 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:14:04 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:14:04 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:14:04 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:14:04 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:14:04 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:14:26 -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 27ms (Views: 26.6ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-1668e09b86b2836a3173fa35e63a0e20c79c791f542d81239d137b69d2d6cbfd.css?body=1" for ::1 at 2016-09-29 20:14:26 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:14:26 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:14:26 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:14:26 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:14:26 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:14:26 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:14:26 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:14:26 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:14:48 -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 "/assets/style.self-74c9cbb51029c5eeb0012944f69ff5843782205413c2a77cc277ff95c7abb813.css?body=1" for ::1 at 2016-09-29 20:14:48 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:14:49 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:14:49 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:14:49 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:14:49 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:14:49 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:14:49 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:14:49 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:15:11 -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 30ms (Views: 29.6ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-ae81e69fd3fff17d574117752952a1fbffc57b2e2dc617e30ecacd76b47ce950.css?body=1" for ::1 at 2016-09-29 20:15:11 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:15:11 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:15:11 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:15:11 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:15:11 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:15:11 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:15:11 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:15:11 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:15:36 -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.1ms)
+Completed 200 OK in 22ms (Views: 22.0ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-2e97793449a31c7f982f7e011b2e22a8952618c97f0b7bea908575ea514f7013.css?body=1" for ::1 at 2016-09-29 20:15:36 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:15:36 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:15:36 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:15:36 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:15:36 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:15:36 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:15:36 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:15:36 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:16:06 -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 31ms (Views: 30.2ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:16:06 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:16:06 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:16:06 -0700
+
+
+Started GET "/assets/style.self-2dd4509955ae2024206b13b3bd6744a2071331ae14f7cd9ef017f869c1a6c28e.css?body=1" for ::1 at 2016-09-29 20:16:06 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:16:06 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:16:06 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:16:06 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:16:06 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:17:24 -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 (6.3ms)
+Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms)
+
+ActionView::Template::Error (undefined method `id' for nil:NilClass):
+ 4:
+ 5:
+ 9:
+ 10: <%end%>
+ app/views/tasks/index.html.erb:7:in `block in _app_views_tasks_index_html_erb___1271821969783829656_70355541094720'
+ app/views/tasks/index.html.erb:3:in `_app_views_tasks_index_html_erb___1271821969783829656_70355541094720'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (54.1ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (48.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (103.1ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:17:47 -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 (2.0ms)
+Completed 200 OK in 13ms (Views: 12.1ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-2dd4509955ae2024206b13b3bd6744a2071331ae14f7cd9ef017f869c1a6c28e.css?body=1" for ::1 at 2016-09-29 20:17:47 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:17:47 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:17:47 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:17:47 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:17:47 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:17:47 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:17:47 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:17:47 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:18: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 (1.1ms)
+Completed 200 OK in 25ms (Views: 24.6ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-9cdeabbd1f044a95e1d2bd6d55062c3f83098704d7ac296d25ee1b07e46ee329.css?body=1" for ::1 at 2016-09-29 20:18:33 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:18:33 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:18:33 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:18:33 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:18:33 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:18:33 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:18:33 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:18:33 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:18: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 (1.2ms)
+Completed 200 OK in 24ms (Views: 23.7ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-d35ad145e0acd1c7b36af035dd9ad00208f10cced4d7f77c9a965aa8a3dea672.css?body=1" for ::1 at 2016-09-29 20:18:53 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:18:53 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:18:53 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:18:53 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:18:53 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:18:53 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:18:53 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:18:53 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:19:55 -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.5ms)
+Completed 200 OK in 26ms (Views: 25.4ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-4effab697da107ac0ee557a7d0bf8b18e4e5891dd158243fbae4e30ea51d12e6.css?body=1" for ::1 at 2016-09-29 20:19:55 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:19:55 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:19:55 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:19:55 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:19:55 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:19:55 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:19:55 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:19:55 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:20:56 -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 23ms (Views: 22.3ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-c3f17a0a58ce27bfc62e3e0aab6ecbbcc52d9c4278165f4f1bc9cf680c6782ed.css?body=1" for ::1 at 2016-09-29 20:20:56 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:20:56 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:20:56 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:20:56 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:20:56 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:20:56 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:20:56 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:20:56 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:21:48 -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 30ms (Views: 29.7ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/assets/style.self-6d33239a74e5034612738e03c76782dac35b7b6a647f3000618e7d4031045159.css?body=1" for ::1 at 2016-09-29 20:21:48 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:21:48 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:21:49 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:21:49 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:21:49 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:21:49 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:21:49 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:21:49 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:21: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 (1.1ms)
+Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-6d33239a74e5034612738e03c76782dac35b7b6a647f3000618e7d4031045159.css?body=1" for ::1 at 2016-09-29 20:21:53 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:21:53 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:21:53 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:21:53 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:21:53 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:21:53 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:21:53 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:21:53 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:22:12 -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.1ms)
+Completed 200 OK in 31ms (Views: 30.7ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-b1215a6be926b30c82179ba372fce8e688dd535707f59d91c71051013f81582b.css?body=1" for ::1 at 2016-09-29 20:22:12 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:22:12 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:22:12 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:22:12 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:22:12 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:22:12 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:22:12 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:22:12 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:22:32 -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 26ms (Views: 25.0ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-b4745f0fbb90890ee9d0bc0c25fac963490185b250b40b4abc2a6ca6830e9de6.css?body=1" for ::1 at 2016-09-29 20:22:32 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:22:32 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:22:32 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:22:32 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:22:32 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:22:32 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:22:32 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:22:32 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:22:55 -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.0ms)
+Completed 200 OK in 30ms (Views: 29.2ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-db3dd869e3aea922715452a6096310befeba62a110a8d6115eafcfa013cd1502.css?body=1" for ::1 at 2016-09-29 20:22:55 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:22:55 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:22:55 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:22:55 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:22:55 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:22:55 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:22:55 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:22:55 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:23:13 -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.1ms)
+Completed 200 OK in 25ms (Views: 24.0ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-30e8be90c58c3d36ab797300879ce5dd748238b158aee8c3d2e47764f3a028c8.css?body=1" for ::1 at 2016-09-29 20:23:13 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:23:13 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:23:13 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:23:13 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:23:13 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:23:13 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:23:13 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:23:13 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:23: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 (1.0ms)
+Completed 200 OK in 24ms (Views: 23.8ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-fa0d8f2b53ce10b1ca0d531a1443ef2111664af89c3247fb5e262bcdc11d5420.css?body=1" for ::1 at 2016-09-29 20:23:27 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:23:27 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:23:27 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:23:27 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:23:27 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:23:27 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:23:27 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:23:27 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:24:09 -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 24ms (Views: 23.3ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-6952800d04342db46de76ea8558bb32a681ae2d0edeead7e668ac3e16baf4089.css?body=1" for ::1 at 2016-09-29 20:24:09 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:24:09 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:24:09 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:24:09 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:24:09 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:24:09 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:24:09 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:24:09 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:24:28 -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.0ms)
+Completed 200 OK in 26ms (Views: 25.5ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:24:28 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:24:28 -0700
+
+
+Started GET "/assets/style.self-ef8e1859ee2b0172937afcca1c1b74cc818a15d67280b6f300c999f6f1d41d2e.css?body=1" for ::1 at 2016-09-29 20:24:28 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:24:28 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:24:28 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:24:28 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:24:28 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:24:28 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:25: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.2ms)
+Completed 200 OK in 24ms (Views: 23.7ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/assets/style.self-d90324ad80ff3899742801a1215504f10c8eee0d59d06b1724ade42712481f0a.css?body=1" for ::1 at 2016-09-29 20:25:35 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:25:36 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:25:36 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:25:36 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:25:36 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:25:36 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:25:36 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:25:36 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:26:42 -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.4ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-ef8e1859ee2b0172937afcca1c1b74cc818a15d67280b6f300c999f6f1d41d2e.css?body=1" for ::1 at 2016-09-29 20:26:42 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:26:42 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:26:42 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:26:42 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:26:42 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:26:42 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:26:42 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:26:42 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:27:31 -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 25ms (Views: 24.1ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-81610bcf3fad029cf425bfa677787b6387d819861c7626dc2ebd085d81a2cb2b.css?body=1" for ::1 at 2016-09-29 20:27:31 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:27:31 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:27:31 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:27:31 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:27:31 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:27:31 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:27:31 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:27:31 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:27: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 (1.0ms)
+Completed 200 OK in 31ms (Views: 30.0ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-30ee17244a46029c57a821faab0ca36c5d481777c61dd11bd2a1882106c32886.css?body=1" for ::1 at 2016-09-29 20:27:53 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:27:53 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:27:53 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:27:53 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:27:53 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:27:53 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:27:53 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:27:53 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:28:09 -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 16ms (Views: 15.4ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-81610bcf3fad029cf425bfa677787b6387d819861c7626dc2ebd085d81a2cb2b.css?body=1" for ::1 at 2016-09-29 20:28:09 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:28:09 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:28:09 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:28:09 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:28:09 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:28:09 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:28:09 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:28:09 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:29: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.9ms)
+Completed 200 OK in 25ms (Views: 24.6ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-36e18a838bcbdee746334d8127bc3f2c8160907a4ac831fa9cddff21adee6e38.css?body=1" for ::1 at 2016-09-29 20:29:06 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:29:06 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:29:06 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:29:06 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:29:06 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:29:06 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:29:06 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:29:06 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:29:20 -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 25ms (Views: 24.8ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-19eca6562c97406e649d506e9ce22aaaf9f09d73d58dc9d4774507655ce82fc0.css?body=1" for ::1 at 2016-09-29 20:29:20 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:29:20 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:29:20 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:29:20 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:29:20 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:29:20 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:29:20 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:29:20 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-29 20:29: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 (1.2ms)
+Completed 200 OK in 25ms (Views: 24.7ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-3b4200cdba509c67c3d37e3531fa5a263150bbc1149bb0d16900500b17f4ff7f.css?body=1" for ::1 at 2016-09-29 20:29:44 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:29:44 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:29:44 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:29:44 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:29:44 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:29:44 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:29:44 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 20:29:44 -0700
+
+
+Started GET "/" for ::1 at 2016-09-30 10:12:02 -0700
+ [1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+
+SyntaxError (/Users/sabrinawilbert/ada/TaskListRails/app/controllers/tasks_controller.rb:60: syntax error, unexpected end-of-input, expecting keyword_end):
+ app/controllers/tasks_controller.rb:60: syntax error, unexpected end-of-input, expecting keyword_end
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (66.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms)
+ Rendered /Users/sabrinawilbert/.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/sabrinawilbert/.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/sabrinawilbert/.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/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (49.4ms)
+ Rendered /Users/sabrinawilbert/.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/sabrinawilbert/.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/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (108.5ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 10:12:27 -0700
+Processing by TasksController#index as HTML
+ [1m[35mTask Load (0.5ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered tasks/index.html.erb within layouts/application (12.1ms)
+Completed 200 OK in 473ms (Views: 470.2ms | ActiveRecord: 0.8ms)
+
+
+Started GET "/assets/style.self-3b4200cdba509c67c3d37e3531fa5a263150bbc1149bb0d16900500b17f4ff7f.css?body=1" for ::1 at 2016-09-30 10:12:27 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:12:27 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:12:27 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:12:27 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:12:27 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 10:12:27 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:12:27 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:12:27 -0700
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-30 10:12:34 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (35.2ms)
+Completed 200 OK in 59ms (Views: 57.6ms | ActiveRecord: 0.0ms)
+
+
+Started POST "/tasks/create" for ::1 at 2016-09-30 10:12:52 -0700
+Processing by TasksController#create as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"+3Ss5k61gP4so2CNKMsoATwkeQd7rTv/D3KnU9U9dim4amKuueu/N4hQi7YMGRbRJroPjEZo64A864yUVhe54g==", "task"=>{"title"=>"Friday", "description"=>"Take assessment", "finished"=>"0"}, "commit"=>"Create Task"}
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.6ms)[0m INSERT INTO "tasks" ("title", "description", "finished", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Friday"], ["description", "Take assessment"], ["finished", "f"], ["created_at", "2016-09-30 17:12:52.479111"], ["updated_at", "2016-09-30 17:12:52.479111"]]
+ [1m[36m (0.6ms)[0m [1mcommit transaction[0m
+Redirected to http://localhost:3000/
+Completed 302 Found in 11ms (ActiveRecord: 1.2ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 10:12:52 -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 14ms (Views: 13.5ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/16/edit" for ::1 at 2016-09-30 10:12:55 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"16"}
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 16]]
+ Rendered tasks/edit.html.erb within layouts/application (1.4ms)
+Completed 200 OK in 35ms (Views: 21.7ms | ActiveRecord: 0.3ms)
+
+
+Started PUT "/tasks/16/update" for ::1 at 2016-09-30 10:13:00 -0700
+Processing by TasksController#update as HTML
+ Parameters: {"title"=>"Friday", "description"=>"Take assessment", "authenticity_token"=>"XIQnX8GikWLaq4NxxahqatlVPn4ecQFMMpHgzf5ECPIfmukXNvyuq35YaErhelS6w8tI9SO00TMBCMsKfW7HOQ==", "finished"=>"false", "id"=>"16"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]]
+ [1m[36m (0.0ms)[0m [1mbegin transaction[0m
+ [1m[35m (0.0ms)[0m commit transaction
+ Rendered tasks/update.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 15ms (Views: 13.4ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-30 10:13:32 -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.2ms)
+Completed 200 OK in 32ms (Views: 29.6ms | ActiveRecord: 0.5ms)
+ [1m[36mTask Load (1.4ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+
+
+Started GET "/tasks/16/edit" for ::1 at 2016-09-30 10:18:35 -0700
+ [1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"16"}
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]]
+ Rendered tasks/edit.html.erb within layouts/application (1.8ms)
+Completed 200 OK in 227ms (Views: 205.8ms | ActiveRecord: 0.4ms)
+
+
+Started GET "/assets/style.self-3b4200cdba509c67c3d37e3531fa5a263150bbc1149bb0d16900500b17f4ff7f.css?body=1" for ::1 at 2016-09-30 10:18:35 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:18:35 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:18:35 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:18:35 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:18:35 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 10:18:35 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:18:35 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:18:35 -0700
+
+
+Started GET "/" for ::1 at 2016-09-30 10:18:37 -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 (2.3ms)
+Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/7/edit" for ::1 at 2016-09-30 10:18:43 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"7"}
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 7]]
+ Rendered tasks/edit.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 45ms (Views: 43.5ms | ActiveRecord: 0.2ms)
+
+
+Started PUT "/tasks/7/update" for ::1 at 2016-09-30 10:18:48 -0700
+Processing by TasksController#update as HTML
+ Parameters: {"title"=>"Wednesday", "description"=>"Go to Mariners game on Tuesday", "authenticity_token"=>"KANOB/RWMR9N+1fVeyD0f3NVBoQMyW0fxJ1n+WIEMcVrHYBPAwgO1ukIvO5f8sqvactwDzEMvWD3BEw+4S7+Dg==", "finished"=>"", "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[36m (0.1ms)[0m [1mcommit transaction[0m
+Redirected to http://localhost:3000/
+Completed 302 Found in 6ms (ActiveRecord: 0.3ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 10:18:48 -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 (2.4ms)
+Completed 200 OK in 29ms (Views: 28.6ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/7/edit" for ::1 at 2016-09-30 10:18:55 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"7"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 7]]
+ Rendered tasks/edit.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 38ms (Views: 35.8ms | ActiveRecord: 0.1ms)
+ [1m[36mTask Load (1.3ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+
+
+Started GET "/" for ::1 at 2016-09-30 10:21:23 -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.1ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered tasks/index.html.erb within layouts/application (12.1ms)
+Completed 200 OK in 210ms (Views: 201.8ms | ActiveRecord: 0.4ms)
+
+
+Started GET "/tasks/7/edit" for ::1 at 2016-09-30 10:21:27 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"7"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 7]]
+ Rendered tasks/edit.html.erb within layouts/application (1.3ms)
+Completed 200 OK in 44ms (Views: 30.2ms | ActiveRecord: 0.2ms)
+
+
+Started PUT "/tasks/7/update" for ::1 at 2016-09-30 10:21:37 -0700
+Processing by TasksController#update as HTML
+ Parameters: {"title"=>"Wednesday", "description"=>"Go to Mariners game on Saturday", "authenticity_token"=>"MTqzgOM3L7J6E7O85HldlV2wgyxMF6+MfTxqMqcRGAhyJH3IFGkQe97gWIfAq2NFRy71p3HSf/NOpUH1JDvXww==", "id"=>"7"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 7]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.7ms)[0m UPDATE "tasks" SET "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", "Go to Mariners game on Saturday"], ["updated_at", "2016-09-30 17:21:37.114955"], ["id", 7]]
+ [1m[36m (1.7ms)[0m [1mcommit transaction[0m
+Redirected to http://localhost:3000/
+Completed 302 Found in 11ms (ActiveRecord: 2.5ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 10:21:37 -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 (3.3ms)
+Completed 200 OK in 20ms (Views: 19.5ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/tasks/7/edit" for ::1 at 2016-09-30 10:21:40 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"7"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 7]]
+ Rendered tasks/edit.html.erb within layouts/application (1.0ms)
+Completed 200 OK in 50ms (Views: 49.0ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-30 10:25: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.5ms)
+Completed 200 OK in 34ms (Views: 33.7ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-30 11:05:48 -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 (2.6ms)
+Completed 200 OK in 24ms (Views: 23.5ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-3b4200cdba509c67c3d37e3531fa5a263150bbc1149bb0d16900500b17f4ff7f.css?body=1" for ::1 at 2016-09-30 11:05:48 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 11:05:48 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 11:05:48 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 11:05:48 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 11:05:48 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 11:05:48 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 11:05:48 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 11:05:48 -0700
+
+
+Started GET "/tasks/7/edit" for ::1 at 2016-09-30 11:05:50 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"7"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 7]]
+ Rendered tasks/edit.html.erb within layouts/application (30.4ms)
+Completed 200 OK in 48ms (Views: 47.4ms | ActiveRecord: 0.1ms)
+
+
+Started PATCH "/tasks/7/edit" for ::1 at 2016-09-30 11:06:03 -0700
+
+ActionController::RoutingError (No route matches [PATCH] "/tasks/7/edit"):
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
+ railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app'
+ railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged'
+ railties (4.2.7) lib/rails/rack/logger.rb:20:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call'
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
+ activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call'
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
+ railties (4.2.7) lib/rails/engine.rb:518:in `call'
+ railties (4.2.7) lib/rails/application.rb:165:in `call'
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
+ /Users/sabrinawilbert/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/sabrinawilbert/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/sabrinawilbert/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.1ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (73.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms)
+ Rendered /Users/sabrinawilbert/.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/sabrinawilbert/.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/sabrinawilbert/.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/sabrinawilbert/.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/sabrinawilbert/.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/sabrinawilbert/.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/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (106.7ms)
+
+
+Started PATCH "/tasks/7/edit" for ::1 at 2016-09-30 11:06:56 -0700
+
+ActionController::RoutingError (No route matches [PATCH] "/tasks/7/edit"):
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
+ railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app'
+ railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged'
+ railties (4.2.7) lib/rails/rack/logger.rb:20:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call'
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
+ activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call'
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
+ railties (4.2.7) lib/rails/engine.rb:518:in `call'
+ railties (4.2.7) lib/rails/application.rb:165:in `call'
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
+ /Users/sabrinawilbert/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/sabrinawilbert/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/sabrinawilbert/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (67.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms)
+ Rendered /Users/sabrinawilbert/.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/sabrinawilbert/.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/sabrinawilbert/.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/sabrinawilbert/.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/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.8ms)
+ Rendered /Users/sabrinawilbert/.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/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (103.4ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 11:07:00 -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 (9.5ms)
+Completed 200 OK in 39ms (Views: 36.0ms | ActiveRecord: 0.5ms)
+
+
+Started GET "/tasks/7/edit" for ::1 at 2016-09-30 11:07:04 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"7"}
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 7]]
+ Rendered tasks/edit.html.erb within layouts/application (4.8ms)
+Completed 200 OK in 39ms (Views: 36.5ms | ActiveRecord: 0.2ms)
+
+
+Started PATCH "/tasks/7/edit" for ::1 at 2016-09-30 11:07:12 -0700
+
+ActionController::RoutingError (No route matches [PATCH] "/tasks/7/edit"):
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
+ railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app'
+ railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged'
+ railties (4.2.7) lib/rails/rack/logger.rb:20:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call'
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
+ activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call'
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
+ railties (4.2.7) lib/rails/engine.rb:518:in `call'
+ railties (4.2.7) lib/rails/application.rb:165:in `call'
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
+ /Users/sabrinawilbert/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/sabrinawilbert/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/sabrinawilbert/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (64.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms)
+ Rendered /Users/sabrinawilbert/.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/sabrinawilbert/.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/sabrinawilbert/.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/sabrinawilbert/.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/sabrinawilbert/.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/sabrinawilbert/.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/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (94.0ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 11:08:40 -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.6ms)
+Completed 200 OK in 13ms (Views: 12.3ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/7/edit" for ::1 at 2016-09-30 11:08:43 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"7"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 7]]
+ Rendered tasks/edit.html.erb within layouts/application (5.4ms)
+Completed 200 OK in 31ms (Views: 29.4ms | ActiveRecord: 0.1ms)
+
+
+Started PATCH "/tasks/7/update" for ::1 at 2016-09-30 11:08:49 -0700
+
+ActionController::RoutingError (No route matches [PATCH] "/tasks/7/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/sabrinawilbert/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/sabrinawilbert/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/sabrinawilbert/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (59.2ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms)
+ Rendered /Users/sabrinawilbert/.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/sabrinawilbert/.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/sabrinawilbert/.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/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.5ms)
+ Rendered /Users/sabrinawilbert/.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/sabrinawilbert/.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/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.3ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 11:09:35 -0700
+
+SyntaxError (/Users/sabrinawilbert/ada/TaskListRails/config/routes.rb:13: syntax error, unexpected tIDENTIFIER, expecting keyword_end
+ patch 'tasks/update' => 'tasks#update' as: 'update'
+ ^):
+ config/routes.rb:13: syntax error, unexpected tIDENTIFIER, expecting keyword_end
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (43.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms)
+ Rendered /Users/sabrinawilbert/.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/sabrinawilbert/.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 (1.3ms)
+ Rendered /Users/sabrinawilbert/.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/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.9ms)
+ Rendered /Users/sabrinawilbert/.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/sabrinawilbert/.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/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.3ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 11:10:07 -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.6ms)
+Completed 200 OK in 22ms (Views: 20.3ms | ActiveRecord: 0.5ms)
+
+
+Started GET "/assets/style.self-3b4200cdba509c67c3d37e3531fa5a263150bbc1149bb0d16900500b17f4ff7f.css?body=1" for ::1 at 2016-09-30 11:10:07 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 11:10:07 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 11:10:07 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 11:10:07 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 11:10:07 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 11:10:07 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 11:10:07 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 11:10:07 -0700
+
+
+Started GET "/tasks/7/edit" for ::1 at 2016-09-30 11:10:10 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"7"}
+ [1m[35mTask Load (0.3ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 7]]
+ Rendered tasks/edit.html.erb within layouts/application (20.8ms)
+Completed 200 OK in 44ms (Views: 41.1ms | ActiveRecord: 0.3ms)
+
+
+Started PATCH "/tasks/7/update" for ::1 at 2016-09-30 11:10:16 -0700
+Processing by TasksController#update as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"stU1hGFefPcEuMWxE4XuwL10FVXOzY8V4lmN577EIojxy/vMlgBDPqBLLoo3V9AQp+pj3vMIX2rRwKYgPe7tQw==", "task"=>{"title"=>"Saturday", "description"=>"Go to Mariners game on Saturday", "finished"=>"0"}, "commit"=>"Update Task", "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.7ms)[0m [1mUPDATE "tasks" SET "title" = ?, "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ?[0m [["title", nil], ["description", nil], ["updated_at", "2016-09-30 18:10:16.204950"], ["id", 7]]
+ [1m[35m (0.7ms)[0m commit transaction
+Redirected to http://localhost:3000/
+Completed 302 Found in 6ms (ActiveRecord: 1.6ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 11:10:16 -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.6ms)
+Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.1ms)
+
+
+Started DELETE "/tasks/7/destroy" for ::1 at 2016-09-30 11:11:33 -0700
+Processing by TasksController#destroy as HTML
+ Parameters: {"authenticity_token"=>"XLe+ClDl82Baewwme/bWha4IKVS5ND3/ps8mfK3d1HUfqXBCp7vMqf6I5x1fJOhVtJZf34Tx7YCVVg27Lvcbvg==", "id"=>"7"}
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 7]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.2ms)[0m DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 7]]
+ [1m[36m (1.3ms)[0m [1mcommit transaction[0m
+Redirected to http://localhost:3000/
+Completed 302 Found in 11ms (ActiveRecord: 2.2ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 11:11:33 -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 16ms (Views: 14.9ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/tasks/16/edit" for ::1 at 2016-09-30 11:11:36 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"16"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 16]]
+ Rendered tasks/edit.html.erb within layouts/application (4.9ms)
+Completed 200 OK in 28ms (Views: 26.5ms | ActiveRecord: 0.1ms)
+
+
+Started PATCH "/tasks/16/update" for ::1 at 2016-09-30 11:11:44 -0700
+Processing by TasksController#update as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"aURya45mTOLz6FJjEX7+277tfE7h0rWPoy5whu4W4isqWrwjeThzK1cbuVg1rMALpHMKxdwXZfCQt1tBbTwt4A==", "task"=>{"title"=>"Friday", "description"=>"Take assessment!!!!", "finished"=>"0"}, "commit"=>"Update Task", "id"=>"16"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.3ms)[0m UPDATE "tasks" SET "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", "Take assessment!!!!"], ["updated_at", "2016-09-30 18:11:44.182978"], ["id", 16]]
+ [1m[36m (0.7ms)[0m [1mcommit transaction[0m
+Redirected to http://localhost:3000/
+Completed 302 Found in 4ms (ActiveRecord: 1.2ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 11:11:44 -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 15ms (Views: 14.0ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/16/edit" for ::1 at 2016-09-30 11:11:54 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"16"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 16]]
+ Rendered tasks/edit.html.erb within layouts/application (3.9ms)
+Completed 200 OK in 29ms (Views: 27.7ms | ActiveRecord: 0.1ms)
+
+
+Started PATCH "/tasks/16/update" for ::1 at 2016-09-30 11:11:58 -0700
+Processing by TasksController#update as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"LlgmQwczJGK56g84Vh4sfV99T2QzaWJrvYZSkOT3UpttRugL8G0bqx0Z5ANyzBKtReM57w6sshSOH3lXZ92dUA==", "task"=>{"title"=>"Friday", "description"=>"Take assessment!!!!", "finished"=>"1"}, "commit"=>"Update Task", "id"=>"16"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]]
+ [1m[36m (0.0ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.2ms)[0m UPDATE "tasks" SET "finished" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["finished", "t"], ["updated_at", "2016-09-30 18:11:58.693732"], ["id", 16]]
+ [1m[36m (0.5ms)[0m [1mcommit transaction[0m
+ [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 00:00:00.000000"], ["updated_at", "2016-09-30 18:11:58.696366"], ["id", 16]]
+ [1m[35m (0.5ms)[0m commit transaction
+Redirected to http://localhost:3000/
+Completed 302 Found in 6ms (ActiveRecord: 1.7ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 11:11: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 (1.1ms)
+Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/16/edit" for ::1 at 2016-09-30 11:12:02 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"16"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]]
+ Rendered tasks/edit.html.erb within layouts/application (5.3ms)
+Completed 200 OK in 26ms (Views: 24.8ms | ActiveRecord: 0.1ms)
+ [1m[36mTask Load (1.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+
+
+Started GET "/" for ::1 at 2016-09-30 11:18:05 -0700
+ [1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+Processing by TasksController#index as HTML
+Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms)
+
+SyntaxError (/Users/sabrinawilbert/ada/TaskListRails/app/models/task.rb:9: syntax error, unexpected end-of-input, expecting keyword_end):
+ app/models/task.rb:9: syntax error, unexpected end-of-input, expecting keyword_end
+ app/controllers/tasks_controller.rb:5:in `index'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.6ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (44.1ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms)
+ Rendered /Users/sabrinawilbert/.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/sabrinawilbert/.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/sabrinawilbert/.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/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (46.0ms)
+ Rendered /Users/sabrinawilbert/.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/sabrinawilbert/.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/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (99.8ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 11:18:52 -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.5ms)
+Completed 200 OK in 238ms (Views: 236.1ms | ActiveRecord: 0.5ms)
+
+
+Started GET "/assets/style.self-3b4200cdba509c67c3d37e3531fa5a263150bbc1149bb0d16900500b17f4ff7f.css?body=1" for ::1 at 2016-09-30 11:18:53 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 11:18:53 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 11:18:53 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 11:18:53 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 11:18:53 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 11:18:53 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 11:18:53 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 11:18:53 -0700
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-30 11:18:58 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (23.3ms)
+Completed 200 OK in 60ms (Views: 59.7ms | ActiveRecord: 0.0ms)
+
+
+Started POST "/tasks/create" for ::1 at 2016-09-30 11:19:15 -0700
+Processing by TasksController#create as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"8TFoqUpJaRrxbt1Hi97BTV0IXnRiv/41hm8ALQt4aPayL6bhvRdW01WdNnyvDP+dR5Yo/196Lkq19ivqiFKnPQ==", "task"=>{"title"=>"Sunday", "description"=>"Watch homework video", "finished"=>"0"}, "commit"=>"Create Task"}
+ [1m[36m (1.0ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("title", "description", "finished", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Sunday"], ["description", "Watch homework video"], ["finished", "f"], ["created_at", "2016-09-30 18:19:15.607610"], ["updated_at", "2016-09-30 18:19:15.607610"]]
+ [1m[36m (0.9ms)[0m [1mcommit transaction[0m
+Redirected to http://localhost:3000/
+Completed 302 Found in 10ms (ActiveRecord: 2.3ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 11:19: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 (2.6ms)
+Completed 200 OK in 25ms (Views: 24.2ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/17/edit" for ::1 at 2016-09-30 11:19:19 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"17"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 17]]
+ Rendered tasks/edit.html.erb within layouts/application (4.9ms)
+Completed 200 OK in 33ms (Views: 18.3ms | ActiveRecord: 0.1ms)
+
+
+Started PATCH "/tasks/17/update" for ::1 at 2016-09-30 11:19:26 -0700
+Processing by TasksController#update as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZPkDK+zd9XaRU1DAABQzOPZTKeaa58NMpePURzol1bYn581jG4PKvzWgu/skxg3o7M1fbaciEzOWev+AuQ8afQ==", "task"=>{"title"=>"Sunday", "description"=>"Watch homework video", "finished"=>"1"}, "commit"=>"Update Task", "id"=>"17"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 17]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.4ms)[0m UPDATE "tasks" SET "finished" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["finished", "t"], ["updated_at", "2016-09-30 18:19:26.269287"], ["id", 17]]
+ [1m[36m (0.5ms)[0m [1mcommit transaction[0m
+Completed 500 Internal Server Error in 14ms (ActiveRecord: 1.1ms)
+
+NoMethodError (undefined method `complete_date' for Task(Table doesn't exist):Class
+Did you mean? compute_type):
+ app/controllers/tasks_controller.rb:34:in `update'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (44.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms)
+ Rendered /Users/sabrinawilbert/.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/sabrinawilbert/.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.2ms)
+ Rendered /Users/sabrinawilbert/.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/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.3ms)
+ Rendered /Users/sabrinawilbert/.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/sabrinawilbert/.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/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.0ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 11:27: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 (5.1ms)
+Completed 200 OK in 20ms (Views: 18.0ms | ActiveRecord: 0.5ms)
+
+
+Started GET "/tasks/17/edit" for ::1 at 2016-09-30 11:27:59 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"17"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 17]]
+ Rendered tasks/edit.html.erb within layouts/application (5.0ms)
+Completed 200 OK in 33ms (Views: 31.6ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-30 11:28:06 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (4.8ms)
+Completed 200 OK in 30ms (Views: 29.5ms | ActiveRecord: 0.0ms)
+
+
+Started POST "/tasks/create" for ::1 at 2016-09-30 11:28:20 -0700
+Processing by TasksController#create as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"xQy79Pyn43cHPeF/AeqYbEDlg2nEqDcSrvktcWrlnKCGEnW8C/ncvqPOCkQlOKa8Wnv14vlt522dYAa26c9Taw==", "task"=>{"title"=>"Monday", "description"=>"go to school", "finished"=>"0"}, "commit"=>"Create Task"}
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.5ms)[0m [1mINSERT INTO "tasks" ("title", "description", "finished", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["title", "Monday"], ["description", "go to school"], ["finished", "f"], ["created_at", "2016-09-30 18:28:20.359779"], ["updated_at", "2016-09-30 18:28:20.359779"]]
+ [1m[35m (0.6ms)[0m commit transaction
+Redirected to http://localhost:3000/
+Completed 302 Found in 5ms (ActiveRecord: 1.2ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 11:28:20 -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.8ms)
+Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/18/edit" for ::1 at 2016-09-30 11:28:23 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"18"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 18]]
+ Rendered tasks/edit.html.erb within layouts/application (3.7ms)
+Completed 200 OK in 37ms (Views: 36.2ms | ActiveRecord: 0.1ms)
+
+
+Started PATCH "/tasks/18/update" for ::1 at 2016-09-30 11:28:26 -0700
+Processing by TasksController#update as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"4MrKhkkCY+BFCpysE+GWoj38ESy27hUDdxAlT5bwvSKj1ATOvlxcKeH5d5c3M6hyJ2Jnp4srxXxEiQ6IFdpy6Q==", "task"=>{"title"=>"Monday", "description"=>"go to school", "finished"=>"1"}, "commit"=>"Update Task", "id"=>"18"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 18]]
+ [1m[35m (0.0ms)[0m begin transaction
+ [1m[36mSQL (0.2ms)[0m [1mUPDATE "tasks" SET "finished" = ?, "updated_at" = ? WHERE "tasks"."id" = ?[0m [["finished", "t"], ["updated_at", "2016-09-30 18:28:26.169847"], ["id", 18]]
+ [1m[35m (0.6ms)[0m commit transaction
+Redirected to http://localhost:3000/
+Completed 302 Found in 4ms (ActiveRecord: 1.1ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 11:28: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 (1.9ms)
+Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms)
+ [1m[36mTask Load (1.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+
+
+Started GET "/tasks/17/edit" for ::1 at 2016-09-30 11:30:07 -0700
+ [1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"17"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 17]]
+ Rendered tasks/edit.html.erb within layouts/application (16.3ms)
+Completed 200 OK in 222ms (Views: 202.1ms | ActiveRecord: 0.4ms)
+
+
+Started PATCH "/tasks/17/update" for ::1 at 2016-09-30 11:30:10 -0700
+Processing by TasksController#update as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"um5PNiSRkrNfKAsXzF3EGP/NPLN8w8k6AQ6ptEtYT4j5cIF+08+tevvb4Czoj/rI5VNKOEEGGUUyl4JzyHKAQw==", "task"=>{"title"=>"Sunday", "description"=>"Watch homework video", "finished"=>"0"}, "commit"=>"Update Task", "id"=>"17"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 17]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.4ms)[0m [1mUPDATE "tasks" SET "finished" = ?, "updated_at" = ? WHERE "tasks"."id" = ?[0m [["finished", "f"], ["updated_at", "2016-09-30 18:30:10.706261"], ["id", 17]]
+ [1m[35m (0.5ms)[0m commit transaction
+Redirected to http://localhost:3000/
+Completed 302 Found in 5ms (ActiveRecord: 1.1ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 11:30:10 -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 (2.3ms)
+Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/18/edit" for ::1 at 2016-09-30 11:30:13 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"18"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 18]]
+ Rendered tasks/edit.html.erb within layouts/application (2.7ms)
+Completed 200 OK in 30ms (Views: 28.6ms | ActiveRecord: 0.1ms)
+
+
+Started PATCH "/tasks/18/update" for ::1 at 2016-09-30 11:30:16 -0700
+Processing by TasksController#update as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"rwJFfHlp1P8PcWTVT003lf9zoYh2Z2auMvzLoXa/bozsHIs0jjfrNquCj+5rnwlF5e3XA0uittEBZeBm9ZWhRw==", "task"=>{"title"=>"Monday", "description"=>"go to school", "finished"=>"0"}, "commit"=>"Update Task", "id"=>"18"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 18]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.5ms)[0m [1mUPDATE "tasks" SET "finished" = ?, "updated_at" = ? WHERE "tasks"."id" = ?[0m [["finished", "f"], ["updated_at", "2016-09-30 18:30:16.415114"], ["id", 18]]
+ [1m[35m (1.5ms)[0m commit transaction
+Redirected to http://localhost:3000/
+Completed 302 Found in 6ms (ActiveRecord: 2.2ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 11:30:16 -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 (2.9ms)
+Completed 200 OK in 34ms (Views: 33.3ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/17/edit" for ::1 at 2016-09-30 11:30:18 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"17"}
+ [1m[35mTask Load (0.3ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 17]]
+ Rendered tasks/edit.html.erb within layouts/application (3.3ms)
+Completed 200 OK in 41ms (Views: 39.4ms | ActiveRecord: 0.3ms)
+
+
+Started PATCH "/tasks/17/update" for ::1 at 2016-09-30 11:30:21 -0700
+Processing by TasksController#update as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"1Yaln8/suBnJ0ftws3rkZUyFvm9scQCcYAht+Lulw7iWmGvXOLKH0G0iEEuXqNq1VhvI5FG00ONTkUY/OI8Mcw==", "task"=>{"title"=>"Sunday", "description"=>"Watch homework video", "finished"=>"1"}, "commit"=>"Update Task", "id"=>"17"}
+ [1m[36mTask Load (0.5ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 17]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.3ms)[0m [1mUPDATE "tasks" SET "finished" = ?, "updated_at" = ? WHERE "tasks"."id" = ?[0m [["finished", "t"], ["updated_at", "2016-09-30 18:30:21.764899"], ["id", 17]]
+ [1m[35m (0.6ms)[0m commit transaction
+Redirected to http://localhost:3000/
+Completed 302 Found in 5ms (ActiveRecord: 1.4ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 11:30:21 -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 (3.2ms)
+Completed 200 OK in 26ms (Views: 24.9ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/18/edit" for ::1 at 2016-09-30 11:30:23 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"18"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 18]]
+ Rendered tasks/edit.html.erb within layouts/application (4.1ms)
+Completed 200 OK in 32ms (Views: 30.3ms | ActiveRecord: 0.1ms)
+
+
+Started PATCH "/tasks/18/update" for ::1 at 2016-09-30 11:30:25 -0700
+Processing by TasksController#update as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"cXUKQjVwqjmlY73bBuk/XKJiM3O9Ne4B+hn1r7JdZP0ya8QKwi6V8AGQVuAiOwGMuPxF+IDwPn7JgN5oMXerNg==", "task"=>{"title"=>"Monday", "description"=>"go to school", "finished"=>"1"}, "commit"=>"Update Task", "id"=>"18"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 18]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.5ms)[0m [1mUPDATE "tasks" SET "finished" = ?, "updated_at" = ? WHERE "tasks"."id" = ?[0m [["finished", "t"], ["updated_at", "2016-09-30 18:30:25.875428"], ["id", 18]]
+ [1m[35m (0.7ms)[0m commit transaction
+Redirected to http://localhost:3000/
+Completed 302 Found in 5ms (ActiveRecord: 1.3ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 11:30: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 (1.9ms)
+Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.1ms)
+ [1m[36mTask Load (5.6ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks"
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ [1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+Migrating to RemoveColumn (20160930192918)
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36m (0.0ms)[0m [1mrollback transaction[0m
+ [1m[36mTask Load (2.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+
+
+Started DELETE "/tasks/16/destroy" for ::1 at 2016-09-30 13:41:11 -0700
+ [1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
+
+ActiveRecord::PendingMigrationError (
+
+Migrations are pending. To resolve this issue, run:
+
+ bin/rake db:migrate RAILS_ENV=development
+
+):
+ activerecord (4.2.7) lib/active_record/migration.rb:392:in `check_pending!'
+ activerecord (4.2.7) lib/active_record/migration.rb:373: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/sabrinawilbert/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/sabrinawilbert/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/sabrinawilbert/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (45.6ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms)
+ Rendered /Users/sabrinawilbert/.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/sabrinawilbert/.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/sabrinawilbert/.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/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (46.6ms)
+ Rendered /Users/sabrinawilbert/.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/sabrinawilbert/.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/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (103.4ms)
+ [1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+Migrating to RemoveColumn (20160930192918)
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36m (0.1ms)[0m [1mrollback transaction[0m
+ [1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+Migrating to RemoveColumn (20160930192918)
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36m (0.1ms)[0m [1mrollback transaction[0m
+ [1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+Migrating to RemoveColumn (20160930192918)
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36m (0.4ms)[0m [1mCREATE TEMPORARY TABLE "atasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" text, "completed_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "Completed" boolean, "finished" boolean) [0m
+ [1m[35m (0.1ms)[0m SELECT * FROM "tasks"
+ [1m[36m (0.1ms)[0m [1mINSERT INTO "atasks" ("id","title","description","completed_at","created_at","updated_at","Completed","finished") VALUES (16, 'Friday', 'Take assessment!!!!', '2016-09-30 00:00:00.000000', '2016-09-30 17:12:52.479111', '2016-09-30 18:11:58.696366', NULL, 't')[0m
+ [1m[35m (0.0ms)[0m INSERT INTO "atasks" ("id","title","description","completed_at","created_at","updated_at","Completed","finished") VALUES (17, 'Sunday', 'Watch homework video', NULL, '2016-09-30 18:19:15.607610', '2016-09-30 18:30:21.764899', NULL, 't')
+ [1m[36m (0.0ms)[0m [1mINSERT INTO "atasks" ("id","title","description","completed_at","created_at","updated_at","Completed","finished") VALUES (18, 'Monday', 'go to school', NULL, '2016-09-30 18:28:20.359779', '2016-09-30 18:30:25.875428', NULL, 't')[0m
+ [1m[35m (0.4ms)[0m DROP TABLE "tasks"
+ [1m[36m (0.1ms)[0m [1mCREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" text, "completed_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "finished" boolean) [0m
+ [1m[35m (0.1ms)[0m SELECT * FROM "atasks"
+ [1m[36m (0.1ms)[0m [1mINSERT INTO "tasks" ("id","title","description","completed_at","created_at","updated_at","finished") VALUES (16, 'Friday', 'Take assessment!!!!', '2016-09-30 00:00:00.000000', '2016-09-30 17:12:52.479111', '2016-09-30 18:11:58.696366', 't')[0m
+ [1m[35m (0.0ms)[0m INSERT INTO "tasks" ("id","title","description","completed_at","created_at","updated_at","finished") VALUES (17, 'Sunday', 'Watch homework video', NULL, '2016-09-30 18:19:15.607610', '2016-09-30 18:30:21.764899', 't')
+ [1m[36m (0.0ms)[0m [1mINSERT INTO "tasks" ("id","title","description","completed_at","created_at","updated_at","finished") VALUES (18, 'Monday', 'go to school', NULL, '2016-09-30 18:28:20.359779', '2016-09-30 18:30:25.875428', 't')[0m
+ [1m[35m (0.3ms)[0m DROP TABLE "atasks"
+ [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160930192918"]]
+ [1m[35m (1.7ms)[0m commit transaction
+ [1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+
+
+Started GET "/" for ::1 at 2016-09-30 13:44:52 -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.1ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered tasks/index.html.erb within layouts/application (6.1ms)
+Completed 200 OK in 31ms (Views: 28.3ms | ActiveRecord: 0.5ms)
+
+
+Started GET "/assets/style.self-3b4200cdba509c67c3d37e3531fa5a263150bbc1149bb0d16900500b17f4ff7f.css?body=1" for ::1 at 2016-09-30 13:44:52 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 13:44:52 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 13:44:52 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 13:44:52 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 13:44:52 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 13:44:52 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 13:44:52 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 13:44:52 -0700
+ [1m[36mTask Load (1.3ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+
+
+Started GET "/tasks/18/edit" for ::1 at 2016-09-30 13:47:05 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"18"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 18]]
+ Rendered tasks/edit.html.erb within layouts/application (4.4ms)
+Completed 200 OK in 37ms (Views: 35.4ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-30 13:47: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 (5.3ms)
+Completed 200 OK in 46ms (Views: 45.4ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/tasks/16/edit" for ::1 at 2016-09-30 13:47:20 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"16"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 16]]
+ Rendered tasks/edit.html.erb within layouts/application (4.1ms)
+Completed 200 OK in 37ms (Views: 35.6ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-30 13:47:24 -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 (6.3ms)
+Completed 200 OK in 50ms (Views: 48.8ms | ActiveRecord: 0.4ms)
+
+
+Started GET "/tasks/17/edit" for ::1 at 2016-09-30 13:47:26 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"17"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 17]]
+ Rendered tasks/edit.html.erb within layouts/application (5.0ms)
+Completed 200 OK in 27ms (Views: 25.8ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-30 13:47: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 (5.6ms)
+Completed 200 OK in 31ms (Views: 29.6ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/tasks/16/edit" for ::1 at 2016-09-30 13:47:33 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"16"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 16]]
+ Rendered tasks/edit.html.erb within layouts/application (7.0ms)
+Completed 200 OK in 49ms (Views: 47.6ms | ActiveRecord: 0.1ms)
+
+
+Started PATCH "/tasks/16/update" for ::1 at 2016-09-30 13:47:39 -0700
+Processing by TasksController#update as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"oCF4uLVUVlYQZMhxjFoU9ETTjk/eDi59j2TBuLSpglnjP7bwQgppn7SXI0qoiCokXk34xOPL/gK8/ep/N4NNkg==", "task"=>{"title"=>"Friday", "description"=>"Take assessment!!!!", "finished"=>"0"}, "commit"=>"Update Task", "id"=>"16"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]]
+ [1m[36m (0.0ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.2ms)[0m UPDATE "tasks" SET "finished" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["finished", "f"], ["updated_at", "2016-09-30 20:47:39.605002"], ["id", 16]]
+ [1m[36m (0.8ms)[0m [1mcommit transaction[0m
+Redirected to http://localhost:3000/
+Completed 302 Found in 4ms (ActiveRecord: 1.2ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 13:47:39 -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.6ms)
+Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/17/edit" for ::1 at 2016-09-30 13:47:42 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"17"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 17]]
+ Rendered tasks/edit.html.erb within layouts/application (3.3ms)
+Completed 200 OK in 27ms (Views: 25.9ms | ActiveRecord: 0.1ms)
+
+
+Started PATCH "/tasks/17/update" for ::1 at 2016-09-30 13:47:44 -0700
+Processing by TasksController#update as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"wRhKj+jpqkYcopsjgYpxTSnij/LuBVU5MgyWtSkqWA6CBoTHH7eVj7hRcBilWE+dM3z5edPAhUYBlb1yqgCXxQ==", "task"=>{"title"=>"Sunday", "description"=>"Watch homework video", "finished"=>"0"}, "commit"=>"Update Task", "id"=>"17"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 17]]
+ [1m[36m (0.0ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.2ms)[0m UPDATE "tasks" SET "finished" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["finished", "f"], ["updated_at", "2016-09-30 20:47:44.668773"], ["id", 17]]
+ [1m[36m (0.6ms)[0m [1mcommit transaction[0m
+Redirected to http://localhost:3000/
+Completed 302 Found in 4ms (ActiveRecord: 0.9ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 13:47:44 -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 (2.0ms)
+Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/18/edit" for ::1 at 2016-09-30 13:47:47 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"18"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 18]]
+ Rendered tasks/edit.html.erb within layouts/application (2.8ms)
+Completed 200 OK in 32ms (Views: 31.0ms | ActiveRecord: 0.1ms)
+
+
+Started PATCH "/tasks/18/update" for ::1 at 2016-09-30 13:47:48 -0700
+Processing by TasksController#update as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"CDEoeQAaPmTuIG9htInjb+kKRJrH5UEVAU64dQQ6nh1LL+Yx90QBrUrThFqQW92/85QyEfogkWoy15OyhxBR1g==", "task"=>{"title"=>"Monday", "description"=>"go to school", "finished"=>"1"}, "commit"=>"Update Task", "id"=>"18"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 18]]
+ [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-30 13:47:48 -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.8ms)
+Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-30 13:47:50 -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.5ms)
+Completed 200 OK in 29ms (Views: 28.3ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/tasks/18/edit" for ::1 at 2016-09-30 13:47:52 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"18"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 18]]
+ Rendered tasks/edit.html.erb within layouts/application (4.3ms)
+Completed 200 OK in 29ms (Views: 28.4ms | ActiveRecord: 0.1ms)
+
+
+Started PATCH "/tasks/18/update" for ::1 at 2016-09-30 13:47:55 -0700
+Processing by TasksController#update as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"7yn92TbK2z0f3XpCTfsYUm9kz8lfulTUNkb4O1jAiOmsNzORwZTk9LsukXlpKSaCdfq5QmJ/hKsF39P82+pHIg==", "task"=>{"title"=>"Monday", "description"=>"go to school", "finished"=>"0"}, "commit"=>"Update Task", "id"=>"18"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 18]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.3ms)[0m UPDATE "tasks" SET "finished" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["finished", "f"], ["updated_at", "2016-09-30 20:47:55.775162"], ["id", 18]]
+ [1m[36m (1.8ms)[0m [1mcommit transaction[0m
+Redirected to http://localhost:3000/
+Completed 302 Found in 5ms (ActiveRecord: 2.2ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 13:47: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 (1.7ms)
+Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/18/edit" for ::1 at 2016-09-30 13:47:57 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"18"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 18]]
+ Rendered tasks/edit.html.erb within layouts/application (2.5ms)
+Completed 200 OK in 27ms (Views: 26.3ms | ActiveRecord: 0.1ms)
+ [1m[35mTask Load (0.3ms)[0m SELECT "tasks".* FROM "tasks"
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-30 13:48:31 -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 (3.6ms)
+Completed 200 OK in 36ms (Views: 32.4ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/tasks/16/edit" for ::1 at 2016-09-30 13:48:33 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"16"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 16]]
+ Rendered tasks/edit.html.erb within layouts/application (3.9ms)
+Completed 200 OK in 32ms (Views: 31.3ms | ActiveRecord: 0.1ms)
+
+
+Started PATCH "/tasks/16/update" for ::1 at 2016-09-30 13:48:37 -0700
+Processing by TasksController#update as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"qIU8ybpfUjAdrZilrDOJlNAyzDd8nTq/JVrTjYK0wN7rm/KBTQFt+blec56I4bdEyqy6vEFY6sAWw/hKAZ4PFQ==", "task"=>{"title"=>"Friday", "description"=>"Take assessment!!!!", "finished"=>"1"}, "commit"=>"Update Task", "id"=>"16"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.3ms)[0m UPDATE "tasks" SET "finished" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["finished", "t"], ["updated_at", "2016-09-30 20:48:37.024108"], ["id", 16]]
+ [1m[36m (0.6ms)[0m [1mcommit transaction[0m
+Redirected to http://localhost:3000/
+Completed 302 Found in 4ms (ActiveRecord: 1.0ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 13:48:37 -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 15ms (Views: 14.0ms | ActiveRecord: 0.2ms)
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+
+
+Started GET "/tasks/17/edit" for ::1 at 2016-09-30 13:49:04 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"17"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 17]]
+ Rendered tasks/edit.html.erb within layouts/application (5.5ms)
+Completed 200 OK in 30ms (Views: 28.6ms | ActiveRecord: 0.1ms)
+
+
+Started PATCH "/tasks/17/update" for ::1 at 2016-09-30 13:49:08 -0700
+Processing by TasksController#update as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZlaVdzbK9XSW5C3v/CkvOmnk7L2r4Zm2d590d+7rdEwlSFs/wZTKvTIXxtTY+xHqc3qaNpYkSclEBl+wbcG7hw==", "task"=>{"title"=>"Sunday", "description"=>"Watch homework video", "finished"=>"1"}, "commit"=>"Update Task", "id"=>"17"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 17]]
+ [1m[36m (0.0ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.2ms)[0m UPDATE "tasks" SET "finished" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["finished", "t"], ["updated_at", "2016-09-30 20:49:08.610909"], ["id", 17]]
+ [1m[36m (0.5ms)[0m [1mcommit transaction[0m
+Redirected to http://localhost:3000/
+Completed 302 Found in 4ms (ActiveRecord: 0.9ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 13:49:08 -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.8ms)
+Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.1ms)
+ [1m[35mTask Load (0.4ms)[0m SELECT "tasks".* FROM "tasks"
+
+
+Started GET "/tasks/17/edit" for ::1 at 2016-09-30 13:52:28 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"17"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 17]]
+ Rendered tasks/edit.html.erb within layouts/application (2.6ms)
+Completed 200 OK in 34ms (Views: 28.4ms | ActiveRecord: 0.6ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-30 13:52: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 (5.7ms)
+Completed 200 OK in 32ms (Views: 30.6ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-30 13:52:35 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (4.7ms)
+Completed 200 OK in 25ms (Views: 24.8ms | ActiveRecord: 0.0ms)
+
+
+Started POST "/tasks/create" for ::1 at 2016-09-30 13:52:58 -0700
+Processing by TasksController#create as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"V6BKgvRjQN9I1UVZR2QdsJfQvS4pUk6IS96tBRG1QRwUvoTKAz1/FuwmrmJjtiNgjU7LpRSXnvd4R4bCkp+O1w==", "task"=>{"title"=>"Tuesday", "description"=>"All done!!", "finished"=>"0"}, "commit"=>"Create Task"}
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.4ms)[0m INSERT INTO "tasks" ("title", "description", "finished", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Tuesday"], ["description", "All done!!"], ["finished", "f"], ["created_at", "2016-09-30 20:52:58.610200"], ["updated_at", "2016-09-30 20:52:58.610200"]]
+ [1m[36m (1.4ms)[0m [1mcommit transaction[0m
+Redirected to http://localhost:3000/
+Completed 302 Found in 5ms (ActiveRecord: 1.9ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 13:52: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 (3.3ms)
+Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/tasks/19/edit" for ::1 at 2016-09-30 13:53:01 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"19"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 19]]
+ Rendered tasks/edit.html.erb within layouts/application (5.8ms)
+Completed 200 OK in 27ms (Views: 26.4ms | ActiveRecord: 0.1ms)
+
+
+Started PATCH "/tasks/19/update" for ::1 at 2016-09-30 13:53:05 -0700
+Processing by TasksController#update as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"H/Q1p5l3STqCH1tPO/5y2Sf2nL4m+h0h3RoVfU+4txNc6vvvbil28ybssHQfLEwJPWjqNRs/zV7ugz66zJJ42A==", "task"=>{"title"=>"Tuesday", "description"=>"All done!!", "finished"=>"1"}, "commit"=>"Update Task", "id"=>"19"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 19]]
+ [1m[36m (0.0ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.3ms)[0m UPDATE "tasks" SET "finished" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["finished", "t"], ["updated_at", "2016-09-30 20:53:05.087290"], ["id", 19]]
+ [1m[36m (0.5ms)[0m [1mcommit transaction[0m
+ [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 20:53:05.089197"], ["updated_at", "2016-09-30 20:53:05.089691"], ["id", 19]]
+ [1m[35m (0.6ms)[0m commit transaction
+Redirected to http://localhost:3000/
+Completed 302 Found in 6ms (ActiveRecord: 1.9ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 13:53:05 -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 (2.1ms)
+Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/19/edit" for ::1 at 2016-09-30 13:53:06 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"19"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 19]]
+ Rendered tasks/edit.html.erb within layouts/application (3.2ms)
+Completed 200 OK in 28ms (Views: 27.1ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-30 13:53:09 -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 45ms (Views: 44.2ms | ActiveRecord: 0.2ms)
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-30 14:26:32 -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 (27.4ms)
+Completed 500 Internal Server Error in 30ms (ActiveRecord: 0.1ms)
+
+ActionView::Template::Error (undefined local variable or method `finished' for #<#:0x007f84b90c1558>):
+ 7:
+ 8:
+ 10:
+ app/views/tasks/index.html.erb:7:in `block in _app_views_tasks_index_html_erb___3923968748051282854_70104008822560'
+ app/views/tasks/index.html.erb:3:in `_app_views_tasks_index_html_erb___3923968748051282854_70104008822560'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (47.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms)
+ Rendered /Users/sabrinawilbert/.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/sabrinawilbert/.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/sabrinawilbert/.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/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.7ms)
+ Rendered /Users/sabrinawilbert/.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/sabrinawilbert/.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/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (94.0ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-30 14:35:02 -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 (3.4ms)
+Completed 200 OK in 23ms (Views: 22.4ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-3b4200cdba509c67c3d37e3531fa5a263150bbc1149bb0d16900500b17f4ff7f.css?body=1" for ::1 at 2016-09-30 14:35:02 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 14:35:02 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 14:35:02 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 14:35:02 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 14:35:02 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 14:35:02 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 14:35:02 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 14:35:02 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-30 14:37:31 -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 (3.0ms)
+Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms)
+
+ActionView::Template::Error (First argument in form cannot contain nil or be empty):
+ 6:
+ 9:
+ 10: <% if @mytask.finished
+ 11: button_label = "Not complete"
+ 12: else
+ 13: button_label = "Task complete"
+ app/views/tasks/index.html.erb:10:in `block in _app_views_tasks_index_html_erb___3923968748051282854_70103997272800'
+ app/views/tasks/index.html.erb:3:in `_app_views_tasks_index_html_erb___3923968748051282854_70103997272800'
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (47.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms)
+ Rendered /Users/sabrinawilbert/.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/sabrinawilbert/.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/sabrinawilbert/.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/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.3ms)
+ Rendered /Users/sabrinawilbert/.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/sabrinawilbert/.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/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (83.4ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-30 15:18: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 (4.5ms)
+Completed 200 OK in 16ms (Views: 15.9ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-3b4200cdba509c67c3d37e3531fa5a263150bbc1149bb0d16900500b17f4ff7f.css?body=1" for ::1 at 2016-09-30 15:18:07 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:18:08 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:18:08 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:18:08 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 15:18:08 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:18:08 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:18:08 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:18:08 -0700
+
+
+Started PATCH "/tasks/19/toggle_completed" for ::1 at 2016-09-30 15:18:17 -0700
+Processing by TasksController#toggle_completed as HTML
+ Parameters: {"authenticity_token"=>"TIPMyH40XTmYAxVp/CG13j6HpyYbBdWJLhWRrgV902QPnQKAiWpi8Dzw/lLY84sOJBnRrSbABfYdjLpphlccrw==", "id"=>"19"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 19]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.9ms)[0m UPDATE "tasks" SET "finished" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["finished", "f"], ["updated_at", "2016-09-30 22:18:17.040891"], ["id", 19]]
+ [1m[36m (3.9ms)[0m [1mcommit transaction[0m
+Redirected to http://localhost:3000/
+Completed 302 Found in 8ms (ActiveRecord: 4.9ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 15:18: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 (3.0ms)
+Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/19/edit" for ::1 at 2016-09-30 15:18:20 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"19"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 19]]
+ Rendered tasks/edit.html.erb within layouts/application (3.5ms)
+Completed 200 OK in 31ms (Views: 30.0ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 15:19:32 -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 (3.5ms)
+Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-3b4200cdba509c67c3d37e3531fa5a263150bbc1149bb0d16900500b17f4ff7f.css?body=1" for ::1 at 2016-09-30 15:19:32 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:19:32 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 15:19:32 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:19:32 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:19:32 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:19:32 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:19:32 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:19:32 -0700
+
+
+Started PATCH "/tasks/16/toggle_completed" for ::1 at 2016-09-30 15:19:37 -0700
+Processing by TasksController#toggle_completed as HTML
+ Parameters: {"authenticity_token"=>"hvUlIJ8au/DUlrv52QXTrPAQ0HOyrAimbLyviAzLguvF6+toaESEOXBlUML91+186o6m+I9p2NlfJYRPj+FNIA==", "id"=>"16"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 16]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.9ms)[0m [1mUPDATE "tasks" SET "finished" = ?, "updated_at" = ? WHERE "tasks"."id" = ?[0m [["finished", "f"], ["updated_at", "2016-09-30 22:19:37.374485"], ["id", 16]]
+ [1m[35m (0.5ms)[0m commit transaction
+Redirected to http://localhost:3000/
+Completed 302 Found in 4ms (ActiveRecord: 1.5ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 15:19:37 -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 (10.0ms)
+Completed 200 OK in 26ms (Views: 25.4ms | ActiveRecord: 0.1ms)
+
+
+Started PATCH "/tasks/17/toggle_completed" for ::1 at 2016-09-30 15:19:40 -0700
+Processing by TasksController#toggle_completed as HTML
+ Parameters: {"authenticity_token"=>"Ka5bde0CYDXH0m6xn+T39yNSmyMsWXzfA6YYkxdLSDZqsJU9Glxf/GMhhYq7NsknOcztqBGcrKAwPzNUlGGH/Q==", "id"=>"17"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 17]]
+ [1m[36m (0.0ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.2ms)[0m UPDATE "tasks" SET "finished" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["finished", "t"], ["updated_at", "2016-09-30 22:19:40.228081"], ["id", 17]]
+ [1m[36m (1.5ms)[0m [1mcommit transaction[0m
+Redirected to http://localhost:3000/
+Completed 302 Found in 5ms (ActiveRecord: 1.8ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 15:19: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 (3.1ms)
+Completed 200 OK in 15ms (Views: 14.9ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/17/edit" for ::1 at 2016-09-30 15:19:41 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"17"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 17]]
+ Rendered tasks/edit.html.erb within layouts/application (4.7ms)
+Completed 200 OK in 34ms (Views: 31.5ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/tasks/16/edit" for ::1 at 2016-09-30 15:19:45 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"16"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]]
+ Rendered tasks/edit.html.erb within layouts/application (3.2ms)
+Completed 200 OK in 28ms (Views: 27.0ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 15:25:50 -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 (3.8ms)
+Completed 200 OK in 49ms (Views: 48.4ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-1b96c47913821ef5f8cc17f55826d4a62cbc2a1c77969fa6f120b8a8d968b4ff.css?body=1" for ::1 at 2016-09-30 15:25:50 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:25:50 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:25:50 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:25:50 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 15:25:50 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:25:50 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:25:50 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:25:50 -0700
+
+
+Started GET "/" for ::1 at 2016-09-30 15:26: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 (3.1ms)
+Completed 200 OK in 28ms (Views: 27.1ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-195fa7df5f0c1dbc0fa11103408208a8adb5078df0554321e0651dc263a24ab1.css?body=1" for ::1 at 2016-09-30 15:26:35 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:26:35 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:26:35 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:26:35 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 15:26:35 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:26:35 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:26:35 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:26:35 -0700
+
+
+Started GET "/" for ::1 at 2016-09-30 15:27:31 -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 (9.5ms)
+Completed 200 OK in 34ms (Views: 32.6ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-a02c1d124e7ce7030df8e26653bb32b6d96d615a51486b22df47a3cbb3329401.css?body=1" for ::1 at 2016-09-30 15:27:32 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:27:32 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:27:32 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:27:32 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:27:32 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:27:32 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 15:27:32 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:27:32 -0700
+
+
+Started GET "/" for ::1 at 2016-09-30 15:27:49 -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 (2.9ms)
+Completed 200 OK in 31ms (Views: 29.9ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-e932bbfed9ecf7996ec0970c3c326295353205d2d541accf1b90980b1dac4154.css?body=1" for ::1 at 2016-09-30 15:27:49 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:27:49 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 15:27:49 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:27:49 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:27:49 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:27:49 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:27:49 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:27:49 -0700
+
+
+Started GET "/" for ::1 at 2016-09-30 15:29:20 -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 (3.0ms)
+Completed 200 OK in 27ms (Views: 26.7ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-7112cfec0df2a19da5453a81196574631779a92959618a4f567b83e8ecee30dd.css?body=1" for ::1 at 2016-09-30 15:29:20 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:29:20 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:29:20 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:29:20 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 15:29:20 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:29:20 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:29:20 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:29:20 -0700
+
+
+Started GET "/" for ::1 at 2016-09-30 15:30:29 -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 (3.5ms)
+Completed 200 OK in 27ms (Views: 26.8ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-c0db48bcbbe428241ae067db49ad41ca99d065b219645edf16aaa3d052a9e6bd.css?body=1" for ::1 at 2016-09-30 15:30:30 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:30:30 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 15:30:30 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:30:30 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:30:30 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:30:30 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:30:30 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:30:30 -0700
+
+
+Started GET "/" for ::1 at 2016-09-30 15:31:16 -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 (3.5ms)
+Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-c0db48bcbbe428241ae067db49ad41ca99d065b219645edf16aaa3d052a9e6bd.css?body=1" for ::1 at 2016-09-30 15:31:16 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:31:16 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 15:31:16 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:31:16 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:31:16 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:31:16 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:31:16 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:31:16 -0700
+
+
+Started GET "/tasks/17/edit" for ::1 at 2016-09-30 15:33:00 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"17"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 17]]
+ Rendered tasks/edit.html.erb within layouts/application (3.3ms)
+Completed 200 OK in 31ms (Views: 29.7ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-30 15:43:40 -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.5ms)
+Completed 200 OK in 33ms (Views: 32.7ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/tasks/show/18" for ::1 at 2016-09-30 15:46:06 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"18"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 18]]
+ Rendered tasks/show.html.erb within layouts/application (1.2ms)
+Completed 200 OK in 24ms (Views: 22.5ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/show/18" for ::1 at 2016-09-30 15:49:54 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"18"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 18]]
+ Rendered tasks/show.html.erb within layouts/application (1.0ms)
+Completed 200 OK in 15ms (Views: 13.8ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-c0db48bcbbe428241ae067db49ad41ca99d065b219645edf16aaa3d052a9e6bd.css?body=1" for ::1 at 2016-09-30 15:49:54 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:49:54 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 15:49:54 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:49:54 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:49:54 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:49:54 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:49:54 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:49:54 -0700
+
+
+Started GET "/tasks/show/18" for ::1 at 2016-09-30 15:50:30 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"18"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 18]]
+ Rendered tasks/show.html.erb within layouts/application (1.0ms)
+Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.1ms)
+
+SyntaxError (/Users/sabrinawilbert/ada/TaskListRails/app/views/tasks/show.html.erb:7: syntax error, unexpected '<'
+
Task Completed
+ ^
+/Users/sabrinawilbert/ada/TaskListRails/app/views/tasks/show.html.erb:7: syntax error, unexpected tCONSTANT, expecting keyword_do or '{' or '('
+
Task Completed
+ ^
+/Users/sabrinawilbert/ada/TaskListRails/app/views/tasks/show.html.erb:9: unknown regexp option - p
+/Users/sabrinawilbert/ada/TaskListRails/app/views/tasks/show.html.erb:10: syntax error, unexpected keyword_end
+/Users/sabrinawilbert/ada/TaskListRails/app/views/tasks/show.html.erb:15: syntax error, unexpected keyword_ensure, expecting keyword_end
+/Users/sabrinawilbert/ada/TaskListRails/app/views/tasks/show.html.erb:17: syntax error, unexpected end-of-input, expecting keyword_end):
+ app/views/tasks/show.html.erb:7: syntax error, unexpected '<'
+ app/views/tasks/show.html.erb:7: syntax error, unexpected tCONSTANT, expecting keyword_do or '{' or '('
+ app/views/tasks/show.html.erb:9: unknown regexp option - p
+ app/views/tasks/show.html.erb:10: syntax error, unexpected keyword_end
+ app/views/tasks/show.html.erb:15: syntax error, unexpected keyword_ensure, expecting keyword_end
+ app/views/tasks/show.html.erb:17: syntax error, unexpected end-of-input, expecting keyword_end
+
+
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (50.8ms)
+ Rendered /Users/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms)
+ Rendered /Users/sabrinawilbert/.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/sabrinawilbert/.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/sabrinawilbert/.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/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.0ms)
+ Rendered /Users/sabrinawilbert/.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/sabrinawilbert/.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/sabrinawilbert/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.6ms)
+
+
+Started GET "/tasks/show/18" for ::1 at 2016-09-30 15:54:06 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"18"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 18]]
+ Rendered tasks/show.html.erb within layouts/application (1.0ms)
+Completed 200 OK in 14ms (Views: 12.7ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-c0db48bcbbe428241ae067db49ad41ca99d065b219645edf16aaa3d052a9e6bd.css?body=1" for ::1 at 2016-09-30 15:54:06 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:54:06 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 15:54:06 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:54:06 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:54:06 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:54:06 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:54:06 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:54:06 -0700
+
+
+Started GET "/tasks/18/edit" for ::1 at 2016-09-30 15:54:12 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"18"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 18]]
+ Rendered tasks/edit.html.erb within layouts/application (6.0ms)
+Completed 200 OK in 37ms (Views: 35.8ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/18/edit" for ::1 at 2016-09-30 15:55:06 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"18"}
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 18]]
+ Rendered tasks/edit.html.erb within layouts/application (2.6ms)
+Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-c0db48bcbbe428241ae067db49ad41ca99d065b219645edf16aaa3d052a9e6bd.css?body=1" for ::1 at 2016-09-30 15:55:06 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:55:06 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 15:55:06 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:55:06 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:55:06 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:55:06 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:55:06 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:55:06 -0700
+
+
+Started GET "/tasks/18/edit" for ::1 at 2016-09-30 15:55:27 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"18"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 18]]
+ Rendered tasks/edit.html.erb within layouts/application (2.9ms)
+Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/assets/style.self-c0db48bcbbe428241ae067db49ad41ca99d065b219645edf16aaa3d052a9e6bd.css?body=1" for ::1 at 2016-09-30 15:55:27 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:55:27 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:55:27 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:55:27 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:55:27 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:55:27 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:55:27 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 15:55:27 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-30 15:55:59 -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.8ms)
+Completed 200 OK in 40ms (Views: 39.4ms | ActiveRecord: 0.3ms)
diff --git a/public/404.html b/public/404.html
new file mode 100644
index 000000000..b612547fc
--- /dev/null
+++ b/public/404.html
@@ -0,0 +1,67 @@
+
+
+
+ The page you were looking for doesn't exist (404)
+
+
+
+
+
+
+
+
+
The page you were looking for doesn't exist.
+
You may have mistyped the address or the page may have moved.
+
+
If you are the application owner check the logs for more information.
+
+
+
diff --git a/public/422.html b/public/422.html
new file mode 100644
index 000000000..a21f82b3b
--- /dev/null
+++ b/public/422.html
@@ -0,0 +1,67 @@
+
+
+
+ The change you wanted was rejected (422)
+
+
+
+
+
+
+
+
+
The change you wanted was rejected.
+
Maybe you tried to change something you didn't have access to.
+
+
If you are the application owner check the logs for more information.
+
+
+
diff --git a/public/500.html b/public/500.html
new file mode 100644
index 000000000..061abc587
--- /dev/null
+++ b/public/500.html
@@ -0,0 +1,66 @@
+
+
+
+ We're sorry, but something went wrong (500)
+
+
+
+
+
+
+
+
+
We're sorry, but something went wrong.
+
+
If you are the application owner check the logs for more information.
+
+
+
diff --git a/public/favicon.ico b/public/favicon.ico
new file mode 100644
index 000000000..e69de29bb
diff --git a/public/robots.txt b/public/robots.txt
new file mode 100644
index 000000000..3c9c7c01f
--- /dev/null
+++ b/public/robots.txt
@@ -0,0 +1,5 @@
+# See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
+#
+# To ban all spiders from the entire site uncomment the next two lines:
+# User-agent: *
+# Disallow: /
diff --git a/test/controllers/.keep b/test/controllers/.keep
new file mode 100644
index 000000000..e69de29bb
diff --git a/test/controllers/tasks_controller_test.rb b/test/controllers/tasks_controller_test.rb
new file mode 100644
index 000000000..e2c59c9c6
--- /dev/null
+++ b/test/controllers/tasks_controller_test.rb
@@ -0,0 +1,29 @@
+require 'test_helper'
+
+class TasksControllerTest < ActionController::TestCase
+ test "should get index" do
+ get :index
+ assert_response :success
+ end
+
+ test "should get show" do
+ get :show
+ assert_response :success
+ end
+
+ test "should get new" do
+ get :new
+ assert_response :success
+ end
+
+ test "should get edit" do
+ get :edit
+ assert_response :success
+ end
+
+ test "should get update" do
+ get :update
+ assert_response :success
+ end
+
+end
diff --git a/test/fixtures/.keep b/test/fixtures/.keep
new file mode 100644
index 000000000..e69de29bb
diff --git a/test/fixtures/tasks.yml b/test/fixtures/tasks.yml
new file mode 100644
index 000000000..091affe67
--- /dev/null
+++ b/test/fixtures/tasks.yml
@@ -0,0 +1,11 @@
+# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
+
+one:
+ title: MyString
+ description: MyText
+ completed_at: 2016-09-28 15:39:08
+
+two:
+ title: MyString
+ description: MyText
+ completed_at: 2016-09-28 15:39:08
diff --git a/test/helpers/.keep b/test/helpers/.keep
new file mode 100644
index 000000000..e69de29bb
diff --git a/test/integration/.keep b/test/integration/.keep
new file mode 100644
index 000000000..e69de29bb
diff --git a/test/mailers/.keep b/test/mailers/.keep
new file mode 100644
index 000000000..e69de29bb
diff --git a/test/models/.keep b/test/models/.keep
new file mode 100644
index 000000000..e69de29bb
diff --git a/test/models/task_test.rb b/test/models/task_test.rb
new file mode 100644
index 000000000..3ca215970
--- /dev/null
+++ b/test/models/task_test.rb
@@ -0,0 +1,7 @@
+require 'test_helper'
+
+class TaskTest < ActiveSupport::TestCase
+ # test "the truth" do
+ # assert true
+ # end
+end
diff --git a/test/test_helper.rb b/test/test_helper.rb
new file mode 100644
index 000000000..92e39b2d7
--- /dev/null
+++ b/test/test_helper.rb
@@ -0,0 +1,10 @@
+ENV['RAILS_ENV'] ||= 'test'
+require File.expand_path('../../config/environment', __FILE__)
+require 'rails/test_help'
+
+class ActiveSupport::TestCase
+ # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.
+ fixtures :all
+
+ # Add more helper methods to be used by all tests here...
+end
diff --git a/vendor/assets/javascripts/.keep b/vendor/assets/javascripts/.keep
new file mode 100644
index 000000000..e69de29bb
diff --git a/vendor/assets/stylesheets/.keep b/vendor/assets/stylesheets/.keep
new file mode 100644
index 000000000..e69de29bb