diff --git a/bin/bundle b/bin/bundle
new file mode 100755
index 000000000..66e9889e8
--- /dev/null
+++ b/bin/bundle
@@ -0,0 +1,3 @@
+#!/usr/bin/env ruby
+ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
+load Gem.bin_path('bundler', 'bundle')
diff --git a/bin/rails b/bin/rails
new file mode 100755
index 000000000..0138d79b7
--- /dev/null
+++ b/bin/rails
@@ -0,0 +1,9 @@
+#!/usr/bin/env ruby
+begin
+ load File.expand_path('../spring', __FILE__)
+rescue LoadError => e
+ raise unless e.message.include?('spring')
+end
+APP_PATH = File.expand_path('../../config/application', __FILE__)
+require_relative '../config/boot'
+require 'rails/commands'
diff --git a/bin/rake b/bin/rake
new file mode 100755
index 000000000..d87d5f578
--- /dev/null
+++ b/bin/rake
@@ -0,0 +1,9 @@
+#!/usr/bin/env ruby
+begin
+ load File.expand_path('../spring', __FILE__)
+rescue LoadError => e
+ raise unless e.message.include?('spring')
+end
+require_relative '../config/boot'
+require 'rake'
+Rake.application.run
diff --git a/bin/setup b/bin/setup
new file mode 100755
index 000000000..acdb2c138
--- /dev/null
+++ b/bin/setup
@@ -0,0 +1,29 @@
+#!/usr/bin/env ruby
+require 'pathname'
+
+# path to your application root.
+APP_ROOT = Pathname.new File.expand_path('../../', __FILE__)
+
+Dir.chdir APP_ROOT do
+ # This script is a starting point to setup your application.
+ # Add necessary setup steps to this file:
+
+ puts "== Installing dependencies =="
+ system "gem install bundler --conservative"
+ system "bundle check || bundle install"
+
+ # puts "\n== Copying sample files =="
+ # unless File.exist?("config/database.yml")
+ # system "cp config/database.yml.sample config/database.yml"
+ # end
+
+ puts "\n== Preparing database =="
+ system "bin/rake db:setup"
+
+ puts "\n== Removing old logs and tempfiles =="
+ system "rm -f log/*"
+ system "rm -rf tmp/cache"
+
+ puts "\n== Restarting application server =="
+ system "touch tmp/restart.txt"
+end
diff --git a/bin/spring b/bin/spring
new file mode 100755
index 000000000..7fe232c3a
--- /dev/null
+++ b/bin/spring
@@ -0,0 +1,15 @@
+#!/usr/bin/env ruby
+
+# This file loads spring without using Bundler, in order to be fast.
+# It gets overwritten when you run the `spring binstub` command.
+
+unless defined?(Spring)
+ require 'rubygems'
+ require 'bundler'
+
+ if (match = Bundler.default_lockfile.read.match(/^GEM$.*?^ (?: )*spring \((.*?)\)$.*?^$/m))
+ Gem.paths = { 'GEM_PATH' => [Bundler.bundle_path.to_s, *Gem.path].uniq.join(Gem.path_separator) }
+ gem 'spring', match[1]
+ require 'spring/binstub'
+ end
+end
diff --git a/config.ru b/config.ru
new file mode 100644
index 000000000..bd83b2541
--- /dev/null
+++ b/config.ru
@@ -0,0 +1,4 @@
+# This file is used by Rack-based servers to start the application.
+
+require ::File.expand_path('../config/environment', __FILE__)
+run Rails.application
diff --git a/config/application.rb b/config/application.rb
new file mode 100644
index 000000000..902432bad
--- /dev/null
+++ b/config/application.rb
@@ -0,0 +1,26 @@
+require File.expand_path('../boot', __FILE__)
+
+require 'rails/all'
+
+# Require the gems listed in Gemfile, including any gems
+# you've limited to :test, :development, or :production.
+Bundler.require(*Rails.groups)
+
+module TaskListRails
+ class Application < Rails::Application
+ # Settings in config/environments/* take precedence over those specified here.
+ # Application configuration should go into files in config/initializers
+ # -- all .rb files in that directory are automatically loaded.
+
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
+ # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
+ # config.time_zone = 'Central Time (US & Canada)'
+
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
+ # config.i18n.default_locale = :de
+
+ # Do not swallow errors in after_commit/after_rollback callbacks.
+ config.active_record.raise_in_transactional_callbacks = true
+ end
+end
diff --git a/config/boot.rb b/config/boot.rb
new file mode 100644
index 000000000..6b750f00b
--- /dev/null
+++ b/config/boot.rb
@@ -0,0 +1,3 @@
+ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
+
+require 'bundler/setup' # Set up gems listed in the Gemfile.
diff --git a/config/database.yml b/config/database.yml
new file mode 100644
index 000000000..1c1a37ca8
--- /dev/null
+++ b/config/database.yml
@@ -0,0 +1,25 @@
+# SQLite version 3.x
+# gem install sqlite3
+#
+# Ensure the SQLite 3 gem is defined in your Gemfile
+# gem 'sqlite3'
+#
+default: &default
+ adapter: sqlite3
+ pool: 5
+ timeout: 5000
+
+development:
+ <<: *default
+ database: db/development.sqlite3
+
+# Warning: The database defined as "test" will be erased and
+# re-generated from your development database when you run "rake".
+# Do not set this db to the same as development or production.
+test:
+ <<: *default
+ database: db/test.sqlite3
+
+production:
+ <<: *default
+ database: db/production.sqlite3
diff --git a/config/environment.rb b/config/environment.rb
new file mode 100644
index 000000000..ee8d90dc6
--- /dev/null
+++ b/config/environment.rb
@@ -0,0 +1,5 @@
+# Load the Rails application.
+require File.expand_path('../application', __FILE__)
+
+# Initialize the Rails application.
+Rails.application.initialize!
diff --git a/config/environments/development.rb b/config/environments/development.rb
new file mode 100644
index 000000000..b55e2144b
--- /dev/null
+++ b/config/environments/development.rb
@@ -0,0 +1,41 @@
+Rails.application.configure do
+ # Settings specified here will take precedence over those in config/application.rb.
+
+ # In the development environment your application's code is reloaded on
+ # every request. This slows down response time but is perfect for development
+ # since you don't have to restart the web server when you make code changes.
+ config.cache_classes = false
+
+ # Do not eager load code on boot.
+ config.eager_load = false
+
+ # Show full error reports and disable caching.
+ config.consider_all_requests_local = true
+ config.action_controller.perform_caching = false
+
+ # Don't care if the mailer can't send.
+ config.action_mailer.raise_delivery_errors = false
+
+ # Print deprecation notices to the Rails logger.
+ config.active_support.deprecation = :log
+
+ # Raise an error on page load if there are pending migrations.
+ config.active_record.migration_error = :page_load
+
+ # Debug mode disables concatenation and preprocessing of assets.
+ # This option may cause significant delays in view rendering with a large
+ # number of complex assets.
+ config.assets.debug = true
+
+ # Asset digests allow you to set far-future HTTP expiration dates on all assets,
+ # yet still be able to expire them through the digest params.
+ config.assets.digest = true
+
+ # Adds additional error checking when serving assets at runtime.
+ # Checks for improperly declared sprockets dependencies.
+ # Raises helpful error messages.
+ config.assets.raise_runtime_errors = true
+
+ # Raises error for missing translations
+ # config.action_view.raise_on_missing_translations = true
+end
diff --git a/config/environments/production.rb b/config/environments/production.rb
new file mode 100644
index 000000000..5c1b32e48
--- /dev/null
+++ b/config/environments/production.rb
@@ -0,0 +1,79 @@
+Rails.application.configure do
+ # Settings specified here will take precedence over those in config/application.rb.
+
+ # Code is not reloaded between requests.
+ config.cache_classes = true
+
+ # Eager load code on boot. This eager loads most of Rails and
+ # your application in memory, allowing both threaded web servers
+ # and those relying on copy on write to perform better.
+ # Rake tasks automatically ignore this option for performance.
+ config.eager_load = true
+
+ # Full error reports are disabled and caching is turned on.
+ config.consider_all_requests_local = false
+ config.action_controller.perform_caching = true
+
+ # Enable Rack::Cache to put a simple HTTP cache in front of your application
+ # Add `rack-cache` to your Gemfile before enabling this.
+ # For large-scale production use, consider using a caching reverse proxy like
+ # NGINX, varnish or squid.
+ # config.action_dispatch.rack_cache = true
+
+ # Disable serving static files from the `/public` folder by default since
+ # Apache or NGINX already handles this.
+ config.serve_static_files = ENV['RAILS_SERVE_STATIC_FILES'].present?
+
+ # Compress JavaScripts and CSS.
+ config.assets.js_compressor = :uglifier
+ # config.assets.css_compressor = :sass
+
+ # Do not fallback to assets pipeline if a precompiled asset is missed.
+ config.assets.compile = false
+
+ # Asset digests allow you to set far-future HTTP expiration dates on all assets,
+ # yet still be able to expire them through the digest params.
+ config.assets.digest = true
+
+ # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
+
+ # Specifies the header that your server uses for sending files.
+ # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
+
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
+ # config.force_ssl = true
+
+ # Use the lowest log level to ensure availability of diagnostic information
+ # when problems arise.
+ config.log_level = :debug
+
+ # Prepend all log lines with the following tags.
+ # config.log_tags = [ :subdomain, :uuid ]
+
+ # Use a different logger for distributed setups.
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
+
+ # Use a different cache store in production.
+ # config.cache_store = :mem_cache_store
+
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
+ # config.action_controller.asset_host = 'http://assets.example.com'
+
+ # Ignore bad email addresses and do not raise email delivery errors.
+ # Set this to true and configure the email server for immediate delivery to raise delivery errors.
+ # config.action_mailer.raise_delivery_errors = false
+
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
+ # the I18n.default_locale when a translation cannot be found).
+ config.i18n.fallbacks = true
+
+ # Send deprecation notices to registered listeners.
+ config.active_support.deprecation = :notify
+
+ # Use default logging formatter so that PID and timestamp are not suppressed.
+ config.log_formatter = ::Logger::Formatter.new
+
+ # Do not dump schema after migrations.
+ config.active_record.dump_schema_after_migration = false
+end
diff --git a/config/environments/test.rb b/config/environments/test.rb
new file mode 100644
index 000000000..1c19f08b2
--- /dev/null
+++ b/config/environments/test.rb
@@ -0,0 +1,42 @@
+Rails.application.configure do
+ # Settings specified here will take precedence over those in config/application.rb.
+
+ # The test environment is used exclusively to run your application's
+ # test suite. You never need to work with it otherwise. Remember that
+ # your test database is "scratch space" for the test suite and is wiped
+ # and recreated between test runs. Don't rely on the data there!
+ config.cache_classes = true
+
+ # Do not eager load code on boot. This avoids loading your whole application
+ # just for the purpose of running a single test. If you are using a tool that
+ # preloads Rails for running tests, you may have to set it to true.
+ config.eager_load = false
+
+ # Configure static file server for tests with Cache-Control for performance.
+ config.serve_static_files = true
+ config.static_cache_control = 'public, max-age=3600'
+
+ # Show full error reports and disable caching.
+ config.consider_all_requests_local = true
+ config.action_controller.perform_caching = false
+
+ # Raise exceptions instead of rendering exception templates.
+ config.action_dispatch.show_exceptions = false
+
+ # Disable request forgery protection in test environment.
+ config.action_controller.allow_forgery_protection = false
+
+ # Tell Action Mailer not to deliver emails to the real world.
+ # The :test delivery method accumulates sent emails in the
+ # ActionMailer::Base.deliveries array.
+ config.action_mailer.delivery_method = :test
+
+ # Randomize the order test cases are executed.
+ config.active_support.test_order = :random
+
+ # Print deprecation notices to the stderr.
+ config.active_support.deprecation = :stderr
+
+ # Raises error for missing translations
+ # config.action_view.raise_on_missing_translations = true
+end
diff --git a/config/initializers/assets.rb b/config/initializers/assets.rb
new file mode 100644
index 000000000..01ef3e663
--- /dev/null
+++ b/config/initializers/assets.rb
@@ -0,0 +1,11 @@
+# Be sure to restart your server when you modify this file.
+
+# Version of your assets, change this if you want to expire all your assets.
+Rails.application.config.assets.version = '1.0'
+
+# Add additional assets to the asset load path
+# Rails.application.config.assets.paths << Emoji.images_path
+
+# Precompile additional assets.
+# application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
+# Rails.application.config.assets.precompile += %w( search.js )
diff --git a/config/initializers/backtrace_silencers.rb b/config/initializers/backtrace_silencers.rb
new file mode 100644
index 000000000..59385cdf3
--- /dev/null
+++ b/config/initializers/backtrace_silencers.rb
@@ -0,0 +1,7 @@
+# Be sure to restart your server when you modify this file.
+
+# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
+# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
+
+# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
+# Rails.backtrace_cleaner.remove_silencers!
diff --git a/config/initializers/cookies_serializer.rb b/config/initializers/cookies_serializer.rb
new file mode 100644
index 000000000..7f70458de
--- /dev/null
+++ b/config/initializers/cookies_serializer.rb
@@ -0,0 +1,3 @@
+# Be sure to restart your server when you modify this file.
+
+Rails.application.config.action_dispatch.cookies_serializer = :json
diff --git a/config/initializers/filter_parameter_logging.rb b/config/initializers/filter_parameter_logging.rb
new file mode 100644
index 000000000..4a994e1e7
--- /dev/null
+++ b/config/initializers/filter_parameter_logging.rb
@@ -0,0 +1,4 @@
+# Be sure to restart your server when you modify this file.
+
+# Configure sensitive parameters which will be filtered from the log file.
+Rails.application.config.filter_parameters += [:password]
diff --git a/config/initializers/inflections.rb b/config/initializers/inflections.rb
new file mode 100644
index 000000000..ac033bf9d
--- /dev/null
+++ b/config/initializers/inflections.rb
@@ -0,0 +1,16 @@
+# Be sure to restart your server when you modify this file.
+
+# Add new inflection rules using the following format. Inflections
+# are locale specific, and you may define rules for as many different
+# locales as you wish. All of these examples are active by default:
+# ActiveSupport::Inflector.inflections(:en) do |inflect|
+# inflect.plural /^(ox)$/i, '\1en'
+# inflect.singular /^(ox)en/i, '\1'
+# inflect.irregular 'person', 'people'
+# inflect.uncountable %w( fish sheep )
+# end
+
+# These inflection rules are supported but not enabled by default:
+# ActiveSupport::Inflector.inflections(:en) do |inflect|
+# inflect.acronym 'RESTful'
+# end
diff --git a/config/initializers/mime_types.rb b/config/initializers/mime_types.rb
new file mode 100644
index 000000000..dc1899682
--- /dev/null
+++ b/config/initializers/mime_types.rb
@@ -0,0 +1,4 @@
+# Be sure to restart your server when you modify this file.
+
+# Add new mime types for use in respond_to blocks:
+# Mime::Type.register "text/richtext", :rtf
diff --git a/config/initializers/omniauth.rb b/config/initializers/omniauth.rb
new file mode 100644
index 000000000..f9fa3db47
--- /dev/null
+++ b/config/initializers/omniauth.rb
@@ -0,0 +1,6 @@
+
+Rails.application.config.middleware.use OmniAuth::Builder do
+ provider :github,
+ ENV["GITHUB_CLIENT_ID"],
+ ENV["GITHUB_CLIENT_SECRET"], scope: "user:email"
+end
diff --git a/config/initializers/session_store.rb b/config/initializers/session_store.rb
new file mode 100644
index 000000000..15d065a84
--- /dev/null
+++ b/config/initializers/session_store.rb
@@ -0,0 +1,3 @@
+# Be sure to restart your server when you modify this file.
+
+Rails.application.config.session_store :cookie_store, key: '_TaskListRails_session'
diff --git a/config/initializers/wrap_parameters.rb b/config/initializers/wrap_parameters.rb
new file mode 100644
index 000000000..33725e95f
--- /dev/null
+++ b/config/initializers/wrap_parameters.rb
@@ -0,0 +1,14 @@
+# Be sure to restart your server when you modify this file.
+
+# This file contains settings for ActionController::ParamsWrapper which
+# is enabled by default.
+
+# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
+ActiveSupport.on_load(:action_controller) do
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
+end
+
+# To enable root element in JSON for ActiveRecord objects.
+# ActiveSupport.on_load(:active_record) do
+# self.include_root_in_json = true
+# end
diff --git a/config/locales/en.yml b/config/locales/en.yml
new file mode 100644
index 000000000..065395716
--- /dev/null
+++ b/config/locales/en.yml
@@ -0,0 +1,23 @@
+# Files in the config/locales directory are used for internationalization
+# and are automatically loaded by Rails. If you want to use locales other
+# than English, add the necessary files in this directory.
+#
+# To use the locales, use `I18n.t`:
+#
+# I18n.t 'hello'
+#
+# In views, this is aliased to just `t`:
+#
+# <%= t('hello') %>
+#
+# To use a different locale, set it with `I18n.locale`:
+#
+# I18n.locale = :es
+#
+# This would use the information in config/locales/es.yml.
+#
+# To learn more, please read the Rails Internationalization guide
+# available at http://guides.rubyonrails.org/i18n.html.
+
+en:
+ hello: "Hello world"
diff --git a/config/routes.rb b/config/routes.rb
new file mode 100644
index 000000000..865154e6c
--- /dev/null
+++ b/config/routes.rb
@@ -0,0 +1,92 @@
+Rails.application.routes.draw do
+ root 'navigations#index'
+
+ get 'users/new'
+
+ get 'users/create'
+
+ get 'users/:id/edit' => 'users#edit', as: 'users_edit'
+
+ patch 'users/:id/update' => 'users#update', as: 'users_update'
+
+ get 'navigations/index' => 'navigations#index'
+
+ get 'navigations/show'
+
+ get 'sessions/create'
+
+ delete 'sessions/:id/destroy' => 'sessions#destroy', as: 'session_delete'
+
+ get 'tasks/index' => 'tasks#index', as: 'index'
+
+ get 'tasks/new' => 'tasks#new', as: 'new'
+
+ post 'tasks/create' => 'tasks#create', as: 'create'
+
+ get 'tasks/:id/show/' => 'tasks#show', as: 'show'
+
+ get 'tasks/:id/edit' => 'tasks#edit', as: 'edit'
+
+ patch 'tasks/:id/update' => 'tasks#update', as: 'update'
+
+ delete 'tasks/:id/destroy' => 'tasks#destroy', as: 'delete'
+
+ patch 'tasks/:id/mark_complete' => 'tasks#mark_complete', as: 'mark_complete'
+
+ get "/auth/:provider/callback" => "sessions#create"
+
+ # The priority is based upon order of creation: first created -> highest priority.
+ # See how all your routes lay out with "rake routes".
+
+ # 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..c13bfc8d9
--- /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: a41019a9ef2ab73204bc3650fa601e7a7417f87138cdf4a5687d21fdd91901f387ea322ca841c454cda2d672bd78d52227d018c259127cdcd1f92d9ee69b7bb9
+
+test:
+ secret_key_base: 90a9341258f694c7859f9765212ab44ada19b34b7d784eb39db643347cab1857b86c3698bbc0950e35b95dbaf4ef7fcbdcd7c98c99794bc10a5438588fd797d1
+
+# 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..6d2c2fbd0
Binary files /dev/null and b/db/development.sqlite3 differ
diff --git a/db/migrate/20160930182241_create_tasks.rb b/db/migrate/20160930182241_create_tasks.rb
new file mode 100644
index 000000000..1acb1b36f
--- /dev/null
+++ b/db/migrate/20160930182241_create_tasks.rb
@@ -0,0 +1,14 @@
+class CreateTasks < ActiveRecord::Migration
+ def change
+ create_table :tasks do |t|
+
+ t.string :title
+ t.string :description
+ t.text :details
+ t.boolean :completion_status
+ t.timestamp :completion_date
+
+ t.timestamps null: false
+ end
+ end
+end
diff --git a/db/migrate/20161018170123_create_users.rb b/db/migrate/20161018170123_create_users.rb
new file mode 100644
index 000000000..e093f6171
--- /dev/null
+++ b/db/migrate/20161018170123_create_users.rb
@@ -0,0 +1,12 @@
+class CreateUsers < ActiveRecord::Migration
+ def change
+ create_table :users do |t|
+ t.string :uid, null: false
+ t.string :name
+ t.string :provider, null: false
+ t.string :email
+
+ t.timestamps null: false
+ end
+ end
+end
diff --git a/db/migrate/20161028000424_add_profile_name_to_users.rb b/db/migrate/20161028000424_add_profile_name_to_users.rb
new file mode 100644
index 000000000..bd379a5f2
--- /dev/null
+++ b/db/migrate/20161028000424_add_profile_name_to_users.rb
@@ -0,0 +1,5 @@
+class AddProfileNameToUsers < ActiveRecord::Migration
+ def change
+ add_column :users, :profile_name, :string
+ end
+end
diff --git a/db/migrate/20161101043027_add_user_to_tasks.rb b/db/migrate/20161101043027_add_user_to_tasks.rb
new file mode 100644
index 000000000..a4c305a03
--- /dev/null
+++ b/db/migrate/20161101043027_add_user_to_tasks.rb
@@ -0,0 +1,5 @@
+class AddUserToTasks < ActiveRecord::Migration
+ def change
+ add_reference :tasks, :user, index: true, foreign_key: true
+ end
+end
diff --git a/db/schema.rb b/db/schema.rb
new file mode 100644
index 000000000..fa289bbcc
--- /dev/null
+++ b/db/schema.rb
@@ -0,0 +1,39 @@
+# 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: 20161101043027) do
+
+ create_table "tasks", force: :cascade do |t|
+ t.string "title"
+ t.string "description"
+ t.text "details"
+ t.boolean "completion_status"
+ t.datetime "completion_date"
+ t.datetime "created_at", null: false
+ t.datetime "updated_at", null: false
+ t.integer "user_id"
+ end
+
+ add_index "tasks", ["user_id"], name: "index_tasks_on_user_id"
+
+ create_table "users", force: :cascade do |t|
+ t.string "uid"
+ t.string "name"
+ t.string "provider"
+ t.string "email"
+ t.datetime "created_at", null: false
+ t.datetime "updated_at", null: false
+ t.string "profile_name"
+ end
+
+end
diff --git a/db/seeds.rb b/db/seeds.rb
new file mode 100644
index 000000000..4edb1e857
--- /dev/null
+++ b/db/seeds.rb
@@ -0,0 +1,7 @@
+# This file should contain all the record creation needed to seed the database with its default values.
+# The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
+#
+# Examples:
+#
+# cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
+# Mayor.create(name: 'Emanuel', city: cities.first)
diff --git a/db/test.sqlite3 b/db/test.sqlite3
new file mode 100644
index 000000000..991778d23
Binary files /dev/null and b/db/test.sqlite3 differ
diff --git a/lib/assets/.keep b/lib/assets/.keep
new file mode 100644
index 000000000..e69de29bb
diff --git a/lib/tasks/.keep b/lib/tasks/.keep
new file mode 100644
index 000000000..e69de29bb
diff --git a/log/.keep b/log/.keep
new file mode 100644
index 000000000..e69de29bb
diff --git a/log/development.log b/log/development.log
new file mode 100644
index 000000000..3e8f7f144
--- /dev/null
+++ b/log/development.log
@@ -0,0 +1,18164 @@
+
+
+Started GET "/" for ::1 at 2016-09-28 15:15:12 -0700
+
+SyntaxError (/Users/brandimilligan/Dropbox/ada/wk8/TaskListRails/app/controllers/tasks_controller.rb:43: Invalid octal digit
+...atus: true, completion_date: 09/15/2016}, {id: 3, title: "ca...
+... ^
+/Users/brandimilligan/Dropbox/ada/wk8/TaskListRails/app/controllers/tasks_controller.rb:46: syntax error, unexpected end-of-input, expecting keyword_end):
+ app/controllers/tasks_controller.rb:43: Invalid octal digit
+ app/controllers/tasks_controller.rb:46: syntax error, unexpected end-of-input, expecting keyword_end
+
+
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.6ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (19.3ms)
+ Rendered /Users/brandimilligan/.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 (165.3ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (136.3ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (296.7ms)
+
+
+Started GET "/" for ::1 at 2016-09-28 15:16:16 -0700
+
+SyntaxError (/Users/brandimilligan/Dropbox/ada/wk8/TaskListRails/app/controllers/tasks_controller.rb:46: syntax error, unexpected end-of-input, expecting keyword_end):
+ app/controllers/tasks_controller.rb:46: syntax error, unexpected end-of-input, expecting keyword_end
+
+
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (8.7ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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.4ms)
+ Rendered /Users/brandimilligan/.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 (131.7ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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/brandimilligan/.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/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (108.3ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (235.3ms)
+
+
+Started GET "/" for ::1 at 2016-09-28 15:16:56 -0700
+Processing by TasksController#index as HTML
+Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.0ms)
+
+NoMethodError (undefined method `alltasks' for TasksController:Class
+Did you mean? allposts):
+ app/controllers/tasks_controller.rb:3:in `index'
+
+
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (10.1ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.9ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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 (136.3ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.8ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (102.3ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (231.7ms)
+
+
+Started GET "/" for ::1 at 2016-09-28 15:17:35 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (58.2ms)
+Completed 500 Internal Server Error in 71ms (ActiveRecord: 0.0ms)
+
+ActionView::Template::Error (undefined local variable or method `task' for #<#:0x007fc352298de0>
+Did you mean? @tasks):
+ 2:
+ 3: <% @tasks.each do |post| %>
+ 4:
+ 5:
+ 24: <%= button_to "Delete Task", {action: "destroy", id: @mytask.id}, method: :delete, data: {confirm: "Are you sure you want to delete this task?" }%>
+ app/views/tasks/index.html.erb:21:in `block in _app_views_tasks_index_html_erb__1223496216696740766_70211072483000'
+ app/views/tasks/index.html.erb:3:in `_app_views_tasks_index_html_erb__1223496216696740766_70211072483000'
+
+
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (11.4ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.2ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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 (128.6ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (106.5ms)
+ Rendered /Users/brandimilligan/.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.6ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (241.0ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 15:30:11 -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 (9.0ms)
+Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.3ms)
+
+ActionView::Template::Error (undefined method `id' for nil:NilClass):
+ 18:
+ 19:
+ 20:
+ 21: <%= button_to "Delete Task", {action: "destroy", id: @mytask.id}, method: :delete, data: {confirm: "Are you sure you want to delete this task?" }%>
+ 22:
+ 23:
+ 24:
+ app/views/tasks/index.html.erb:21:in `block in _app_views_tasks_index_html_erb__1223496216696740766_70211075858540'
+ app/views/tasks/index.html.erb:3:in `_app_views_tasks_index_html_erb__1223496216696740766_70211075858540'
+
+
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (11.1ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.8ms)
+ Rendered /Users/brandimilligan/.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.2ms)
+ Rendered /Users/brandimilligan/.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 (124.2ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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.6ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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.8ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (103.3ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (229.7ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 15:33:02 -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.7ms)
+Completed 200 OK in 47ms (Views: 45.7ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/tasks/1/show" for ::1 at 2016-09-30 15:33:08 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"1"}
+ [1m[35mTask Load (0.3ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]]
+ Rendered tasks/show.html.erb within layouts/application (2.0ms)
+Completed 200 OK in 135ms (Views: 64.0ms | ActiveRecord: 0.3ms)
+
+
+Started DELETE "/tasks/1/destroy" for ::1 at 2016-09-30 15:33:23 -0700
+Processing by TasksController#destroy as HTML
+ Parameters: {"authenticity_token"=>"/KgDmAosLgTjA2LsYpDZLKiAh4PFF9r743NoZGImnCrXkPl07VFRXoSwmPZxRcSzZdLrYQ7l8lkET9adNuEI1w==", "id"=>"1"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 1]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.5ms)[0m [1mDELETE FROM "tasks" WHERE "tasks"."id" = ?[0m [["id", 1]]
+ [1m[35m (0.9ms)[0m commit transaction
+ Rendered tasks/destroy.html.erb within layouts/application (0.9ms)
+Completed 200 OK in 41ms (Views: 35.9ms | ActiveRecord: 1.6ms)
+
+
+Started GET "/tasks/1/destroy" for ::1 at 2016-09-30 15:34:56 -0700
+
+ActionController::RoutingError (No route matches [GET] "/tasks/1/destroy"):
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
+ railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app'
+ railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged'
+ railties (4.2.7) lib/rails/rack/logger.rb:20:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call'
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
+ activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call'
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
+ railties (4.2.7) lib/rails/engine.rb:518:in `call'
+ railties (4.2.7) lib/rails/application.rb:165:in `call'
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (29.7ms)
+ Rendered /Users/brandimilligan/.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.1ms)
+ Rendered /Users/brandimilligan/.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 (205.2ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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/brandimilligan/.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/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (104.8ms)
+ Rendered /Users/brandimilligan/.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.6ms)
+ Rendered /Users/brandimilligan/.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.9ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (238.2ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 15:35: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 (1.1ms)
+Completed 200 OK in 86ms (Views: 84.5ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/posts/new" for ::1 at 2016-09-30 15:35:17 -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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.7ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.7ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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 (159.3ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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/brandimilligan/.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.8ms)
+ Rendered /Users/brandimilligan/.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 (1.8ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (111.5ms)
+ Rendered /Users/brandimilligan/.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.8ms)
+ Rendered /Users/brandimilligan/.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.6ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (241.5ms)
+ [1m[36m (1.4ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (1.8ms)[0m INSERT INTO "tasks" ("title", "description", "details", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Call Dentist"], ["description", "Health & Wellness"], ["details", "Malika needs a check-up, Queen Anne Dental"], ["created_at", "2016-09-30 22:38:27.660973"], ["updated_at", "2016-09-30 22:38:27.660973"]]
+ [1m[36m (1.0ms)[0m [1mcommit transaction[0m
+ [1m[35m (0.2ms)[0m begin transaction
+ [1m[36mSQL (0.5ms)[0m [1mINSERT INTO "tasks" ("title", "description", "details", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["title", "Storage Closet"], ["description", "home"], ["details", "Goodwill run, unpack boxes"], ["created_at", "2016-09-30 22:40:29.111386"], ["updated_at", "2016-09-30 22:40:29.111386"]]
+ [1m[35m (0.9ms)[0m commit transaction
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("title", "description", "details", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Oil change"], ["description", "car"], ["details", "schedule appointments with midas on 196th"], ["created_at", "2016-09-30 22:41:47.771567"], ["updated_at", "2016-09-30 22:41:47.771567"]]
+ [1m[36m (1.0ms)[0m [1mcommit transaction[0m
+
+
+Started GET "/" for ::1 at 2016-09-30 15:43: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 (3.0ms)
+Completed 200 OK in 32ms (Views: 30.8ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/posts/new" for ::1 at 2016-09-30 15:43:30 -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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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/brandimilligan/.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 (160.1ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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/brandimilligan/.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.8ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (107.2ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (244.8ms)
+
+
+Started GET "/posts/new" for ::1 at 2016-09-30 15:47:02 -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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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.4ms)
+ Rendered /Users/brandimilligan/.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 (153.5ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.9ms)
+ Rendered /Users/brandimilligan/.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.6ms)
+ Rendered /Users/brandimilligan/.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.9ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (114.8ms)
+ Rendered /Users/brandimilligan/.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.6ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (254.7ms)
+
+
+Started GET "/posts/new" for ::1 at 2016-09-30 15:48:56 -0700
+
+ActionController::RoutingError (No route matches [GET] "/posts/new"):
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.6ms)
+ Rendered /Users/brandimilligan/.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 (167.5ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.9ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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.9ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (101.9ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (272.3ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 15:49:07 -0700
+Processing by TasksController#index as HTML
+ [1m[36mTask Load (0.5ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/index.html.erb within layouts/application (13.1ms)
+Completed 200 OK in 71ms (Views: 66.3ms | ActiveRecord: 0.9ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-09-30 15:49:11 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (2.3ms)
+Completed 500 Internal Server Error in 28ms (ActiveRecord: 0.0ms)
+
+SyntaxError (/Users/brandimilligan/Dropbox/ada/wk8/TaskListRails/app/views/tasks/new.html.erb:15: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '('
+...t_buffer.append=( f.check-box :completion_status );@output_b...
+... ^):
+ app/views/tasks/new.html.erb:15: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '('
+
+
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (12.1ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.8ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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 (163.2ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (102.5ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (228.9ms)
+
+
+Started GET "/" for ::1 at 2016-09-30 15:50:28 -0700
+Processing by TasksController#index as HTML
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered tasks/index.html.erb within layouts/application (3.0ms)
+Completed 200 OK in 49ms (Views: 47.4ms | ActiveRecord: 0.2ms)
+
+
+Started DELETE "/tasks/4/destroy" for ::1 at 2016-09-30 15:50:38 -0700
+Processing by TasksController#destroy as HTML
+ Parameters: {"authenticity_token"=>"qA5O4RopR8D/bYb9t8UK/snYnFUo0+Pm+TGSNjw0fbiDNrQN/VQ4mpjefOekEBdhBIrwt+Mhy0QeDSzPaPPpRQ==", "id"=>"4"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 4]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.4ms)[0m [1mDELETE FROM "tasks" WHERE "tasks"."id" = ?[0m [["id", 4]]
+ [1m[35m (1.2ms)[0m commit transaction
+ Rendered tasks/destroy.html.erb within layouts/application (1.3ms)
+Completed 200 OK in 106ms (Views: 99.9ms | ActiveRecord: 1.9ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-09-30 15:50:42 -0700
+Processing by TasksController#index as HTML
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/index.html.erb within layouts/application (8.4ms)
+Completed 200 OK in 54ms (Views: 52.3ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-10-01 08:52:52 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (6.8ms)
+Completed 500 Internal Server Error in 18ms (ActiveRecord: 0.0ms)
+
+SyntaxError (/Users/brandimilligan/Dropbox/ada/wk8/TaskListRails/app/views/tasks/new.html.erb:15: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '('
+...t_buffer.append=( f.check-box :completion_status );@output_b...
+... ^):
+ app/views/tasks/new.html.erb:15: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '('
+
+
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (16.0ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.8ms)
+ Rendered /Users/brandimilligan/.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.2ms)
+ Rendered /Users/brandimilligan/.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 (153.6ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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/brandimilligan/.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/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (129.6ms)
+ Rendered /Users/brandimilligan/.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.6ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (263.2ms)
+ [1m[36mTask Load (4.4ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+
+
+Started GET "/" for ::1 at 2016-10-03 17:27:33 -0700
+ [1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (2.6ms)
+Completed 500 Internal Server Error in 47ms (ActiveRecord: 0.0ms)
+
+SyntaxError - syntax error, unexpected tSTRING_DEND, expecting ')'
+..., id: task.id}, method: :patch});@output_buffer.safe_append='
+... ^
+/Users/brandimilligan/Dropbox/ada/wk8/TaskListRails/app/views/tasks/index.html.erb:28: syntax error, unexpected keyword_end, expecting ')'
+'.freeze; end
+ ^
+/Users/brandimilligan/Dropbox/ada/wk8/TaskListRails/app/views/tasks/index.html.erb:38: syntax error, unexpected keyword_ensure, expecting ')'
+/Users/brandimilligan/Dropbox/ada/wk8/TaskListRails/app/views/tasks/index.html.erb:40: syntax error, unexpected keyword_end, expecting ')':
+ app/views/tasks/index.html.erb:24:in `'
+ actionview (4.2.7) lib/action_view/template.rb:296:in `compile'
+ actionview (4.2.7) lib/action_view/template.rb:245:in `block (2 levels) in compile!'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:244:in `block in compile!'
+ actionview (4.2.7) lib/action_view/template.rb:232:in `compile!'
+ actionview (4.2.7) lib/action_view/template.rb:144:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/ba8f030d497316e9/variables" for ::1 at 2016-10-03 17:27:34 -0700
+ [1m[35mTask Load (0.5ms)[0m SELECT "tasks".* FROM "tasks"
+
+
+Started GET "/" for ::1 at 2016-10-03 17:27:35 -0700
+Processing by TasksController#index as HTML
+ Rendered tasks/index.html.erb within layouts/application (1.9ms)
+Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.0ms)
+
+SyntaxError - syntax error, unexpected tSTRING_DEND, expecting ')'
+..., id: task.id}, method: :patch});@output_buffer.safe_append='
+... ^
+/Users/brandimilligan/Dropbox/ada/wk8/TaskListRails/app/views/tasks/index.html.erb:28: syntax error, unexpected keyword_end, expecting ')'
+'.freeze; end
+ ^
+/Users/brandimilligan/Dropbox/ada/wk8/TaskListRails/app/views/tasks/index.html.erb:38: syntax error, unexpected keyword_ensure, expecting ')'
+/Users/brandimilligan/Dropbox/ada/wk8/TaskListRails/app/views/tasks/index.html.erb:40: syntax error, unexpected keyword_end, expecting ')':
+ app/views/tasks/index.html.erb:24:in `'
+ actionview (4.2.7) lib/action_view/template.rb:296:in `compile'
+ actionview (4.2.7) lib/action_view/template.rb:245:in `block (2 levels) in compile!'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:244:in `block in compile!'
+ actionview (4.2.7) lib/action_view/template.rb:232:in `compile!'
+ actionview (4.2.7) lib/action_view/template.rb:144:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/748e25321e032ac2/variables" for ::1 at 2016-10-03 17:27:36 -0700
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+
+
+Started GET "/" for ::1 at 2016-10-03 17:28:50 -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 (10.6ms)
+Completed 200 OK in 459ms (Views: 457.2ms | ActiveRecord: 1.0ms)
+
+
+Started POST "/tasks/2/mark_complete?method=patch" for ::1 at 2016-10-03 17:28:56 -0700
+
+ActionController::RoutingError (No route matches [POST] "/tasks/2/mark_complete"):
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (12.8ms)
+ Rendered /Users/brandimilligan/.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.3ms)
+ Rendered /Users/brandimilligan/.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 (176.0ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.8ms)
+ Rendered /Users/brandimilligan/.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.6ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (120.8ms)
+ Rendered /Users/brandimilligan/.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.6ms)
+ Rendered /Users/brandimilligan/.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.9ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (256.7ms)
+
+
+Started GET "/tasks/2/mark_complete?method=patch" for ::1 at 2016-10-03 17:30:23 -0700
+
+ActionController::RoutingError (No route matches [GET] "/tasks/2/mark_complete"):
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.3ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.3ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.6ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.4ms)
+ Rendered /Users/brandimilligan/.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 (170.0ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (1.3ms)
+ Rendered /Users/brandimilligan/.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.8ms)
+ Rendered /Users/brandimilligan/.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 (2.0ms)
+ Rendered /Users/brandimilligan/.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 (1.6ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (110.2ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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.6ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (242.7ms)
+
+
+Started GET "/tasks/2/mark_complete?method=patch" for ::1 at 2016-10-03 17:31:06 -0700
+
+ActionController::RoutingError (No route matches [GET] "/tasks/2/mark_complete"):
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.0ms)
+ Rendered /Users/brandimilligan/.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.0ms)
+ Rendered /Users/brandimilligan/.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 (148.8ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms)
+ Rendered /Users/brandimilligan/.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.6ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (101.4ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (224.4ms)
+
+
+Started GET "/" for ::1 at 2016-10-03 17:31:13 -0700
+Processing by TasksController#index as HTML
+ [1m[36mTask Load (0.7ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/index.html.erb within layouts/application (12.1ms)
+Completed 200 OK in 82ms (Views: 77.7ms | ActiveRecord: 1.1ms)
+
+
+Started PATCH "/tasks/2/mark_complete" for ::1 at 2016-10-03 17:31:15 -0700
+Processing by TasksController#mark_complete as HTML
+ Parameters: {"authenticity_token"=>"nz4Ijv26Yu5gSoSt76IzjV0td1ihpqL+bW+cscmCUBu0BvJiGscdtAf5frf8dy4SkH8bumpUilyKUyJInUXE5g==", "id"=>"2"}
+ [1m[35mTask Load (0.4ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]]
+Completed 500 Internal Server Error in 43ms (ActiveRecord: 0.4ms)
+
+NameError - undefined local variable or method `parmas' for #
+Did you mean? params:
+ app/controllers/tasks_controller.rb:52:in `mark_complete'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
+ rack (1.6.4) lib/rack/conditionalget.rb:38:in `call'
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call'
+ activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call'
+ activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
+ activerecord (4.2.7) lib/active_record/migration.rb:377:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/e06e89d04cf7b53a/variables" for ::1 at 2016-10-03 17:31:16 -0700
+
+
+Started GET "/tasks/2/mark_complete" for ::1 at 2016-10-03 17:31:45 -0700
+
+ActionController::RoutingError (No route matches [GET] "/tasks/2/mark_complete"):
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.0ms)
+ Rendered /Users/brandimilligan/.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.9ms)
+ Rendered /Users/brandimilligan/.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 (149.0ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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.6ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (99.5ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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.6ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (225.0ms)
+
+
+Started GET "/tasks/2/mark_complete" for ::1 at 2016-10-03 17:33:12 -0700
+
+ActionController::RoutingError (No route matches [GET] "/tasks/2/mark_complete"):
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.1ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.1ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.3ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.7ms)
+ Rendered /Users/brandimilligan/.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 (215.4ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (1.2ms)
+ Rendered /Users/brandimilligan/.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.8ms)
+ Rendered /Users/brandimilligan/.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.8ms)
+ Rendered /Users/brandimilligan/.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 (1.2ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (106.2ms)
+ Rendered /Users/brandimilligan/.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.6ms)
+ Rendered /Users/brandimilligan/.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.8ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (231.9ms)
+
+
+Started GET "/tasks/2/mark_complete" for ::1 at 2016-10-03 17:43:55 -0700
+
+ActionController::RoutingError (No route matches [GET] "/tasks/2/mark_complete"):
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (9.3ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.7ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.6ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (13.2ms)
+ Rendered /Users/brandimilligan/.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 (202.6ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (1.3ms)
+ Rendered /Users/brandimilligan/.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 (1.2ms)
+ Rendered /Users/brandimilligan/.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 (1.3ms)
+ Rendered /Users/brandimilligan/.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 (1.0ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (113.0ms)
+ Rendered /Users/brandimilligan/.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.8ms)
+ Rendered /Users/brandimilligan/.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 (1.3ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (241.9ms)
+
+
+Started GET "/" for ::1 at 2016-10-03 17:44:08 -0700
+Processing by TasksController#index as HTML
+ [1m[36mTask Load (1.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/index.html.erb within layouts/application (23.1ms)
+Completed 500 Internal Server Error in 39ms (ActiveRecord: 1.8ms)
+
+ActionController::UrlGenerationError - No route matches {:action=>"mark_complete", :controller=>"tasks", :id=>nil} missing required keys: [:id]:
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:259:in `raise_generation_error'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:234:in `optimized_helper'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:220:in `call'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:345:in `block (2 levels) in define_url_helper'
+ app/views/tasks/index.html.erb:24:in `block in _app_views_tasks_index_html_erb___3042757777640268618_70154259705680'
+ activerecord (4.2.7) lib/active_record/relation/delegation.rb:46:in `each'
+ app/views/tasks/index.html.erb:3:in `_app_views_tasks_index_html_erb___3042757777640268618_70154259705680'
+ actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started GET "/" for ::1 at 2016-10-03 17:44:08 -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 (12.5ms)
+Completed 500 Internal Server Error in 21ms (ActiveRecord: 0.2ms)
+
+ActionController::UrlGenerationError - No route matches {:action=>"mark_complete", :controller=>"tasks", :id=>nil} missing required keys: [:id]:
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:259:in `raise_generation_error'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:234:in `optimized_helper'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:220:in `call'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:345:in `block (2 levels) in define_url_helper'
+ app/views/tasks/index.html.erb:24:in `block in _app_views_tasks_index_html_erb___3042757777640268618_70154259705680'
+ activerecord (4.2.7) lib/active_record/relation/delegation.rb:46:in `each'
+ app/views/tasks/index.html.erb:3:in `_app_views_tasks_index_html_erb___3042757777640268618_70154259705680'
+ actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/5060934999ff2bd0/variables" for ::1 at 2016-10-03 17:44:08 -0700
+
+
+Started GET "/" for ::1 at 2016-10-03 17:45:13 -0700
+Processing by TasksController#index as HTML
+ [1m[36mTask Load (0.8ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/index.html.erb within layouts/application (19.4ms)
+Completed 500 Internal Server Error in 34ms (ActiveRecord: 1.2ms)
+
+NoMethodError - undefined method `[]' for nil:NilClass:
+ app/views/tasks/index.html.erb:24:in `block in _app_views_tasks_index_html_erb___3042757777640268618_70154251567820'
+ activerecord (4.2.7) lib/active_record/relation/delegation.rb:46:in `each'
+ app/views/tasks/index.html.erb:3:in `_app_views_tasks_index_html_erb___3042757777640268618_70154251567820'
+ actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/6a888b4f8593d466/variables" for ::1 at 2016-10-03 17:45:13 -0700
+
+
+Started GET "/" for ::1 at 2016-10-03 17:46:10 -0700
+Processing by TasksController#index as HTML
+ [1m[35mTask Load (0.3ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered tasks/index.html.erb within layouts/application (4.7ms)
+Completed 200 OK in 57ms (Views: 55.9ms | ActiveRecord: 0.3ms)
+
+
+Started PATCH "/tasks/2/mark_complete" for ::1 at 2016-10-03 17:46:13 -0700
+Processing by TasksController#mark_complete as HTML
+ Parameters: {"authenticity_token"=>"fP2TzjPSR58cu40XPTakEi5TJFXKXcuZzuIe0zyc6GdXxWki1K84xXsIdw0u47mN4wFItwGv4zsp3qAqaFt8mg==", "id"=>"2"}
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 2]]
+Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.3ms)
+
+NoMethodError - undefined method `timestamps' for nil:NilClass:
+ app/controllers/tasks_controller.rb:50:in `mark_complete'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
+ rack (1.6.4) lib/rack/conditionalget.rb:38:in `call'
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call'
+ activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call'
+ activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
+ activerecord (4.2.7) lib/active_record/migration.rb:377:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/5c3346ef61feac7e/variables" for ::1 at 2016-10-03 17:46:13 -0700
+
+
+Started GET "/" for ::1 at 2016-10-03 17:47:23 -0700
+Processing by TasksController#index as HTML
+ [1m[35mTask Load (0.8ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered tasks/index.html.erb within layouts/application (10.1ms)
+Completed 200 OK in 74ms (Views: 69.8ms | ActiveRecord: 1.1ms)
+
+
+Started GET "/" for ::1 at 2016-10-03 17:47:24 -0700
+Processing by TasksController#index as HTML
+ [1m[36mTask Load (0.7ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/index.html.erb within layouts/application (4.9ms)
+Completed 200 OK in 56ms (Views: 54.5ms | ActiveRecord: 0.7ms)
+
+
+Started PATCH "/tasks/2/mark_complete" for ::1 at 2016-10-03 17:47:26 -0700
+Processing by TasksController#mark_complete as HTML
+ Parameters: {"authenticity_token"=>"5Wi0ZVUsQdyg7Wv+xK1WuBb0I6NJuhvWcU7BqtW4GKDOUE6JslE+hsdekeTXeEsn26ZPQYJIM3SWcn9TgX+MXQ==", "id"=>"2"}
+ [1m[35mTask Load (0.3ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]]
+Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.3ms)
+
+ActionView::MissingTemplate - Missing template tasks/mark_complete, application/mark_complete with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in:
+ * "/Users/brandimilligan/Dropbox/ada/wk8/TaskListRails/app/views"
+:
+ actionview (4.2.7) lib/action_view/path_set.rb:46:in `find'
+ actionview (4.2.7) lib/action_view/lookup_context.rb:121:in `find'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:40:in `determine_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:8:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
+ rack (1.6.4) lib/rack/conditionalget.rb:38:in `call'
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call'
+ activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call'
+ activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
+ activerecord (4.2.7) lib/active_record/migration.rb:377:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/020c2c61015bc0a1/variables" for ::1 at 2016-10-03 17:47:26 -0700
+
+
+Started GET "/" for ::1 at 2016-10-03 17:49:44 -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.0ms)
+Completed 200 OK in 39ms (Views: 37.3ms | ActiveRecord: 0.2ms)
+
+
+Started PATCH "/tasks/2/mark_complete" for ::1 at 2016-10-03 17:49:48 -0700
+Processing by TasksController#mark_complete as HTML
+ Parameters: {"authenticity_token"=>"KIaJBrN+O4gp59kUSI6O7IbXVHpgcbp4rauw9QNz9B4DvnPqVANE0k5UIw5bW5NzS4U4mKuDktpKlw4MV7Rg4w==", "id"=>"2"}
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]]
+ Rendered tasks/mark_complete.html.erb within layouts/application (0.6ms)
+Completed 200 OK in 37ms (Views: 35.0ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/" for ::1 at 2016-10-03 17:51:26 -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.1ms)
+Completed 200 OK in 36ms (Views: 35.5ms | ActiveRecord: 0.3ms)
+
+
+Started PATCH "/tasks/2/mark_complete" for ::1 at 2016-10-03 17:51:29 -0700
+Processing by TasksController#mark_complete as HTML
+ Parameters: {"authenticity_token"=>"s5JAh6XUb4RgiwbrsqqysyyXgSgegpT7r3ECQJqoG4uYqrprQqkQ3gc4/PGhf68s4cXtytVwvFlITby5zm+Pdg==", "id"=>"2"}
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]]
+ Rendered tasks/mark_complete.html.erb within layouts/application (1.6ms)
+Completed 200 OK in 34ms (Views: 32.4ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-03 17:51:39 -0700
+Processing by TasksController#index as HTML
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/index.html.erb within layouts/application (3.3ms)
+Completed 200 OK in 90ms (Views: 88.8ms | ActiveRecord: 0.2ms)
+
+
+Started PATCH "/tasks/2/mark_complete" for ::1 at 2016-10-03 17:51:44 -0700
+Processing by TasksController#mark_complete as HTML
+ Parameters: {"authenticity_token"=>"5Z+IbfuTPFxsxYNIEFU5AiWKf46mc4C5efEjY6bhHKzOp3KBHO5DBgt2eVIDgCSd6NgTbG2BqBuezZ2a8iaIUQ==", "id"=>"2"}
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]]
+ Rendered tasks/mark_complete.html.erb within layouts/application (0.4ms)
+Completed 200 OK in 48ms (Views: 46.3ms | ActiveRecord: 0.1ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-03 17:51:48 -0700
+Processing by TasksController#index as HTML
+ [1m[36mTask Load (0.4ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/index.html.erb within layouts/application (13.1ms)
+Completed 200 OK in 61ms (Views: 59.5ms | ActiveRecord: 0.4ms)
+
+
+Started PATCH "/tasks/2/mark_complete" for ::1 at 2016-10-03 17:54:54 -0700
+Processing by TasksController#mark_complete as HTML
+ Parameters: {"authenticity_token"=>"nT481NwMYdoeQLWlhl40S9hFo+KMh3qjy0QlddusecG2BsY4O3EegHnzT7+ViynUFRfPAEd1UgEseJuMj2vtPA==", "id"=>"2"}
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]]
+ Rendered tasks/mark_complete.html.erb within layouts/application (1.2ms)
+Completed 200 OK in 37ms (Views: 35.2ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-03 17:55:08 -0700
+Processing by TasksController#index as HTML
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/index.html.erb within layouts/application (5.7ms)
+Completed 200 OK in 54ms (Views: 53.1ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-03 17:58: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 (3.8ms)
+Completed 200 OK in 62ms (Views: 60.2ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/tasks/edit/2" for ::1 at 2016-10-03 17:58:40 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"2"}
+Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms)
+
+NameError - uninitialized constant TasksController::Tasks:
+ activesupport (4.2.7) lib/active_support/dependencies.rb:533:in `load_missing_constant'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:184:in `const_missing'
+ app/controllers/tasks_controller.rb:35:in `edit'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/ca3fc5f0d1fe51fe/variables" for ::1 at 2016-10-03 17:58:40 -0700
+
+
+Started GET "/tasks/edit/2" for ::1 at 2016-10-03 17:59:26 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"2"}
+ [1m[36mTask Load (0.7ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 2]]
+Completed 500 Internal Server Error in 16ms (ActiveRecord: 1.4ms)
+
+NoMethodError - undefined method `[]' for nil:NilClass:
+ app/controllers/tasks_controller.rb:36:in `edit'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/168a57e670bbf377/variables" for ::1 at 2016-10-03 17:59:26 -0700
+
+
+Started GET "/" for ::1 at 2016-10-03 18:00:22 -0700
+Processing by TasksController#index as HTML
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered tasks/index.html.erb within layouts/application (3.6ms)
+Completed 200 OK in 41ms (Views: 39.8ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/tasks/edit/2" for ::1 at 2016-10-03 18:00:25 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"2"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 2]]
+Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.2ms)
+
+NoMethodError - undefined method `[]' for nil:NilClass:
+ app/controllers/tasks_controller.rb:36:in `edit'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/d0f36bf593affef4/variables" for ::1 at 2016-10-03 18:00:26 -0700
+ [1m[36mTask Load (3.3ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+
+
+Started GET "/" for ::1 at 2016-10-03 18:04:10 -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 (9.1ms)
+Completed 200 OK in 83ms (Views: 81.5ms | ActiveRecord: 0.5ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-10-03 18:04:13 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (21.4ms)
+Completed 200 OK in 94ms (Views: 92.7ms | ActiveRecord: 0.0ms)
+
+
+Started POST "/tasks/new" for ::1 at 2016-10-03 18:04:42 -0700
+
+ActionController::RoutingError (No route matches [POST] "/tasks/new"):
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.8ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.5ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.7ms)
+ Rendered /Users/brandimilligan/.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 (182.4ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (4.3ms)
+ Rendered /Users/brandimilligan/.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.8ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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 (44.2ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (165.4ms)
+ Rendered /Users/brandimilligan/.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.8ms)
+ Rendered /Users/brandimilligan/.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.9ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (322.8ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-10-03 18:09:25 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (5.8ms)
+Completed 500 Internal Server Error in 49ms (ActiveRecord: 1.0ms)
+
+SyntaxError - syntax error, unexpected tIDENTIFIER, expecting keyword_end
+...ffer.append= form_for :task as: :create, url: create_path, ...
+... ^
+/Users/brandimilligan/Dropbox/ada/wk8/TaskListRails/app/views/tasks/new.html.erb:18: syntax error, unexpected keyword_ensure, expecting end-of-input:
+ app/views/tasks/new.html.erb:4:in `'
+ actionview (4.2.7) lib/action_view/template.rb:296:in `compile'
+ actionview (4.2.7) lib/action_view/template.rb:245:in `block (2 levels) in compile!'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:244:in `block in compile!'
+ actionview (4.2.7) lib/action_view/template.rb:232:in `compile!'
+ actionview (4.2.7) lib/action_view/template.rb:144:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/123e9a16de4e42e1/variables" for ::1 at 2016-10-03 18:09:25 -0700
+
+
+Started GET "/tasks/new" for ::1 at 2016-10-03 18:10:43 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (3.5ms)
+Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.0ms)
+
+SyntaxError - syntax error, unexpected tIDENTIFIER, expecting keyword_end
+...er.append= form_for @mytask as: :create, url: create_path, ...
+... ^
+/Users/brandimilligan/Dropbox/ada/wk8/TaskListRails/app/views/tasks/new.html.erb:18: syntax error, unexpected keyword_ensure, expecting end-of-input:
+ app/views/tasks/new.html.erb:4:in `'
+ actionview (4.2.7) lib/action_view/template.rb:296:in `compile'
+ actionview (4.2.7) lib/action_view/template.rb:245:in `block (2 levels) in compile!'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:244:in `block in compile!'
+ actionview (4.2.7) lib/action_view/template.rb:232:in `compile!'
+ actionview (4.2.7) lib/action_view/template.rb:144:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/99cd4c6ea371de7b/variables" for ::1 at 2016-10-03 18:10:43 -0700
+
+
+Started GET "/tasks/new" for ::1 at 2016-10-03 18:11:14 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (27.5ms)
+Completed 200 OK in 71ms (Views: 69.7ms | ActiveRecord: 0.0ms)
+
+
+Started POST "/tasks/create" for ::1 at 2016-10-03 18:11:36 -0700
+Processing by TasksController#create as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"GQigEwy5gIFP0XxynenLhKVeC+nNJBj5tCIwtPim1bEyMFr/68T/2yhihmiOPNYbaAxnCwbWMFtTHo5NrGFBTA==", "create"=>{"title"=>"I am cool", "description"=>"because Emily helps me", "details"=>"we get stuff done"}, "commit"=>"Create Task"}
+Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms)
+
+NoMethodError - undefined method `[]' for nil:NilClass:
+ app/controllers/tasks_controller.rb:10:in `create'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
+ rack (1.6.4) lib/rack/conditionalget.rb:38:in `call'
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call'
+ activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call'
+ activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
+ activerecord (4.2.7) lib/active_record/migration.rb:377:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/7eb303b0fcc40dd8/variables" for ::1 at 2016-10-03 18:11:36 -0700
+
+
+Started GET "/tasks/create" for ::1 at 2016-10-03 18:13:57 -0700
+Processing by TasksController#create as HTML
+Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.8ms)
+
+NoMethodError - undefined method `[]' for nil:NilClass:
+ app/controllers/tasks_controller.rb:10:in `create'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/52299b9cd884c44b/variables" for ::1 at 2016-10-03 18:13:58 -0700
+
+
+Started GET "/tasks/create" for ::1 at 2016-10-03 18:15:56 -0700
+Processing by TasksController#create as HTML
+Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.7ms)
+
+NoMethodError - undefined method `[]' for nil:NilClass:
+ app/controllers/tasks_controller.rb:10:in `create'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/f875b027e5d8fbcf/variables" for ::1 at 2016-10-03 18:15:56 -0700
+
+
+Started GET "/tasks/create" for ::1 at 2016-10-03 18:16:09 -0700
+Processing by TasksController#create as HTML
+Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.6ms)
+
+NoMethodError - undefined method `[]' for nil:NilClass:
+ app/controllers/tasks_controller.rb:10:in `create'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/502ac03b11d0615a/variables" for ::1 at 2016-10-03 18:16:10 -0700
+
+
+Started GET "/" for ::1 at 2016-10-03 18:16:17 -0700
+Processing by TasksController#index as HTML
+ [1m[36mTask Load (0.5ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/index.html.erb within layouts/application (5.7ms)
+Completed 200 OK in 66ms (Views: 64.7ms | ActiveRecord: 0.5ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-10-03 18:16:21 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (4.3ms)
+Completed 200 OK in 92ms (Views: 90.8ms | ActiveRecord: 0.0ms)
+
+
+Started POST "/tasks/create" for ::1 at 2016-10-03 18:16:51 -0700
+Processing by TasksController#create as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"KQN68C8jtj90UdFoC90mNhL0PinixdhunjsWV0q9CGgCO4AcyF7JZRPiK3IYCDup36ZSyyk38Mx5B6iuHnqclQ==", "create"=>{"title"=>"again", "description"=>"trying again", "details"=>"params! ugh"}, "commit"=>"Create Task"}
+Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms)
+
+NoMethodError - undefined method `[]' for nil:NilClass:
+ app/controllers/tasks_controller.rb:10:in `create'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
+ rack (1.6.4) lib/rack/conditionalget.rb:38:in `call'
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call'
+ activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call'
+ activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
+ activerecord (4.2.7) lib/active_record/migration.rb:377:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/7582ffc3342f069c/variables" for ::1 at 2016-10-03 18:16:52 -0700
+
+
+Started GET "/tasks/create" for ::1 at 2016-10-03 18:19:59 -0700
+Processing by TasksController#create as HTML
+Completed 500 Internal Server Error in 14ms (ActiveRecord: 1.1ms)
+
+NoMethodError - undefined method `[]' for nil:NilClass:
+ app/controllers/tasks_controller.rb:10:in `create'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/e33f7cd2ec6b4b6c/variables" for ::1 at 2016-10-03 18:19:59 -0700
+
+
+Started GET "/tasks/create" for ::1 at 2016-10-03 18:20:20 -0700
+Processing by TasksController#create as HTML
+Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.7ms)
+
+NoMethodError - undefined method `[]' for nil:NilClass:
+ app/controllers/tasks_controller.rb:10:in `create'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/2dca890c205961ca/variables" for ::1 at 2016-10-03 18:20:20 -0700
+
+
+Started GET "/tasks" for ::1 at 2016-10-03 18:20:51 -0700
+
+ActionController::RoutingError (No route matches [GET] "/tasks"):
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
+ railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app'
+ railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged'
+ railties (4.2.7) lib/rails/rack/logger.rb:20:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call'
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
+ activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call'
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
+ railties (4.2.7) lib/rails/engine.rb:518:in `call'
+ railties (4.2.7) lib/rails/application.rb:165:in `call'
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms)
+ Rendered /Users/brandimilligan/.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.0ms)
+ Rendered /Users/brandimilligan/.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 (152.5ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms)
+ Rendered /Users/brandimilligan/.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.6ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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.8ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (104.1ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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.8ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (229.0ms)
+
+
+Started GET "/" for ::1 at 2016-10-03 18:20:56 -0700
+Processing by TasksController#index as HTML
+ [1m[35mTask Load (0.6ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered tasks/index.html.erb within layouts/application (4.6ms)
+Completed 200 OK in 74ms (Views: 71.8ms | ActiveRecord: 0.6ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-10-03 18:21:02 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (3.8ms)
+Completed 200 OK in 132ms (Views: 130.7ms | ActiveRecord: 0.0ms)
+
+
+Started POST "/tasks/create" for ::1 at 2016-10-03 18:21:11 -0700
+Processing by TasksController#create as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"jKa6qoAc4Gei27/qkCz31AuJLv8plAk423ynf4Y+PEynnkBGZ2GfPcVoRfCD+epLxttCHeJmIZo8QBmG0vmosQ==", "create"=>{"title"=>"new", "description"=>"sldkj", "details"=>"sdlkjf"}, "commit"=>"Create Task"}
+Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
+
+NoMethodError - undefined method `[]' for nil:NilClass:
+ app/controllers/tasks_controller.rb:11:in `create'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
+ rack (1.6.4) lib/rack/conditionalget.rb:38:in `call'
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call'
+ activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call'
+ activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
+ activerecord (4.2.7) lib/active_record/migration.rb:377:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/11cd6aa22f66d228/variables" for ::1 at 2016-10-03 18:21:11 -0700
+
+
+Started GET "/tasks/create" for ::1 at 2016-10-03 18:22:21 -0700
+Processing by TasksController#create as HTML
+Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.6ms)
+
+NoMethodError - undefined method `[]' for nil:NilClass:
+ app/controllers/tasks_controller.rb:10:in `create'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/c36a8c344c3682e4/variables" for ::1 at 2016-10-03 18:22:22 -0700
+
+
+Started GET "/" for ::1 at 2016-10-03 18:22:31 -0700
+Processing by TasksController#index as HTML
+ [1m[36mTask Load (0.5ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/index.html.erb within layouts/application (6.0ms)
+Completed 200 OK in 57ms (Views: 55.9ms | ActiveRecord: 0.5ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-10-03 18:22:34 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (3.5ms)
+Completed 200 OK in 55ms (Views: 54.6ms | ActiveRecord: 0.0ms)
+
+
+Started POST "/tasks/create" for ::1 at 2016-10-03 18:22:42 -0700
+Processing by TasksController#create as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"BHBQ2LER4/yFo9jB4Ugnhwkuc4T30vbUILbmq92yZyYvSKo0VmycpuIQItvynToYxHwfZjwg3nbHilhSiXXz2w==", "create"=>{"title"=>"asdlkf", "description"=>"sdlkfh", "details"=>"sdkf"}, "commit"=>"Create Task"}
+Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms)
+
+NoMethodError - undefined method `save' for nil:NilClass:
+ app/controllers/tasks_controller.rb:15:in `create'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
+ rack (1.6.4) lib/rack/conditionalget.rb:38:in `call'
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call'
+ activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call'
+ activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
+ activerecord (4.2.7) lib/active_record/migration.rb:377:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/5dec5879f63c15ab/variables" for ::1 at 2016-10-03 18:22:42 -0700
+
+
+Started GET "/" for ::1 at 2016-10-03 18:23:57 -0700
+Processing by TasksController#index as HTML
+ [1m[35mTask Load (0.8ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered tasks/index.html.erb within layouts/application (11.7ms)
+Completed 200 OK in 48ms (Views: 44.1ms | ActiveRecord: 1.1ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-10-03 18:24:01 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (4.5ms)
+Completed 200 OK in 134ms (Views: 132.8ms | ActiveRecord: 0.0ms)
+
+
+Started POST "/tasks/create" for ::1 at 2016-10-03 18:24:09 -0700
+Processing by TasksController#create as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"iIFyLAFWH8FVdOwA2M/EbgBD4zhFJjdUtoKuWTjkVZujuYjA5itgmzLHFhrLGtnxzRGP2o7UH/ZRvhCgbCPBZg==", "create"=>{"title"=>"lksajdf", "description"=>"lkasjdf", "details"=>"skdjfh;lksdhf"}, "commit"=>"Create Task"}
+ [1m[36m (0.2ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (1.3ms)[0m INSERT INTO "tasks" ("title", "description", "details", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "lksajdf"], ["description", "lkasjdf"], ["details", "skdjfh;lksdhf"], ["created_at", "2016-10-04 01:24:09.400622"], ["updated_at", "2016-10-04 01:24:09.400622"]]
+ [1m[36m (0.9ms)[0m [1mcommit transaction[0m
+ Rendered tasks/create.html.erb within layouts/application (0.9ms)
+Completed 200 OK in 153ms (Views: 143.6ms | ActiveRecord: 2.4ms)
+
+
+Started GET "/tasks/create" for ::1 at 2016-10-03 18:25:51 -0700
+Processing by TasksController#create as HTML
+Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms)
+
+NoMethodError - undefined method `[]' for nil:NilClass:
+ app/controllers/tasks_controller.rb:10:in `create'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/990a12dbaaa29c85/variables" for ::1 at 2016-10-03 18:25:52 -0700
+
+
+Started GET "/" for ::1 at 2016-10-03 18:25:59 -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 (6.1ms)
+Completed 200 OK in 40ms (Views: 39.1ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-10-03 18:26:06 -0700
+Processing by TasksController#new as HTML
+ Rendered tasks/new.html.erb within layouts/application (6.0ms)
+Completed 200 OK in 164ms (Views: 155.6ms | ActiveRecord: 0.0ms)
+
+
+Started POST "/tasks/create" for ::1 at 2016-10-03 18:26:14 -0700
+Processing by TasksController#create as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"lHqRYZFcqmP8z1LTllZpyqDGt+dVTxvdd0M6s7RNSZC/QmuNdiHVOZt8qMmFg3RVbZTbBZ69M3+Qf4RK4IrdbQ==", "create"=>{"title"=>"kdfjhg;alk", "description"=>"skdjngasdhgn", "details"=>"dngo;adng"}, "commit"=>"Create Task"}
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("title", "description", "details", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "kdfjhg;alk"], ["description", "skdjngasdhgn"], ["details", "dngo;adng"], ["created_at", "2016-10-04 01:26:14.548589"], ["updated_at", "2016-10-04 01:26:14.548589"]]
+ [1m[36m (0.9ms)[0m [1mcommit transaction[0m
+ Rendered tasks/create.html.erb within layouts/application (1.0ms)
+Completed 200 OK in 34ms (Views: 29.0ms | ActiveRecord: 1.5ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-03 18:26:23 -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.2ms)
+Completed 200 OK in 157ms (Views: 155.1ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/tasks/edit/2" for ::1 at 2016-10-03 18:26:31 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"2"}
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 2]]
+Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.3ms)
+
+NoMethodError - undefined method `[]' for nil:NilClass:
+ app/controllers/tasks_controller.rb:37:in `edit'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/c6b297b2f48399b5/variables" for ::1 at 2016-10-03 18:26:31 -0700
+
+
+Started GET "/tasks/edit/2" for ::1 at 2016-10-03 18:27:01 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"2"}
+ [1m[35mTask Load (0.3ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]]
+Completed 500 Internal Server Error in 54ms (ActiveRecord: 0.9ms)
+
+NoMethodError - undefined method `[]' for nil:NilClass:
+ app/controllers/tasks_controller.rb:36:in `edit'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/278a1599d06f5db8/variables" for ::1 at 2016-10-03 18:27:01 -0700
+
+
+Started GET "/tasks/edit/2" for ::1 at 2016-10-03 18:29:06 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"2"}
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 2]]
+Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.3ms)
+
+NoMethodError - undefined method `[]' for nil:NilClass:
+ app/controllers/tasks_controller.rb:36:in `edit'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/6a007bfbb877c934/variables" for ::1 at 2016-10-03 18:29:06 -0700
+
+
+Started GET "/tasks/edit/2" for ::1 at 2016-10-03 18:32:05 -0700
+
+ActionController::RoutingError (No route matches [GET] "/tasks/edit/2"):
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (16.4ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (142.4ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.7ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (7.0ms)
+ Rendered /Users/brandimilligan/.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 (438.5ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (1.5ms)
+ Rendered /Users/brandimilligan/.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.6ms)
+ Rendered /Users/brandimilligan/.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.9ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (107.1ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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 (1.0ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (233.3ms)
+
+
+Started GET "/tasks/edit/2" for ::1 at 2016-10-03 18:33:05 -0700
+
+ActionController::RoutingError (No route matches [GET] "/tasks/edit/2"):
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.8ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.4ms)
+ Rendered /Users/brandimilligan/.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 (160.3ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (1.0ms)
+ Rendered /Users/brandimilligan/.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.8ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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.9ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (106.1ms)
+ Rendered /Users/brandimilligan/.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.7ms)
+ Rendered /Users/brandimilligan/.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 (1.0ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (229.9ms)
+
+
+Started GET "/" for ::1 at 2016-10-03 18:33:16 -0700
+Processing by TasksController#index as HTML
+ [1m[35mTask Load (0.9ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered tasks/index.html.erb within layouts/application (20.5ms)
+Completed 200 OK in 189ms (Views: 181.6ms | ActiveRecord: 1.3ms)
+
+
+Started GET "/" for ::1 at 2016-10-03 18:33:16 -0700
+Processing by TasksController#index as HTML
+ [1m[36mTask Load (0.4ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/index.html.erb within layouts/application (13.5ms)
+Completed 200 OK in 72ms (Views: 70.6ms | ActiveRecord: 0.4ms)
+
+
+Started GET "/tasks/2/edit" for ::1 at 2016-10-03 18:33:18 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"2"}
+ [1m[35mTask Load (1.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]]
+Completed 500 Internal Server Error in 9ms (ActiveRecord: 1.1ms)
+
+NoMethodError - undefined method `[]' for nil:NilClass:
+ app/controllers/tasks_controller.rb:36:in `edit'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/6337ceca6ccb5c35/variables" for ::1 at 2016-10-03 18:33:18 -0700
+
+
+Started GET "/tasks/2/edit" for ::1 at 2016-10-03 18:34:58 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"2"}
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 2]]
+ Rendered tasks/edit.html.erb within layouts/application (29.6ms)
+Completed 500 Internal Server Error in 93ms (ActiveRecord: 1.3ms)
+
+NoMethodError - undefined method `title' for 2:Fixnum:
+ actionview (4.2.7) lib/action_view/helpers/tags/base.rb:28:in `value'
+ actionview (4.2.7) lib/action_view/helpers/tags/base.rb:38:in `value_before_type_cast'
+ actionview (4.2.7) lib/action_view/helpers/tags/text_field.rb:13:in `block in render'
+ actionview (4.2.7) lib/action_view/helpers/tags/text_field.rb:13:in `render'
+ actionview (4.2.7) lib/action_view/helpers/form_helper.rb:787:in `text_field'
+ actionview (4.2.7) lib/action_view/helpers/form_helper.rb:1323:in `text_field'
+ app/views/tasks/edit.html.erb:6:in `block in _app_views_tasks_edit_html_erb___4234130351954849242_70154268739200'
+ actionview (4.2.7) lib/action_view/helpers/capture_helper.rb:38:in `block in capture'
+ actionview (4.2.7) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer'
+ actionview (4.2.7) lib/action_view/helpers/capture_helper.rb:38:in `capture'
+ actionview (4.2.7) lib/action_view/helpers/form_helper.rb:444:in `form_for'
+ app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___4234130351954849242_70154268739200'
+ actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/dd76a0a14f8a0a58/variables" for ::1 at 2016-10-03 18:34:59 -0700
+
+
+Started GET "/tasks/2/edit" for ::1 at 2016-10-03 18:35:39 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"2"}
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]]
+ Rendered tasks/edit.html.erb within layouts/application (30.8ms)
+Completed 500 Internal Server Error in 41ms (ActiveRecord: 0.2ms)
+
+NoMethodError - undefined method `save' for #:
+ app/views/tasks/edit.html.erb:14:in `block in _app_views_tasks_edit_html_erb___4234130351954849242_70154268985900'
+ actionview (4.2.7) lib/action_view/helpers/capture_helper.rb:38:in `block in capture'
+ actionview (4.2.7) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer'
+ actionview (4.2.7) lib/action_view/helpers/capture_helper.rb:38:in `capture'
+ actionview (4.2.7) lib/action_view/helpers/form_helper.rb:444:in `form_for'
+ app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___4234130351954849242_70154268985900'
+ actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/357a979ea9b0dd36/variables" for ::1 at 2016-10-03 18:35:39 -0700
+
+
+Started GET "/tasks/2/edit" for ::1 at 2016-10-03 18:36:21 -0700
+Processing by TasksController#edit 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/edit.html.erb within layouts/application (4.6ms)
+Completed 200 OK in 47ms (Views: 44.9ms | ActiveRecord: 0.2ms)
+
+
+Started PUT "/tasks/update" for ::1 at 2016-10-03 18:36:34 -0700
+Processing by TasksController#update as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"zLrO4/J1hokccXt1Y1MMQG3D8N1xbrEM50Txs83iO+vngjQPFQj503vCgW9whhHfoJGcP7qcma4AeE9KmSWvFg==", "edit"=>{"title"=>"Call Dentist", "description"=>"Health & Wellness", "details"=>"Malika needs a check-up, Queen Anne"}, "commit"=>"Update Task"}
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 0]]
+Completed 404 Not Found in 3ms (ActiveRecord: 0.2ms)
+
+ActiveRecord::RecordNotFound - Couldn't find Task with 'id'=0:
+ activerecord (4.2.7) lib/active_record/core.rb:155:in `find'
+ app/controllers/tasks_controller.rb:39:in `update'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
+ rack (1.6.4) lib/rack/conditionalget.rb:38:in `call'
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call'
+ activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call'
+ activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
+ activerecord (4.2.7) lib/active_record/migration.rb:377:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/437602c80f912bc3/variables" for ::1 at 2016-10-03 18:36:35 -0700
+
+
+Started GET "/tasks/2/edit" for ::1 at 2016-10-03 18:39:28 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"2"}
+ [1m[36mTask Load (0.4ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 2]]
+ Rendered tasks/edit.html.erb within layouts/application (9.7ms)
+Completed 200 OK in 185ms (Views: 150.7ms | ActiveRecord: 2.6ms)
+
+
+Started PUT "/tasks/2/update" for ::1 at 2016-10-03 18:39:34 -0700
+Processing by TasksController#update as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"bwkovpDj5De+1BocqVdk7fJ1JN1tUE9ggcXsX72DLQVEMdJSd56bbdln4Aa6gnlyPydIP6aiZ8Jm+VKm6US5+A==", "edit"=>{"title"=>"Call Dentist", "description"=>"Health & Wellness", "details"=>"Malika needs a check-up, Queen Anne "}, "commit"=>"Update Task", "id"=>"2"}
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]]
+Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.2ms)
+
+NoMethodError - undefined method `[]' for nil:NilClass:
+ app/controllers/tasks_controller.rb:40:in `update'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
+ rack (1.6.4) lib/rack/conditionalget.rb:38:in `call'
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call'
+ activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call'
+ activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
+ activerecord (4.2.7) lib/active_record/migration.rb:377:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/8860640e4c0f75c3/variables" for ::1 at 2016-10-03 18:39:34 -0700
+
+
+Started PUT "/tasks/2/update" for ::1 at 2016-10-03 18:40:59 -0700
+Processing by TasksController#update as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"bwkovpDj5De+1BocqVdk7fJ1JN1tUE9ggcXsX72DLQVEMdJSd56bbdln4Aa6gnlyPydIP6aiZ8Jm+VKm6US5+A==", "edit"=>{"title"=>"Call Dentist", "description"=>"Health & Wellness", "details"=>"Malika needs a check-up, Queen Anne "}, "commit"=>"Update Task", "id"=>"2"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 2]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (1.1ms)[0m [1mUPDATE "tasks" SET "details" = ?, "updated_at" = ? WHERE "tasks"."id" = ?[0m [["details", "Malika needs a check-up, Queen Anne "], ["updated_at", "2016-10-04 01:40:59.922293"], ["id", 2]]
+ [1m[35m (0.7ms)[0m commit transaction
+ Rendered tasks/update.html.erb within layouts/application (1.1ms)
+Completed 200 OK in 127ms (Views: 108.3ms | ActiveRecord: 2.9ms)
+
+
+Started GET "/tasks/2/update" for ::1 at 2016-10-03 18:42:07 -0700
+
+ActionController::RoutingError (No route matches [GET] "/tasks/2/update"):
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
+ railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app'
+ railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged'
+ railties (4.2.7) lib/rails/rack/logger.rb:20:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call'
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
+ activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call'
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
+ railties (4.2.7) lib/rails/engine.rb:518:in `call'
+ railties (4.2.7) lib/rails/application.rb:165:in `call'
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.1ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.4ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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.9ms)
+ Rendered /Users/brandimilligan/.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 (170.1ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.9ms)
+ Rendered /Users/brandimilligan/.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 (1.4ms)
+ Rendered /Users/brandimilligan/.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.9ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (105.6ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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 (1.0ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (233.7ms)
+
+
+Started GET "/tasks/2/edit" for ::1 at 2016-10-03 18:42:13 -0700
+Processing by TasksController#edit 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/edit.html.erb within layouts/application (4.2ms)
+Completed 200 OK in 56ms (Views: 54.1ms | ActiveRecord: 0.2ms)
+
+
+Started PUT "/tasks/2/update" for ::1 at 2016-10-03 18:42:18 -0700
+Processing by TasksController#update as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"mXhkyIFI5poYZq3pFBC5v6VO5wcNREKpjKAVwdqG/iGyQJ4kZjWZwH/VV/MHxaQgaByL5ca2agtrnKs4jkFq3A==", "edit"=>{"title"=>"Call Dentist", "description"=>"Health & Wellness", "details"=>"Malika needs a check-up, Queen"}, "commit"=>"Update Task", "id"=>"2"}
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.4ms)[0m UPDATE "tasks" SET "details" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["details", "Malika needs a check-up, Queen"], ["updated_at", "2016-10-04 01:42:18.924579"], ["id", 2]]
+ [1m[36m (0.8ms)[0m [1mcommit transaction[0m
+ Rendered tasks/update.html.erb within layouts/application (2.6ms)
+Completed 200 OK in 159ms (Views: 149.6ms | ActiveRecord: 1.6ms)
+
+
+Started GET "/tasks/2/update" for ::1 at 2016-10-03 21:11:56 -0700
+
+ActionController::RoutingError (No route matches [GET] "/tasks/2/update"):
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
+ railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app'
+ railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged'
+ railties (4.2.7) lib/rails/rack/logger.rb:20:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call'
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
+ activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call'
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
+ railties (4.2.7) lib/rails/engine.rb:518:in `call'
+ railties (4.2.7) lib/rails/application.rb:165:in `call'
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.3ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.9ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.7ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.6ms)
+ Rendered /Users/brandimilligan/.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 (186.7ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (1.8ms)
+ Rendered /Users/brandimilligan/.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 (1.1ms)
+ Rendered /Users/brandimilligan/.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.7ms)
+ Rendered /Users/brandimilligan/.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 (1.1ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (114.4ms)
+ Rendered /Users/brandimilligan/.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.9ms)
+ Rendered /Users/brandimilligan/.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 (1.3ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (244.4ms)
+
+
+Started GET "/" for ::1 at 2016-10-03 21:12:10 -0700
+Processing by TasksController#index as HTML
+ [1m[35mTask Load (1.5ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered tasks/index.html.erb within layouts/application (25.4ms)
+Completed 200 OK in 149ms (Views: 142.1ms | ActiveRecord: 1.5ms)
+
+
+Started GET "/tasks/2/edit" for ::1 at 2016-10-03 21:12:21 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"2"}
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 2]]
+ Rendered tasks/edit.html.erb within layouts/application (9.7ms)
+Completed 200 OK in 59ms (Views: 56.2ms | ActiveRecord: 0.3ms)
+
+
+Started PUT "/tasks/2/update" for ::1 at 2016-10-03 21:12:27 -0700
+Processing by TasksController#update as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"Lh9gqkl9KE2QIfiGY474KJ5M3lFFDsIYIMUNQKXYH80FJ5pGrgBXF/eSApxwW+W3Ux6ys4786rrH+bO58R+LMA==", "edit"=>{"title"=>"Call Dentist", "description"=>"Health & Wellness", "details"=>"Malika needs a check-up, "}, "commit"=>"Update Task", "id"=>"2"}
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]]
+ [1m[36m (0.2ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.6ms)[0m UPDATE "tasks" SET "details" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["details", "Malika needs a check-up, "], ["updated_at", "2016-10-04 04:12:27.697758"], ["id", 2]]
+ [1m[36m (0.9ms)[0m [1mcommit transaction[0m
+ Rendered tasks/update.html.erb within layouts/application (2.1ms)
+Completed 200 OK in 65ms (Views: 48.9ms | ActiveRecord: 1.8ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-03 21:12:46 -0700
+Processing by TasksController#index as HTML
+ [1m[35mTask Load (3.6ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered tasks/index.html.erb within layouts/application (13.2ms)
+Completed 200 OK in 67ms (Views: 62.1ms | ActiveRecord: 3.6ms)
+
+
+Started GET "/" for ::1 at 2016-10-04 08:34:42 -0700
+Processing by TasksController#index as HTML
+ [1m[36mTask Load (3.3ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/index.html.erb within layouts/application (261.5ms)
+Completed 200 OK in 866ms (Views: 848.3ms | ActiveRecord: 3.3ms)
+
+
+Started GET "/" for ::1 at 2016-10-04 08:34:43 -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 (137.7ms)
+Completed 200 OK in 189ms (Views: 186.3ms | ActiveRecord: 0.3ms)
+
+
+Started PATCH "/tasks/2/mark_complete" for ::1 at 2016-10-04 08:34:51 -0700
+Processing by TasksController#mark_complete as HTML
+ Parameters: {"authenticity_token"=>"xqxS4qbRHWDHFMt7v4ypWUuKP/mmw3NDATyUFEVsD9ntlKgOQaxiOqCnMWGsWbTGhthTG20xW+HmACrtEaubJA==", "id"=>"2"}
+ [1m[36mTask Load (0.6ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 2]]
+ Rendered tasks/mark_complete.html.erb within layouts/application (10.9ms)
+Completed 200 OK in 250ms (Views: 228.9ms | ActiveRecord: 0.6ms)
+
+
+Started GET "/" for ::1 at 2016-10-04 08:35:26 -0700
+Processing by TasksController#index as HTML
+ [1m[35mTask Load (0.7ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered tasks/index.html.erb within layouts/application (27.6ms)
+Completed 200 OK in 180ms (Views: 178.6ms | ActiveRecord: 0.7ms)
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-04 08:35:27 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-04 08:35:27 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-04 08:35:27 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-04 08:35:27 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-04 08:35:27 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-04 08:35:27 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-04 08:35:27 -0700
+
+
+Started PATCH "/tasks/2/mark_complete" for ::1 at 2016-10-04 08:38:39 -0700
+Processing by TasksController#mark_complete as HTML
+ Parameters: {"authenticity_token"=>"QLTr+2XNtFUd/XFF3bRVuhQzt6BmOdG9UrpGp759PPlrjBEXgrDLD3pOi1/OYUgl2WHbQq3L+R+1hvhe6rqoBA==", "id"=>"2"}
+ Rendered tasks/mark_complete.html.erb within layouts/application (8.8ms)
+Completed 500 Internal Server Error in 28ms (ActiveRecord: 0.0ms)
+
+NoMethodError - undefined method `title' for nil:NilClass:
+ app/views/tasks/mark_complete.html.erb:3:in `_app_views_tasks_mark_complete_html_erb__1011869606869846282_70154270887120'
+ actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
+ rack (1.6.4) lib/rack/conditionalget.rb:38:in `call'
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call'
+ activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call'
+ activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
+ activerecord (4.2.7) lib/active_record/migration.rb:377:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/ea285502946d79a0/variables" for ::1 at 2016-10-04 08:38:40 -0700
+
+
+Started GET "/" for ::1 at 2016-10-04 08:39:45 -0700
+Processing by TasksController#index as HTML
+ [1m[36mTask Load (0.5ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/index.html.erb within layouts/application (24.7ms)
+Completed 200 OK in 149ms (Views: 134.8ms | ActiveRecord: 1.4ms)
+
+
+Started PATCH "/tasks/2/mark_complete" for ::1 at 2016-10-04 08:39:48 -0700
+Processing by TasksController#mark_complete as HTML
+ Parameters: {"authenticity_token"=>"3V0Rrufg+tbl6tBO56pQS5t1jD+FIebeXLm/m4wq8xn2ZetCAJ2FjIJZKlT0f03UVifg3U7Tzny7hQFi2O1n5A==", "id"=>"2"}
+ Rendered tasks/mark_complete.html.erb within layouts/application (7.0ms)
+Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.0ms)
+
+NoMethodError - undefined method `title' for nil:NilClass:
+ app/views/tasks/mark_complete.html.erb:3:in `_app_views_tasks_mark_complete_html_erb__1011869606869846282_70154270887120'
+ actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
+ rack (1.6.4) lib/rack/conditionalget.rb:38:in `call'
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call'
+ activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call'
+ activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
+ activerecord (4.2.7) lib/active_record/migration.rb:377:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/c7dea7af985a540b/variables" for ::1 at 2016-10-04 08:39:48 -0700
+
+
+Started GET "/" for ::1 at 2016-10-04 08:40:31 -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 (16.5ms)
+Completed 200 OK in 232ms (Views: 222.9ms | ActiveRecord: 0.9ms)
+
+
+Started GET "/" for ::1 at 2016-10-04 08:40:32 -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 (6.8ms)
+Completed 200 OK in 53ms (Views: 51.6ms | ActiveRecord: 0.2ms)
+
+
+Started PUT "/tasks/2/update" for ::1 at 2016-10-04 08:40:34 -0700
+Processing by TasksController#update as HTML
+ Parameters: {"authenticity_token"=>"KL/4/gm6+zZJQu2VDX6mtK2jM4+l2fLwbMM2ayw3MMgDhwIS7seEbC7xF48eq7srYPFfbW4r2lKL/4iSePCkNQ==", "id"=>"2"}
+ [1m[35mTask Load (0.3ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]]
+Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.3ms)
+
+NoMethodError - undefined method `[]' for nil:NilClass:
+ app/controllers/tasks_controller.rb:40:in `update'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
+ rack (1.6.4) lib/rack/conditionalget.rb:38:in `call'
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call'
+ activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call'
+ activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
+ activerecord (4.2.7) lib/active_record/migration.rb:377:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/78593886628c550e/variables" for ::1 at 2016-10-04 08:40:34 -0700
+
+
+Started GET "/" for ::1 at 2016-10-04 08:43:48 -0700
+Processing by TasksController#index as HTML
+ [1m[36mTask Load (0.4ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/index.html.erb within layouts/application (14.8ms)
+Completed 200 OK in 118ms (Views: 112.9ms | ActiveRecord: 0.8ms)
+
+
+Started PUT "/tasks/2/update" for ::1 at 2016-10-04 08:43:51 -0700
+Processing by TasksController#update as HTML
+ Parameters: {"authenticity_token"=>"OlNIdUEWmIL0aTDsJ9L0BcMSwBfW0s286z3JYjjhuZ0Ra7KZpmvn2JPayvY0B+maDkCs9R0g5R4MAXebbCYtYA==", "id"=>"2"}
+ [1m[35mTask Load (0.4ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]]
+Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.4ms)
+
+NoMethodError - undefined method `[]' for nil:NilClass:
+ app/controllers/tasks_controller.rb:40:in `update'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
+ rack (1.6.4) lib/rack/conditionalget.rb:38:in `call'
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call'
+ activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call'
+ activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
+ activerecord (4.2.7) lib/active_record/migration.rb:377:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/74b202bfae74c499/variables" for ::1 at 2016-10-04 08:43:52 -0700
+
+
+Started GET "/" for ::1 at 2016-10-04 08:44:33 -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 (43.4ms)
+Completed 200 OK in 85ms (Views: 82.1ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/" for ::1 at 2016-10-04 08:44: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 (5.9ms)
+Completed 200 OK in 74ms (Views: 72.8ms | ActiveRecord: 0.3ms)
+
+
+Started PATCH "/tasks/2/mark_complete" for ::1 at 2016-10-04 08:44:35 -0700
+Processing by TasksController#mark_complete as HTML
+ Parameters: {"authenticity_token"=>"CAszwZA1pDX7uqDUaOSjaELvyRZPOnDwgs8KNfWKaegjM8ktd0jbb5wJWs57Mb73j72l9ITIWFJl87TMoU39FQ==", "id"=>"2"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 2]]
+ [1m[35m (0.2ms)[0m begin transaction
+ [1m[36mSQL (3.7ms)[0m [1mUPDATE "tasks" SET "completion_status" = ?, "completion_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ?[0m [["completion_status", "t"], ["completion_date", "2016-10-04 15:44:35.780470"], ["updated_at", "2016-10-04 15:44:35.781962"], ["id", 2]]
+ [1m[35m (2.0ms)[0m commit transaction
+Redirected to
+Completed 500 Internal Server Error in 143ms (ActiveRecord: 6.2ms)
+
+NoMethodError - undefined method `index_path_url' for #
+Did you mean? index_path:
+ actionpack (4.2.7) lib/action_dispatch/routing/polymorphic_routes.rb:239:in `handle_string_call'
+ actionpack (4.2.7) lib/action_dispatch/routing/url_for.rb:161:in `url_for'
+ actionpack (4.2.7) lib/action_controller/metal/redirecting.rb:95:in `_compute_redirect_to_location'
+ actionpack (4.2.7) lib/action_controller/metal/redirecting.rb:75:in `redirect_to'
+ actionpack (4.2.7) lib/action_controller/metal/flash.rb:57:in `redirect_to'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:64:in `block in redirect_to'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:63:in `redirect_to'
+ turbolinks (5.0.1) lib/turbolinks/redirection.rb:12:in `redirect_to'
+ app/controllers/tasks_controller.rb:54:in `mark_complete'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
+ rack (1.6.4) lib/rack/conditionalget.rb:38:in `call'
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call'
+ activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call'
+ activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
+ activerecord (4.2.7) lib/active_record/migration.rb:377:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/904fa1c20fa8caab/variables" for ::1 at 2016-10-04 08:44:36 -0700
+
+
+Started GET "/" for ::1 at 2016-10-04 08:45:58 -0700
+
+SyntaxError - syntax error, unexpected tIDENTIFIER, expecting keyword_end
+ get 'tasks/index', as: 'index' as: 'index'
+ ^:
+ config/routes.rb:4:in `'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:268:in `block in load'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:240:in `load_dependency'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:268:in `load'
+ railties (4.2.7) lib/rails/application/routes_reloader.rb:40:in `block in load_paths'
+ railties (4.2.7) lib/rails/application/routes_reloader.rb:40:in `load_paths'
+ railties (4.2.7) lib/rails/application/routes_reloader.rb:16:in `reload!'
+ railties (4.2.7) lib/rails/application/routes_reloader.rb:26:in `block in updater'
+ activesupport (4.2.7) lib/active_support/file_update_checker.rb:75:in `execute'
+ railties (4.2.7) lib/rails/application/routes_reloader.rb:7:in `execute'
+ railties (4.2.7) lib/rails/application/finisher.rb:81:in `block (2 levels) in '
+ activesupport (4.2.7) lib/active_support/callbacks.rb:446:in `block in make_lambda'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:192:in `block in simple'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:504:in `block in call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:504:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_prepare_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:83:in `prepare!'
+ actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:71:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/8d3ddb7714c2a238/variables" for ::1 at 2016-10-04 08:45:59 -0700
+
+
+Started GET "/" for ::1 at 2016-10-04 08:46:41 -0700
+Processing by TasksController#index as HTML
+ [1m[36mTask Load (1.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/index.html.erb within layouts/application (34.7ms)
+Completed 200 OK in 185ms (Views: 172.2ms | ActiveRecord: 1.7ms)
+
+
+Started PATCH "/tasks/2/mark_complete" for ::1 at 2016-10-04 08:46:45 -0700
+Processing by TasksController#mark_complete as HTML
+ Parameters: {"authenticity_token"=>"yx7IgBsiKnUYuPkIus5wOzrAGTmMxJBMC97XF3EcXUDgJjJs/F9VL38LAxKpG22k95J120c2uO7s4mnuJdvJvQ==", "id"=>"2"}
+ [1m[35mTask Load (0.3ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]]
+ [1m[36m (0.2ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.5ms)[0m UPDATE "tasks" SET "completion_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2016-10-04 15:46:45.166440"], ["updated_at", "2016-10-04 15:46:45.168833"], ["id", 2]]
+ [1m[36m (0.9ms)[0m [1mcommit transaction[0m
+Redirected to http://localhost:3000/tasks/index
+Completed 302 Found in 19ms (ActiveRecord: 2.0ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-04 08:46:45 -0700
+Processing by TasksController#index as HTML
+ [1m[35mTask Load (0.6ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered tasks/index.html.erb within layouts/application (24.3ms)
+Completed 200 OK in 121ms (Views: 119.8ms | ActiveRecord: 0.6ms)
+
+
+Started PATCH "/tasks/3/mark_complete" for ::1 at 2016-10-04 08:46:51 -0700
+Processing by TasksController#mark_complete as HTML
+ Parameters: {"authenticity_token"=>"6dGoDgy0M/UU8Zt8oi4BtsEpHLmKQ+zQlUhTA7wHqTDC6VLi68lMr3NCYWax+xwpDHtwW0GxxHJydO366MA9zQ==", "id"=>"3"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 3]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.4ms)[0m [1mUPDATE "tasks" SET "completion_status" = ?, "completion_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ?[0m [["completion_status", "t"], ["completion_date", "2016-10-04 15:46:51.196705"], ["updated_at", "2016-10-04 15:46:51.197648"], ["id", 3]]
+ [1m[35m (1.2ms)[0m commit transaction
+Redirected to http://localhost:3000/tasks/index
+Completed 302 Found in 6ms (ActiveRecord: 1.9ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-04 08:46:51 -0700
+Processing by TasksController#index as HTML
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/index.html.erb within layouts/application (31.3ms)
+Completed 200 OK in 161ms (Views: 159.5ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-04 09:27:03 -0700
+Processing by TasksController#index as HTML
+ [1m[35mTask Load (4.3ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered tasks/index.html.erb within layouts/application (83.9ms)
+Completed 500 Internal Server Error in 108ms (ActiveRecord: 4.3ms)
+
+ActionView::MissingTemplate - Missing partial tasks/_footer, application/_footer with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in:
+ * "/Users/brandimilligan/Dropbox/ada/wk8/TaskListRails/app/views"
+:
+ actionview (4.2.7) lib/action_view/path_set.rb:46:in `find'
+ actionview (4.2.7) lib/action_view/lookup_context.rb:121:in `find'
+ actionview (4.2.7) lib/action_view/renderer/partial_renderer.rb:418:in `find_template'
+ actionview (4.2.7) lib/action_view/renderer/partial_renderer.rb:413:in `find_partial'
+ actionview (4.2.7) lib/action_view/renderer/partial_renderer.rb:294:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:51:in `render_partial'
+ actionview (4.2.7) lib/action_view/helpers/rendering_helper.rb:35:in `render'
+ app/views/tasks/index.html.erb:32:in `_app_views_tasks_index_html_erb___3042757777640268618_70154251455300'
+ actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/85ead18523387564/variables" for ::1 at 2016-10-04 09:27:04 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-04 11:49:23 -0700
+ [1m[36mActiveRecord::SchemaMigration Load (0.3ms)[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 (33.3ms)
+Completed 500 Internal Server Error in 74ms (ActiveRecord: 0.7ms)
+
+ActionView::MissingTemplate - Missing partial shared/_footer with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in:
+ * "/Users/brandimilligan/Dropbox/ada/wk8/TaskListRails/app/views"
+:
+ actionview (4.2.7) lib/action_view/path_set.rb:46:in `find'
+ actionview (4.2.7) lib/action_view/lookup_context.rb:121:in `find'
+ actionview (4.2.7) lib/action_view/renderer/partial_renderer.rb:418:in `find_template'
+ actionview (4.2.7) lib/action_view/renderer/partial_renderer.rb:413:in `find_partial'
+ actionview (4.2.7) lib/action_view/renderer/partial_renderer.rb:294:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:51:in `render_partial'
+ actionview (4.2.7) lib/action_view/helpers/rendering_helper.rb:35:in `render'
+ app/views/tasks/index.html.erb:32:in `_app_views_tasks_index_html_erb___3319525289846973443_70153881356000'
+ actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/2c5d59521eeb7246/variables" for ::1 at 2016-10-04 11:49:23 -0700
+
+
+Started GET "/" for ::1 at 2016-10-04 11:51:35 -0700
+Processing by TasksController#index as HTML
+ [1m[36mTask Load (0.5ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/index.html.erb within layouts/application (24.0ms)
+Completed 500 Internal Server Error in 35ms (ActiveRecord: 0.5ms)
+
+ActionView::MissingTemplate - Missing partial shared/_footer with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in:
+ * "/Users/brandimilligan/Dropbox/ada/wk8/TaskListRails/app/views"
+:
+ actionview (4.2.7) lib/action_view/path_set.rb:46:in `find'
+ actionview (4.2.7) lib/action_view/lookup_context.rb:121:in `find'
+ actionview (4.2.7) lib/action_view/renderer/partial_renderer.rb:418:in `find_template'
+ actionview (4.2.7) lib/action_view/renderer/partial_renderer.rb:413:in `find_partial'
+ actionview (4.2.7) lib/action_view/renderer/partial_renderer.rb:294:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:51:in `render_partial'
+ actionview (4.2.7) lib/action_view/helpers/rendering_helper.rb:35:in `render'
+ app/views/tasks/index.html.erb:32:in `_app_views_tasks_index_html_erb___3319525289846973443_70153881356000'
+ actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/5c9ad70fdfd0a75c/variables" for ::1 at 2016-10-04 11:51:36 -0700
+
+
+Started GET "/" for ::1 at 2016-10-04 12:36:02 -0700
+Processing by TasksController#index as HTML
+ [1m[35mTask Load (1.7ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered shared/_footer.html.erb (4.4ms)
+ Rendered tasks/index.html.erb within layouts/application (36.5ms)
+Completed 200 OK in 979ms (Views: 969.4ms | ActiveRecord: 1.7ms)
+
+
+Started GET "/" for ::1 at 2016-10-04 12:36:19 -0700
+Processing by TasksController#index as HTML
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered shared/_footer.html.erb (0.3ms)
+ Rendered tasks/index.html.erb within layouts/application (9.9ms)
+Completed 200 OK in 151ms (Views: 149.9ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-04 12:36:19 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-04 12:36:19 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-04 12:36:19 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-04 12:36:19 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-04 12:36:19 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-04 12:36:19 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-04 12:36:19 -0700
+
+
+Started GET "/" for ::1 at 2016-10-04 12:38:07 -0700
+Processing by TasksController#index as HTML
+ [1m[35mTask Load (0.3ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered shared/_footer.html.erb (0.9ms)
+ Rendered tasks/index.html.erb within layouts/application (16.9ms)
+Completed 200 OK in 80ms (Views: 77.3ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-04 12:38:07 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-04 12:38:07 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-04 12:38:07 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-04 12:38:07 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-04 12:38:07 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-04 12:38:07 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-04 12:38:07 -0700
+
+
+Started GET "/tasks/3/edit" for ::1 at 2016-10-04 12:51:48 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"3"}
+ [1m[36mTask Load (0.4ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 3]]
+ Rendered shared/_form.html.erb (285.9ms)
+ Rendered tasks/edit.html.erb within layouts/application (291.2ms)
+Completed 200 OK in 546ms (Views: 488.8ms | ActiveRecord: 1.4ms)
+
+
+Started PATCH "/tasks/3/update" for ::1 at 2016-10-04 12:51:55 -0700
+
+ActionController::RoutingError (No route matches [PATCH] "/tasks/3/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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.1ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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 (170.1ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (111.4ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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.6ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (250.2ms)
+
+
+Started GET "/" for ::1 at 2016-10-04 12:56:43 -0700
+Processing by TasksController#index as HTML
+ [1m[35mTask Load (1.0ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered shared/_footer.html.erb (0.7ms)
+ Rendered tasks/index.html.erb within layouts/application (86.3ms)
+Completed 200 OK in 277ms (Views: 261.5ms | ActiveRecord: 1.9ms)
+
+
+Started GET "/" for ::1 at 2016-10-04 12:56:43 -0700
+Processing by TasksController#index as HTML
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered shared/_footer.html.erb (0.3ms)
+ Rendered tasks/index.html.erb within layouts/application (28.4ms)
+Completed 200 OK in 81ms (Views: 79.4ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/tasks/2/edit" for ::1 at 2016-10-04 12:56:51 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"2"}
+ [1m[35mTask Load (0.3ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]]
+ Rendered shared/_form.html.erb (6.6ms)
+ Rendered tasks/edit.html.erb within layouts/application (10.6ms)
+Completed 200 OK in 71ms (Views: 67.6ms | ActiveRecord: 0.3ms)
+
+
+Started POST "/tasks/2/update" for ::1 at 2016-10-04 12:56:57 -0700
+
+ActionController::RoutingError (No route matches [POST] "/tasks/2/update"):
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
+ railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app'
+ railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged'
+ railties (4.2.7) lib/rails/rack/logger.rb:20:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call'
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
+ activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call'
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
+ railties (4.2.7) lib/rails/engine.rb:518:in `call'
+ railties (4.2.7) lib/rails/application.rb:165:in `call'
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms)
+ Rendered /Users/brandimilligan/.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 (159.2ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (1.1ms)
+ Rendered /Users/brandimilligan/.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.6ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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.8ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (109.5ms)
+ Rendered /Users/brandimilligan/.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.7ms)
+ Rendered /Users/brandimilligan/.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.9ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (245.4ms)
+
+
+Started GET "/" for ::1 at 2016-10-04 17:47:03 -0700
+ [1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+Processing by TasksController#index as HTML
+ [1m[35mTask Load (0.7ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered shared/_footer.html.erb (1.1ms)
+ Rendered tasks/index.html.erb within layouts/application (27.2ms)
+Completed 200 OK in 786ms (Views: 744.5ms | ActiveRecord: 1.1ms)
+
+
+Started GET "/" for ::1 at 2016-10-04 17:47:04 -0700
+Processing by TasksController#index as HTML
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered shared/_footer.html.erb (0.3ms)
+ Rendered tasks/index.html.erb within layouts/application (13.8ms)
+Completed 200 OK in 53ms (Views: 50.7ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/tasks/2/edit" for ::1 at 2016-10-04 17:48:00 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"2"}
+ [1m[35mTask Load (3.0ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]]
+ Rendered shared/_form.html.erb (37.2ms)
+ Rendered tasks/edit.html.erb within layouts/application (42.0ms)
+Completed 200 OK in 99ms (Views: 79.6ms | ActiveRecord: 3.0ms)
+
+
+Started PATCH "/tasks/2/update" for ::1 at 2016-10-04 17:48:07 -0700
+
+ActionController::RoutingError (No route matches [PATCH] "/tasks/2/update"):
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
+ railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app'
+ railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged'
+ railties (4.2.7) lib/rails/rack/logger.rb:20:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call'
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
+ activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call'
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
+ railties (4.2.7) lib/rails/engine.rb:518:in `call'
+ railties (4.2.7) lib/rails/application.rb:165:in `call'
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.7ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (13.0ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.6ms)
+ Rendered /Users/brandimilligan/.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 (288.9ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms)
+ Rendered /Users/brandimilligan/.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.6ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (109.6ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (247.0ms)
+
+
+Started GET "/" for ::1 at 2016-10-04 17:53:32 -0700
+Processing by TasksController#index as HTML
+ [1m[36mTask Load (1.1ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered shared/_footer.html.erb (0.6ms)
+ Rendered tasks/index.html.erb within layouts/application (32.0ms)
+Completed 200 OK in 139ms (Views: 129.3ms | ActiveRecord: 1.7ms)
+
+
+Started GET "/" for ::1 at 2016-10-04 17:53:32 -0700
+Processing by TasksController#index as HTML
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered shared/_footer.html.erb (0.3ms)
+ Rendered tasks/index.html.erb within layouts/application (13.1ms)
+Completed 200 OK in 76ms (Views: 75.0ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/tasks/2/edit" for ::1 at 2016-10-04 17:53:35 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"2"}
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 2]]
+ Rendered shared/_form.html.erb (4.9ms)
+ Rendered tasks/edit.html.erb within layouts/application (8.0ms)
+Completed 200 OK in 55ms (Views: 51.2ms | ActiveRecord: 0.3ms)
+
+
+Started PATCH "/tasks/2/update" for ::1 at 2016-10-04 17:53:40 -0700
+Processing by TasksController#update as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"vAeLZvsRLZ/QRMXsx+MSibSDSK2tIQN6PmuWS+nUIlCXP3GKHGxSxbf3P/bUNg8WedEkT2bTK9jZVyiyvRO2rQ==", "task"=>{"title"=>"Call Dentist", "description"=>"Health & Wellness", "details"=>"Malika needs a check-up,now "}, "commit"=>"Update Task", "id"=>"2"}
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]]
+Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.2ms)
+
+NoMethodError - undefined method `[]' for nil:NilClass:
+ app/controllers/tasks_controller.rb:40:in `update'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
+ rack (1.6.4) lib/rack/conditionalget.rb:38:in `call'
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call'
+ activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call'
+ activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
+ activerecord (4.2.7) lib/active_record/migration.rb:377:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/fe5ebefaca27be3e/variables" for ::1 at 2016-10-04 17:53:41 -0700
+
+
+Started GET "/" for ::1 at 2016-10-04 18:02:39 -0700
+Processing by TasksController#index as HTML
+ [1m[36mTask Load (1.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered shared/_footer.html.erb (0.5ms)
+ Rendered tasks/index.html.erb within layouts/application (44.1ms)
+Completed 200 OK in 121ms (Views: 111.0ms | ActiveRecord: 2.0ms)
+
+
+Started GET "/" for ::1 at 2016-10-04 18:02:39 -0700
+Processing by TasksController#index as HTML
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered shared/_footer.html.erb (0.5ms)
+ Rendered tasks/index.html.erb within layouts/application (20.9ms)
+Completed 200 OK in 127ms (Views: 125.5ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/tasks/2/edit" for ::1 at 2016-10-04 18:02:49 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"2"}
+ [1m[36mTask Load (0.4ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 2]]
+ Rendered shared/_form.html.erb (20.5ms)
+ Rendered tasks/edit.html.erb within layouts/application (24.5ms)
+Completed 200 OK in 356ms (Views: 350.9ms | ActiveRecord: 0.4ms)
+
+
+Started PATCH "/tasks/2/update" for ::1 at 2016-10-04 18:02:55 -0700
+
+ActionController::RoutingError (No route matches [PATCH] "/tasks/2/update"):
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
+ railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app'
+ railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged'
+ railties (4.2.7) lib/rails/rack/logger.rb:20:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call'
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
+ activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call'
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
+ railties (4.2.7) lib/rails/engine.rb:518:in `call'
+ railties (4.2.7) lib/rails/application.rb:165:in `call'
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms)
+ Rendered /Users/brandimilligan/.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 (159.3ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (1.1ms)
+ Rendered /Users/brandimilligan/.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.8ms)
+ Rendered /Users/brandimilligan/.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.7ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (106.9ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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.8ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (239.6ms)
+
+
+Started GET "/" for ::1 at 2016-10-04 18:08:12 -0700
+Processing by TasksController#index as HTML
+ [1m[35mTask Load (1.1ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered shared/_footer.html.erb (0.4ms)
+ Rendered tasks/index.html.erb within layouts/application (43.7ms)
+Completed 200 OK in 179ms (Views: 165.2ms | ActiveRecord: 1.6ms)
+
+
+Started GET "/" for ::1 at 2016-10-04 18:08:13 -0700
+Processing by TasksController#index as HTML
+ [1m[36mTask Load (0.5ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered shared/_footer.html.erb (0.3ms)
+ Rendered tasks/index.html.erb within layouts/application (14.3ms)
+Completed 200 OK in 51ms (Views: 49.2ms | ActiveRecord: 0.5ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-10-04 18:08:23 -0700
+Processing by TasksController#new as HTML
+ Rendered shared/_form.html.erb (12.4ms)
+ Rendered tasks/new.html.erb within layouts/application (17.4ms)
+Completed 200 OK in 104ms (Views: 102.4ms | ActiveRecord: 0.0ms)
+
+
+Started POST "/tasks/create" for ::1 at 2016-10-04 18:15:04 -0700
+Processing by TasksController#create as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"3y95JngQamRnffVx5g3pDo6x9Fth6Pn2O/GN5xWoS2b0F4PKn20VPgDOD2v12PSRQ+OYuaoa0VTczTMeQW/fmw==", "task"=>{"title"=>"new task", "description"=>"because", "details"=>"because I can"}, "commit"=>"create"}
+Completed 500 Internal Server Error in 28ms (ActiveRecord: 0.0ms)
+
+NoMethodError - undefined method `[]' for nil:NilClass:
+ app/controllers/tasks_controller.rb:10:in `create'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
+ rack (1.6.4) lib/rack/conditionalget.rb:38:in `call'
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call'
+ activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call'
+ activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
+ activerecord (4.2.7) lib/active_record/migration.rb:377:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/fec8bd498775754c/variables" for ::1 at 2016-10-04 18:15:05 -0700
+
+
+Started POST "/tasks/create" for ::1 at 2016-10-04 18:18:29 -0700
+Processing by TasksController#create as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"BheXo46Ir+Uo24fvabI88/bsJO0xNgPMXry4awobxEUtL21PafXQv09offV6ZyFsO75ID/rEK265gAaSXtxQuA==", "task"=>{"title"=>"new task", "description"=>"because", "details"=>"because I can"}, "commit"=>"create"}
+ [1m[35m (0.3ms)[0m begin transaction
+ [1m[36mSQL (2.2ms)[0m [1mINSERT INTO "tasks" ("title", "description", "details", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["title", "new task"], ["description", "because"], ["details", "because I can"], ["created_at", "2016-10-05 01:18:29.771581"], ["updated_at", "2016-10-05 01:18:29.771581"]]
+ [1m[35m (1.8ms)[0m commit transaction
+ Rendered tasks/create.html.erb within layouts/application (5.1ms)
+Completed 200 OK in 295ms (Views: 235.9ms | ActiveRecord: 5.3ms)
+
+
+Started GET "/tasks/create" for ::1 at 2016-10-04 18:19:51 -0700
+Processing by TasksController#create as HTML
+Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
+
+NoMethodError - undefined method `[]' for nil:NilClass:
+ app/controllers/tasks_controller.rb:10:in `create'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/e0cad52a51a65ddf/variables" for ::1 at 2016-10-04 18:19:51 -0700
+
+
+Started POST "/tasks/create" for ::1 at 2016-10-04 18:20:11 -0700
+Processing by TasksController#create as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"BheXo46Ir+Uo24fvabI88/bsJO0xNgPMXry4awobxEUtL21PafXQv09offV6ZyFsO75ID/rEK265gAaSXtxQuA==", "task"=>{"title"=>"more tasks", "description"=>"because yes", "details"=>"because I can yes"}, "commit"=>"create"}
+ [1m[36m (0.2ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.6ms)[0m INSERT INTO "tasks" ("title", "description", "details", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "more tasks"], ["description", "because yes"], ["details", "because I can yes"], ["created_at", "2016-10-05 01:20:11.645835"], ["updated_at", "2016-10-05 01:20:11.645835"]]
+ [1m[36m (0.9ms)[0m [1mcommit transaction[0m
+ Rendered shared/_footer.html.erb (0.9ms)
+ Rendered tasks/create.html.erb within layouts/application (5.5ms)
+Completed 200 OK in 64ms (Views: 58.6ms | ActiveRecord: 1.7ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-04 18:20:16 -0700
+Processing by TasksController#index as HTML
+ [1m[35mTask Load (0.4ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered shared/_footer.html.erb (0.9ms)
+ Rendered tasks/index.html.erb within layouts/application (18.3ms)
+Completed 200 OK in 84ms (Views: 82.2ms | ActiveRecord: 0.4ms)
+
+
+Started GET "/tasks/2/edit" for ::1 at 2016-10-04 18:20:33 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"2"}
+ Rendered shared/_form.html.erb (7.0ms)
+ Rendered tasks/edit.html.erb within layouts/application (10.1ms)
+Completed 500 Internal Server Error in 21ms (ActiveRecord: 0.0ms)
+
+ArgumentError - First argument in form cannot contain nil or be empty:
+ actionview (4.2.7) lib/action_view/helpers/form_helper.rb:432:in `form_for'
+ app/views/shared/_form.html.erb:2:in `_app_views_shared__form_html_erb__4454537487015546443_70313202485460'
+ actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial'
+ actionview (4.2.7) lib/action_view/renderer/partial_renderer.rb:310:in `block in render'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/partial_renderer.rb:309:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:51:in `render_partial'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:25:in `render'
+ actionview (4.2.7) lib/action_view/helpers/rendering_helper.rb:32:in `render'
+ app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb___350167394262550845_70313245151340'
+ actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/0128dccc81b8b36d/variables" for ::1 at 2016-10-04 18:20:34 -0700
+
+
+Started GET "/tasks/create" for ::1 at 2016-10-04 18:22:01 -0700
+Processing by TasksController#create as HTML
+Completed 500 Internal Server Error in 42ms (ActiveRecord: 0.9ms)
+
+NoMethodError - undefined method `[]' for nil:NilClass:
+ app/controllers/tasks_controller.rb:10:in `create'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/c4ebe8f60b336bff/variables" for ::1 at 2016-10-04 18:22:01 -0700
+
+
+Started GET "/tasks/2/edit" for ::1 at 2016-10-04 18:22:04 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"2"}
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 2]]
+ Rendered shared/_form.html.erb (3.7ms)
+ Rendered tasks/edit.html.erb within layouts/application (6.4ms)
+Completed 200 OK in 54ms (Views: 51.1ms | ActiveRecord: 0.3ms)
+
+
+Started PATCH "/tasks/2/update" for ::1 at 2016-10-04 18:22:11 -0700
+
+ActionController::RoutingError (No route matches [PATCH] "/tasks/2/update"):
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
+ railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app'
+ railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged'
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged'
+ railties (4.2.7) lib/rails/rack/logger.rb:20:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call'
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
+ activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call'
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
+ railties (4.2.7) lib/rails/engine.rb:518:in `call'
+ railties (4.2.7) lib/rails/application.rb:165:in `call'
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.2ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.5ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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 (164.5ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms)
+ Rendered /Users/brandimilligan/.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 (1.1ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (106.4ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (1.0ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (237.9ms)
+
+
+Started PATCH "/tasks/2/update" for ::1 at 2016-10-04 18:22:45 -0700
+Processing by TasksController#update as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"FgpnL2XCdXgwEo2DwqwqJzlIVjrXljZgPMBpTnitoJc9Mp3Dgr8KIlehd5nReTe49Bo62BxkHsLb/Ne3LGo0ag==", "task"=>{"title"=>"Call Dentist", "description"=>"Health", "details"=>"Malika needs a check-up, "}, "commit"=>"update", "id"=>"2"}
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]]
+ [1m[36m (0.2ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.5ms)[0m UPDATE "tasks" SET "description" = ?, "completion_status" = ?, "completion_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", "Health"], ["completion_status", nil], ["completion_date", nil], ["updated_at", "2016-10-05 01:22:45.456203"], ["id", 2]]
+ [1m[36m (0.8ms)[0m [1mcommit transaction[0m
+ Rendered tasks/update.html.erb within layouts/application (1.0ms)
+Completed 200 OK in 105ms (Views: 85.6ms | ActiveRecord: 2.3ms)
+
+
+Started GET "/tasks/2/update" for ::1 at 2016-10-04 18:23:22 -0700
+Processing by TasksController#update as HTML
+ Parameters: {"id"=>"2"}
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]]
+Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.2ms)
+
+NoMethodError - undefined method `[]' for nil:NilClass:
+ app/controllers/tasks_controller.rb:40:in `update'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/01bb05f3ec4f6145/variables" for ::1 at 2016-10-04 18:23:22 -0700
+
+
+Started GET "/tasks/create" for ::1 at 2016-10-04 18:23:26 -0700
+Processing by TasksController#create as HTML
+Completed 500 Internal Server Error in 25ms (ActiveRecord: 0.0ms)
+
+NoMethodError - undefined method `[]' for nil:NilClass:
+ app/controllers/tasks_controller.rb:10:in `create'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/588397acec9f6e0a/variables" for ::1 at 2016-10-04 18:23:26 -0700
+
+
+Started PATCH "/tasks/2/mark_complete" for ::1 at 2016-10-04 18:23:30 -0700
+Processing by TasksController#mark_complete as HTML
+ Parameters: {"authenticity_token"=>"QeIRS9wxEckdEAwGE2RDRoSnzvUzWQDdFZPqQrAaualq2uunO0xuk3qj9hwAsV7ZSfWiF/irKH/yr1S75N0tVA==", "id"=>"2"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 2]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.5ms)[0m [1mUPDATE "tasks" SET "completion_status" = ?, "completion_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ?[0m [["completion_status", "t"], ["completion_date", "2016-10-05 01:23:30.823403"], ["updated_at", "2016-10-05 01:23:30.824234"], ["id", 2]]
+ [1m[35m (1.0ms)[0m commit transaction
+Redirected to http://localhost:3000/tasks/index
+Completed 302 Found in 7ms (ActiveRecord: 1.7ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-04 18:23:30 -0700
+Processing by TasksController#index as HTML
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered shared/_footer.html.erb (0.7ms)
+ Rendered tasks/index.html.erb within layouts/application (21.4ms)
+Completed 200 OK in 58ms (Views: 56.5ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/tasks/2/edit" for ::1 at 2016-10-04 18:23:33 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"2"}
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]]
+ Rendered shared/_form.html.erb (4.2ms)
+ Rendered tasks/edit.html.erb within layouts/application (6.8ms)
+Completed 200 OK in 50ms (Views: 45.5ms | ActiveRecord: 0.2ms)
+
+
+Started PATCH "/tasks/2/update" for ::1 at 2016-10-04 18:23:37 -0700
+Processing by TasksController#update as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"Lul3XDnGNENpk2Y6itqZoc6vW0DGtXGtUAvijmN9aw8F0Y2w3rtLGQ4gnCCZD4Q+A/03og1HWQ+3N1x3N7r/8g==", "task"=>{"title"=>"Call Dentist", "description"=>"Healt", "details"=>"Malika needs a check-up, "}, "commit"=>"update", "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.4ms)[0m [1mUPDATE "tasks" SET "description" = ?, "completion_status" = ?, "completion_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ?[0m [["description", "Healt"], ["completion_status", nil], ["completion_date", nil], ["updated_at", "2016-10-05 01:23:37.513337"], ["id", 2]]
+ [1m[35m (0.7ms)[0m commit transaction
+ Rendered shared/_footer.html.erb (0.4ms)
+ Rendered tasks/update.html.erb within layouts/application (4.0ms)
+Completed 200 OK in 44ms (Views: 39.0ms | ActiveRecord: 1.4ms)
+
+
+Started PATCH "/tasks/2/update" for ::1 at 2016-10-04 18:24:39 -0700
+Processing by TasksController#update as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"Lul3XDnGNENpk2Y6itqZoc6vW0DGtXGtUAvijmN9aw8F0Y2w3rtLGQ4gnCCZD4Q+A/03og1HWQ+3N1x3N7r/8g==", "task"=>{"title"=>"Call Dentis", "description"=>"Healt", "details"=>"Malika needs a check-up, "}, "commit"=>"update", "id"=>"2"}
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 2]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.5ms)[0m [1mUPDATE "tasks" SET "title" = ?, "updated_at" = ? WHERE "tasks"."id" = ?[0m [["title", "Call Dentis"], ["updated_at", "2016-10-05 01:24:39.517790"], ["id", 2]]
+ [1m[35m (0.9ms)[0m commit transaction
+ Rendered shared/_footer.html.erb (0.4ms)
+ Rendered tasks/update.html.erb within layouts/application (4.1ms)
+Completed 200 OK in 50ms (Views: 43.5ms | ActiveRecord: 1.7ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-04 18:24:42 -0700
+Processing by TasksController#index as HTML
+ [1m[36mTask Load (0.7ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered shared/_footer.html.erb (0.4ms)
+ Rendered tasks/index.html.erb within layouts/application (55.3ms)
+Completed 200 OK in 110ms (Views: 108.1ms | ActiveRecord: 0.7ms)
+
+
+Started DELETE "/tasks/2/destroy" for ::1 at 2016-10-04 18:24:47 -0700
+Processing by TasksController#destroy as HTML
+ Parameters: {"authenticity_token"=>"OIZy90+NUAiT8Lf4GVeFX2Wst+yUPl/egmxdOQAqgGoTvogbqPAvUvRDTeIKgpjAqP7bDl/Md3xlUOPAVO0Ulw==", "id"=>"2"}
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.5ms)[0m DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 2]]
+ [1m[36m (1.6ms)[0m [1mcommit transaction[0m
+ Rendered shared/_footer.html.erb (2.0ms)
+ Rendered tasks/destroy.html.erb within layouts/application (6.2ms)
+Completed 200 OK in 90ms (Views: 83.4ms | ActiveRecord: 2.3ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-04 18:24:51 -0700
+Processing by TasksController#index as HTML
+ [1m[35mTask Load (0.3ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered shared/_footer.html.erb (0.3ms)
+ Rendered tasks/index.html.erb within layouts/application (14.3ms)
+Completed 200 OK in 54ms (Views: 53.1ms | ActiveRecord: 0.3ms)
+ [1m[36mActiveRecord::SchemaMigration Load (1.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+Migrating to CreateUsers (20161018170123)
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36m (0.7ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "uid" varchar, "name" varchar, "provider" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
+ [1m[35mSQL (0.3ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20161018170123"]]
+ [1m[36m (0.8ms)[0m [1mcommit transaction[0m
+ [1m[35mActiveRecord::SchemaMigration Load (0.3ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
+
+
+Started GET "/" for ::1 at 2016-10-18 12:31:11 -0700
+ [1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+
+SyntaxError - syntax error, unexpected tIDENTIFIER, expecting keyword_end
+ before_action :find_task except: [:index, :create, :new]
+ ^:
+ app/controllers/tasks_controller.rb:5:in `'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:457:in `block in load_file'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:647:in `new_constants_in'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:456:in `load_file'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:354:in `require_or_load'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:494:in `load_missing_constant'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:184:in `const_missing'
+ 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 `constantize'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:566:in `get'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:597: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 `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started GET "/" for ::1 at 2016-10-18 12:31:12 -0700
+
+SyntaxError - syntax error, unexpected tIDENTIFIER, expecting keyword_end
+ before_action :find_task except: [:index, :create, :new]
+ ^:
+ app/controllers/tasks_controller.rb:5:in `'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:457:in `block in load_file'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:647:in `new_constants_in'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:456:in `load_file'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:354:in `require_or_load'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:494:in `load_missing_constant'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:184:in `const_missing'
+ 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 `constantize'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:566:in `get'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:597: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 `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/5d061b4d61d1d2d2/variables" for ::1 at 2016-10-18 12:31:12 -0700
+ [1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+ [1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
+
+
+Started GET "/" for ::1 at 2016-10-24 13:12:52 -0700
+ [1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+
+SyntaxError - syntax error, unexpected tIDENTIFIER, expecting keyword_end
+ before_action :find_task except: [:index, :create, :new]
+ ^:
+ app/controllers/tasks_controller.rb:5:in `'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:457:in `block in load_file'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:647:in `new_constants_in'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:456:in `load_file'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:354:in `require_or_load'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:494:in `load_missing_constant'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:184:in `const_missing'
+ 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 `constantize'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:566:in `get'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:597: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 `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started GET "/" for ::1 at 2016-10-24 13:12:52 -0700
+
+SyntaxError - syntax error, unexpected tIDENTIFIER, expecting keyword_end
+ before_action :find_task except: [:index, :create, :new]
+ ^:
+ app/controllers/tasks_controller.rb:5:in `'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:457:in `block in load_file'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:647:in `new_constants_in'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:456:in `load_file'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:354:in `require_or_load'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:494:in `load_missing_constant'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:184:in `const_missing'
+ 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 `constantize'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:566:in `get'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:597: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 `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/f975774fd1e8d049/variables" for ::1 at 2016-10-24 13:12:53 -0700
+
+
+Started GET "/" for ::1 at 2016-10-24 13:13:25 -0700
+Processing by TasksController#index as HTML
+ [1m[35mTask Load (0.8ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered shared/_footer.html.erb (0.9ms)
+ Rendered tasks/index.html.erb within layouts/application (31.4ms)
+Completed 200 OK in 1205ms (Views: 1184.6ms | ActiveRecord: 1.2ms)
+
+
+Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-24 13:13:26 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-24 13:13:26 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-24 13:13:26 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-24 13:13:26 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-24 13:13:26 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-24 13:13:26 -0700
+
+
+Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-24 13:13:26 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-24 13:13:26 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-24 13:13:26 -0700
+
+
+Started GET "/" for ::1 at 2016-10-24 13:39:46 -0700
+ [1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+Processing by TasksController#index as HTML
+ [1m[35mTask Load (0.6ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered shared/_footer.html.erb (0.9ms)
+ Rendered tasks/index.html.erb within layouts/application (32.1ms)
+Completed 200 OK in 1052ms (Views: 1002.5ms | ActiveRecord: 1.0ms)
+
+
+Started GET "/" for ::1 at 2016-10-24 13:39:47 -0700
+Processing by TasksController#index as HTML
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered shared/_footer.html.erb (0.3ms)
+ Rendered tasks/index.html.erb within layouts/application (9.3ms)
+Completed 200 OK in 87ms (Views: 85.9ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/" for ::1 at 2016-10-24 13:39:52 -0700
+Processing by TasksController#index as HTML
+ [1m[35mTask Load (0.3ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered shared/_footer.html.erb (0.3ms)
+ Rendered tasks/index.html.erb within layouts/application (10.8ms)
+Completed 200 OK in 49ms (Views: 46.8ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-24 13:39:53 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-24 13:39:53 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-24 13:39:53 -0700
+
+
+Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-24 13:39:53 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-24 13:39:53 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-24 13:39:53 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-24 13:39:53 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-24 13:39:53 -0700
+
+
+Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-24 13:39:53 -0700
+
+
+Started GET "/tasks/3/show" for ::1 at 2016-10-24 13:39:55 -0700
+Processing by TasksController#show as HTML
+ Parameters: {"id"=>"3"}
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 3]]
+ Rendered tasks/show.html.erb within layouts/application (86.2ms)
+Completed 500 Internal Server Error in 122ms (ActiveRecord: 0.3ms)
+
+NameError - undefined local variable or method `mytask' for #<#:0x007fe2b6568c90>
+Did you mean? @mytask:
+ app/views/tasks/show.html.erb:18:in `_app_views_tasks_show_html_erb___3924983560243582011_70305849396800'
+ actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/e984a4ba55abcf08/variables" for ::1 at 2016-10-24 13:39:56 -0700
+
+
+Started POST "/__better_errors/e984a4ba55abcf08/eval" for ::1 at 2016-10-24 13:40:18 -0700
+ [1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+ [1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
+
+
+Started GET "/" for ::1 at 2016-10-24 13:47:53 -0700
+ [1m[35mActiveRecord::SchemaMigration Load (2.6ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
+Processing by TasksController#index as HTML
+ [1m[36mTask Load (0.6ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered shared/_footer.html.erb (0.4ms)
+ Rendered tasks/index.html.erb within layouts/application (27.0ms)
+Completed 200 OK in 114ms (Views: 109.3ms | ActiveRecord: 1.0ms)
+
+
+Started GET "/" for ::1 at 2016-10-24 20:49:46 -0700
+ [1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+Processing by TasksController#index as HTML
+ [1m[35mTask Load (0.6ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered shared/_footer.html.erb (0.9ms)
+ Rendered tasks/index.html.erb within layouts/application (38.7ms)
+Completed 200 OK in 834ms (Views: 813.4ms | ActiveRecord: 1.0ms)
+
+
+Started GET "/" for ::1 at 2016-10-24 20:49:47 -0700
+Processing by TasksController#index as HTML
+ [1m[36mTask Load (0.8ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered shared/_footer.html.erb (0.4ms)
+ Rendered tasks/index.html.erb within layouts/application (15.0ms)
+Completed 200 OK in 165ms (Views: 163.4ms | ActiveRecord: 0.8ms)
+
+
+Started GET "/" for ::1 at 2016-10-24 20:51:15 -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 (10.6ms)
+Completed 200 OK in 87ms (Views: 85.5ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-24 20:51:15 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-24 20:51:15 -0700
+
+
+Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-24 20:51:15 -0700
+
+
+Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-24 20:51:15 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-24 20:51:15 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-24 20:51:15 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-24 20:51:15 -0700
+
+
+Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-24 20:51:15 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-24 20:51:15 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-24 20:51:22 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-24 20:51:23 -0700
+
+
+Started GET "/auth/github/callback?code=0166a265af8552d609d9&state=0e93453a751ee114beb80a94a4cb526489e4ebe1b8fb6370" for ::1 at 2016-10-24 20:51:28 -0700
+Processing by SessionsController#create as HTML
+ Parameters: {"code"=>"0166a265af8552d609d9", "state"=>"0e93453a751ee114beb80a94a4cb526489e4ebe1b8fb6370", "provider"=>"github"}
+Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms)
+
+SyntaxError - syntax error, unexpected end-of-input, expecting keyword_end:
+ app/models/user.rb:12:in `'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:457:in `block in load_file'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:647:in `new_constants_in'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:456:in `load_file'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:354:in `require_or_load'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:494:in `load_missing_constant'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:184:in `const_missing'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:526:in `load_missing_constant'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:184:in `const_missing'
+ app/controllers/sessions_controller.rb:9:in `create'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:408:in `call_app!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:362:in `callback_phase'
+ omniauth-oauth2 (1.4.0) lib/omniauth/strategies/oauth2.rb:75:in `callback_phase'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:227:in `callback_call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:184:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/4ae9ee6f35023038/variables" for ::1 at 2016-10-24 20:51:30 -0700
+
+
+Started GET "/auth/github/callback?code=0166a265af8552d609d9&state=0e93453a751ee114beb80a94a4cb526489e4ebe1b8fb6370" for ::1 at 2016-10-24 20:51:58 -0700
+
+OAuth2::Error - bad_verification_code: The code passed is incorrect or expired.
+error=bad_verification_code&error_description=The+code+passed+is+incorrect+or+expired.&error_uri=https%3A%2F%2Fdeveloper.github.com%2Fv3%2Foauth%2F%23bad-verification-code:
+ oauth2 (1.2.0) lib/oauth2/client.rb:140:in `get_token'
+ oauth2 (1.2.0) lib/oauth2/strategy/auth_code.rb:29:in `get_token'
+ omniauth-oauth2 (1.4.0) lib/omniauth/strategies/oauth2.rb:89:in `build_access_token'
+ omniauth-oauth2 (1.4.0) lib/omniauth/strategies/oauth2.rb:73:in `callback_phase'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:227:in `callback_call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:184:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/8d695c7bc9b6fe4c/variables" for ::1 at 2016-10-24 20:51:59 -0700
+
+
+Started GET "/auth/github/callback?code=42bb6631643d25e946f7&state=0e93453a751ee114beb80a94a4cb526489e4ebe1b8fb6370" for ::1 at 2016-10-24 21:11:11 -0700
+Processing by SessionsController#create as HTML
+ Parameters: {"code"=>"42bb6631643d25e946f7", "state"=>"0e93453a751ee114beb80a94a4cb526489e4ebe1b8fb6370", "provider"=>"github"}
+ [1m[36mUser Load (0.8ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1[0m [["uid", "17533030"], ["provider", "github"]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36m (0.5ms)[0m [1mrollback transaction[0m
+Completed 500 Internal Server Error in 61ms (ActiveRecord: 2.2ms)
+
+ActionView::MissingTemplate - Missing template sessions/creation_failure, application/creation_failure with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in:
+ * "/Users/brandimilligan/Dropbox/ada/wk8/TaskListRails/app/views"
+:
+ actionview (4.2.7) lib/action_view/path_set.rb:46:in `find'
+ actionview (4.2.7) lib/action_view/lookup_context.rb:121:in `find'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:40:in `determine_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:8:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ app/controllers/sessions_controller.rb:12:in `create'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:408:in `call_app!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:362:in `callback_phase'
+ omniauth-oauth2 (1.4.0) lib/omniauth/strategies/oauth2.rb:75:in `callback_phase'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:227:in `callback_call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:184:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/f4d62fb9d7a08ce4/variables" for ::1 at 2016-10-24 21:11:13 -0700
+
+
+Started GET "/" for ::1 at 2016-10-25 10:59:41 -0700
+Processing by TasksController#index as HTML
+ [1m[35mTask Load (1.4ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered tasks/index.html.erb within layouts/application (28.8ms)
+Completed 200 OK in 111ms (Views: 99.6ms | ActiveRecord: 1.8ms)
+
+
+Started GET "/" for ::1 at 2016-10-26 14:15:11 -0700
+ [1m[36mActiveRecord::SchemaMigration Load (1.8ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+Processing by TasksController#index as HTML
+ [1m[35mTask Load (0.6ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered tasks/index.html.erb within layouts/application (24.0ms)
+Completed 200 OK in 653ms (Views: 627.6ms | ActiveRecord: 3.2ms)
+
+
+Started GET "/" for ::1 at 2016-10-26 14:15:12 -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 (9.3ms)
+Completed 200 OK in 151ms (Views: 149.5ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/auth/github" for ::1 at 2016-10-26 14:15:25 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-26 14:15:25 -0700
+
+
+Started GET "/auth/github/callback?code=18214e3ecd524cecfa7a&state=78c3ccdbcc5b684b13eee8326e24aced9e55803821da287f" for ::1 at 2016-10-26 14:15:26 -0700
+Processing by SessionsController#create as HTML
+ Parameters: {"code"=>"18214e3ecd524cecfa7a", "state"=>"78c3ccdbcc5b684b13eee8326e24aced9e55803821da287f", "provider"=>"github"}
+ [1m[35mUser Load (8.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "17533030"], ["provider", "github"]]
+ [1m[36m (0.2ms)[0m [1mbegin transaction[0m
+ [1m[35m (0.1ms)[0m rollback transaction
+Completed 500 Internal Server Error in 85ms (ActiveRecord: 9.3ms)
+
+ActionView::MissingTemplate - Missing template sessions/creation_failure, application/creation_failure with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in:
+ * "/Users/brandimilligan/Dropbox/ada/wk8/TaskListRails/app/views"
+:
+ actionview (4.2.7) lib/action_view/path_set.rb:46:in `find'
+ actionview (4.2.7) lib/action_view/lookup_context.rb:121:in `find'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:40:in `determine_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:8:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ app/controllers/sessions_controller.rb:12:in `create'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:408:in `call_app!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:362:in `callback_phase'
+ omniauth-oauth2 (1.4.0) lib/omniauth/strategies/oauth2.rb:75:in `callback_phase'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:227:in `callback_call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:184:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/940888dc849ea710/variables" for ::1 at 2016-10-26 14:15:27 -0700
+
+
+Started GET "/" for ::1 at 2016-10-27 16:38:14 -0700
+ [1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (2.5ms)
+Completed 200 OK in 1795ms (Views: 1774.7ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-10-27 16:38:16 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 80ms (Views: 78.9ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 16:38:17 -0700
+
+
+Started GET "/assets/application.self-f37bdf791d238c97d100c03999a9a80a3e76a12d7c9c136a9e40691c5b1764c1.css?body=1" for ::1 at 2016-10-27 16:38:17 -0700
+
+
+Started GET "/assets/navigations.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 16:38:17 -0700
+
+
+Started GET "/assets/foundation.self-9b7296f6e4148c7daa4743c23e7f4dd3604ee97cb73c5860b5874154a592bb28.css?body=1" for ::1 at 2016-10-27 16:38:17 -0700
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-27 16:38:17 -0700
+
+
+Started GET "/" for ::1 at 2016-10-27 16:43:05 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.5ms)
+Completed 200 OK in 219ms (Views: 217.7ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-27 16:43:06 -0700
+
+
+Started GET "/" for ::1 at 2016-10-27 16:44:34 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (1.3ms)
+Completed 200 OK in 148ms (Views: 139.9ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 16:44:35 -0700
+
+
+Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 16:44:35 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 16:44:35 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-27 16:44:35 -0700
+
+
+Started GET "/assets/application.self-f37bdf791d238c97d100c03999a9a80a3e76a12d7c9c136a9e40691c5b1764c1.css?body=1" for ::1 at 2016-10-27 16:44:35 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-27 16:44:35 -0700
+
+
+Started GET "/assets/foundation.self-9b7296f6e4148c7daa4743c23e7f4dd3604ee97cb73c5860b5874154a592bb28.css?body=1" for ::1 at 2016-10-27 16:44:35 -0700
+
+
+Started GET "/assets/navigations.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 16:44:35 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 16:44:35 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-27 16:44:35 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-27 16:44:35 -0700
+
+
+Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 16:44:35 -0700
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-27 16:44:35 -0700
+
+
+Started GET "/" for ::1 at 2016-10-27 16:46:01 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (1.2ms)
+Completed 200 OK in 64ms (Views: 63.8ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 16:46:01 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 16:46:01 -0700
+
+
+Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 16:46:01 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-27 16:46:01 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-27 16:46:01 -0700
+
+
+Started GET "/assets/application.self-f37bdf791d238c97d100c03999a9a80a3e76a12d7c9c136a9e40691c5b1764c1.css?body=1" for ::1 at 2016-10-27 16:46:01 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-27 16:46:01 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 16:46:01 -0700
+
+
+Started GET "/assets/navigations.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 16:46:01 -0700
+
+
+Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 16:46:01 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-27 16:46:01 -0700
+
+
+Started GET "/assets/foundation.self-9b7296f6e4148c7daa4743c23e7f4dd3604ee97cb73c5860b5874154a592bb28.css?body=1" for ::1 at 2016-10-27 16:46:01 -0700
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-27 16:46:01 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-27 16:46:35 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-27 16:46:36 -0700
+
+
+Started GET "/auth/github/callback?code=2b6094c0ac9885cb77f2&state=80e13a9e6fcf957b219234f045a57348d9fd933f2decd434" for ::1 at 2016-10-27 16:46:36 -0700
+
+SyntaxError - syntax error, unexpected tIDENTIFIER, expecting keyword_end
+... Please try again" redirect_to root unless @user.save
+... ^:
+ app/controllers/sessions_controller.rb:12:in `'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:457:in `block in load_file'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:647:in `new_constants_in'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:456:in `load_file'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:354:in `require_or_load'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:494:in `load_missing_constant'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:184:in `const_missing'
+ 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 `constantize'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:566:in `get'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:597: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 `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:408:in `call_app!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:362:in `callback_phase'
+ omniauth-oauth2 (1.4.0) lib/omniauth/strategies/oauth2.rb:75:in `callback_phase'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:227:in `callback_call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:184:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/61b61a4f9ff05455/variables" for ::1 at 2016-10-27 16:46:38 -0700
+
+
+Started GET "/auth/github/callback?code=2b6094c0ac9885cb77f2&state=80e13a9e6fcf957b219234f045a57348d9fd933f2decd434" for ::1 at 2016-10-27 16:48:07 -0700
+
+OAuth2::Error - bad_verification_code: The code passed is incorrect or expired.
+error=bad_verification_code&error_description=The+code+passed+is+incorrect+or+expired.&error_uri=https%3A%2F%2Fdeveloper.github.com%2Fv3%2Foauth%2F%23bad-verification-code:
+ oauth2 (1.2.0) lib/oauth2/client.rb:140:in `get_token'
+ oauth2 (1.2.0) lib/oauth2/strategy/auth_code.rb:29:in `get_token'
+ omniauth-oauth2 (1.4.0) lib/omniauth/strategies/oauth2.rb:89:in `build_access_token'
+ omniauth-oauth2 (1.4.0) lib/omniauth/strategies/oauth2.rb:73:in `callback_phase'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:227:in `callback_call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:184:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/6a6ae020f865fd93/variables" for ::1 at 2016-10-27 16:48:08 -0700
+
+
+Started GET "/auth/github/callback?code=2b6094c0ac9885cb77f2&state=80e13a9e6fcf957b219234f045a57348d9fd933f2decd434" for ::1 at 2016-10-27 16:53:02 -0700
+
+OAuth2::Error - bad_verification_code: The code passed is incorrect or expired.
+error=bad_verification_code&error_description=The+code+passed+is+incorrect+or+expired.&error_uri=https%3A%2F%2Fdeveloper.github.com%2Fv3%2Foauth%2F%23bad-verification-code:
+ oauth2 (1.2.0) lib/oauth2/client.rb:140:in `get_token'
+ oauth2 (1.2.0) lib/oauth2/strategy/auth_code.rb:29:in `get_token'
+ omniauth-oauth2 (1.4.0) lib/omniauth/strategies/oauth2.rb:89:in `build_access_token'
+ omniauth-oauth2 (1.4.0) lib/omniauth/strategies/oauth2.rb:73:in `callback_phase'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:227:in `callback_call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:184:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/8e572eeaf925e96c/variables" for ::1 at 2016-10-27 16:53:04 -0700
+
+
+Started GET "/" for ::1 at 2016-10-27 16:53:09 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.4ms)
+Completed 200 OK in 111ms (Views: 109.4ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 16:53:09 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 16:53:09 -0700
+
+
+Started GET "/assets/application.self-f37bdf791d238c97d100c03999a9a80a3e76a12d7c9c136a9e40691c5b1764c1.css?body=1" for ::1 at 2016-10-27 16:53:09 -0700
+
+
+Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 16:53:09 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-27 16:53:09 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-27 16:53:09 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-27 16:53:09 -0700
+
+
+Started GET "/assets/navigations.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 16:53:09 -0700
+
+
+Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 16:53:09 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 16:53:09 -0700
+
+
+Started GET "/assets/foundation.self-9b7296f6e4148c7daa4743c23e7f4dd3604ee97cb73c5860b5874154a592bb28.css?body=1" for ::1 at 2016-10-27 16:53:09 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-27 16:53:09 -0700
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-27 16:53:09 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-27 16:53:11 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-27 16:53:12 -0700
+
+
+Started GET "/auth/github/callback?code=2ad101234f9bae696c29&state=b0bd4d69e2662337635b34e1c438064f829e2cc2b97acbef" for ::1 at 2016-10-27 16:53:12 -0700
+
+SyntaxError - syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '('
+...e try again", redirect_to root unless @user.save
+... ^:
+ app/controllers/sessions_controller.rb:17:in `'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:457:in `block in load_file'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:647:in `new_constants_in'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:456:in `load_file'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:354:in `require_or_load'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:494:in `load_missing_constant'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:184:in `const_missing'
+ 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 `constantize'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:566:in `get'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:597: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 `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:408:in `call_app!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:362:in `callback_phase'
+ omniauth-oauth2 (1.4.0) lib/omniauth/strategies/oauth2.rb:75:in `callback_phase'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:227:in `callback_call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:184:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/6b282fd970e502fd/variables" for ::1 at 2016-10-27 16:53:14 -0700
+
+
+Started GET "/auth/github/callback?code=2ad101234f9bae696c29&state=b0bd4d69e2662337635b34e1c438064f829e2cc2b97acbef" for ::1 at 2016-10-27 16:55:59 -0700
+
+OAuth2::Error - bad_verification_code: The code passed is incorrect or expired.
+error=bad_verification_code&error_description=The+code+passed+is+incorrect+or+expired.&error_uri=https%3A%2F%2Fdeveloper.github.com%2Fv3%2Foauth%2F%23bad-verification-code:
+ oauth2 (1.2.0) lib/oauth2/client.rb:140:in `get_token'
+ oauth2 (1.2.0) lib/oauth2/strategy/auth_code.rb:29:in `get_token'
+ omniauth-oauth2 (1.4.0) lib/omniauth/strategies/oauth2.rb:89:in `build_access_token'
+ omniauth-oauth2 (1.4.0) lib/omniauth/strategies/oauth2.rb:73:in `callback_phase'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:227:in `callback_call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:184:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/f21edd9feb3c92d4/variables" for ::1 at 2016-10-27 16:55:59 -0700
+
+
+Started GET "/" for ::1 at 2016-10-27 16:56:03 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 49ms (Views: 47.9ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 16:56:03 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 16:56:03 -0700
+
+
+Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 16:56:04 -0700
+
+
+Started GET "/assets/application.self-f37bdf791d238c97d100c03999a9a80a3e76a12d7c9c136a9e40691c5b1764c1.css?body=1" for ::1 at 2016-10-27 16:56:04 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-27 16:56:04 -0700
+
+
+Started GET "/assets/foundation.self-9b7296f6e4148c7daa4743c23e7f4dd3604ee97cb73c5860b5874154a592bb28.css?body=1" for ::1 at 2016-10-27 16:56:04 -0700
+
+
+Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 16:56:04 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-27 16:56:04 -0700
+
+
+Started GET "/assets/navigations.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 16:56:04 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-27 16:56:04 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-27 16:56:04 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 16:56:04 -0700
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-27 16:56:04 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-27 16:56:05 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-27 16:56:06 -0700
+
+
+Started GET "/auth/github/callback?code=dede769ab69e6aca5b1a&state=718bc6e5dcc52d237349859dcb2d2735e7f7377b2d8a1c04" for ::1 at 2016-10-27 16:56:06 -0700
+Processing by SessionsController#create as HTML
+ Parameters: {"code"=>"dede769ab69e6aca5b1a", "state"=>"718bc6e5dcc52d237349859dcb2d2735e7f7377b2d8a1c04", "provider"=>"github"}
+ [1m[35mUser Load (0.7ms)[0m SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "17533030"], ["provider", "github"]]
+Completed 500 Internal Server Error in 63ms (ActiveRecord: 1.5ms)
+
+NameError - undefined local variable or method `tasks_path' for #
+Did you mean? tasks_create_path:
+ app/controllers/sessions_controller.rb:21:in `create'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:408:in `call_app!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:362:in `callback_phase'
+ omniauth-oauth2 (1.4.0) lib/omniauth/strategies/oauth2.rb:75:in `callback_phase'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:227:in `callback_call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:184:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/9e9123e0785d11c4/variables" for ::1 at 2016-10-27 16:56:08 -0700
+
+
+Started GET "/" for ::1 at 2016-10-27 16:56:41 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 57ms (Views: 55.9ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 16:56:42 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 16:56:42 -0700
+
+
+Started GET "/assets/application.self-f37bdf791d238c97d100c03999a9a80a3e76a12d7c9c136a9e40691c5b1764c1.css?body=1" for ::1 at 2016-10-27 16:56:42 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-27 16:56:42 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-27 16:56:42 -0700
+
+
+Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 16:56:42 -0700
+
+
+Started GET "/assets/foundation.self-9b7296f6e4148c7daa4743c23e7f4dd3604ee97cb73c5860b5874154a592bb28.css?body=1" for ::1 at 2016-10-27 16:56:42 -0700
+
+
+Started GET "/assets/navigations.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 16:56:42 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-27 16:56:42 -0700
+
+
+Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 16:56:42 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 16:56:42 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-27 16:56:42 -0700
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-27 16:56:42 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-27 16:56:43 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-27 16:56:44 -0700
+
+
+Started GET "/auth/github/callback?code=36f615fa40b364bfcb6a&state=6d0518dad507774cf61895c78f1a21298080a029756e080c" for ::1 at 2016-10-27 16:56:44 -0700
+Processing by SessionsController#create as HTML
+ Parameters: {"code"=>"36f615fa40b364bfcb6a", "state"=>"6d0518dad507774cf61895c78f1a21298080a029756e080c", "provider"=>"github"}
+ [1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1[0m [["uid", "17533030"], ["provider", "github"]]
+Completed 500 Internal Server Error in 41ms (ActiveRecord: 1.2ms)
+
+NameError - undefined local variable or method `tasks_index_path' for #
+Did you mean? tasks_create_path:
+ app/controllers/sessions_controller.rb:21:in `create'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:408:in `call_app!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:362:in `callback_phase'
+ omniauth-oauth2 (1.4.0) lib/omniauth/strategies/oauth2.rb:75:in `callback_phase'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:227:in `callback_call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:184:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/1ae9d83e7e2251e3/variables" for ::1 at 2016-10-27 16:56:46 -0700
+
+
+Started GET "/" for ::1 at 2016-10-27 16:57:32 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 72ms (Views: 70.4ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 16:57:32 -0700
+
+
+Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 16:57:32 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 16:57:33 -0700
+
+
+Started GET "/assets/application.self-f37bdf791d238c97d100c03999a9a80a3e76a12d7c9c136a9e40691c5b1764c1.css?body=1" for ::1 at 2016-10-27 16:57:33 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-27 16:57:33 -0700
+
+
+Started GET "/assets/foundation.self-9b7296f6e4148c7daa4743c23e7f4dd3604ee97cb73c5860b5874154a592bb28.css?body=1" for ::1 at 2016-10-27 16:57:33 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-27 16:57:33 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-27 16:57:33 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 16:57:33 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-27 16:57:33 -0700
+
+
+Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 16:57:33 -0700
+
+
+Started GET "/assets/navigations.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 16:57:33 -0700
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-27 16:57:33 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-27 16:57:34 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-27 16:57:34 -0700
+
+
+Started GET "/auth/github/callback?code=487d23f38b337bbfc925&state=c626356672d8d26a7125da04f53eb892b5a603fe548bb7cc" for ::1 at 2016-10-27 16:57:35 -0700
+Processing by SessionsController#create as HTML
+ Parameters: {"code"=>"487d23f38b337bbfc925", "state"=>"c626356672d8d26a7125da04f53eb892b5a603fe548bb7cc", "provider"=>"github"}
+ [1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "17533030"], ["provider", "github"]]
+Redirected to http://localhost:3000/tasks/index
+Completed 302 Found in 14ms (ActiveRecord: 1.5ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-27 16:57:36 -0700
+Processing by TasksController#index as HTML
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-27 16:57:36 -0700
+Processing by TasksController#index as HTML
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-27 16:57:36 -0700
+Processing by TasksController#index as HTML
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-27 16:57:36 -0700
+Processing by TasksController#index as HTML
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-27 16:57:36 -0700
+Processing by TasksController#index as HTML
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-27 16:57:36 -0700
+Processing by TasksController#index as HTML
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-27 16:57:36 -0700
+Processing by TasksController#index as HTML
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-27 16:57:36 -0700
+Processing by TasksController#index as HTML
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-27 16:57:41 -0700
+Processing by TasksController#index as HTML
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
+ [1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+Migrating to AddProfileNameToUsers (20161028000424)
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36m (0.1ms)[0m [1mrollback transaction[0m
+ [1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+Migrating to AddProfileNameToUsers (20161028000424)
+ [1m[35m (0.2ms)[0m begin transaction
+ [1m[36m (0.1ms)[0m [1mrollback transaction[0m
+ [1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+Migrating to AddProfileNameToUsers (20161028000424)
+ [1m[35m (0.2ms)[0m begin transaction
+ [1m[36m (2.2ms)[0m [1mALTER TABLE "users" ADD "profile_name" varchar[0m
+ [1m[35mSQL (1.5ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20161028000424"]]
+ [1m[36m (0.8ms)[0m [1mcommit transaction[0m
+ [1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
+
+
+Started GET "/auth/github" for ::1 at 2016-10-27 17:09:54 -0700
+ [1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+
+
+Started GET "/auth/github" for ::1 at 2016-10-27 17:09:54 -0700
+
+
+Started GET "/auth/github/callback?code=b0412aced3e4098901d3&state=3f1a1274b5338cd3bb43352654df13284ea3744f25173da5" for ::1 at 2016-10-27 17:09:55 -0700
+Processing by SessionsController#create as HTML
+ Parameters: {"code"=>"b0412aced3e4098901d3", "state"=>"3f1a1274b5338cd3bb43352654df13284ea3744f25173da5", "provider"=>"github"}
+ [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "17533030"], ["provider", "github"]]
+Redirected to http://localhost:3000/users/edit
+Completed 302 Found in 76ms (ActiveRecord: 0.9ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-27 17:09:56 -0700
+Processing by UsersController#edit as HTML
+ Rendered users/edit.html.erb within layouts/application (0.9ms)
+Completed 200 OK in 445ms (Views: 444.4ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 17:09:57 -0700
+
+
+Started GET "/assets/foundation.self-9b7296f6e4148c7daa4743c23e7f4dd3604ee97cb73c5860b5874154a592bb28.css?body=1" for ::1 at 2016-10-27 17:09:57 -0700
+
+
+Started GET "/assets/application.self-f37bdf791d238c97d100c03999a9a80a3e76a12d7c9c136a9e40691c5b1764c1.css?body=1" for ::1 at 2016-10-27 17:09:57 -0700
+
+
+Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 17:09:57 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 17:09:57 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-27 17:09:57 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-27 17:09:57 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-27 17:09:57 -0700
+
+
+Started GET "/assets/navigations.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 17:09:57 -0700
+
+
+Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 17:09:57 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 17:09:57 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-27 17:09:57 -0700
+
+
+Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 17:09:57 -0700
+
+
+Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 17:09:57 -0700
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-27 17:09:57 -0700
+
+
+Started GET "/" for ::1 at 2016-10-27 17:10:26 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.5ms)
+Completed 200 OK in 59ms (Views: 58.8ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/foundation.self-9b7296f6e4148c7daa4743c23e7f4dd3604ee97cb73c5860b5874154a592bb28.css?body=1" for ::1 at 2016-10-27 17:10:27 -0700
+
+
+Started GET "/assets/navigations.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 17:10:27 -0700
+
+
+Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 17:10:27 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 17:10:27 -0700
+
+
+Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 17:10:27 -0700
+
+
+Started GET "/assets/application.self-f37bdf791d238c97d100c03999a9a80a3e76a12d7c9c136a9e40691c5b1764c1.css?body=1" for ::1 at 2016-10-27 17:10:27 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-27 17:10:27 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-27 17:10:27 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-27 17:10:27 -0700
+
+
+Started GET "/assets/navigations.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 17:10:27 -0700
+
+
+Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 17:10:27 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 17:10:27 -0700
+
+
+Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 17:10:27 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-27 17:10:27 -0700
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-27 17:10:27 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-27 17:10:29 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-27 17:10:30 -0700
+
+
+Started GET "/auth/github/callback?code=15309d88feedb31856ef&state=97f66a6c3ab5bc2b3c05076bb850b54c3f38fc0b841c4b79" for ::1 at 2016-10-27 17:10:39 -0700
+Processing by SessionsController#create as HTML
+ Parameters: {"code"=>"15309d88feedb31856ef", "state"=>"97f66a6c3ab5bc2b3c05076bb850b54c3f38fc0b841c4b79", "provider"=>"github"}
+ [1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1[0m [["uid", "17533030"], ["provider", "github"]]
+Redirected to http://localhost:3000/users/edit
+Completed 302 Found in 8ms (ActiveRecord: 0.4ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-27 17:10:41 -0700
+Processing by UsersController#edit as HTML
+ Rendered users/edit.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 232ms (Views: 231.2ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-27 17:10:41 -0700
+
+
+Started GET "/users/edit" for ::1 at 2016-10-27 18:30:08 -0700
+ [1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+Processing by UsersController#edit as HTML
+ Rendered users/edit.html.erb within layouts/application (10.4ms)
+Completed 500 Internal Server Error in 51ms (ActiveRecord: 0.0ms)
+
+ArgumentError - First argument in form cannot contain nil or be empty:
+ actionview (4.2.7) lib/action_view/helpers/form_helper.rb:432:in `form_for'
+ app/views/users/edit.html.erb:13:in `_app_views_users_edit_html_erb___4144333410860522014_70322006702740'
+ actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/9bdcf0cdbc9ce8cf/variables" for ::1 at 2016-10-27 18:30:09 -0700
+
+
+Started GET "/" for ::1 at 2016-10-27 18:30:21 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.8ms)
+Completed 200 OK in 1233ms (Views: 1231.7ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 18:30:22 -0700
+
+
+Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 18:30:22 -0700
+
+
+Started GET "/assets/foundation.self-9b7296f6e4148c7daa4743c23e7f4dd3604ee97cb73c5860b5874154a592bb28.css?body=1" for ::1 at 2016-10-27 18:30:23 -0700
+
+
+Started GET "/assets/application.self-f37bdf791d238c97d100c03999a9a80a3e76a12d7c9c136a9e40691c5b1764c1.css?body=1" for ::1 at 2016-10-27 18:30:23 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-27 18:30:23 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 18:30:23 -0700
+
+
+Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 18:30:23 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-27 18:30:23 -0700
+
+
+Started GET "/assets/navigations.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 18:30:23 -0700
+
+
+Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 18:30:23 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-27 18:30:23 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-27 18:30:23 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 18:30:23 -0700
+
+
+Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 18:30:23 -0700
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-27 18:30:23 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-27 18:30:24 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-27 18:30:25 -0700
+
+
+Started GET "/auth/github/callback?code=e4d5c85991de183285f9&state=b116e4a0a7c1eeefb234df2c64415774c0d2a44b98aaac16" for ::1 at 2016-10-27 18:30:25 -0700
+Processing by SessionsController#create as HTML
+ Parameters: {"code"=>"e4d5c85991de183285f9", "state"=>"b116e4a0a7c1eeefb234df2c64415774c0d2a44b98aaac16", "provider"=>"github"}
+ [1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "17533030"], ["provider", "github"]]
+Redirected to http://localhost:3000/users/edit
+Completed 302 Found in 28ms (ActiveRecord: 1.2ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-27 18:30:26 -0700
+Processing by UsersController#edit as HTML
+ Rendered users/edit.html.erb within layouts/application (4.7ms)
+Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.0ms)
+
+ArgumentError - First argument in form cannot contain nil or be empty:
+ actionview (4.2.7) lib/action_view/helpers/form_helper.rb:432:in `form_for'
+ app/views/users/edit.html.erb:13:in `_app_views_users_edit_html_erb___4144333410860522014_70322006702740'
+ actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/898426e67a0ea5a8/variables" for ::1 at 2016-10-27 18:30:27 -0700
+
+
+Started GET "/" for ::1 at 2016-10-27 18:30:41 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 61ms (Views: 60.8ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/foundation.self-9b7296f6e4148c7daa4743c23e7f4dd3604ee97cb73c5860b5874154a592bb28.css?body=1" for ::1 at 2016-10-27 18:30:41 -0700
+
+
+Started GET "/assets/navigations.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 18:30:41 -0700
+
+
+Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 18:30:41 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 18:30:41 -0700
+
+
+Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 18:30:41 -0700
+
+
+Started GET "/assets/application.self-f37bdf791d238c97d100c03999a9a80a3e76a12d7c9c136a9e40691c5b1764c1.css?body=1" for ::1 at 2016-10-27 18:30:41 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-27 18:30:41 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-27 18:30:41 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-27 18:30:41 -0700
+
+
+Started GET "/assets/navigations.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 18:30:41 -0700
+
+
+Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 18:30:41 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 18:30:41 -0700
+
+
+Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 18:30:41 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-27 18:30:41 -0700
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-27 18:30:41 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-27 18:30:43 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-27 18:30:44 -0700
+
+
+Started GET "/auth/github/callback?code=8ecd36121eb659d668b6&state=8461e770df4aebe77d26c1c0397002498fea13cd43f6d30f" for ::1 at 2016-10-27 18:30:50 -0700
+Processing by SessionsController#create as HTML
+ Parameters: {"code"=>"8ecd36121eb659d668b6", "state"=>"8461e770df4aebe77d26c1c0397002498fea13cd43f6d30f", "provider"=>"github"}
+ [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1[0m [["uid", "17533030"], ["provider", "github"]]
+Redirected to http://localhost:3000/users/edit
+Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-27 18:30:52 -0700
+Processing by UsersController#edit as HTML
+ Rendered users/edit.html.erb within layouts/application (4.3ms)
+Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.0ms)
+
+ArgumentError - First argument in form cannot contain nil or be empty:
+ actionview (4.2.7) lib/action_view/helpers/form_helper.rb:432:in `form_for'
+ app/views/users/edit.html.erb:13:in `_app_views_users_edit_html_erb___4144333410860522014_70322006702740'
+ actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/ca6492cbea272740/variables" for ::1 at 2016-10-27 18:30:52 -0700
+
+
+Started GET "/auth/github/callback?code=8ecd36121eb659d668b6&state=8461e770df4aebe77d26c1c0397002498fea13cd43f6d30f" for ::1 at 2016-10-27 18:40:16 -0700
+
+OmniAuth::Strategies::OAuth2::CallbackError - csrf_detected | CSRF detected:
+ omniauth (1.3.1) lib/omniauth/failure_endpoint.rb:25:in `raise_out!'
+ omniauth (1.3.1) lib/omniauth/failure_endpoint.rb:20:in `call'
+ omniauth (1.3.1) lib/omniauth/failure_endpoint.rb:12:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:479:in `fail!'
+ omniauth-oauth2 (1.4.0) lib/omniauth/strategies/oauth2.rb:71:in `callback_phase'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:227:in `callback_call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:184:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/35bb9b8ee4609cbd/variables" for ::1 at 2016-10-27 18:40:17 -0700
+
+
+Started GET "/" for ::1 at 2016-10-27 18:40:20 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.4ms)
+Completed 200 OK in 114ms (Views: 112.8ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/foundation.self-9b7296f6e4148c7daa4743c23e7f4dd3604ee97cb73c5860b5874154a592bb28.css?body=1" for ::1 at 2016-10-27 18:40:20 -0700
+
+
+Started GET "/assets/navigations.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 18:40:20 -0700
+
+
+Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 18:40:20 -0700
+
+
+Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 18:40:20 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-27 18:40:20 -0700
+
+
+Started GET "/assets/application.self-f37bdf791d238c97d100c03999a9a80a3e76a12d7c9c136a9e40691c5b1764c1.css?body=1" for ::1 at 2016-10-27 18:40:20 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-27 18:40:20 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-27 18:40:20 -0700
+
+
+Started GET "/assets/navigations.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 18:40:20 -0700
+
+
+Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 18:40:20 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 18:40:20 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-27 18:40:20 -0700
+
+
+Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-27 18:40:20 -0700
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-27 18:40:21 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-27 18:40:21 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-27 18:40:23 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-27 18:40:23 -0700
+
+
+Started GET "/auth/github/callback?code=f265fd9f0e15da8ed6b0&state=6e6d1c479c280c28e965c110208ac8b1c96a108ad57444c0" for ::1 at 2016-10-27 18:40:23 -0700
+Processing by SessionsController#create as HTML
+ Parameters: {"code"=>"f265fd9f0e15da8ed6b0", "state"=>"6e6d1c479c280c28e965c110208ac8b1c96a108ad57444c0", "provider"=>"github"}
+ [1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "17533030"], ["provider", "github"]]
+Redirected to http://localhost:3000/users/edit
+Completed 302 Found in 17ms (ActiveRecord: 1.4ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-27 18:40:26 -0700
+Processing by UsersController#edit as HTML
+ [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-27 18:40:26 -0700
+Processing by UsersController#edit as HTML
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-27 18:40:26 -0700
+Processing by UsersController#edit as HTML
+ [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-27 18:40:27 -0700
+Processing by UsersController#edit as HTML
+ [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-27 18:40:27 -0700
+Processing by UsersController#edit as HTML
+ [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-27 18:40:27 -0700
+Processing by UsersController#edit as HTML
+ [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-27 18:40:27 -0700
+Processing by UsersController#edit as HTML
+ [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-27 18:40:27 -0700
+Processing by UsersController#edit as HTML
+ [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-27 18:40:32 -0700
+Processing by UsersController#edit as HTML
+ [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
+
+
+Started GET "/" for ::1 at 2016-10-29 09:06:11 -0700
+ [1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (2.8ms)
+Completed 200 OK in 1045ms (Views: 1028.6ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-10-29 09:06:13 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 47ms (Views: 46.4ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-29 09:06:13 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-29 09:06:17 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-29 09:06:18 -0700
+
+
+Started GET "/auth/github/callback?code=193f7ef544015b3838ba&state=bf8865df7cc59c27119e65535bf92dbd0d3390d3d2aafc07" for ::1 at 2016-10-29 09:06:18 -0700
+Processing by SessionsController#create as HTML
+ Parameters: {"code"=>"193f7ef544015b3838ba", "state"=>"bf8865df7cc59c27119e65535bf92dbd0d3390d3d2aafc07", "provider"=>"github"}
+ [1m[35mUser Load (0.7ms)[0m SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "17533030"], ["provider", "github"]]
+Redirected to http://localhost:3000/users/edit
+Completed 302 Found in 55ms (ActiveRecord: 1.3ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 09:06:20 -0700
+Processing by UsersController#edit as HTML
+ [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 09:06:20 -0700
+Processing by UsersController#edit as HTML
+ [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 3ms (ActiveRecord: 0.1ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 09:06:20 -0700
+Processing by UsersController#edit as HTML
+ [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 3ms (ActiveRecord: 0.1ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 09:06:20 -0700
+Processing by UsersController#edit as HTML
+ [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 09:06:20 -0700
+Processing by UsersController#edit as HTML
+ [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 09:06:20 -0700
+Processing by UsersController#edit as HTML
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 09:06:20 -0700
+Processing by UsersController#edit as HTML
+ [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 09:06:25 -0700
+Processing by UsersController#edit as HTML
+ [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 09:06:25 -0700
+Processing by UsersController#edit as HTML
+ [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 09:06:55 -0700
+Processing by UsersController#edit as HTML
+ [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
+
+
+Started GET "/auth/github" for ::1 at 2016-10-29 09:11:23 -0700
+
+ArgumentError - Invalid route name, already in use: 'root'
+You may have defined two routes with the same name using the `:as` option, or you may be overriding a route already defined by a resource with the same naming. For the latter, you can restrict the routes created with `resources` as explained here:
+http://guides.rubyonrails.org/routing.html#restricting-the-routes-created:
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:549:in `add_route'
+ actionpack (4.2.7) lib/action_dispatch/routing/mapper.rb:1562:in `add_route'
+ actionpack (4.2.7) lib/action_dispatch/routing/mapper.rb:1537:in `decomposed_match'
+ actionpack (4.2.7) lib/action_dispatch/routing/mapper.rb:1518:in `block in match'
+ actionpack (4.2.7) lib/action_dispatch/routing/mapper.rb:1508:in `match'
+ actionpack (4.2.7) lib/action_dispatch/routing/mapper.rb:387:in `root'
+ actionpack (4.2.7) lib/action_dispatch/routing/mapper.rb:1581:in `root'
+ config/routes.rb:12:in `block in '
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:432:in `eval_block'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:410:in `draw'
+ config/routes.rb:1:in `'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:268:in `block in load'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:240:in `load_dependency'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:268:in `load'
+ railties (4.2.7) lib/rails/application/routes_reloader.rb:40:in `block in load_paths'
+ railties (4.2.7) lib/rails/application/routes_reloader.rb:40:in `load_paths'
+ railties (4.2.7) lib/rails/application/routes_reloader.rb:16:in `reload!'
+ railties (4.2.7) lib/rails/application/routes_reloader.rb:26:in `block in updater'
+ activesupport (4.2.7) lib/active_support/file_update_checker.rb:75:in `execute'
+ railties (4.2.7) lib/rails/application/routes_reloader.rb:7:in `execute'
+ railties (4.2.7) lib/rails/application/finisher.rb:81:in `block (2 levels) in '
+ activesupport (4.2.7) lib/active_support/callbacks.rb:446:in `block in make_lambda'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:192:in `block in simple'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:504:in `block in call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:504:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_prepare_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:83:in `prepare!'
+ actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:71:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/f8513d95eca1068d/variables" for ::1 at 2016-10-29 09:11:23 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-29 09:11:46 -0700
+
+
+Started GET "/auth/github/callback?code=e0fe2924a27f87f9fd4c&state=39fad97a8c184f15d29304b3caddc12b0f785900311294ca" for ::1 at 2016-10-29 09:11:47 -0700
+Processing by SessionsController#create as HTML
+ Parameters: {"code"=>"e0fe2924a27f87f9fd4c", "state"=>"39fad97a8c184f15d29304b3caddc12b0f785900311294ca", "provider"=>"github"}
+ [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1[0m [["uid", "17533030"], ["provider", "github"]]
+Redirected to http://localhost:3000/users/edit
+Completed 302 Found in 14ms (ActiveRecord: 0.9ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 09:11:49 -0700
+Processing by UsersController#edit as HTML
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 09:11:49 -0700
+Processing by UsersController#edit as HTML
+ [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 09:11:49 -0700
+Processing by UsersController#edit as HTML
+ [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 09:11:49 -0700
+Processing by UsersController#edit as HTML
+ [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 09:11:49 -0700
+Processing by UsersController#edit as HTML
+ [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 09:11:49 -0700
+Processing by UsersController#edit as HTML
+ [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 09:11:49 -0700
+Processing by UsersController#edit as HTML
+ [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 09:11:49 -0700
+Processing by UsersController#edit as HTML
+ [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 09:11:54 -0700
+Processing by UsersController#edit as HTML
+ [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 09:12:24 -0700
+Processing by UsersController#edit as HTML
+ [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 09:13:24 -0700
+Processing by UsersController#edit as HTML
+ [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
+
+
+Started GET "/" for ::1 at 2016-10-29 16:54:28 -0700
+ [1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (2.7ms)
+Completed 200 OK in 867ms (Views: 845.2ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/foundation.self-9b7296f6e4148c7daa4743c23e7f4dd3604ee97cb73c5860b5874154a592bb28.css?body=1" for ::1 at 2016-10-29 16:54:30 -0700
+
+
+Started GET "/assets/navigations.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-29 16:54:30 -0700
+
+
+Started GET "/" for ::1 at 2016-10-29 16:54:30 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 145ms (Views: 143.4ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-29 16:54:30 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-29 16:54:30 -0700
+
+
+Started GET "/assets/application.self-f37bdf791d238c97d100c03999a9a80a3e76a12d7c9c136a9e40691c5b1764c1.css?body=1" for ::1 at 2016-10-29 16:54:30 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-29 16:54:30 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-29 16:54:30 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-29 16:54:30 -0700
+
+
+Started GET "/assets/navigations.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-29 16:54:30 -0700
+
+
+Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-29 16:54:30 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-29 16:54:30 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-29 16:54:30 -0700
+
+
+Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-29 16:54:30 -0700
+
+
+Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-29 16:54:30 -0700
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-29 16:54:31 -0700
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-29 16:54:31 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-29 16:54:36 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-29 16:54:36 -0700
+
+
+Started GET "/auth/github/callback?code=46ff327ea7817721e3c2&state=5fac167a7563c77cb7d8031ab66dd7b7bb9ded55d7398804" for ::1 at 2016-10-29 16:54:37 -0700
+Processing by SessionsController#create as HTML
+ Parameters: {"code"=>"46ff327ea7817721e3c2", "state"=>"5fac167a7563c77cb7d8031ab66dd7b7bb9ded55d7398804", "provider"=>"github"}
+ [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "17533030"], ["provider", "github"]]
+Redirected to http://localhost:3000/users/edit
+Completed 302 Found in 28ms (ActiveRecord: 0.9ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 16:54:38 -0700
+Processing by UsersController#edit as HTML
+ [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 16:54:38 -0700
+Processing by UsersController#edit as HTML
+ [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 16:54:38 -0700
+Processing by UsersController#edit as HTML
+ [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 16:54:38 -0700
+Processing by UsersController#edit as HTML
+ [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 16:54:38 -0700
+Processing by UsersController#edit as HTML
+ [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 16:54:38 -0700
+Processing by UsersController#edit as HTML
+ [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 16:54:38 -0700
+Processing by UsersController#edit as HTML
+ [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 16:54:39 -0700
+Processing by UsersController#edit as HTML
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 16:54:44 -0700
+Processing by UsersController#edit as HTML
+ [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
+
+
+Started GET "/" for ::1 at 2016-10-29 16:59:18 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 40ms (Views: 39.2ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/foundation.self-9b7296f6e4148c7daa4743c23e7f4dd3604ee97cb73c5860b5874154a592bb28.css?body=1" for ::1 at 2016-10-29 16:59:18 -0700
+
+
+Started GET "/assets/navigations.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-29 16:59:18 -0700
+
+
+Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-29 16:59:18 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-29 16:59:18 -0700
+
+
+Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-29 16:59:18 -0700
+
+
+Started GET "/assets/application.self-f37bdf791d238c97d100c03999a9a80a3e76a12d7c9c136a9e40691c5b1764c1.css?body=1" for ::1 at 2016-10-29 16:59:18 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-29 16:59:18 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-29 16:59:18 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-29 16:59:18 -0700
+
+
+Started GET "/assets/navigations.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-29 16:59:18 -0700
+
+
+Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-29 16:59:18 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-29 16:59:18 -0700
+
+
+Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-29 16:59:18 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-29 16:59:18 -0700
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-29 16:59:18 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-29 16:59:22 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-29 16:59:23 -0700
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 16:59:26 -0700
+Processing by UsersController#edit as HTML
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
+
+
+Started GET "/auth/github/callback?code=d2aa14a1098c701245c3&state=71ee30b6ff37b3ba7c88515ba16598025de397a865af8973" for ::1 at 2016-10-29 16:59:31 -0700
+Processing by SessionsController#create as HTML
+ Parameters: {"code"=>"d2aa14a1098c701245c3", "state"=>"71ee30b6ff37b3ba7c88515ba16598025de397a865af8973", "provider"=>"github"}
+ [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1[0m [["uid", "17533030"], ["provider", "github"]]
+Redirected to http://localhost:3000/users/edit
+Completed 302 Found in 4ms (ActiveRecord: 0.1ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 16:59:33 -0700
+Processing by UsersController#edit as HTML
+ [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 16:59:33 -0700
+Processing by UsersController#edit as HTML
+ [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 16:59:33 -0700
+Processing by UsersController#edit as HTML
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
+
+
+Started GET "/" for ::1 at 2016-10-29 17:25:17 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.7ms)
+Completed 200 OK in 102ms (Views: 99.6ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-29 17:25:17 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-29 17:25:21 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-29 17:25:22 -0700
+
+
+Started GET "/auth/github/callback?code=fbbe0250206e5fe4aead&state=fd43a37a7ad3f86a980ee5e25d6e36d1d53ebc6f5571c1c6" for ::1 at 2016-10-29 17:25:22 -0700
+Processing by SessionsController#create as HTML
+ Parameters: {"code"=>"fbbe0250206e5fe4aead", "state"=>"fd43a37a7ad3f86a980ee5e25d6e36d1d53ebc6f5571c1c6", "provider"=>"github"}
+Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms)
+
+RuntimeError - :
+ app/controllers/sessions_controller.rb:7:in `create'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:408:in `call_app!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:362:in `callback_phase'
+ omniauth-oauth2 (1.4.0) lib/omniauth/strategies/oauth2.rb:75:in `callback_phase'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:227:in `callback_call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:184:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/94dbf72118a4e654/variables" for ::1 at 2016-10-29 17:25:24 -0700
+
+
+Started POST "/__better_errors/94dbf72118a4e654/eval" for ::1 at 2016-10-29 17:31:57 -0700
+
+
+Started GET "/" for ::1 at 2016-10-29 18:20:53 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 78ms (Views: 77.2ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-29 18:20:53 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-29 18:20:55 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-29 18:20:56 -0700
+
+
+Started GET "/auth/github/callback?code=d9a927871774594ff881&state=c9a2f629a6526cdee37ad11f0ec961ad65fff5c7349ee114" for ::1 at 2016-10-29 18:20:56 -0700
+Processing by SessionsController#create as HTML
+ Parameters: {"code"=>"d9a927871774594ff881", "state"=>"c9a2f629a6526cdee37ad11f0ec961ad65fff5c7349ee114", "provider"=>"github"}
+ [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1[0m [["uid", "17533030"], ["provider", "github"]]
+Redirected to http://localhost:3000/users/edit
+Completed 302 Found in 14ms (ActiveRecord: 1.1ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 18:20:57 -0700
+Processing by UsersController#edit as HTML
+ [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 18:20:57 -0700
+Processing by UsersController#edit as HTML
+ [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 18:20:57 -0700
+Processing by UsersController#edit as HTML
+ [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 18:20:57 -0700
+Processing by UsersController#edit as HTML
+ [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 18:20:57 -0700
+Processing by UsersController#edit as HTML
+ [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 18:20:58 -0700
+Processing by UsersController#edit as HTML
+ [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 18:20:58 -0700
+Processing by UsersController#edit as HTML
+ [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 18:20:58 -0700
+Processing by UsersController#edit as HTML
+ [1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 2ms (ActiveRecord: 0.5ms)
+
+
+Started GET "/users/edit" for ::1 at 2016-10-29 18:21:03 -0700
+Processing by UsersController#edit as HTML
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 0]]
+Redirected to http://localhost:3000root
+Filter chain halted as :require_user rendered or redirected
+Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
+
+
+Started GET "/" for ::1 at 2016-10-29 18:54:26 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.8ms)
+Completed 200 OK in 91ms (Views: 88.2ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-29 18:54:26 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-29 18:54:28 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-29 18:54:28 -0700
+
+
+Started GET "/auth/github/callback?code=b6cdccc19abc97cdf509&state=7f0bdf08367e9d4b50c7e881f47fe3de88ca4c2ac423a262" for ::1 at 2016-10-29 18:54:28 -0700
+Processing by SessionsController#create as HTML
+ Parameters: {"code"=>"b6cdccc19abc97cdf509", "state"=>"7f0bdf08367e9d4b50c7e881f47fe3de88ca4c2ac423a262", "provider"=>"github"}
+ [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1[0m [["uid", "17533030"], ["provider", "github"]]
+Completed 500 Internal Server Error in 42ms (ActiveRecord: 1.1ms)
+
+NoMethodError - undefined method `users_edit_path' for #
+Did you mean? user_edit_path
+ users_update_path
+ users_new_path:
+ app/controllers/sessions_controller.rb:20:in `create'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:408:in `call_app!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:362:in `callback_phase'
+ omniauth-oauth2 (1.4.0) lib/omniauth/strategies/oauth2.rb:75:in `callback_phase'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:227:in `callback_call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:184:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/51632506f1d1e5ef/variables" for ::1 at 2016-10-29 18:54:30 -0700
+
+
+Started GET "/" for ::1 at 2016-10-29 18:54:52 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 80ms (Views: 78.7ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-29 18:54:53 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-29 18:54:54 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-29 18:54:54 -0700
+
+
+Started GET "/auth/github/callback?code=58a5987d19e06e4beb7b&state=7bd48455121e250a8eba3dc9a2682be32d7ceee6a22b4e18" for ::1 at 2016-10-29 18:54:55 -0700
+Processing by SessionsController#create as HTML
+ Parameters: {"code"=>"58a5987d19e06e4beb7b", "state"=>"7bd48455121e250a8eba3dc9a2682be32d7ceee6a22b4e18", "provider"=>"github"}
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "17533030"], ["provider", "github"]]
+Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.9ms)
+
+ActionController::UrlGenerationError - No route matches {:action=>"edit", :controller=>"users", :id=>nil} missing required keys: [:id]:
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:259:in `raise_generation_error'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:234:in `optimized_helper'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:220:in `call'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:345:in `block (2 levels) in define_url_helper'
+ app/controllers/sessions_controller.rb:20:in `create'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:408:in `call_app!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:362:in `callback_phase'
+ omniauth-oauth2 (1.4.0) lib/omniauth/strategies/oauth2.rb:75:in `callback_phase'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:227:in `callback_call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:184:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/c5585ee1e4fbb496/variables" for ::1 at 2016-10-29 18:54:57 -0700
+
+
+Started GET "/" for ::1 at 2016-10-29 18:56:03 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 65ms (Views: 63.5ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-29 18:56:03 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-29 18:56:05 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-29 18:56:05 -0700
+
+
+Started GET "/auth/github/callback?code=5bba6a4ec77bcbb99ac9&state=091c7a4f126e1a5361498fd3132760d9bf0c177d49716b60" for ::1 at 2016-10-29 18:56:06 -0700
+Processing by SessionsController#create as HTML
+ Parameters: {"code"=>"5bba6a4ec77bcbb99ac9", "state"=>"091c7a4f126e1a5361498fd3132760d9bf0c177d49716b60", "provider"=>"github"}
+ [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1[0m [["uid", "17533030"], ["provider", "github"]]
+Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.9ms)
+
+ActionController::UrlGenerationError - No route matches {:action=>"edit", :controller=>"users", :id=>nil} missing required keys: [:id]:
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:259:in `raise_generation_error'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:234:in `optimized_helper'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:220:in `call'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:345:in `block (2 levels) in define_url_helper'
+ app/controllers/sessions_controller.rb:20:in `create'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:408:in `call_app!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:362:in `callback_phase'
+ omniauth-oauth2 (1.4.0) lib/omniauth/strategies/oauth2.rb:75:in `callback_phase'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:227:in `callback_call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:184:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/0859543e2f40bb2c/variables" for ::1 at 2016-10-29 18:56:08 -0700
+
+
+Started GET "/" for ::1 at 2016-10-30 02:47:46 -0700
+ [1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+
+SyntaxError - syntax error, unexpected end-of-input, expecting keyword_end:
+ app/controllers/application_controller.rb:18:in `'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:457:in `block in load_file'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:647:in `new_constants_in'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:456:in `load_file'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:354:in `require_or_load'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:494:in `load_missing_constant'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:184:in `const_missing'
+ app/controllers/navigations_controller.rb:1:in `'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:457:in `block in load_file'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:647:in `new_constants_in'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:456:in `load_file'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:354:in `require_or_load'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:494:in `load_missing_constant'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:184:in `const_missing'
+ 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 `constantize'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:566:in `get'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:597: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 `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/3b1915a0f33bf829/variables" for ::1 at 2016-10-30 02:47:46 -0700
+
+
+Started POST "/__better_errors/94dbf72118a4e654/variables" for ::1 at 2016-10-30 02:48:28 -0700
+
+
+Started POST "/__better_errors/3b1915a0f33bf829/variables" for ::1 at 2016-10-30 02:48:31 -0700
+
+
+Started GET "/" for ::1 at 2016-10-30 02:48:33 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (2.6ms)
+Completed 200 OK in 758ms (Views: 740.6ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-30 02:48:34 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-30 02:48:37 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-30 02:48:37 -0700
+
+
+Started GET "/auth/github/callback?code=9c7020c7126356316768&state=41420a97ec3f64bde48f0fe98c505e4e09268dc3e2191ca0" for ::1 at 2016-10-30 02:48:38 -0700
+Processing by SessionsController#create as HTML
+ Parameters: {"code"=>"9c7020c7126356316768", "state"=>"41420a97ec3f64bde48f0fe98c505e4e09268dc3e2191ca0", "provider"=>"github"}
+ [1m[35mUser Load (1.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "17533030"], ["provider", "github"]]
+Completed 500 Internal Server Error in 65ms (ActiveRecord: 2.2ms)
+
+ActionController::UrlGenerationError - No route matches {:action=>"edit", :controller=>"users", :id=>nil} missing required keys: [:id]:
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:259:in `raise_generation_error'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:234:in `optimized_helper'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:220:in `call'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:345:in `block (2 levels) in define_url_helper'
+ app/controllers/sessions_controller.rb:20:in `create'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:408:in `call_app!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:362:in `callback_phase'
+ omniauth-oauth2 (1.4.0) lib/omniauth/strategies/oauth2.rb:75:in `callback_phase'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:227:in `callback_call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:184:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/82a43bddacd196cd/variables" for ::1 at 2016-10-30 02:48:40 -0700
+
+
+Started GET "/" for ::1 at 2016-10-30 11:27:40 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.7ms)
+Completed 200 OK in 116ms (Views: 113.3ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-30 11:27:40 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-30 11:27:47 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-30 11:27:47 -0700
+
+
+Started GET "/auth/github/callback?code=464daf4326a2cdc02b5b&state=602e9055a12dda73983edaa96f6934861b2832880dd2405d" for ::1 at 2016-10-30 11:27:47 -0700
+Processing by SessionsController#create as HTML
+ Parameters: {"code"=>"464daf4326a2cdc02b5b", "state"=>"602e9055a12dda73983edaa96f6934861b2832880dd2405d", "provider"=>"github"}
+ [1m[36mUser Load (0.7ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1[0m [["uid", "17533030"], ["provider", "github"]]
+Completed 500 Internal Server Error in 32ms (ActiveRecord: 2.0ms)
+
+ActionController::UrlGenerationError - No route matches {:action=>"edit", :controller=>"users", :id=>nil} missing required keys: [:id]:
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:259:in `raise_generation_error'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:234:in `optimized_helper'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:220:in `call'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:345:in `block (2 levels) in define_url_helper'
+ app/controllers/sessions_controller.rb:20:in `create'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:408:in `call_app!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:362:in `callback_phase'
+ omniauth-oauth2 (1.4.0) lib/omniauth/strategies/oauth2.rb:75:in `callback_phase'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:227:in `callback_call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:184:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/caca19061639710b/variables" for ::1 at 2016-10-30 11:27:49 -0700
+
+
+Started GET "/" for ::1 at 2016-10-30 11:38:35 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 88ms (Views: 87.1ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-30 11:38:35 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-30 11:38:37 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-30 11:38:38 -0700
+
+
+Started GET "/auth/github/callback?code=d24f9d9f57908e0af9e5&state=b57345debc3282478c5544ca2441453b4d313836e3ea8b11" for ::1 at 2016-10-30 11:38:38 -0700
+Processing by SessionsController#create as HTML
+ Parameters: {"code"=>"d24f9d9f57908e0af9e5", "state"=>"b57345debc3282478c5544ca2441453b4d313836e3ea8b11", "provider"=>"github"}
+ [1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "17533030"], ["provider", "github"]]
+Completed 500 Internal Server Error in 14ms (ActiveRecord: 1.4ms)
+
+ActionController::UrlGenerationError - No route matches {:action=>"edit", :controller=>"users", :id=>nil} missing required keys: [:id]:
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:259:in `raise_generation_error'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:234:in `optimized_helper'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:220:in `call'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:345:in `block (2 levels) in define_url_helper'
+ app/controllers/sessions_controller.rb:20:in `create'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:408:in `call_app!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:362:in `callback_phase'
+ omniauth-oauth2 (1.4.0) lib/omniauth/strategies/oauth2.rb:75:in `callback_phase'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:227:in `callback_call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:184:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/7151a55c91d202a5/variables" for ::1 at 2016-10-30 11:38:40 -0700
+ [1m[36m (1.5ms)[0m [1mCREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" varchar, "details" text, "completion_status" boolean, "completion_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
+ [1m[35m (1.0ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "uid" varchar, "name" varchar, "provider" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "profile_name" varchar)
+ [1m[36m (1.5ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
+ [1m[35m (0.1ms)[0m select sqlite_version(*)
+ [1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
+ [1m[35m (0.2ms)[0m SELECT version FROM "schema_migrations"
+ [1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20161028000424')[0m
+ [1m[35m (8.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160930182241')
+ [1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20161018170123')[0m
+ [1m[35m (1.2ms)[0m CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" varchar, "details" text, "completion_status" boolean, "completion_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
+ [1m[36m (1.1ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "uid" varchar, "name" varchar, "provider" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "profile_name" varchar) [0m
+ [1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
+ [1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
+ [1m[35m (1.3ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
+ [1m[36m (0.2ms)[0m [1mSELECT version FROM "schema_migrations"[0m
+ [1m[35m (73.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20161028000424')
+ [1m[36m (4.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160930182241')[0m
+ [1m[35m (32.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20161018170123')
+ [1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+
+
+Started GET "/" for ::1 at 2016-10-30 11:43:49 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 129ms (Views: 128.3ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-30 11:43:49 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-30 11:43:54 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-30 11:43:55 -0700
+
+
+Started GET "/auth/github/callback?code=d6fe642d9a3f303a3945&state=2ad02f60be6db03b29140073a2efeb0b95397524af83baa4" for ::1 at 2016-10-30 11:43:55 -0700
+Processing by SessionsController#create as HTML
+ Parameters: {"code"=>"d6fe642d9a3f303a3945", "state"=>"2ad02f60be6db03b29140073a2efeb0b95397524af83baa4", "provider"=>"github"}
+ [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1[0m [["uid", "17533030"], ["provider", "github"]]
+Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.2ms)
+
+ActionController::UrlGenerationError - No route matches {:action=>"edit", :controller=>"users", :id=>nil} missing required keys: [:id]:
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:259:in `raise_generation_error'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:234:in `optimized_helper'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:220:in `call'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:345:in `block (2 levels) in define_url_helper'
+ app/controllers/sessions_controller.rb:20:in `create'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:408:in `call_app!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:362:in `callback_phase'
+ omniauth-oauth2 (1.4.0) lib/omniauth/strategies/oauth2.rb:75:in `callback_phase'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:227:in `callback_call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:184:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/9a6dfb5cea5319eb/variables" for ::1 at 2016-10-30 11:43:58 -0700
+ [1m[36mUser Load (3.1ms)[0m [1mSELECT "users".* FROM "users"[0m
+
+
+Started GET "/" for ::1 at 2016-10-30 11:56:22 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.4ms)
+Completed 200 OK in 164ms (Views: 162.4ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-30 11:56:23 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-30 11:56:25 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-30 11:56:26 -0700
+
+
+Started GET "/auth/github/callback?code=34ec194b5d442edb5459&state=1665de8e2765f6153c2e57a29e40517cbf663be235718c65" for ::1 at 2016-10-30 11:56:27 -0700
+Processing by SessionsController#create as HTML
+ Parameters: {"code"=>"34ec194b5d442edb5459", "state"=>"1665de8e2765f6153c2e57a29e40517cbf663be235718c65", "provider"=>"github"}
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "17533030"], ["provider", "github"]]
+ [1m[36m (0.2ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.6ms)[0m INSERT INTO "users" ("uid", "provider", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "17533030"], ["provider", "github"], ["name", "Brandi Milligan Phillips"], ["email", "milligan.brandi@gmail.com"], ["created_at", "2016-10-30 18:56:28.725367"], ["updated_at", "2016-10-30 18:56:28.725367"]]
+ [1m[36m (1.2ms)[0m [1mcommit transaction[0m
+Completed 500 Internal Server Error in 69ms (ActiveRecord: 3.3ms)
+
+NameError - undefined local variable or method `tasks_index_path' for #:
+ app/controllers/sessions_controller.rb:28:in `create'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:408:in `call_app!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:362:in `callback_phase'
+ omniauth-oauth2 (1.4.0) lib/omniauth/strategies/oauth2.rb:75:in `callback_phase'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:227:in `callback_call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:184:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/3f359a9f830905db/variables" for ::1 at 2016-10-30 11:56:29 -0700
+
+
+Started GET "/" for ::1 at 2016-10-30 11:58:42 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 122ms (Views: 120.6ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-30 11:58:43 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-30 11:58:44 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-30 11:58:44 -0700
+
+
+Started GET "/auth/github/callback?code=91c2061527683ef57334&state=91e7183ad9530f15d496e7fab9e7f4ad6b1e0e19951b11e9" for ::1 at 2016-10-30 11:58:45 -0700
+Processing by SessionsController#create as HTML
+ Parameters: {"code"=>"91c2061527683ef57334", "state"=>"91e7183ad9530f15d496e7fab9e7f4ad6b1e0e19951b11e9", "provider"=>"github"}
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "17533030"], ["provider", "github"]]
+Redirected to http://localhost:3000/users/1/edit
+Completed 302 Found in 12ms (ActiveRecord: 0.9ms)
+
+
+Started GET "/users/1/edit" for ::1 at 2016-10-30 11:58:47 -0700
+Processing by UsersController#edit as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
+ [1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ Rendered users/edit.html.erb within layouts/application (87.3ms)
+Completed 500 Internal Server Error in 102ms (ActiveRecord: 0.3ms)
+
+NameError - undefined local variable or method `users_update_path' for #<#:0x007fca7127ce08>
+Did you mean? users_edit_path
+ users_create_path:
+ app/views/users/edit.html.erb:13:in `_app_views_users_edit_html_erb___3403559689670739084_70253729291480'
+ actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/af6155bb8689bd25/variables" for ::1 at 2016-10-30 11:58:47 -0700
+ [1m[35mUser Load (2.2ms)[0m SELECT "users".* FROM "users"
+
+
+Started GET "/" for ::1 at 2016-10-30 12:14:09 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.1ms)
+Completed 200 OK in 61ms (Views: 59.8ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-30 12:14:09 -0700
+
+
+Started GET "/users.edit" for ::1 at 2016-10-30 12:14:43 -0700
+
+ActionController::RoutingError (No route matches [GET] "/users.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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (11.8ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.4ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (16.5ms)
+ Rendered /Users/brandimilligan/.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.1ms)
+ Rendered /Users/brandimilligan/.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 (212.3ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.9ms)
+ Rendered /Users/brandimilligan/.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.6ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (132.2ms)
+ Rendered /Users/brandimilligan/.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.7ms)
+ Rendered /Users/brandimilligan/.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.9ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (287.7ms)
+
+
+Started GET "/" for ::1 at 2016-10-30 12:19:53 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (40.7ms)
+Completed 500 Internal Server Error in 53ms (ActiveRecord: 0.0ms)
+
+NoMethodError - undefined method `redirect_to' for #<#:0x007fca6e439640>:
+ app/views/navigations/index.html.erb:12:in `_app_views_navigations_index_html_erb__3715991310291053765_70253713256620'
+ actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/62a97b9ce9492c82/variables" for ::1 at 2016-10-30 12:19:53 -0700
+
+
+Started GET "/" for ::1 at 2016-10-30 12:20:18 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (51.5ms)
+Completed 500 Internal Server Error in 64ms (ActiveRecord: 0.0ms)
+
+NoMethodError - undefined method `redirect_to' for #<#:0x007fca6c8ab8b0>:
+ app/views/navigations/index.html.erb:12:in `_app_views_navigations_index_html_erb__3715991310291053765_70253690558180'
+ actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/11c826365afffd39/variables" for ::1 at 2016-10-30 12:20:19 -0700
+
+
+Started POST "/__better_errors/94dbf72118a4e654/variables" for ::1 at 2016-10-30 12:20:23 -0700
+
+
+Started POST "/__better_errors/11c826365afffd39/variables" for ::1 at 2016-10-30 12:20:26 -0700
+
+
+Started GET "/users/edit" for ::1 at 2016-10-30 12:20:28 -0700
+
+ActionController::RoutingError (No route matches [GET] "/users/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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+ Rendered /Users/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.5ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.1ms)
+ Rendered /Users/brandimilligan/.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 (280.6ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms)
+ Rendered /Users/brandimilligan/.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/brandimilligan/.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/brandimilligan/.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.8ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (147.0ms)
+ Rendered /Users/brandimilligan/.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.6ms)
+ Rendered /Users/brandimilligan/.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.8ms)
+ Rendered /Users/brandimilligan/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (328.9ms)
+
+
+Started POST "/__better_errors/11c826365afffd39/variables" for ::1 at 2016-10-30 12:20:29 -0700
+
+
+Started GET "/" for ::1 at 2016-10-30 12:20:31 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (43.4ms)
+Completed 500 Internal Server Error in 52ms (ActiveRecord: 0.0ms)
+
+NoMethodError - undefined method `redirect_to' for #<#:0x007fca6cfc82d8>:
+ app/views/navigations/index.html.erb:12:in `_app_views_navigations_index_html_erb__3715991310291053765_70253690558180'
+ actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/d772732a716d50e7/variables" for ::1 at 2016-10-30 12:20:31 -0700
+ [1m[36m (1.8ms)[0m [1mCREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" varchar, "details" text, "completion_status" boolean, "completion_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
+ [1m[35m (1.1ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "uid" varchar, "name" varchar, "provider" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "profile_name" varchar)
+ [1m[36m (1.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
+ [1m[35m (0.1ms)[0m select sqlite_version(*)
+ [1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
+ [1m[35m (0.2ms)[0m SELECT version FROM "schema_migrations"
+ [1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20161028000424')[0m
+ [1m[35m (1.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160930182241')
+ [1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20161018170123')[0m
+ [1m[35m (28.5ms)[0m CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" varchar, "details" text, "completion_status" boolean, "completion_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
+ [1m[36m (7.0ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "uid" varchar, "name" varchar, "provider" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "profile_name" varchar) [0m
+ [1m[35m (29.2ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
+ [1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
+ [1m[35m (28.6ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
+ [1m[36m (0.3ms)[0m [1mSELECT version FROM "schema_migrations"[0m
+ [1m[35m (1.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20161028000424')
+ [1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160930182241')[0m
+ [1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20161018170123')
+ [1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+ [1m[36mUser Load (2.7ms)[0m [1mSELECT "users".* FROM "users"[0m
+
+
+Started GET "/" for ::1 at 2016-10-30 12:23:14 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (1.0ms)
+Completed 200 OK in 56ms (Views: 55.1ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-30 12:23:15 -0700
+
+
+Started GET "/" for ::1 at 2016-10-30 12:34:01 -0700
+
+SyntaxError - syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '('
+...oy' => 'sessions#destroy', as 'sessions_delete'
+... ^:
+ config/routes.rb:18:in `'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:268:in `block in load'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:240:in `load_dependency'
+ activesupport (4.2.7) lib/active_support/dependencies.rb:268:in `load'
+ railties (4.2.7) lib/rails/application/routes_reloader.rb:40:in `block in load_paths'
+ railties (4.2.7) lib/rails/application/routes_reloader.rb:40:in `load_paths'
+ railties (4.2.7) lib/rails/application/routes_reloader.rb:16:in `reload!'
+ railties (4.2.7) lib/rails/application/routes_reloader.rb:26:in `block in updater'
+ activesupport (4.2.7) lib/active_support/file_update_checker.rb:75:in `execute'
+ railties (4.2.7) lib/rails/application/routes_reloader.rb:7:in `execute'
+ railties (4.2.7) lib/rails/application/finisher.rb:81:in `block (2 levels) in '
+ activesupport (4.2.7) lib/active_support/callbacks.rb:446:in `block in make_lambda'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:192:in `block in simple'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:504:in `block in call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:504:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_prepare_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:83:in `prepare!'
+ actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:71:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/7ae413702c74165b/variables" for ::1 at 2016-10-30 12:34:01 -0700
+
+
+Started GET "/" for ::1 at 2016-10-30 12:35:35 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (63.2ms)
+Completed 500 Internal Server Error in 77ms (ActiveRecord: 0.0ms)
+
+NameError - undefined local variable or method `sessions' for #<#:0x007fca71a84c68>
+Did you mean? session:
+ app/views/navigations/index.html.erb:12:in `_app_views_navigations_index_html_erb__3715991310291053765_70253733477340'
+ actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/691229f3e30b477f/variables" for ::1 at 2016-10-30 12:35:35 -0700
+
+
+Started GET "/" for ::1 at 2016-10-30 12:37:31 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (1.7ms)
+Completed 200 OK in 79ms (Views: 78.4ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-30 12:37:31 -0700
+
+
+Started DELETE "/sessions/1/destroy" for ::1 at 2016-10-30 12:37:41 -0700
+Processing by SessionsController#destroy as HTML
+ Parameters: {"authenticity_token"=>"Uiv4gUu4oHk8JHmDZpb4aGpER0EWueaTzmoIr6ClirFAD465cKHc+Mja1UAB70tMdTdaztZuBGO02y3Np4IeuA==", "id"=>"1"}
+Redirected to http://localhost:3000/
+Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-10-30 12:37:41 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 170ms (Views: 168.8ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-30 12:37:41 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-30 12:37:44 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-30 12:37:44 -0700
+
+
+Started GET "/auth/github/callback?code=de8800c4991a293230c1&state=d12f8b4ddb3d37a64969846977365916dc83925f0ab28405" for ::1 at 2016-10-30 12:37:45 -0700
+Processing by SessionsController#create as HTML
+ Parameters: {"code"=>"de8800c4991a293230c1", "state"=>"d12f8b4ddb3d37a64969846977365916dc83925f0ab28405", "provider"=>"github"}
+ [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1[0m [["uid", "17533030"], ["provider", "github"]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("uid", "provider", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["uid", "17533030"], ["provider", "github"], ["name", "Brandi Milligan Phillips"], ["email", "milligan.brandi@gmail.com"], ["created_at", "2016-10-30 19:37:46.723226"], ["updated_at", "2016-10-30 19:37:46.723226"]]
+ [1m[35m (0.9ms)[0m commit transaction
+Redirected to http://localhost:3000index
+Completed 302 Found in 22ms (ActiveRecord: 2.8ms)
+
+
+Started GET "/auth/github/callback?code=de8800c4991a293230c1&state=d12f8b4ddb3d37a64969846977365916dc83925f0ab28405" for ::1 at 2016-10-30 12:37:46 -0700
+
+OAuth2::Error - bad_verification_code: The code passed is incorrect or expired.
+error=bad_verification_code&error_description=The+code+passed+is+incorrect+or+expired.&error_uri=https%3A%2F%2Fdeveloper.github.com%2Fv3%2Foauth%2F%23bad-verification-code:
+ oauth2 (1.2.0) lib/oauth2/client.rb:140:in `get_token'
+ oauth2 (1.2.0) lib/oauth2/strategy/auth_code.rb:29:in `get_token'
+ omniauth-oauth2 (1.4.0) lib/omniauth/strategies/oauth2.rb:89:in `build_access_token'
+ omniauth-oauth2 (1.4.0) lib/omniauth/strategies/oauth2.rb:73:in `callback_phase'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:227:in `callback_call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:184:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/795961946475797f/variables" for ::1 at 2016-10-30 12:37:47 -0700
+
+
+Started GET "/" for ::1 at 2016-10-30 12:38:53 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 127ms (Views: 126.2ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-30 12:38:53 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-30 12:38:56 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-30 12:38:57 -0700
+
+
+Started GET "/auth/github/callback?code=05c9d4be080fa8ac4839&state=b47270bb6c6a3afe130581e33a777baecbd2e32235808517" for ::1 at 2016-10-30 12:38:57 -0700
+Processing by SessionsController#create as HTML
+ Parameters: {"code"=>"05c9d4be080fa8ac4839", "state"=>"b47270bb6c6a3afe130581e33a777baecbd2e32235808517", "provider"=>"github"}
+ [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1[0m [["uid", "17533030"], ["provider", "github"]]
+Redirected to http://localhost:3000/users/1/edit
+Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
+
+
+Started GET "/users/1/edit" for ::1 at 2016-10-30 12:38:59 -0700
+Processing by UsersController#edit as HTML
+ Parameters: {"id"=>"1"}
+ [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
+ Rendered users/edit.html.erb within layouts/application (45.4ms)
+Completed 500 Internal Server Error in 62ms (ActiveRecord: 0.3ms)
+
+NoMethodError - undefined method `users_update_path' for #<#:0x007fca711ea418>
+Did you mean? users_edit_path
+ users_create_path:
+ app/views/users/edit.html.erb:13:in `_app_views_users_edit_html_erb___3403559689670739084_70253728974560'
+ actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/abc4c6b06b7b0d32/variables" for ::1 at 2016-10-30 12:38:59 -0700
+
+
+Started GET "/users/1/edit" for ::1 at 2016-10-30 12:46:38 -0700
+Processing by UsersController#edit as HTML
+ Parameters: {"id"=>"1"}
+ [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36mCACHE (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
+ Rendered users/edit.html.erb within layouts/application (43.5ms)
+Completed 500 Internal Server Error in 115ms (ActiveRecord: 1.1ms)
+
+NoMethodError - undefined method `displayname' for #
+Did you mean? display:
+ activemodel (4.2.7) lib/active_model/attribute_methods.rb:433:in `method_missing'
+ actionview (4.2.7) lib/action_view/helpers/tags/base.rb:28:in `value'
+ actionview (4.2.7) lib/action_view/helpers/tags/base.rb:38:in `value_before_type_cast'
+ actionview (4.2.7) lib/action_view/helpers/tags/text_field.rb:13:in `block in render'
+ actionview (4.2.7) lib/action_view/helpers/tags/text_field.rb:13:in `render'
+ actionview (4.2.7) lib/action_view/helpers/form_helper.rb:787:in `text_field'
+ actionview (4.2.7) lib/action_view/helpers/form_helper.rb:1323:in `text_field'
+ app/views/users/edit.html.erb:16:in `block in _app_views_users_edit_html_erb___3403559689670739084_70253713861580'
+ actionview (4.2.7) lib/action_view/helpers/capture_helper.rb:38:in `block in capture'
+ actionview (4.2.7) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer'
+ actionview (4.2.7) lib/action_view/helpers/capture_helper.rb:38:in `capture'
+ actionview (4.2.7) lib/action_view/helpers/form_helper.rb:444:in `form_for'
+ app/views/users/edit.html.erb:13:in `_app_views_users_edit_html_erb___3403559689670739084_70253713861580'
+ actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/f6c0e5cc1da3557a/variables" for ::1 at 2016-10-30 12:46:38 -0700
+
+
+Started GET "/users/1/edit" for ::1 at 2016-10-30 12:46:59 -0700
+Processing by UsersController#edit as HTML
+ Parameters: {"id"=>"1"}
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
+ Rendered users/edit.html.erb within layouts/application (5.7ms)
+Completed 200 OK in 122ms (Views: 119.5ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-30 12:46:59 -0700
+
+
+Started PATCH "/users/1/update" for ::1 at 2016-10-30 12:47:48 -0700
+Processing by UsersController#update as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"Myy18xVtiZsc0evjWayueT+BY0Lw7pqR/9ps/I9WvzkhCMPLLnT1GugvRyA+1R1dIPJ+zTA5eGGFa0meiHErMA==", "user"=>{"profile_name"=>"AdultBrandi", "email"=>"milligan.brandi@gmail.com", "name"=>"Brandi Milligan Phillips"}, "commit"=>"Save", "id"=>"1"}
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
+Completed 500 Internal Server Error in 28ms (ActiveRecord: 0.2ms)
+
+ActionView::MissingTemplate - Missing template users/update, application/update with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in:
+ * "/Users/brandimilligan/Dropbox/ada/wk8/TaskListRails/app/views"
+:
+ actionview (4.2.7) lib/action_view/path_set.rb:46:in `find'
+ actionview (4.2.7) lib/action_view/lookup_context.rb:121:in `find'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:40:in `determine_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:8:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
+ rack (1.6.4) lib/rack/conditionalget.rb:38:in `call'
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call'
+ activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call'
+ activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
+ activerecord (4.2.7) lib/active_record/migration.rb:377:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/08fc99dda54aac62/variables" for ::1 at 2016-10-30 12:47:49 -0700
+
+
+Started GET "/users/1/edit" for ::1 at 2016-10-30 12:54:05 -0700
+Processing by UsersController#edit as HTML
+ Parameters: {"id"=>"1"}
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
+ Rendered users/edit.html.erb within layouts/application (3.7ms)
+Completed 200 OK in 159ms (Views: 144.4ms | ActiveRecord: 1.0ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-30 12:54:06 -0700
+
+
+Started PATCH "/users/1/update" for ::1 at 2016-10-30 12:54:12 -0700
+Processing by UsersController#update as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"nla8Qp8ErKSi2NcemrHLBtO4PkKUCDgUzNK98uWzZuaMcsp6pB3QJVYme939yHgizMsjzVTf2uS2Y5iQ4pTy7w==", "user"=>{"profile_name"=>"AdultBrandi", "email"=>"milligan.brandi@gmail.com", "name"=>"Brandi Milligan Phillips"}, "commit"=>"Save", "id"=>"1"}
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
+ [1m[35m (0.9ms)[0m begin transaction
+ [1m[36mSQL (100.3ms)[0m [1mUPDATE "users" SET "profile_name" = ?, "updated_at" = ? WHERE "users"."id" = ?[0m [["profile_name", "AdultBrandi"], ["updated_at", "2016-10-30 19:54:12.206429"], ["id", 1]]
+ [1m[35m (4.7ms)[0m commit transaction
+Completed 500 Internal Server Error in 243ms (ActiveRecord: 106.2ms)
+
+NoMethodError - undefined method `tasks_index_path' for #:
+ app/controllers/users_controller.rb:17:in `update'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
+ rack (1.6.4) lib/rack/conditionalget.rb:38:in `call'
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call'
+ activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call'
+ activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
+ activerecord (4.2.7) lib/active_record/migration.rb:377:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/20334471fa7b529a/variables" for ::1 at 2016-10-30 12:54:13 -0700
+
+
+Started GET "/users/1/edit" for ::1 at 2016-10-30 12:56:08 -0700
+Processing by UsersController#edit as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
+ [1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ Rendered users/edit.html.erb within layouts/application (5.2ms)
+Completed 200 OK in 181ms (Views: 143.0ms | ActiveRecord: 1.1ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-30 12:56:08 -0700
+
+
+Started PATCH "/users/1/update" for ::1 at 2016-10-30 12:56:12 -0700
+Processing by UsersController#update as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"EUzE6rylUW6GC8Hb2EYFQSsJGpPN418L35GvTuCET3sDaLLSh7wt73L1bRi/P7ZlNHoHHA00vfulIIos56Pbcg==", "user"=>{"profile_name"=>"AdultBrandi", "email"=>"milligan.brandi@gmail.com", "name"=>"Brandi Milligan Phillips"}, "commit"=>"Save", "id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
+ [1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35m (0.1ms)[0m commit transaction
+Completed 500 Internal Server Error in 47ms (ActiveRecord: 0.4ms)
+
+NameError - undefined local variable or method `tasks_index_path' for #:
+ app/controllers/users_controller.rb:17:in `update'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
+ rack (1.6.4) lib/rack/conditionalget.rb:38:in `call'
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call'
+ activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call'
+ activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
+ activerecord (4.2.7) lib/active_record/migration.rb:377:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/2adba915cef5a38e/variables" for ::1 at 2016-10-30 12:56:12 -0700
+
+
+Started GET "/users/1/edit" for ::1 at 2016-10-30 12:57:09 -0700
+Processing by UsersController#edit as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
+ [1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ Rendered users/edit.html.erb within layouts/application (3.5ms)
+Completed 200 OK in 74ms (Views: 59.4ms | ActiveRecord: 1.0ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-30 12:57:09 -0700
+
+
+Started PATCH "/users/1/update" for ::1 at 2016-10-30 12:57:11 -0700
+Processing by UsersController#update as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"MgIJ4NxBqSYFafR8DW+n5FE6+vgNY1UabumVCI6kO+AgJn/Y51jVp/GXWL9qFhTATknnd820t+oUWLBqiYOv6Q==", "user"=>{"profile_name"=>"AdultBrandi", "email"=>"milligan.brandi@gmail.com", "name"=>"Brandi Milligan Phillips"}, "commit"=>"Save", "id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
+ [1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35m (0.1ms)[0m commit transaction
+Redirected to http://localhost:3000/tasks/index
+Completed 302 Found in 5ms (ActiveRecord: 0.4ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-30 12:57:11 -0700
+Processing by TasksController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered tasks/index.html.erb within layouts/application (3.1ms)
+Completed 200 OK in 80ms (Views: 74.2ms | ActiveRecord: 0.5ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-30 12:57:12 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-30 12:58:20 -0700
+Processing by TasksController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered tasks/index.html.erb within layouts/application (2.6ms)
+Completed 200 OK in 65ms (Views: 62.8ms | ActiveRecord: 0.4ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-30 12:58:21 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-30 13:13:04 -0700
+Processing by TasksController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered tasks/index.html.erb within layouts/application (2.9ms)
+Completed 200 OK in 50ms (Views: 48.1ms | ActiveRecord: 0.4ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-30 13:13:04 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-30 13:14:56 -0700
+Processing by TasksController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
+ [1m[35mTask Load (0.3ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered shared/_footer.erb (0.8ms)
+ Rendered tasks/index.html.erb within layouts/application (19.7ms)
+Completed 200 OK in 79ms (Views: 77.4ms | ActiveRecord: 0.5ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-30 13:14:57 -0700
+
+
+Started GET "/tasks/new" for ::1 at 2016-10-30 13:15:14 -0700
+Processing by TasksController#new as HTML
+ [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
+ Rendered shared/_form.html.erb (7.2ms)
+ Rendered tasks/new.html.erb within layouts/application (10.8ms)
+Completed 200 OK in 125ms (Views: 87.6ms | ActiveRecord: 0.4ms)
+
+
+Started POST "/tasks/create" for ::1 at 2016-10-30 13:15:57 -0700
+Processing by TasksController#create as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"P4Fo+jHTJ7bFbM2sY8ijj6WaRIP1F7sznHf54Gz+/1otpR7CCspbNzGSYW8EsRCruulZDDXAWcPmxtyCa9lrUw==", "task"=>{"title"=>"Cancel Hair appointment", "description"=>"This needs to be a drop down option", "details"=>"Reschedule with Ricardo"}, "commit"=>"create"}
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.8ms)[0m INSERT INTO "tasks" ("title", "description", "details", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Cancel Hair appointment"], ["description", "This needs to be a drop down option"], ["details", "Reschedule with Ricardo"], ["created_at", "2016-10-30 20:15:57.688636"], ["updated_at", "2016-10-30 20:15:57.688636"]]
+ [1m[36m (0.7ms)[0m [1mcommit transaction[0m
+ Rendered tasks/create.html.erb within layouts/application (0.9ms)
+Completed 200 OK in 218ms (Views: 211.1ms | ActiveRecord: 1.8ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-30 13:15:58 -0700
+ [1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+ [1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
+ [1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+ [1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
+ [1m[36m (1.4ms)[0m [1mCREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" varchar, "details" text, "completion_status" boolean, "completion_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
+ [1m[35m (1.1ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "uid" varchar, "name" varchar, "provider" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "profile_name" varchar)
+ [1m[36m (20.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
+ [1m[35m (5.4ms)[0m select sqlite_version(*)
+ [1m[36m (1.5ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
+ [1m[35m (0.2ms)[0m SELECT version FROM "schema_migrations"
+ [1m[36m (1.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20161028000424')[0m
+ [1m[35m (1.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160930182241')
+ [1m[36m (11.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20161018170123')[0m
+ [1m[35m (1.8ms)[0m CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" varchar, "details" text, "completion_status" boolean, "completion_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
+ [1m[36m (15.8ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "uid" varchar, "name" varchar, "provider" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "profile_name" varchar) [0m
+ [1m[35m (2.5ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
+ [1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
+ [1m[35m (1.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
+ [1m[36m (0.6ms)[0m [1mSELECT version FROM "schema_migrations"[0m
+ [1m[35m (17.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20161028000424')
+ [1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160930182241')[0m
+ [1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20161018170123')
+ [1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+ [1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+ [1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
+
+
+Started GET "/" for ::1 at 2016-10-31 18:11:31 -0700
+ [1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (4.1ms)
+Completed 200 OK in 702ms (Views: 681.1ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-10-31 18:11:32 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.4ms)
+Completed 200 OK in 94ms (Views: 88.2ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-31 18:11:33 -0700
+
+
+Started DELETE "/sessions/1/destroy" for ::1 at 2016-10-31 18:11:44 -0700
+Processing by SessionsController#destroy as HTML
+ Parameters: {"authenticity_token"=>"50MBonZI7vSs3D1q7Y1MKx4IwVWyvBNpsNBNggPfPSn1Z3eaTVGSdVgikamK9P8PAXvc2nJr8ZnKYWjgBPipIA==", "id"=>"1"}
+Redirected to http://localhost:3000/
+Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-10-31 18:11:44 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 159ms (Views: 157.2ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-31 18:11:45 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-31 18:11:46 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-31 18:11:47 -0700
+
+
+Started GET "/auth/github/callback?code=73b7255e1ea2467cc8ef&state=18798f66597faab46aba4f219ea7ba479317ef3393c03310" for ::1 at 2016-10-31 18:11:47 -0700
+Processing by SessionsController#create as HTML
+ Parameters: {"code"=>"73b7255e1ea2467cc8ef", "state"=>"18798f66597faab46aba4f219ea7ba479317ef3393c03310", "provider"=>"github"}
+ [1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "17533030"], ["provider", "github"]]
+ [1m[36m (0.2ms)[0m [1mbegin transaction[0m
+ [1m[35mUser Exists (0.5ms)[0m SELECT 1 AS one FROM "users" WHERE "users"."email" = 'milligan.brandi@gmail.com' LIMIT 1
+ [1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."uid" = '17533030' LIMIT 1[0m
+ [1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE "users"."profile_name" IS NULL LIMIT 1
+ [1m[36mSQL (2.0ms)[0m [1mINSERT INTO "users" ("uid", "provider", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["uid", "17533030"], ["provider", "github"], ["name", "Brandi Milligan Phillips"], ["email", "milligan.brandi@gmail.com"], ["created_at", "2016-11-01 01:11:50.214121"], ["updated_at", "2016-11-01 01:11:50.214121"]]
+ [1m[35m (0.9ms)[0m commit transaction
+Redirected to http://localhost:3000index
+Completed 302 Found in 85ms (ActiveRecord: 4.9ms)
+
+
+Started GET "/auth/github/callback?code=73b7255e1ea2467cc8ef&state=18798f66597faab46aba4f219ea7ba479317ef3393c03310" for ::1 at 2016-10-31 18:11:50 -0700
+
+OAuth2::Error - bad_verification_code: The code passed is incorrect or expired.
+error=bad_verification_code&error_description=The+code+passed+is+incorrect+or+expired.&error_uri=https%3A%2F%2Fdeveloper.github.com%2Fv3%2Foauth%2F%23bad-verification-code:
+ oauth2 (1.2.0) lib/oauth2/client.rb:140:in `get_token'
+ oauth2 (1.2.0) lib/oauth2/strategy/auth_code.rb:29:in `get_token'
+ omniauth-oauth2 (1.4.0) lib/omniauth/strategies/oauth2.rb:89:in `build_access_token'
+ omniauth-oauth2 (1.4.0) lib/omniauth/strategies/oauth2.rb:73:in `callback_phase'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:227:in `callback_call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:184:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/3639c56d7ea0bd85/variables" for ::1 at 2016-10-31 18:11:50 -0700
+
+
+Started GET "/" for ::1 at 2016-10-31 18:11:57 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 51ms (Views: 50.5ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-31 18:11:58 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-31 18:12:01 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-10-31 18:12:01 -0700
+
+
+Started GET "/auth/github/callback?code=6853f23025e7642184d7&state=b1f2eb53e09e7e8482a721d5c470ba2637385f1467cbc37b" for ::1 at 2016-10-31 18:12:01 -0700
+Processing by SessionsController#create as HTML
+ Parameters: {"code"=>"6853f23025e7642184d7", "state"=>"b1f2eb53e09e7e8482a721d5c470ba2637385f1467cbc37b", "provider"=>"github"}
+ [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1[0m [["uid", "17533030"], ["provider", "github"]]
+Redirected to http://localhost:3000/users/1/edit
+Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
+
+
+Started GET "/users/1/edit" for ::1 at 2016-10-31 18:12:02 -0700
+Processing by UsersController#edit as HTML
+ Parameters: {"id"=>"1"}
+ [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
+ Rendered users/edit.html.erb within layouts/application (28.8ms)
+Completed 200 OK in 76ms (Views: 72.7ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/assets/navigations.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-31 18:12:03 -0700
+
+
+Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-31 18:12:03 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-31 18:12:03 -0700
+
+
+Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-31 18:12:03 -0700
+
+
+Started GET "/assets/application.self-f37bdf791d238c97d100c03999a9a80a3e76a12d7c9c136a9e40691c5b1764c1.css?body=1" for ::1 at 2016-10-31 18:12:03 -0700
+
+
+Started GET "/assets/foundation.self-9b7296f6e4148c7daa4743c23e7f4dd3604ee97cb73c5860b5874154a592bb28.css?body=1" for ::1 at 2016-10-31 18:12:03 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-31 18:12:03 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-31 18:12:03 -0700
+
+
+Started GET "/assets/navigations.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-31 18:12:03 -0700
+
+
+Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-31 18:12:03 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-31 18:12:03 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-31 18:12:03 -0700
+
+
+Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-31 18:12:03 -0700
+
+
+Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-31 18:12:03 -0700
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-31 18:12:03 -0700
+
+
+Started PATCH "/users/1/update" for ::1 at 2016-10-31 18:12:14 -0700
+Processing by UsersController#update as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"f6YTIn9zDIWHnGa/79wzhPUf+oq1orsCfv89hCK5QdhtgmUaRGpwBHNiynyIpYCg6mznBXV1WfIEThjmJZ7V0Q==", "user"=>{"profile_name"=>"b.m.p", "email"=>"milligan.brandi@gmail.com", "name"=>"Brandi Milligan Phillips"}, "commit"=>"Save", "id"=>"1"}
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE ("users"."email" = 'milligan.brandi@gmail.com' AND "users"."id" != 1) LIMIT 1[0m
+ [1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE ("users"."uid" = '17533030' AND "users"."id" != 1) LIMIT 1
+ [1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE ("users"."profile_name" = 'b.m.p' AND "users"."id" != 1) LIMIT 1[0m
+ [1m[35mSQL (0.5ms)[0m UPDATE "users" SET "profile_name" = ?, "updated_at" = ? WHERE "users"."id" = ? [["profile_name", "b.m.p"], ["updated_at", "2016-11-01 01:12:14.574461"], ["id", 1]]
+ [1m[36m (0.9ms)[0m [1mcommit transaction[0m
+Redirected to http://localhost:3000/tasks/index
+Completed 302 Found in 18ms (ActiveRecord: 2.2ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-31 18:12:14 -0700
+Processing by TasksController#index as HTML
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36mTask Load (6.6ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/index.html.erb within layouts/application (10.8ms)
+Completed 200 OK in 223ms (Views: 171.3ms | ActiveRecord: 7.0ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-31 18:12:15 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-31 18:18:49 -0700
+Processing by TasksController#index as HTML
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/index.html.erb within layouts/application (3.2ms)
+Completed 200 OK in 139ms (Views: 136.4ms | ActiveRecord: 0.4ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-31 18:18:50 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-31 18:18:54 -0700
+Processing by TasksController#index as HTML
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [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 55ms (Views: 52.5ms | ActiveRecord: 0.4ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-31 18:18:55 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-31 18:20:37 -0700
+Processing by TasksController#index as HTML
+ [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/index.html.erb within layouts/application (2.7ms)
+Completed 200 OK in 57ms (Views: 55.1ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-31 18:20:37 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-31 18:21:33 -0700
+Processing by TasksController#index as HTML
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/index.html.erb within layouts/application (3.7ms)
+Completed 200 OK in 103ms (Views: 100.7ms | ActiveRecord: 0.5ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-31 18:21:33 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-31 18:21:45 -0700
+Processing by TasksController#index as HTML
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [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 122ms (Views: 120.1ms | ActiveRecord: 0.4ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-31 18:21:46 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-31 18:21:53 -0700
+Processing by TasksController#index as HTML
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ Rendered tasks/index.html.erb within layouts/application (5.4ms)
+Completed 200 OK in 67ms (Views: 62.5ms | ActiveRecord: 0.4ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-31 18:21:53 -0700
+
+
+Started GET "/tasks/new" for ::1 at 2016-10-31 18:21:58 -0700
+Processing by TasksController#new as HTML
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ Rendered shared/_form.html.erb (9.0ms)
+ Rendered shared/_footer.erb (1.1ms)
+ Rendered tasks/new.html.erb within layouts/application (26.6ms)
+Completed 200 OK in 125ms (Views: 99.0ms | ActiveRecord: 0.3ms)
+
+
+Started POST "/tasks/create" for ::1 at 2016-10-31 18:22:27 -0700
+Processing by TasksController#create as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"bjv0lEDKBglmTlEIhxCUzf1dx05KD+EcVcwoMF9VXt98H4Kse9N6iJKw/cvgaSfp4i7awYrYA+wvfQ1SWHLK1g==", "task"=>{"title"=>"New Task", "description"=>"Does this link to the user?", "details"=>"I want to understand this..."}, "commit"=>"create"}
+ [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
+ [1m[35m (0.2ms)[0m begin transaction
+ [1m[36mSQL (125.2ms)[0m [1mINSERT INTO "tasks" ("title", "description", "details", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["title", "New Task"], ["description", "Does this link to the user?"], ["details", "I want to understand this..."], ["created_at", "2016-11-01 01:22:27.497446"], ["updated_at", "2016-11-01 01:22:27.497446"]]
+ [1m[35m (15.0ms)[0m commit transaction
+Redirected to http://localhost:3000/tasks/index
+Completed 302 Found in 165ms (ActiveRecord: 140.6ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-31 18:22:27 -0700
+Processing by TasksController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks"
+ Rendered tasks/index.html.erb within layouts/application (8.3ms)
+Completed 200 OK in 131ms (Views: 129.2ms | ActiveRecord: 0.4ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-31 18:22:28 -0700
+ [1m[36mTask Load (4.5ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m
+ [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users"
+ [1m[36mUser Load (3.8ms)[0m [1mSELECT "users".* FROM "users"[0m
+ [1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+Migrating to AddUserToTasks (20161101043027)
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36m (3.6ms)[0m [1mALTER TABLE "tasks" ADD "user_id" integer[0m
+ [1m[35m (0.1ms)[0m select sqlite_version(*)
+ [1m[36m (0.2ms)[0m [1mCREATE INDEX "index_tasks_on_user_id" ON "tasks" ("user_id")[0m
+ [1m[35mSQL (0.4ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20161101043027"]]
+ [1m[36m (0.9ms)[0m [1mcommit transaction[0m
+ [1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
+ [1m[36m (0.2ms)[0m [1m SELECT sql
+ FROM sqlite_master
+ WHERE name='index_tasks_on_user_id' AND type='index'
+ UNION ALL
+ SELECT sql
+ FROM sqlite_temp_master
+ WHERE name='index_tasks_on_user_id' AND type='index'
+[0m
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-31 21:46:30 -0700
+ [1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+Processing by TasksController#index as HTML
+ [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? LIMIT 1[0m [["user_id", 1]]
+ Rendered tasks/index.html.erb within layouts/application (17.6ms)
+Completed 500 Internal Server Error in 76ms (ActiveRecord: 1.4ms)
+
+NoMethodError - undefined method `each' for nil:NilClass:
+ app/views/tasks/index.html.erb:33:in `_app_views_tasks_index_html_erb__1341346219923240222_70251046603080'
+ actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/0b78d6bc3264ffb4/variables" for ::1 at 2016-10-31 21:46:31 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-31 21:47:49 -0700
+Processing by TasksController#index as HTML
+ [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ?[0m [["user_id", 1]]
+ Rendered tasks/index.html.erb within layouts/application (2.0ms)
+Completed 200 OK in 180ms (Views: 153.3ms | ActiveRecord: 1.7ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-31 21:47:58 -0700
+Processing by TasksController#index as HTML
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ?[0m [["user_id", 1]]
+ Rendered tasks/index.html.erb within layouts/application (1.8ms)
+Completed 200 OK in 46ms (Views: 42.4ms | ActiveRecord: 0.4ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-31 21:47:58 -0700
+
+
+Started GET "/tasks/new" for ::1 at 2016-10-31 21:48:00 -0700
+Processing by TasksController#new as HTML
+ [1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ Rendered shared/_form.html.erb (3.9ms)
+ Rendered shared/_footer.erb (0.3ms)
+ Rendered tasks/new.html.erb within layouts/application (11.0ms)
+Completed 200 OK in 130ms (Views: 85.8ms | ActiveRecord: 0.7ms)
+
+
+Started POST "/tasks/create" for ::1 at 2016-10-31 21:48:16 -0700
+Processing by TasksController#create as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"CnGtt/hoFlVtRxlqoMfQ/T3UL3yTlkZr4KV4yc/2y4QYVduPw3Fq1Jm5tanHvmPZIqcy81NBpJuaFF2ryNFfjQ==", "task"=>{"title"=>"Oh but I have", "description"=>"you don't know me", "details"=>"because I can"}, "commit"=>"create"}
+ [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (1.0ms)[0m [1mINSERT INTO "tasks" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2016-11-01 04:48:16.409537"], ["updated_at", "2016-11-01 04:48:16.409537"]]
+ [1m[35m (0.9ms)[0m commit transaction
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.6ms)[0m UPDATE "tasks" SET "user_id" = ?, "title" = ?, "description" = ?, "details" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["user_id", 1], ["title", "Oh but I have"], ["description", "you don't know me"], ["details", "because I can"], ["updated_at", "2016-11-01 04:48:16.414972"], ["id", 2]]
+ [1m[36m (0.8ms)[0m [1mcommit transaction[0m
+Redirected to http://localhost:3000/tasks/index
+Completed 302 Found in 55ms (ActiveRecord: 3.7ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-31 21:48:16 -0700
+Processing by TasksController#index as HTML
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ?[0m [["user_id", 1]]
+ Rendered tasks/index.html.erb within layouts/application (3.4ms)
+Completed 200 OK in 77ms (Views: 75.0ms | ActiveRecord: 0.4ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-31 21:48:16 -0700
+ [1m[36mUser Load (3.0ms)[0m [1mSELECT "users".* FROM "users"[0m
+ [1m[35mTask Load (1.1ms)[0m SELECT "tasks".* FROM "tasks"
+
+
+Started GET "/tasks/new" for ::1 at 2016-10-31 21:49:55 -0700
+Processing by TasksController#new as HTML
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ Rendered shared/_form.html.erb (2.5ms)
+ Rendered shared/_footer.erb (0.3ms)
+ Rendered tasks/new.html.erb within layouts/application (8.5ms)
+Completed 200 OK in 131ms (Views: 67.6ms | ActiveRecord: 0.2ms)
+
+
+Started POST "/tasks/create" for ::1 at 2016-10-31 21:50:16 -0700
+Processing by TasksController#create as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"fAcLwC2qXf8PW679V7iw0eRNLfy+hbf/VsuOVjtjZiZuI334FrMhfvulAj4wwQP1+z4wc35SVQ8seqs0PETyLw==", "task"=>{"title"=>"My Tasks", "description"=>"Are linking to a User", "details"=>"Because I am cool!!"}, "commit"=>"create"}
+ [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (0.4ms)[0m [1mINSERT INTO "tasks" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2016-11-01 04:50:16.242802"], ["updated_at", "2016-11-01 04:50:16.242802"]]
+ [1m[35m (0.8ms)[0m commit transaction
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.4ms)[0m UPDATE "tasks" SET "user_id" = ?, "title" = ?, "description" = ?, "details" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["user_id", 1], ["title", "My Tasks"], ["description", "Are linking to a User"], ["details", "Because I am cool!!"], ["updated_at", "2016-11-01 04:50:16.246361"], ["id", 3]]
+ [1m[36m (0.7ms)[0m [1mcommit transaction[0m
+Redirected to http://localhost:3000/tasks/index
+Completed 302 Found in 9ms (ActiveRecord: 2.6ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-31 21:50:16 -0700
+Processing by TasksController#index as HTML
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ?[0m [["user_id", 1]]
+ Rendered tasks/index.html.erb within layouts/application (6.8ms)
+Completed 200 OK in 140ms (Views: 138.3ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-31 21:50:16 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-31 21:57:54 -0700
+Processing by TasksController#index as HTML
+ [1m[35mUser Load (1.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36mTask Load (0.4ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ?[0m [["user_id", 1]]
+ Rendered tasks/index.html.erb within layouts/application (22.2ms)
+Completed 200 OK in 214ms (Views: 163.8ms | ActiveRecord: 6.4ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-31 21:57:54 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-31 21:58:34 -0700
+Processing by TasksController#index as HTML
+ [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ?[0m [["user_id", 1]]
+ Rendered tasks/index.html.erb within layouts/application (7.3ms)
+Completed 200 OK in 163ms (Views: 159.6ms | ActiveRecord: 0.5ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-31 21:58:35 -0700
+
+
+Started DELETE "/tasks/2/destroy" for ::1 at 2016-10-31 22:00:01 -0700
+Processing by TasksController#destroy as HTML
+ Parameters: {"authenticity_token"=>"WCG475KuozukmRvHwIJS2VivFM6TFQgeMpPYSOdJeRtKBc7XqbffulBntwSn++H9R9wJQVPC6u5IIv0q4G7tEg==", "id"=>"2"}
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36mTask Load (0.4ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 2]]
+ [1m[35m (0.2ms)[0m begin transaction
+ [1m[36mSQL (1.3ms)[0m [1mDELETE FROM "tasks" WHERE "tasks"."id" = ?[0m [["id", 2]]
+ [1m[35m (0.8ms)[0m commit transaction
+ Rendered shared/_footer.erb (0.4ms)
+ Rendered tasks/destroy.html.erb within layouts/application (4.2ms)
+Completed 200 OK in 77ms (Views: 68.1ms | ActiveRecord: 2.9ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-31 22:00:02 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-31 22:00:15 -0700
+Processing by TasksController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? [["user_id", 1]]
+ Rendered tasks/index.html.erb within layouts/application (2.9ms)
+Completed 200 OK in 87ms (Views: 84.4ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/tasks/3/edit" for ::1 at 2016-10-31 22:00:19 -0700
+Processing by TasksController#edit as HTML
+ Parameters: {"id"=>"3"}
+ [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]]
+ Rendered shared/_form.html.erb (4.8ms)
+ Rendered shared/_footer.erb (0.4ms)
+ Rendered tasks/edit.html.erb within layouts/application (11.8ms)
+Completed 200 OK in 60ms (Views: 57.5ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-31 22:00:19 -0700
+
+
+Started PATCH "/tasks/3/update" for ::1 at 2016-10-31 22:00:39 -0700
+Processing by TasksController#update as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"OGLNucFGdf1d4lqzsaQ5oshtBeWF4B8m1Rulj1AAaFsqRruB+l8JfKkc9nDW3YqG1x4YakU3/davqoDtVyf8Ug==", "task"=>{"title"=>"Task Celebration!", "description"=>"Are linking to a User", "details"=>"Because I am cool!!"}, "commit"=>"update", "id"=>"3"}
+ [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
+ [1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (64.5ms)[0m UPDATE "tasks" SET "user_id" = ?, "title" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["user_id", 0], ["title", "Task Celebration!"], ["updated_at", "2016-11-01 05:00:39.949363"], ["id", 3]]
+ [1m[36m (49.6ms)[0m [1mcommit transaction[0m
+Redirected to http://localhost:3000/tasks/index
+Completed 302 Found in 126ms (ActiveRecord: 114.4ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-31 22:00:40 -0700
+Processing by TasksController#index as HTML
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ?[0m [["user_id", 1]]
+ Rendered tasks/index.html.erb within layouts/application (1.3ms)
+Completed 200 OK in 85ms (Views: 83.4ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/assets/foundation.css" for ::1 at 2016-10-31 22:00:40 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-31 22:00:46 -0700
+Processing by TasksController#index as HTML
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ?[0m [["user_id", 1]]
+ Rendered tasks/index.html.erb within layouts/application (1.7ms)
+Completed 200 OK in 124ms (Views: 120.4ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-31 22:00:49 -0700
+Processing by TasksController#index as HTML
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ?[0m [["user_id", 1]]
+ Rendered tasks/index.html.erb within layouts/application (5.4ms)
+Completed 200 OK in 67ms (Views: 65.5ms | ActiveRecord: 0.4ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-31 22:00:51 -0700
+Processing by TasksController#index as HTML
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ?[0m [["user_id", 1]]
+ Rendered tasks/index.html.erb within layouts/application (1.6ms)
+Completed 200 OK in 81ms (Views: 79.1ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-31 22:15:12 -0700
+ [1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+Processing by TasksController#index as HTML
+ [1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36mTask Load (0.6ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ?[0m [["user_id", 1]]
+ Rendered tasks/index.html.erb within layouts/application (5.5ms)
+Completed 500 Internal Server Error in 7113ms (ActiveRecord: 2.0ms)
+
+Sass::SyntaxError - Undefined mixin 'foundation-global-styles'.:
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:351:in `block in visit_mixin'
+ sass (3.4.22) lib/sass/stack.rb:98:in `block in with_mixin'
+ sass (3.4.22) lib/sass/stack.rb:115:in `with_frame'
+ sass (3.4.22) lib/sass/stack.rb:98:in `with_mixin'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:349:in `visit_mixin'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:36:in `visit'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:160:in `block in visit'
+ sass (3.4.22) lib/sass/stack.rb:79:in `block in with_base'
+ sass (3.4.22) lib/sass/stack.rb:115:in `with_frame'
+ sass (3.4.22) lib/sass/stack.rb:79:in `with_base'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:160:in `visit'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:52:in `block in visit_children'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:52:in `visit_children'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:169:in `block in visit_children'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:181:in `with_environment'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:168:in `visit_children'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:36:in `block in visit'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:188:in `visit_root'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:36:in `visit'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:159:in `visit'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:8:in `visit'
+ sass (3.4.22) lib/sass/tree/root_node.rb:36:in `css_tree'
+ sass (3.4.22) lib/sass/tree/root_node.rb:20:in `render'
+ sass (3.4.22) lib/sass/engine.rb:281:in `render'
+ sass-rails (5.0.6) lib/sass/rails/template.rb:47:in `evaluate'
+ tilt (2.0.5) lib/tilt/template.rb:102:in `render'
+ sprockets (3.7.0) lib/sprockets/legacy_tilt_processor.rb:25:in `call'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:75:in `call_processor'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:56:in `call_processors'
+ sprockets (3.7.0) lib/sprockets/loader.rb:134:in `load_from_unloaded'
+ sprockets (3.7.0) lib/sprockets/loader.rb:60:in `block in load'
+ sprockets (3.7.0) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
+ sprockets (3.7.0) lib/sprockets/loader.rb:44:in `load'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:20:in `block in initialize'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:47:in `load'
+ sprockets (3.7.0) lib/sprockets/bundle.rb:23:in `block in call'
+ sprockets (3.7.0) lib/sprockets/utils.rb:196:in `dfs'
+ sprockets (3.7.0) lib/sprockets/bundle.rb:24:in `call'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:75:in `call_processor'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:56:in `call_processors'
+ sprockets (3.7.0) lib/sprockets/loader.rb:134:in `load_from_unloaded'
+ sprockets (3.7.0) lib/sprockets/loader.rb:60:in `block in load'
+ sprockets (3.7.0) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
+ sprockets (3.7.0) lib/sprockets/loader.rb:44:in `load'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:20:in `block in initialize'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:47:in `load'
+ sprockets (3.7.0) lib/sprockets/base.rb:66:in `find_asset'
+ sprockets (3.7.0) lib/sprockets/base.rb:92:in `[]'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:355:in `find_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:347:in `find_debug_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:241:in `resolve_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag'
+ app/views/layouts/application.html.erb:9:in `_app_views_layouts_application_html_erb__716221242922741167_70288403218820'
+ actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-31 22:15:20 -0700
+Processing by TasksController#index as HTML
+ [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ?[0m [["user_id", 1]]
+ Rendered tasks/index.html.erb within layouts/application (1.5ms)
+Completed 500 Internal Server Error in 2497ms (ActiveRecord: 0.5ms)
+
+Sass::SyntaxError - Undefined mixin 'foundation-global-styles'.:
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:351:in `block in visit_mixin'
+ sass (3.4.22) lib/sass/stack.rb:98:in `block in with_mixin'
+ sass (3.4.22) lib/sass/stack.rb:115:in `with_frame'
+ sass (3.4.22) lib/sass/stack.rb:98:in `with_mixin'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:349:in `visit_mixin'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:36:in `visit'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:160:in `block in visit'
+ sass (3.4.22) lib/sass/stack.rb:79:in `block in with_base'
+ sass (3.4.22) lib/sass/stack.rb:115:in `with_frame'
+ sass (3.4.22) lib/sass/stack.rb:79:in `with_base'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:160:in `visit'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:52:in `block in visit_children'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:52:in `visit_children'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:169:in `block in visit_children'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:181:in `with_environment'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:168:in `visit_children'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:36:in `block in visit'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:188:in `visit_root'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:36:in `visit'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:159:in `visit'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:8:in `visit'
+ sass (3.4.22) lib/sass/tree/root_node.rb:36:in `css_tree'
+ sass (3.4.22) lib/sass/tree/root_node.rb:20:in `render'
+ sass (3.4.22) lib/sass/engine.rb:281:in `render'
+ sass-rails (5.0.6) lib/sass/rails/template.rb:47:in `evaluate'
+ tilt (2.0.5) lib/tilt/template.rb:102:in `render'
+ sprockets (3.7.0) lib/sprockets/legacy_tilt_processor.rb:25:in `call'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:75:in `call_processor'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:56:in `call_processors'
+ sprockets (3.7.0) lib/sprockets/loader.rb:134:in `load_from_unloaded'
+ sprockets (3.7.0) lib/sprockets/loader.rb:60:in `block in load'
+ sprockets (3.7.0) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
+ sprockets (3.7.0) lib/sprockets/loader.rb:44:in `load'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:20:in `block in initialize'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:47:in `load'
+ sprockets (3.7.0) lib/sprockets/bundle.rb:23:in `block in call'
+ sprockets (3.7.0) lib/sprockets/utils.rb:196:in `dfs'
+ sprockets (3.7.0) lib/sprockets/bundle.rb:24:in `call'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:75:in `call_processor'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:56:in `call_processors'
+ sprockets (3.7.0) lib/sprockets/loader.rb:134:in `load_from_unloaded'
+ sprockets (3.7.0) lib/sprockets/loader.rb:60:in `block in load'
+ sprockets (3.7.0) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
+ sprockets (3.7.0) lib/sprockets/loader.rb:44:in `load'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:20:in `block in initialize'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:47:in `load'
+ sprockets (3.7.0) lib/sprockets/base.rb:66:in `find_asset'
+ sprockets (3.7.0) lib/sprockets/base.rb:92:in `[]'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:355:in `find_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:347:in `find_debug_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:241:in `resolve_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag'
+ app/views/layouts/application.html.erb:9:in `_app_views_layouts_application_html_erb__716221242922741167_70288403218820'
+ actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/9c261e63a89f970e/variables" for ::1 at 2016-10-31 22:15:22 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-31 22:22:58 -0700
+Processing by TasksController#index as HTML
+ [1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ?[0m [["user_id", 1]]
+ Rendered tasks/index.html.erb within layouts/application (11.3ms)
+Completed 500 Internal Server Error in 1627ms (ActiveRecord: 0.8ms)
+
+Sass::SyntaxError - Undefined mixin 'foundation-global-styles'.:
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:351:in `block in visit_mixin'
+ sass (3.4.22) lib/sass/stack.rb:98:in `block in with_mixin'
+ sass (3.4.22) lib/sass/stack.rb:115:in `with_frame'
+ sass (3.4.22) lib/sass/stack.rb:98:in `with_mixin'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:349:in `visit_mixin'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:36:in `visit'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:160:in `block in visit'
+ sass (3.4.22) lib/sass/stack.rb:79:in `block in with_base'
+ sass (3.4.22) lib/sass/stack.rb:115:in `with_frame'
+ sass (3.4.22) lib/sass/stack.rb:79:in `with_base'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:160:in `visit'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:52:in `block in visit_children'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:52:in `visit_children'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:169:in `block in visit_children'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:181:in `with_environment'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:168:in `visit_children'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:36:in `block in visit'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:188:in `visit_root'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:36:in `visit'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:159:in `visit'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:8:in `visit'
+ sass (3.4.22) lib/sass/tree/root_node.rb:36:in `css_tree'
+ sass (3.4.22) lib/sass/tree/root_node.rb:20:in `render'
+ sass (3.4.22) lib/sass/engine.rb:281:in `render'
+ sass-rails (5.0.6) lib/sass/rails/template.rb:47:in `evaluate'
+ tilt (2.0.5) lib/tilt/template.rb:102:in `render'
+ sprockets (3.7.0) lib/sprockets/legacy_tilt_processor.rb:25:in `call'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:75:in `call_processor'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:56:in `call_processors'
+ sprockets (3.7.0) lib/sprockets/loader.rb:134:in `load_from_unloaded'
+ sprockets (3.7.0) lib/sprockets/loader.rb:60:in `block in load'
+ sprockets (3.7.0) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
+ sprockets (3.7.0) lib/sprockets/loader.rb:44:in `load'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:20:in `block in initialize'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:47:in `load'
+ sprockets (3.7.0) lib/sprockets/bundle.rb:23:in `block in call'
+ sprockets (3.7.0) lib/sprockets/utils.rb:196:in `dfs'
+ sprockets (3.7.0) lib/sprockets/bundle.rb:24:in `call'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:75:in `call_processor'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:56:in `call_processors'
+ sprockets (3.7.0) lib/sprockets/loader.rb:134:in `load_from_unloaded'
+ sprockets (3.7.0) lib/sprockets/loader.rb:60:in `block in load'
+ sprockets (3.7.0) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
+ sprockets (3.7.0) lib/sprockets/loader.rb:44:in `load'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:20:in `block in initialize'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:47:in `load'
+ sprockets (3.7.0) lib/sprockets/base.rb:66:in `find_asset'
+ sprockets (3.7.0) lib/sprockets/base.rb:92:in `[]'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:355:in `find_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:347:in `find_debug_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:241:in `resolve_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag'
+ app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb__716221242922741167_70288410577580'
+ actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/fdf4b63fc0b2ace7/variables" for ::1 at 2016-10-31 22:23:01 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-31 22:23:44 -0700
+Processing by TasksController#index as HTML
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36mTask Load (4.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ?[0m [["user_id", 1]]
+ Rendered tasks/index.html.erb within layouts/application (6.6ms)
+Completed 500 Internal Server Error in 1178ms (ActiveRecord: 4.3ms)
+
+Sass::SyntaxError - Undefined mixin 'foundation-global-styles'.:
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:351:in `block in visit_mixin'
+ sass (3.4.22) lib/sass/stack.rb:98:in `block in with_mixin'
+ sass (3.4.22) lib/sass/stack.rb:115:in `with_frame'
+ sass (3.4.22) lib/sass/stack.rb:98:in `with_mixin'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:349:in `visit_mixin'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:36:in `visit'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:160:in `block in visit'
+ sass (3.4.22) lib/sass/stack.rb:79:in `block in with_base'
+ sass (3.4.22) lib/sass/stack.rb:115:in `with_frame'
+ sass (3.4.22) lib/sass/stack.rb:79:in `with_base'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:160:in `visit'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:52:in `block in visit_children'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:52:in `visit_children'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:169:in `block in visit_children'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:181:in `with_environment'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:168:in `visit_children'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:36:in `block in visit'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:188:in `visit_root'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:36:in `visit'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:159:in `visit'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:8:in `visit'
+ sass (3.4.22) lib/sass/tree/root_node.rb:36:in `css_tree'
+ sass (3.4.22) lib/sass/tree/root_node.rb:20:in `render'
+ sass (3.4.22) lib/sass/engine.rb:281:in `render'
+ sass-rails (5.0.6) lib/sass/rails/template.rb:47:in `evaluate'
+ tilt (2.0.5) lib/tilt/template.rb:102:in `render'
+ sprockets (3.7.0) lib/sprockets/legacy_tilt_processor.rb:25:in `call'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:75:in `call_processor'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:56:in `call_processors'
+ sprockets (3.7.0) lib/sprockets/loader.rb:134:in `load_from_unloaded'
+ sprockets (3.7.0) lib/sprockets/loader.rb:60:in `block in load'
+ sprockets (3.7.0) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
+ sprockets (3.7.0) lib/sprockets/loader.rb:44:in `load'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:20:in `block in initialize'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:47:in `load'
+ sprockets (3.7.0) lib/sprockets/bundle.rb:23:in `block in call'
+ sprockets (3.7.0) lib/sprockets/utils.rb:196:in `dfs'
+ sprockets (3.7.0) lib/sprockets/bundle.rb:24:in `call'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:75:in `call_processor'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:56:in `call_processors'
+ sprockets (3.7.0) lib/sprockets/loader.rb:134:in `load_from_unloaded'
+ sprockets (3.7.0) lib/sprockets/loader.rb:60:in `block in load'
+ sprockets (3.7.0) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
+ sprockets (3.7.0) lib/sprockets/loader.rb:44:in `load'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:20:in `block in initialize'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:47:in `load'
+ sprockets (3.7.0) lib/sprockets/base.rb:66:in `find_asset'
+ sprockets (3.7.0) lib/sprockets/base.rb:92:in `[]'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:355:in `find_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:347:in `find_debug_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:241:in `resolve_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag'
+ app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb__716221242922741167_70288410577580'
+ actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/b7115c7b6873868d/variables" for ::1 at 2016-10-31 22:23:45 -0700
+
+
+Started GET "/tasks/index" for ::1 at 2016-10-31 22:24:43 -0700
+ [1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+Processing by TasksController#index as HTML
+ [1m[35mUser Load (0.7ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36mTask Load (1.5ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ?[0m [["user_id", 1]]
+ Rendered tasks/index.html.erb within layouts/application (10.7ms)
+Completed 500 Internal Server Error in 2036ms (ActiveRecord: 3.2ms)
+
+Sass::SyntaxError - Undefined mixin 'foundation-global-styles'.:
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:351:in `block in visit_mixin'
+ sass (3.4.22) lib/sass/stack.rb:98:in `block in with_mixin'
+ sass (3.4.22) lib/sass/stack.rb:115:in `with_frame'
+ sass (3.4.22) lib/sass/stack.rb:98:in `with_mixin'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:349:in `visit_mixin'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:36:in `visit'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:160:in `block in visit'
+ sass (3.4.22) lib/sass/stack.rb:79:in `block in with_base'
+ sass (3.4.22) lib/sass/stack.rb:115:in `with_frame'
+ sass (3.4.22) lib/sass/stack.rb:79:in `with_base'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:160:in `visit'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:52:in `block in visit_children'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:52:in `visit_children'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:169:in `block in visit_children'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:181:in `with_environment'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:168:in `visit_children'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:36:in `block in visit'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:188:in `visit_root'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:36:in `visit'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:159:in `visit'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:8:in `visit'
+ sass (3.4.22) lib/sass/tree/root_node.rb:36:in `css_tree'
+ sass (3.4.22) lib/sass/tree/root_node.rb:20:in `render'
+ sass (3.4.22) lib/sass/engine.rb:281:in `render'
+ sass-rails (5.0.6) lib/sass/rails/template.rb:47:in `evaluate'
+ tilt (2.0.5) lib/tilt/template.rb:102:in `render'
+ sprockets (3.7.0) lib/sprockets/legacy_tilt_processor.rb:25:in `call'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:75:in `call_processor'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:56:in `call_processors'
+ sprockets (3.7.0) lib/sprockets/loader.rb:134:in `load_from_unloaded'
+ sprockets (3.7.0) lib/sprockets/loader.rb:60:in `block in load'
+ sprockets (3.7.0) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
+ sprockets (3.7.0) lib/sprockets/loader.rb:44:in `load'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:20:in `block in initialize'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:47:in `load'
+ sprockets (3.7.0) lib/sprockets/bundle.rb:23:in `block in call'
+ sprockets (3.7.0) lib/sprockets/utils.rb:196:in `dfs'
+ sprockets (3.7.0) lib/sprockets/bundle.rb:24:in `call'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:75:in `call_processor'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:56:in `call_processors'
+ sprockets (3.7.0) lib/sprockets/loader.rb:134:in `load_from_unloaded'
+ sprockets (3.7.0) lib/sprockets/loader.rb:60:in `block in load'
+ sprockets (3.7.0) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
+ sprockets (3.7.0) lib/sprockets/loader.rb:44:in `load'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:20:in `block in initialize'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:47:in `load'
+ sprockets (3.7.0) lib/sprockets/base.rb:66:in `find_asset'
+ sprockets (3.7.0) lib/sprockets/base.rb:92:in `[]'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:355:in `find_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:347:in `find_debug_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:241:in `resolve_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag'
+ app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb__994971370724016560_70242136162740'
+ actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/62af8972cdf01009/variables" for ::1 at 2016-10-31 22:24:46 -0700
+
+
+Started GET "/" for ::1 at 2016-10-31 22:30:51 -0700
+ [1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (4.5ms)
+Completed 500 Internal Server Error in 2086ms (ActiveRecord: 0.0ms)
+
+Sass::SyntaxError - Undefined mixin 'foundation-global-styles'.:
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:351:in `block in visit_mixin'
+ sass (3.4.22) lib/sass/stack.rb:98:in `block in with_mixin'
+ sass (3.4.22) lib/sass/stack.rb:115:in `with_frame'
+ sass (3.4.22) lib/sass/stack.rb:98:in `with_mixin'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:349:in `visit_mixin'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:36:in `visit'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:160:in `block in visit'
+ sass (3.4.22) lib/sass/stack.rb:79:in `block in with_base'
+ sass (3.4.22) lib/sass/stack.rb:115:in `with_frame'
+ sass (3.4.22) lib/sass/stack.rb:79:in `with_base'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:160:in `visit'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:52:in `block in visit_children'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:52:in `visit_children'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:169:in `block in visit_children'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:181:in `with_environment'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:168:in `visit_children'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:36:in `block in visit'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:188:in `visit_root'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:36:in `visit'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:159:in `visit'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:8:in `visit'
+ sass (3.4.22) lib/sass/tree/root_node.rb:36:in `css_tree'
+ sass (3.4.22) lib/sass/tree/root_node.rb:20:in `render'
+ sass (3.4.22) lib/sass/engine.rb:281:in `render'
+ sass-rails (5.0.6) lib/sass/rails/template.rb:47:in `evaluate'
+ tilt (2.0.5) lib/tilt/template.rb:102:in `render'
+ sprockets (3.7.0) lib/sprockets/legacy_tilt_processor.rb:25:in `call'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:75:in `call_processor'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:56:in `call_processors'
+ sprockets (3.7.0) lib/sprockets/loader.rb:134:in `load_from_unloaded'
+ sprockets (3.7.0) lib/sprockets/loader.rb:60:in `block in load'
+ sprockets (3.7.0) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
+ sprockets (3.7.0) lib/sprockets/loader.rb:44:in `load'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:20:in `block in initialize'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:47:in `load'
+ sprockets (3.7.0) lib/sprockets/bundle.rb:23:in `block in call'
+ sprockets (3.7.0) lib/sprockets/utils.rb:196:in `dfs'
+ sprockets (3.7.0) lib/sprockets/bundle.rb:24:in `call'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:75:in `call_processor'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:56:in `call_processors'
+ sprockets (3.7.0) lib/sprockets/loader.rb:134:in `load_from_unloaded'
+ sprockets (3.7.0) lib/sprockets/loader.rb:60:in `block in load'
+ sprockets (3.7.0) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
+ sprockets (3.7.0) lib/sprockets/loader.rb:44:in `load'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:20:in `block in initialize'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:47:in `load'
+ sprockets (3.7.0) lib/sprockets/base.rb:66:in `find_asset'
+ sprockets (3.7.0) lib/sprockets/base.rb:92:in `[]'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:355:in `find_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:347:in `find_debug_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:241:in `resolve_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag'
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__921661300409748827_70366286085740'
+ actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started GET "/" for ::1 at 2016-10-31 22:30:54 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.4ms)
+Completed 500 Internal Server Error in 1335ms (ActiveRecord: 0.0ms)
+
+Sass::SyntaxError - Undefined mixin 'foundation-global-styles'.:
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:351:in `block in visit_mixin'
+ sass (3.4.22) lib/sass/stack.rb:98:in `block in with_mixin'
+ sass (3.4.22) lib/sass/stack.rb:115:in `with_frame'
+ sass (3.4.22) lib/sass/stack.rb:98:in `with_mixin'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:349:in `visit_mixin'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:36:in `visit'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:160:in `block in visit'
+ sass (3.4.22) lib/sass/stack.rb:79:in `block in with_base'
+ sass (3.4.22) lib/sass/stack.rb:115:in `with_frame'
+ sass (3.4.22) lib/sass/stack.rb:79:in `with_base'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:160:in `visit'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:52:in `block in visit_children'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:52:in `visit_children'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:169:in `block in visit_children'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:181:in `with_environment'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:168:in `visit_children'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:36:in `block in visit'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:188:in `visit_root'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:36:in `visit'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:159:in `visit'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:8:in `visit'
+ sass (3.4.22) lib/sass/tree/root_node.rb:36:in `css_tree'
+ sass (3.4.22) lib/sass/tree/root_node.rb:20:in `render'
+ sass (3.4.22) lib/sass/engine.rb:281:in `render'
+ sass-rails (5.0.6) lib/sass/rails/template.rb:47:in `evaluate'
+ tilt (2.0.5) lib/tilt/template.rb:102:in `render'
+ sprockets (3.7.0) lib/sprockets/legacy_tilt_processor.rb:25:in `call'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:75:in `call_processor'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:56:in `call_processors'
+ sprockets (3.7.0) lib/sprockets/loader.rb:134:in `load_from_unloaded'
+ sprockets (3.7.0) lib/sprockets/loader.rb:60:in `block in load'
+ sprockets (3.7.0) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
+ sprockets (3.7.0) lib/sprockets/loader.rb:44:in `load'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:20:in `block in initialize'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:47:in `load'
+ sprockets (3.7.0) lib/sprockets/bundle.rb:23:in `block in call'
+ sprockets (3.7.0) lib/sprockets/utils.rb:196:in `dfs'
+ sprockets (3.7.0) lib/sprockets/bundle.rb:24:in `call'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:75:in `call_processor'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:56:in `call_processors'
+ sprockets (3.7.0) lib/sprockets/loader.rb:134:in `load_from_unloaded'
+ sprockets (3.7.0) lib/sprockets/loader.rb:60:in `block in load'
+ sprockets (3.7.0) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
+ sprockets (3.7.0) lib/sprockets/loader.rb:44:in `load'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:20:in `block in initialize'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:47:in `load'
+ sprockets (3.7.0) lib/sprockets/base.rb:66:in `find_asset'
+ sprockets (3.7.0) lib/sprockets/base.rb:92:in `[]'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:355:in `find_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:347:in `find_debug_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:241:in `resolve_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag'
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__921661300409748827_70366286085740'
+ actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/552f4e113cce05d9/variables" for ::1 at 2016-10-31 22:30:56 -0700
+
+
+Started GET "/" for ::1 at 2016-10-31 22:45:23 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (11.5ms)
+Completed 500 Internal Server Error in 1880ms (ActiveRecord: 0.0ms)
+
+Sass::SyntaxError - Undefined mixin 'foundation-global-styles'.:
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:351:in `block in visit_mixin'
+ sass (3.4.22) lib/sass/stack.rb:98:in `block in with_mixin'
+ sass (3.4.22) lib/sass/stack.rb:115:in `with_frame'
+ sass (3.4.22) lib/sass/stack.rb:98:in `with_mixin'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:349:in `visit_mixin'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:36:in `visit'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:160:in `block in visit'
+ sass (3.4.22) lib/sass/stack.rb:79:in `block in with_base'
+ sass (3.4.22) lib/sass/stack.rb:115:in `with_frame'
+ sass (3.4.22) lib/sass/stack.rb:79:in `with_base'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:160:in `visit'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:52:in `block in visit_children'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:52:in `visit_children'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:169:in `block in visit_children'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:181:in `with_environment'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:168:in `visit_children'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:36:in `block in visit'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:188:in `visit_root'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:36:in `visit'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:159:in `visit'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:8:in `visit'
+ sass (3.4.22) lib/sass/tree/root_node.rb:36:in `css_tree'
+ sass (3.4.22) lib/sass/tree/root_node.rb:20:in `render'
+ sass (3.4.22) lib/sass/engine.rb:281:in `render'
+ sass-rails (5.0.6) lib/sass/rails/template.rb:47:in `evaluate'
+ tilt (2.0.5) lib/tilt/template.rb:102:in `render'
+ sprockets (3.7.0) lib/sprockets/legacy_tilt_processor.rb:25:in `call'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:75:in `call_processor'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:56:in `call_processors'
+ sprockets (3.7.0) lib/sprockets/loader.rb:134:in `load_from_unloaded'
+ sprockets (3.7.0) lib/sprockets/loader.rb:60:in `block in load'
+ sprockets (3.7.0) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
+ sprockets (3.7.0) lib/sprockets/loader.rb:44:in `load'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:20:in `block in initialize'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:47:in `load'
+ sprockets (3.7.0) lib/sprockets/bundle.rb:23:in `block in call'
+ sprockets (3.7.0) lib/sprockets/utils.rb:196:in `dfs'
+ sprockets (3.7.0) lib/sprockets/bundle.rb:24:in `call'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:75:in `call_processor'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:56:in `call_processors'
+ sprockets (3.7.0) lib/sprockets/loader.rb:134:in `load_from_unloaded'
+ sprockets (3.7.0) lib/sprockets/loader.rb:60:in `block in load'
+ sprockets (3.7.0) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
+ sprockets (3.7.0) lib/sprockets/loader.rb:44:in `load'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:20:in `block in initialize'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:47:in `load'
+ sprockets (3.7.0) lib/sprockets/base.rb:66:in `find_asset'
+ sprockets (3.7.0) lib/sprockets/base.rb:92:in `[]'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:355:in `find_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:347:in `find_debug_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:241:in `resolve_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag'
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__921661300409748827_70366343779160'
+ actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/3dbd8101c75c8509/variables" for ::1 at 2016-10-31 22:45:25 -0700
+
+
+Started GET "/" for ::1 at 2016-10-31 22:47:55 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.4ms)
+Completed 500 Internal Server Error in 1290ms (ActiveRecord: 0.0ms)
+
+Sass::SyntaxError - Undefined mixin 'foundation-global-styles'.:
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:351:in `block in visit_mixin'
+ sass (3.4.22) lib/sass/stack.rb:98:in `block in with_mixin'
+ sass (3.4.22) lib/sass/stack.rb:115:in `with_frame'
+ sass (3.4.22) lib/sass/stack.rb:98:in `with_mixin'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:349:in `visit_mixin'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:36:in `visit'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:160:in `block in visit'
+ sass (3.4.22) lib/sass/stack.rb:79:in `block in with_base'
+ sass (3.4.22) lib/sass/stack.rb:115:in `with_frame'
+ sass (3.4.22) lib/sass/stack.rb:79:in `with_base'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:160:in `visit'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:52:in `block in visit_children'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:52:in `visit_children'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:169:in `block in visit_children'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:181:in `with_environment'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:168:in `visit_children'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:36:in `block in visit'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:188:in `visit_root'
+ sass (3.4.22) lib/sass/tree/visitors/base.rb:36:in `visit'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:159:in `visit'
+ sass (3.4.22) lib/sass/tree/visitors/perform.rb:8:in `visit'
+ sass (3.4.22) lib/sass/tree/root_node.rb:36:in `css_tree'
+ sass (3.4.22) lib/sass/tree/root_node.rb:20:in `render'
+ sass (3.4.22) lib/sass/engine.rb:281:in `render'
+ sass-rails (5.0.6) lib/sass/rails/template.rb:47:in `evaluate'
+ tilt (2.0.5) lib/tilt/template.rb:102:in `render'
+ sprockets (3.7.0) lib/sprockets/legacy_tilt_processor.rb:25:in `call'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:75:in `call_processor'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:56:in `call_processors'
+ sprockets (3.7.0) lib/sprockets/loader.rb:134:in `load_from_unloaded'
+ sprockets (3.7.0) lib/sprockets/loader.rb:60:in `block in load'
+ sprockets (3.7.0) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
+ sprockets (3.7.0) lib/sprockets/loader.rb:44:in `load'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:20:in `block in initialize'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:47:in `load'
+ sprockets (3.7.0) lib/sprockets/bundle.rb:23:in `block in call'
+ sprockets (3.7.0) lib/sprockets/utils.rb:196:in `dfs'
+ sprockets (3.7.0) lib/sprockets/bundle.rb:24:in `call'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:75:in `call_processor'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:56:in `call_processors'
+ sprockets (3.7.0) lib/sprockets/loader.rb:134:in `load_from_unloaded'
+ sprockets (3.7.0) lib/sprockets/loader.rb:60:in `block in load'
+ sprockets (3.7.0) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
+ sprockets (3.7.0) lib/sprockets/loader.rb:44:in `load'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:20:in `block in initialize'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:47:in `load'
+ sprockets (3.7.0) lib/sprockets/base.rb:66:in `find_asset'
+ sprockets (3.7.0) lib/sprockets/base.rb:92:in `[]'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:355:in `find_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:347:in `find_debug_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:241:in `resolve_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag'
+ app/views/layouts/application.html.erb:11:in `_app_views_layouts_application_html_erb__921661300409748827_70366340744640'
+ actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/32a87f6c97fa01d5/variables" for ::1 at 2016-10-31 22:47:57 -0700
+
+
+Started GET "/" for ::1 at 2016-11-01 12:49:23 -0700
+ [1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (4.0ms)
+Completed 200 OK in 50217ms (Views: 50198.8ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-11-01 12:50:14 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (2.8ms)
+Completed 200 OK in 388ms (Views: 386.9ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-11-01 12:50:24 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.4ms)
+Completed 200 OK in 1015ms (Views: 1014.5ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-11-01 12:50:25 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.4ms)
+Completed 200 OK in 302ms (Views: 301.4ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-e610e673cbd23fcab49a08dad6598fdc0262f477d0e129af89da013dfcb01d76.css?body=1" for ::1 at 2016-11-01 12:50:26 -0700
+
+
+Started GET "/assets/application.self-129932ab10f1d1e5a4621657c626d393bb0718716393ddba5dc5b25d244bd3d9.css?body=1" for ::1 at 2016-11-01 12:50:26 -0700
+
+
+Started GET "/assets/foundation_and_overrides.self-b8857805783c2044418bdc369597a77abf51832fc7b8e805727969f03487d245.css?body=1" for ::1 at 2016-11-01 12:50:26 -0700
+
+
+Started DELETE "/sessions/1/destroy" for ::1 at 2016-11-01 12:50:44 -0700
+Processing by SessionsController#destroy as HTML
+ Parameters: {"authenticity_token"=>"kyey03UOBzOVPvRwDYU7mc/xozkj+qL6zMVx1L9QNVCBA8TrThd7smHAWLNq/Ii90IK+tuMtQAq2dFS2uHehWQ==", "id"=>"1"}
+Redirected to http://localhost:3000/
+Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-11-01 12:50:44 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 329ms (Views: 327.9ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/auth/github" for ::1 at 2016-11-01 12:50:48 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-11-01 12:50:48 -0700
+
+
+Started GET "/auth/github/callback?code=6b738bd6cf5f18040728&state=400d8689e4cab9bf374c342f7ad33982ce84a353e566be53" for ::1 at 2016-11-01 12:50:48 -0700
+Processing by SessionsController#create as HTML
+ Parameters: {"code"=>"6b738bd6cf5f18040728", "state"=>"400d8689e4cab9bf374c342f7ad33982ce84a353e566be53", "provider"=>"github"}
+ [1m[35mUser Load (0.8ms)[0m SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "17533030"], ["provider", "github"]]
+Redirected to http://localhost:3000/users/1/edit
+Completed 302 Found in 43ms (ActiveRecord: 1.5ms)
+
+
+Started GET "/users/1/edit" for ::1 at 2016-11-01 12:50:50 -0700
+Processing by UsersController#edit as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
+ [1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ Rendered users/edit.html.erb within layouts/application (69.0ms)
+Completed 200 OK in 383ms (Views: 380.3ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/assets/foundation_and_overrides.self-b8857805783c2044418bdc369597a77abf51832fc7b8e805727969f03487d245.css?body=1" for ::1 at 2016-11-01 12:50:50 -0700
+
+
+Started GET "/assets/navigations.self-e610e673cbd23fcab49a08dad6598fdc0262f477d0e129af89da013dfcb01d76.css?body=1" for ::1 at 2016-11-01 12:50:50 -0700
+
+
+Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-11-01 12:50:50 -0700
+
+
+Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-11-01 12:50:50 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-11-01 12:50:50 -0700
+
+
+Started GET "/assets/_settings.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-11-01 12:50:50 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-11-01 12:50:50 -0700
+
+
+Started GET "/assets/application.self-129932ab10f1d1e5a4621657c626d393bb0718716393ddba5dc5b25d244bd3d9.css?body=1" for ::1 at 2016-11-01 12:50:50 -0700
+
+
+Started GET "/assets/foundation.abide.self-433e642defac6b495106bcaa7f2a33c07efc1dad4c3970721631af8a2b52affc.js?body=1" for ::1 at 2016-11-01 12:50:50 -0700
+
+
+Started GET "/assets/foundation.core.self-5ed6ae130919ff28bddc99eeb4be8985572bbe9b5f0b1ba1bc6afc599780cebb.js?body=1" for ::1 at 2016-11-01 12:50:50 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-11-01 12:50:50 -0700
+
+
+Started GET "/assets/foundation.accordionMenu.self-e689c1884b4ff0c1954861fd62d4731ee547815641354364558281ba1c1f6e60.js?body=1" for ::1 at 2016-11-01 12:50:50 -0700
+
+
+Started GET "/assets/foundation.drilldown.self-90f2ea486ef245e95194cd7b3aa3c03f646920688d3f3da4ac9307a1ba218fd6.js?body=1" for ::1 at 2016-11-01 12:50:50 -0700
+
+
+Started GET "/assets/foundation.accordion.self-74319d8fb502eb290aeb24e5faa73fcaaf37eae2d7900078f340f0b24935730a.js?body=1" for ::1 at 2016-11-01 12:50:50 -0700
+
+
+Started GET "/assets/foundation.dropdown.self-9c145c2f5fc3a177fc41227f741c20dbb83e12e6ab9b3dc4d43ca29e5405b701.js?body=1" for ::1 at 2016-11-01 12:50:50 -0700
+
+
+Started GET "/assets/foundation.dropdownMenu.self-ad8b1b4094eeef0662f6bc2626fce4dbdbcd378208a40d581a69173f69cf9416.js?body=1" for ::1 at 2016-11-01 12:50:50 -0700
+
+
+Started GET "/assets/foundation.equalizer.self-a50f50dcba868d8fa943fbff15ebbf4cc4379642743eb66e01700817f1d9a22d.js?body=1" for ::1 at 2016-11-01 12:50:50 -0700
+
+
+Started GET "/assets/foundation.interchange.self-07189eb841f19152efe7b88e50292d9c099a53a4915af9020cf5eea06a8016ec.js?body=1" for ::1 at 2016-11-01 12:50:50 -0700
+
+
+Started GET "/assets/foundation.magellan.self-7f76db4c0535c95ec2987c59e161dbb0d95797e6472be23b256ed839f9ffbb3e.js?body=1" for ::1 at 2016-11-01 12:50:50 -0700
+
+
+Started GET "/assets/foundation.offcanvas.self-cf7da0443dc19b13c7142a0dbe858c9345298ba3c74c18fd45c32b8e6a36891d.js?body=1" for ::1 at 2016-11-01 12:50:50 -0700
+
+
+Started GET "/assets/foundation.orbit.self-8b50fe52746c0bbfdfdd344a7dbd1a26aa712d39b0aa95725ef3f207f999115d.js?body=1" for ::1 at 2016-11-01 12:50:51 -0700
+
+
+Started GET "/assets/foundation.responsiveMenu.self-04daa3af5d3c617fa7d588b45b56abd62539f5fde28756c7b4705de2aa10c4fd.js?body=1" for ::1 at 2016-11-01 12:50:51 -0700
+
+
+Started GET "/assets/foundation.responsiveToggle.self-15d27e3276f2100adb158282147ff40f7fc86c37419100d6101c600d2e4df01d.js?body=1" for ::1 at 2016-11-01 12:50:51 -0700
+
+
+Started GET "/assets/foundation.reveal.self-249f251973a73a8fb50acefd10e382278024146355b39e47ce1934dd64df09d7.js?body=1" for ::1 at 2016-11-01 12:50:51 -0700
+
+
+Started GET "/assets/foundation.slider.self-e5558a2d21fad44bba147be2d729ed96f984229d05f6d5550eb1c0c20b974f90.js?body=1" for ::1 at 2016-11-01 12:50:51 -0700
+
+
+Started GET "/assets/foundation.sticky.self-0b1d0a23ec6c183dfc64272e91d5450ee95821d7573f1fe7397dc810f3cd6926.js?body=1" for ::1 at 2016-11-01 12:50:51 -0700
+
+
+Started GET "/assets/foundation.toggler.self-e503f9a635124ad4578a03dc24e47ac4cdb922a60bac8c9c99d024da00b0bd52.js?body=1" for ::1 at 2016-11-01 12:50:51 -0700
+
+
+Started GET "/assets/foundation.util.mediaQuery.self-a84e048af5284ea81753b0d6b2d3bd8fb37c06084a37c7cb91bde285e3634c52.js?body=1" for ::1 at 2016-11-01 12:50:51 -0700
+
+
+Started GET "/assets/foundation.util.motion.self-13d4248460aba53c0fd52e1ec0d5cb41c317b1c4d974bc5d905c9976dc9ef218.js?body=1" for ::1 at 2016-11-01 12:50:51 -0700
+
+
+Started GET "/assets/foundation.tooltip.self-8d4d19184b9c2c60eec1cb32096180b09fd0d1bae8bd5bf8674c34187914943d.js?body=1" for ::1 at 2016-11-01 12:50:51 -0700
+
+
+Started GET "/assets/foundation.tabs.self-2e641c12d280fc8c560d070d5caf1e97560e035f955335b1244fa0ee0bb7291c.js?body=1" for ::1 at 2016-11-01 12:50:51 -0700
+
+
+Started GET "/assets/foundation.util.keyboard.self-9ddfc95ccf73ddc51ead522151b53198b30c6a400e9f3f0be725d55c30f01912.js?body=1" for ::1 at 2016-11-01 12:50:51 -0700
+
+
+Started GET "/assets/foundation.util.box.self-d575050eeb81d250e2a588d115b437fd2519a50712e1dce1766be2d87c5c7771.js?body=1" for ::1 at 2016-11-01 12:50:51 -0700
+
+
+Started GET "/assets/foundation.util.nest.self-4135250cfc78d23e55f714f091d937a962ee8728df21e8c6c8f78fb1a4bae0b0.js?body=1" for ::1 at 2016-11-01 12:50:51 -0700
+
+
+Started GET "/assets/foundation.util.touch.self-95e098450fe69653246bdfa7f1e7fe7dba15348524771d7b2c54c7c4298fccb5.js?body=1" for ::1 at 2016-11-01 12:50:51 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-11-01 12:50:51 -0700
+
+
+Started GET "/assets/foundation.util.timerAndImageLoader.self-79e11d64a4f9336021e9ff10bdc178973516badb1d919695d1ed56595b69c072.js?body=1" for ::1 at 2016-11-01 12:50:51 -0700
+
+
+Started GET "/assets/foundation.self-5ecf2f4d83e6260dabd6ec48e76d8ddebccf956563f34072221bf960d3b8c255.js?body=1" for ::1 at 2016-11-01 12:50:51 -0700
+
+
+Started GET "/assets/foundation.util.triggers.self-d40e6f5817093dcf4732709f7dad2922cd74945c353c32a1e22f66da25d9d3f1.js?body=1" for ::1 at 2016-11-01 12:50:51 -0700
+
+
+Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-11-01 12:50:51 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-11-01 12:50:51 -0700
+
+
+Started GET "/assets/navigations.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-11-01 12:50:51 -0700
+
+
+Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-11-01 12:50:51 -0700
+
+
+Started GET "/assets/application.self-a11f478daebeec5d29c3a1412323e28b3880b1c782a87821e2cc07f12ccdc9f9.js?body=1" for ::1 at 2016-11-01 12:50:51 -0700
+
+
+Started PATCH "/users/1/update" for ::1 at 2016-11-01 12:50:54 -0700
+Processing by UsersController#update as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"UR4I5KJR/KTQAyrW+AYdJIdhiMuDUpuFS+tbaXPn3PFDOn7cmUiAJST9hhWff64AmBKVREOFeXUxWn4LdMBI+A==", "user"=>{"profile_name"=>"b.m.p", "email"=>"milligan.brandi@gmail.com", "name"=>"Brandi Milligan Phillips"}, "commit"=>"Save", "id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
+ [1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mUser Exists (0.2ms)[0m SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'milligan.brandi@gmail.com' AND "users"."id" != 1) LIMIT 1
+ [1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE ("users"."uid" = '17533030' AND "users"."id" != 1) LIMIT 1[0m
+ [1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE ("users"."profile_name" = 'b.m.p' AND "users"."id" != 1) LIMIT 1
+ [1m[36m (0.1ms)[0m [1mcommit transaction[0m
+Redirected to http://localhost:3000/tasks/index
+Completed 302 Found in 41ms (ActiveRecord: 1.0ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-11-01 12:50:54 -0700
+Processing by TasksController#index as HTML
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36mTask Load (0.9ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ?[0m [["user_id", 1]]
+ Rendered tasks/index.html.erb within layouts/application (5.7ms)
+Completed 200 OK in 381ms (Views: 367.1ms | ActiveRecord: 1.3ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-11-01 12:50:59 -0700
+Processing by TasksController#new as HTML
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ Rendered shared/_form.html.erb (14.4ms)
+ Rendered shared/_footer.erb (1.1ms)
+ Rendered tasks/new.html.erb within layouts/application (57.9ms)
+Completed 200 OK in 415ms (Views: 396.0ms | ActiveRecord: 0.4ms)
+
+
+Started POST "/tasks/create" for ::1 at 2016-11-01 12:51:16 -0700
+Processing by TasksController#create as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"zLKBq+n56sXqV2CdhbfUI6FHBobhkTmB3NJ9MvuxlX/elveT0uCWRB6pzF7izmcHvjQbCSFG23GmY1hQ/JYBdg==", "task"=>{"title"=>"Task Celebration!", "description"=>"Fixing bugs", "details"=>"Because I am cool like that"}, "commit"=>"create"}
+ [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
+ [1m[35m (1.9ms)[0m begin transaction
+ [1m[36mSQL (1.5ms)[0m [1mINSERT INTO "tasks" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2016-11-01 19:51:16.215279"], ["updated_at", "2016-11-01 19:51:16.215279"]]
+ [1m[35m (0.8ms)[0m commit transaction
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.5ms)[0m UPDATE "tasks" SET "user_id" = ?, "title" = ?, "description" = ?, "details" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["user_id", 1], ["title", "Task Celebration!"], ["description", "Fixing bugs"], ["details", "Because I am cool like that"], ["updated_at", "2016-11-01 19:51:16.220656"], ["id", 4]]
+ [1m[36m (0.9ms)[0m [1mcommit transaction[0m
+Redirected to http://localhost:3000/tasks/index
+Completed 302 Found in 202ms (ActiveRecord: 5.9ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-11-01 12:51:16 -0700
+Processing by TasksController#index as HTML
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ?[0m [["user_id", 1]]
+ Rendered tasks/index.html.erb within layouts/application (6.2ms)
+Completed 200 OK in 408ms (Views: 406.2ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-11-01 12:51:27 -0700
+Processing by TasksController#new as HTML
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ Rendered shared/_form.html.erb (2.7ms)
+ Rendered shared/_footer.erb (0.3ms)
+ Rendered tasks/new.html.erb within layouts/application (16.8ms)
+Completed 200 OK in 371ms (Views: 369.8ms | ActiveRecord: 0.2ms)
+
+
+Started POST "/tasks/create" for ::1 at 2016-11-01 12:52:01 -0700
+Processing by TasksController#create as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"bg7oz9hjwYNa9jrKO3o0ZBJPbMqkPuhtmxWLF+uDbP98Kp7343q9Aq4IlglcA4dADTxxRWTpCp3hpK517KT49g==", "task"=>{"title"=>"fix foundation", "description"=>"always a bug to fix", "details"=>"BECAUSE THAT IS CODING"}, "commit"=>"create"}
+ [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mSQL (20.5ms)[0m [1mINSERT INTO "tasks" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2016-11-01 19:52:01.300739"], ["updated_at", "2016-11-01 19:52:01.300739"]]
+ [1m[35m (1.7ms)[0m commit transaction
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (0.4ms)[0m UPDATE "tasks" SET "user_id" = ?, "title" = ?, "description" = ?, "details" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["user_id", 1], ["title", "fix foundation"], ["description", "always a bug to fix"], ["details", "BECAUSE THAT IS CODING"], ["updated_at", "2016-11-01 19:52:01.326988"], ["id", 5]]
+ [1m[36m (9.4ms)[0m [1mcommit transaction[0m
+Redirected to http://localhost:3000/tasks/index
+Completed 302 Found in 240ms (ActiveRecord: 32.4ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-11-01 12:52:01 -0700
+Processing by TasksController#index as HTML
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ?[0m [["user_id", 1]]
+ Rendered tasks/index.html.erb within layouts/application (4.2ms)
+Completed 200 OK in 299ms (Views: 297.1ms | ActiveRecord: 0.4ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-11-01 12:53:58 -0700
+Processing by TasksController#index as HTML
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ?[0m [["user_id", 1]]
+ Rendered tasks/index.html.erb within layouts/application (4.6ms)
+Completed 200 OK in 478ms (Views: 475.7ms | ActiveRecord: 0.4ms)
+
+
+Started DELETE "/sessions/1/destroy" for ::1 at 2016-11-01 12:54:03 -0700
+Processing by SessionsController#destroy as HTML
+ Parameters: {"authenticity_token"=>"7gYCwn6p88H77KoqzI8+RatykY+ODW5oGoi7W6OEwtj8InT6RbCPQA8SBumr9o1htAGMAE7ajJhgOZ45pKNW0Q==", "id"=>"1"}
+Redirected to http://localhost:3000/
+Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-11-01 12:54:03 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (1.1ms)
+Completed 200 OK in 408ms (Views: 407.7ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-11-01 13:08:21 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (9.7ms)
+Completed 200 OK in 1118ms (Views: 1110.1ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-11-01 13:08:22 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 938ms (Views: 937.0ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-11-01 13:09:18 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (3.5ms)
+Completed 200 OK in 533ms (Views: 522.1ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-11-01 13:09:42 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (1.1ms)
+Completed 200 OK in 523ms (Views: 522.8ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-11-01 13:10:58 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (51.6ms)
+Completed 200 OK in 1367ms (Views: 1360.8ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-11-01 13:11:14 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (1.1ms)
+Completed 200 OK in 435ms (Views: 433.8ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2000-12-31 16:03:14 -0800
+ [1m[36mActiveRecord::SchemaMigration Load (4.8ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (3.9ms)
+Completed 200 OK in 1231ms (Views: 1213.4ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2000-12-31 16:03:16 -0800
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 169ms (Views: 168.6ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/_settings.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2000-12-31 16:03:16 -0800
+
+
+Started GET "/assets/foundation_and_overrides.self-b8857805783c2044418bdc369597a77abf51832fc7b8e805727969f03487d245.css?body=1" for ::1 at 2000-12-31 16:03:16 -0800
+
+
+Started GET "/assets/navigations.self-adbeedb39f60a92d98ef06c7cd09ca89758a593ddfbab3b54152cda7e1b8001f.css?body=1" for ::1 at 2000-12-31 16:03:16 -0800
+
+
+Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2000-12-31 16:03:16 -0800
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2000-12-31 16:03:16 -0800
+
+
+Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2000-12-31 16:03:16 -0800
+
+
+Started GET "/assets/application.self-129932ab10f1d1e5a4621657c626d393bb0718716393ddba5dc5b25d244bd3d9.css?body=1" for ::1 at 2000-12-31 16:03:16 -0800
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2000-12-31 16:03:16 -0800
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2000-12-31 16:03:16 -0800
+
+
+Started GET "/assets/foundation.core.self-5ed6ae130919ff28bddc99eeb4be8985572bbe9b5f0b1ba1bc6afc599780cebb.js?body=1" for ::1 at 2000-12-31 16:03:16 -0800
+
+
+Started GET "/assets/foundation.abide.self-433e642defac6b495106bcaa7f2a33c07efc1dad4c3970721631af8a2b52affc.js?body=1" for ::1 at 2000-12-31 16:03:16 -0800
+
+
+Started GET "/assets/foundation.accordion.self-74319d8fb502eb290aeb24e5faa73fcaaf37eae2d7900078f340f0b24935730a.js?body=1" for ::1 at 2000-12-31 16:03:16 -0800
+
+
+Started GET "/assets/foundation.accordionMenu.self-e689c1884b4ff0c1954861fd62d4731ee547815641354364558281ba1c1f6e60.js?body=1" for ::1 at 2000-12-31 16:03:16 -0800
+
+
+Started GET "/assets/foundation.dropdown.self-9c145c2f5fc3a177fc41227f741c20dbb83e12e6ab9b3dc4d43ca29e5405b701.js?body=1" for ::1 at 2000-12-31 16:03:16 -0800
+
+
+Started GET "/assets/foundation.equalizer.self-a50f50dcba868d8fa943fbff15ebbf4cc4379642743eb66e01700817f1d9a22d.js?body=1" for ::1 at 2000-12-31 16:03:16 -0800
+
+
+Started GET "/assets/foundation.dropdownMenu.self-ad8b1b4094eeef0662f6bc2626fce4dbdbcd378208a40d581a69173f69cf9416.js?body=1" for ::1 at 2000-12-31 16:03:16 -0800
+
+
+Started GET "/assets/foundation.magellan.self-7f76db4c0535c95ec2987c59e161dbb0d95797e6472be23b256ed839f9ffbb3e.js?body=1" for ::1 at 2000-12-31 16:03:16 -0800
+
+
+Started GET "/assets/foundation.offcanvas.self-cf7da0443dc19b13c7142a0dbe858c9345298ba3c74c18fd45c32b8e6a36891d.js?body=1" for ::1 at 2000-12-31 16:03:16 -0800
+
+
+Started GET "/assets/foundation.interchange.self-07189eb841f19152efe7b88e50292d9c099a53a4915af9020cf5eea06a8016ec.js?body=1" for ::1 at 2000-12-31 16:03:16 -0800
+
+
+Started GET "/assets/foundation.orbit.self-8b50fe52746c0bbfdfdd344a7dbd1a26aa712d39b0aa95725ef3f207f999115d.js?body=1" for ::1 at 2000-12-31 16:03:16 -0800
+
+
+Started GET "/assets/foundation.drilldown.self-90f2ea486ef245e95194cd7b3aa3c03f646920688d3f3da4ac9307a1ba218fd6.js?body=1" for ::1 at 2000-12-31 16:03:16 -0800
+
+
+Started GET "/assets/foundation.responsiveMenu.self-04daa3af5d3c617fa7d588b45b56abd62539f5fde28756c7b4705de2aa10c4fd.js?body=1" for ::1 at 2000-12-31 16:03:16 -0800
+
+
+Started GET "/assets/foundation.responsiveToggle.self-15d27e3276f2100adb158282147ff40f7fc86c37419100d6101c600d2e4df01d.js?body=1" for ::1 at 2000-12-31 16:03:17 -0800
+
+
+Started GET "/assets/foundation.reveal.self-249f251973a73a8fb50acefd10e382278024146355b39e47ce1934dd64df09d7.js?body=1" for ::1 at 2000-12-31 16:03:17 -0800
+
+
+Started GET "/assets/foundation.slider.self-e5558a2d21fad44bba147be2d729ed96f984229d05f6d5550eb1c0c20b974f90.js?body=1" for ::1 at 2000-12-31 16:03:17 -0800
+
+
+Started GET "/assets/foundation.sticky.self-0b1d0a23ec6c183dfc64272e91d5450ee95821d7573f1fe7397dc810f3cd6926.js?body=1" for ::1 at 2000-12-31 16:03:17 -0800
+
+
+Started GET "/assets/foundation.toggler.self-e503f9a635124ad4578a03dc24e47ac4cdb922a60bac8c9c99d024da00b0bd52.js?body=1" for ::1 at 2000-12-31 16:03:17 -0800
+
+
+Started GET "/assets/foundation.tabs.self-2e641c12d280fc8c560d070d5caf1e97560e035f955335b1244fa0ee0bb7291c.js?body=1" for ::1 at 2000-12-31 16:03:17 -0800
+
+
+Started GET "/assets/foundation.util.keyboard.self-9ddfc95ccf73ddc51ead522151b53198b30c6a400e9f3f0be725d55c30f01912.js?body=1" for ::1 at 2000-12-31 16:03:17 -0800
+
+
+Started GET "/assets/foundation.util.mediaQuery.self-a84e048af5284ea81753b0d6b2d3bd8fb37c06084a37c7cb91bde285e3634c52.js?body=1" for ::1 at 2000-12-31 16:03:17 -0800
+
+
+Started GET "/assets/foundation.tooltip.self-8d4d19184b9c2c60eec1cb32096180b09fd0d1bae8bd5bf8674c34187914943d.js?body=1" for ::1 at 2000-12-31 16:03:17 -0800
+
+
+Started GET "/assets/foundation.util.box.self-d575050eeb81d250e2a588d115b437fd2519a50712e1dce1766be2d87c5c7771.js?body=1" for ::1 at 2000-12-31 16:03:17 -0800
+
+
+Started GET "/assets/foundation.util.motion.self-13d4248460aba53c0fd52e1ec0d5cb41c317b1c4d974bc5d905c9976dc9ef218.js?body=1" for ::1 at 2000-12-31 16:03:17 -0800
+
+
+Started GET "/assets/foundation.util.timerAndImageLoader.self-79e11d64a4f9336021e9ff10bdc178973516badb1d919695d1ed56595b69c072.js?body=1" for ::1 at 2000-12-31 16:03:17 -0800
+
+
+Started GET "/assets/foundation.util.nest.self-4135250cfc78d23e55f714f091d937a962ee8728df21e8c6c8f78fb1a4bae0b0.js?body=1" for ::1 at 2000-12-31 16:03:17 -0800
+
+
+Started GET "/assets/foundation.util.touch.self-95e098450fe69653246bdfa7f1e7fe7dba15348524771d7b2c54c7c4298fccb5.js?body=1" for ::1 at 2000-12-31 16:03:17 -0800
+
+
+Started GET "/assets/foundation.util.triggers.self-d40e6f5817093dcf4732709f7dad2922cd74945c353c32a1e22f66da25d9d3f1.js?body=1" for ::1 at 2000-12-31 16:03:17 -0800
+
+
+Started GET "/assets/foundation.self-5ecf2f4d83e6260dabd6ec48e76d8ddebccf956563f34072221bf960d3b8c255.js?body=1" for ::1 at 2000-12-31 16:03:17 -0800
+
+
+Started GET "/assets/navigations.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2000-12-31 16:03:17 -0800
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2000-12-31 16:03:17 -0800
+
+
+Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2000-12-31 16:03:17 -0800
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2000-12-31 16:03:17 -0800
+
+
+Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2000-12-31 16:03:17 -0800
+
+
+Started GET "/assets/application.self-a11f478daebeec5d29c3a1412323e28b3880b1c782a87821e2cc07f12ccdc9f9.js?body=1" for ::1 at 2000-12-31 16:03:17 -0800
+
+
+Started GET "/" for ::1 at 2016-11-01 13:20:16 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 225ms (Views: 224.3ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/foundation_and_overrides.self-b8857805783c2044418bdc369597a77abf51832fc7b8e805727969f03487d245.css?body=1" for ::1 at 2016-11-01 13:20:16 -0700
+
+
+Started GET "/assets/navigations.self-adbeedb39f60a92d98ef06c7cd09ca89758a593ddfbab3b54152cda7e1b8001f.css?body=1" for ::1 at 2016-11-01 13:20:16 -0700
+
+
+Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-11-01 13:20:16 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-11-01 13:20:16 -0700
+
+
+Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-11-01 13:20:16 -0700
+
+
+Started GET "/assets/_settings.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-11-01 13:20:16 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-11-01 13:20:16 -0700
+
+
+Started GET "/assets/foundation.core.self-5ed6ae130919ff28bddc99eeb4be8985572bbe9b5f0b1ba1bc6afc599780cebb.js?body=1" for ::1 at 2016-11-01 13:20:16 -0700
+
+
+Started GET "/assets/application.self-129932ab10f1d1e5a4621657c626d393bb0718716393ddba5dc5b25d244bd3d9.css?body=1" for ::1 at 2016-11-01 13:20:16 -0700
+
+
+Started GET "/assets/foundation.abide.self-433e642defac6b495106bcaa7f2a33c07efc1dad4c3970721631af8a2b52affc.js?body=1" for ::1 at 2016-11-01 13:20:16 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-11-01 13:20:16 -0700
+
+
+Started GET "/assets/foundation.accordion.self-74319d8fb502eb290aeb24e5faa73fcaaf37eae2d7900078f340f0b24935730a.js?body=1" for ::1 at 2016-11-01 13:20:16 -0700
+
+
+Started GET "/assets/foundation.accordionMenu.self-e689c1884b4ff0c1954861fd62d4731ee547815641354364558281ba1c1f6e60.js?body=1" for ::1 at 2016-11-01 13:20:17 -0700
+
+
+Started GET "/assets/foundation.drilldown.self-90f2ea486ef245e95194cd7b3aa3c03f646920688d3f3da4ac9307a1ba218fd6.js?body=1" for ::1 at 2016-11-01 13:20:17 -0700
+
+
+Started GET "/assets/foundation.dropdown.self-9c145c2f5fc3a177fc41227f741c20dbb83e12e6ab9b3dc4d43ca29e5405b701.js?body=1" for ::1 at 2016-11-01 13:20:17 -0700
+
+
+Started GET "/assets/foundation.dropdownMenu.self-ad8b1b4094eeef0662f6bc2626fce4dbdbcd378208a40d581a69173f69cf9416.js?body=1" for ::1 at 2016-11-01 13:20:17 -0700
+
+
+Started GET "/assets/foundation.equalizer.self-a50f50dcba868d8fa943fbff15ebbf4cc4379642743eb66e01700817f1d9a22d.js?body=1" for ::1 at 2016-11-01 13:20:17 -0700
+
+
+Started GET "/assets/foundation.interchange.self-07189eb841f19152efe7b88e50292d9c099a53a4915af9020cf5eea06a8016ec.js?body=1" for ::1 at 2016-11-01 13:20:17 -0700
+
+
+Started GET "/assets/foundation.magellan.self-7f76db4c0535c95ec2987c59e161dbb0d95797e6472be23b256ed839f9ffbb3e.js?body=1" for ::1 at 2016-11-01 13:20:17 -0700
+
+
+Started GET "/assets/foundation.offcanvas.self-cf7da0443dc19b13c7142a0dbe858c9345298ba3c74c18fd45c32b8e6a36891d.js?body=1" for ::1 at 2016-11-01 13:20:17 -0700
+
+
+Started GET "/assets/foundation.responsiveMenu.self-04daa3af5d3c617fa7d588b45b56abd62539f5fde28756c7b4705de2aa10c4fd.js?body=1" for ::1 at 2016-11-01 13:20:17 -0700
+
+
+Started GET "/assets/foundation.responsiveToggle.self-15d27e3276f2100adb158282147ff40f7fc86c37419100d6101c600d2e4df01d.js?body=1" for ::1 at 2016-11-01 13:20:17 -0700
+
+
+Started GET "/assets/foundation.reveal.self-249f251973a73a8fb50acefd10e382278024146355b39e47ce1934dd64df09d7.js?body=1" for ::1 at 2016-11-01 13:20:17 -0700
+
+
+Started GET "/assets/foundation.orbit.self-8b50fe52746c0bbfdfdd344a7dbd1a26aa712d39b0aa95725ef3f207f999115d.js?body=1" for ::1 at 2016-11-01 13:20:17 -0700
+
+
+Started GET "/assets/foundation.slider.self-e5558a2d21fad44bba147be2d729ed96f984229d05f6d5550eb1c0c20b974f90.js?body=1" for ::1 at 2016-11-01 13:20:17 -0700
+
+
+Started GET "/assets/foundation.sticky.self-0b1d0a23ec6c183dfc64272e91d5450ee95821d7573f1fe7397dc810f3cd6926.js?body=1" for ::1 at 2016-11-01 13:20:17 -0700
+
+
+Started GET "/assets/foundation.tabs.self-2e641c12d280fc8c560d070d5caf1e97560e035f955335b1244fa0ee0bb7291c.js?body=1" for ::1 at 2016-11-01 13:20:17 -0700
+
+
+Started GET "/assets/foundation.toggler.self-e503f9a635124ad4578a03dc24e47ac4cdb922a60bac8c9c99d024da00b0bd52.js?body=1" for ::1 at 2016-11-01 13:20:17 -0700
+
+
+Started GET "/assets/foundation.tooltip.self-8d4d19184b9c2c60eec1cb32096180b09fd0d1bae8bd5bf8674c34187914943d.js?body=1" for ::1 at 2016-11-01 13:20:17 -0700
+
+
+Started GET "/assets/foundation.util.box.self-d575050eeb81d250e2a588d115b437fd2519a50712e1dce1766be2d87c5c7771.js?body=1" for ::1 at 2016-11-01 13:20:17 -0700
+
+
+Started GET "/assets/foundation.util.keyboard.self-9ddfc95ccf73ddc51ead522151b53198b30c6a400e9f3f0be725d55c30f01912.js?body=1" for ::1 at 2016-11-01 13:20:17 -0700
+
+
+Started GET "/assets/foundation.util.mediaQuery.self-a84e048af5284ea81753b0d6b2d3bd8fb37c06084a37c7cb91bde285e3634c52.js?body=1" for ::1 at 2016-11-01 13:20:17 -0700
+
+
+Started GET "/assets/foundation.util.motion.self-13d4248460aba53c0fd52e1ec0d5cb41c317b1c4d974bc5d905c9976dc9ef218.js?body=1" for ::1 at 2016-11-01 13:20:17 -0700
+
+
+Started GET "/assets/foundation.util.nest.self-4135250cfc78d23e55f714f091d937a962ee8728df21e8c6c8f78fb1a4bae0b0.js?body=1" for ::1 at 2016-11-01 13:20:17 -0700
+
+
+Started GET "/assets/foundation.util.timerAndImageLoader.self-79e11d64a4f9336021e9ff10bdc178973516badb1d919695d1ed56595b69c072.js?body=1" for ::1 at 2016-11-01 13:20:17 -0700
+
+
+Started GET "/assets/foundation.util.touch.self-95e098450fe69653246bdfa7f1e7fe7dba15348524771d7b2c54c7c4298fccb5.js?body=1" for ::1 at 2016-11-01 13:20:17 -0700
+
+
+Started GET "/assets/foundation.util.triggers.self-d40e6f5817093dcf4732709f7dad2922cd74945c353c32a1e22f66da25d9d3f1.js?body=1" for ::1 at 2016-11-01 13:20:17 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-11-01 13:20:17 -0700
+
+
+Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-11-01 13:20:17 -0700
+
+
+Started GET "/assets/foundation.self-5ecf2f4d83e6260dabd6ec48e76d8ddebccf956563f34072221bf960d3b8c255.js?body=1" for ::1 at 2016-11-01 13:20:17 -0700
+
+
+Started GET "/assets/navigations.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-11-01 13:20:17 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-11-01 13:20:17 -0700
+
+
+Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-11-01 13:20:17 -0700
+
+
+Started GET "/assets/application.self-a11f478daebeec5d29c3a1412323e28b3880b1c782a87821e2cc07f12ccdc9f9.js?body=1" for ::1 at 2016-11-01 13:20:17 -0700
+
+
+Started GET "/" for ::1 at 2016-11-01 13:22:16 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 415ms (Views: 414.5ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-e5d18903f5f883da2bd859fabd79d7e8a562eed45040312e4ced4f3136432b37.css?body=1" for ::1 at 2016-11-01 13:22:17 -0700
+
+
+Started GET "/" for ::1 at 2016-11-04 08:18:42 -0700
+ [1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (2.8ms)
+Completed 200 OK in 1856ms (Views: 1839.2ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-e5d18903f5f883da2bd859fabd79d7e8a562eed45040312e4ced4f3136432b37.css?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/foundation_and_overrides.self-b8857805783c2044418bdc369597a77abf51832fc7b8e805727969f03487d245.css?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/application.self-129932ab10f1d1e5a4621657c626d393bb0718716393ddba5dc5b25d244bd3d9.css?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/_settings.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/foundation.core.self-5ed6ae130919ff28bddc99eeb4be8985572bbe9b5f0b1ba1bc6afc599780cebb.js?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/foundation.abide.self-433e642defac6b495106bcaa7f2a33c07efc1dad4c3970721631af8a2b52affc.js?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/foundation.accordion.self-74319d8fb502eb290aeb24e5faa73fcaaf37eae2d7900078f340f0b24935730a.js?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/foundation.equalizer.self-a50f50dcba868d8fa943fbff15ebbf4cc4379642743eb66e01700817f1d9a22d.js?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/foundation.drilldown.self-90f2ea486ef245e95194cd7b3aa3c03f646920688d3f3da4ac9307a1ba218fd6.js?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/foundation.dropdown.self-9c145c2f5fc3a177fc41227f741c20dbb83e12e6ab9b3dc4d43ca29e5405b701.js?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/foundation.dropdownMenu.self-ad8b1b4094eeef0662f6bc2626fce4dbdbcd378208a40d581a69173f69cf9416.js?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/foundation.magellan.self-7f76db4c0535c95ec2987c59e161dbb0d95797e6472be23b256ed839f9ffbb3e.js?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/foundation.interchange.self-07189eb841f19152efe7b88e50292d9c099a53a4915af9020cf5eea06a8016ec.js?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/foundation.orbit.self-8b50fe52746c0bbfdfdd344a7dbd1a26aa712d39b0aa95725ef3f207f999115d.js?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/foundation.reveal.self-249f251973a73a8fb50acefd10e382278024146355b39e47ce1934dd64df09d7.js?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/foundation.responsiveMenu.self-04daa3af5d3c617fa7d588b45b56abd62539f5fde28756c7b4705de2aa10c4fd.js?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/foundation.responsiveToggle.self-15d27e3276f2100adb158282147ff40f7fc86c37419100d6101c600d2e4df01d.js?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/foundation.offcanvas.self-cf7da0443dc19b13c7142a0dbe858c9345298ba3c74c18fd45c32b8e6a36891d.js?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/foundation.accordionMenu.self-e689c1884b4ff0c1954861fd62d4731ee547815641354364558281ba1c1f6e60.js?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/foundation.slider.self-e5558a2d21fad44bba147be2d729ed96f984229d05f6d5550eb1c0c20b974f90.js?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/foundation.tabs.self-2e641c12d280fc8c560d070d5caf1e97560e035f955335b1244fa0ee0bb7291c.js?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/foundation.sticky.self-0b1d0a23ec6c183dfc64272e91d5450ee95821d7573f1fe7397dc810f3cd6926.js?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/foundation.tooltip.self-8d4d19184b9c2c60eec1cb32096180b09fd0d1bae8bd5bf8674c34187914943d.js?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/foundation.util.motion.self-13d4248460aba53c0fd52e1ec0d5cb41c317b1c4d974bc5d905c9976dc9ef218.js?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/foundation.util.box.self-d575050eeb81d250e2a588d115b437fd2519a50712e1dce1766be2d87c5c7771.js?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/foundation.toggler.self-e503f9a635124ad4578a03dc24e47ac4cdb922a60bac8c9c99d024da00b0bd52.js?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/foundation.util.keyboard.self-9ddfc95ccf73ddc51ead522151b53198b30c6a400e9f3f0be725d55c30f01912.js?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/foundation.util.nest.self-4135250cfc78d23e55f714f091d937a962ee8728df21e8c6c8f78fb1a4bae0b0.js?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/foundation.util.touch.self-95e098450fe69653246bdfa7f1e7fe7dba15348524771d7b2c54c7c4298fccb5.js?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/foundation.self-5ecf2f4d83e6260dabd6ec48e76d8ddebccf956563f34072221bf960d3b8c255.js?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/foundation.util.mediaQuery.self-a84e048af5284ea81753b0d6b2d3bd8fb37c06084a37c7cb91bde285e3634c52.js?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/foundation.util.triggers.self-d40e6f5817093dcf4732709f7dad2922cd74945c353c32a1e22f66da25d9d3f1.js?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-11-04 08:18:45 -0700
+
+
+Started GET "/assets/foundation.util.timerAndImageLoader.self-79e11d64a4f9336021e9ff10bdc178973516badb1d919695d1ed56595b69c072.js?body=1" for ::1 at 2016-11-04 08:18:46 -0700
+
+
+Started GET "/assets/navigations.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-11-04 08:18:46 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-11-04 08:18:46 -0700
+
+
+Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-11-04 08:18:46 -0700
+
+
+Started GET "/assets/application.self-a11f478daebeec5d29c3a1412323e28b3880b1c782a87821e2cc07f12ccdc9f9.js?body=1" for ::1 at 2016-11-04 08:18:46 -0700
+
+
+Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-11-04 08:18:46 -0700
+
+
+Started GET "/" for ::1 at 2016-11-04 08:46:55 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (1.6ms)
+Completed 200 OK in 629ms (Views: 621.2ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-1a2c331d3a9762d7a734ce890344083448378d3e8c96b42fee63089562c3b505.css?body=1" for ::1 at 2016-11-04 08:46:56 -0700
+
+
+Started GET "/" for ::1 at 2016-11-04 08:47:49 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (2.7ms)
+Completed 200 OK in 357ms (Views: 356.4ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-11-04 08:48:04 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.9ms)
+Completed 200 OK in 354ms (Views: 353.6ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-11-04 08:48:23 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (1.1ms)
+Completed 200 OK in 353ms (Views: 352.5ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-11-04 08:50:07 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (1.0ms)
+Completed 200 OK in 259ms (Views: 258.7ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-11-04 08:51:08 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 436ms (Views: 435.3ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-2a12c342ab4b69c039c00b28cd097c264fabcc59b641848c93be416633b088d1.css?body=1" for ::1 at 2016-11-04 08:51:08 -0700
+
+
+Started GET "/" for ::1 at 2016-11-04 08:52:01 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.1ms)
+Completed 500 Internal Server Error in 79ms (ActiveRecord: 0.0ms)
+
+Sass::SyntaxError - Invalid CSS after " color: ": expected expression (e.g. 1px, bold), was ";":
+ sass (3.4.22) lib/sass/scss/parser.rb:1189:in `expected'
+ sass (3.4.22) lib/sass/script/lexer.rb:229:in `expected!'
+ sass (3.4.22) lib/sass/script/parser.rb:704:in `assert_expr'
+ sass (3.4.22) lib/sass/script/parser.rb:75:in `parse'
+ sass (3.4.22) lib/sass/scss/parser.rb:1051:in `sass_script'
+ sass (3.4.22) lib/sass/scss/parser.rb:897:in `value!'
+ sass (3.4.22) lib/sass/scss/parser.rb:769:in `block in try_declaration'
+ sass (3.4.22) lib/sass/scss/parser.rb:1165:in `rethrow'
+ sass (3.4.22) lib/sass/scss/parser.rb:782:in `try_declaration'
+ sass (3.4.22) lib/sass/scss/parser.rb:711:in `declaration_or_ruleset'
+ sass (3.4.22) lib/sass/scss/parser.rb:676:in `block_child'
+ sass (3.4.22) lib/sass/scss/parser.rb:668:in `block_contents'
+ sass (3.4.22) lib/sass/scss/parser.rb:657:in `block'
+ sass (3.4.22) lib/sass/scss/parser.rb:649:in `ruleset'
+ sass (3.4.22) lib/sass/scss/parser.rb:675:in `block_child'
+ sass (3.4.22) lib/sass/scss/parser.rb:668:in `block_contents'
+ sass (3.4.22) lib/sass/scss/parser.rb:125:in `stylesheet'
+ sass (3.4.22) lib/sass/scss/parser.rb:41:in `parse'
+ sass (3.4.22) lib/sass/engine.rb:406:in `_to_tree'
+ sass (3.4.22) lib/sass/engine.rb:281:in `render'
+ sass-rails (5.0.6) lib/sass/rails/template.rb:47:in `evaluate'
+ tilt (2.0.5) lib/tilt/template.rb:102:in `render'
+ sprockets (3.7.0) lib/sprockets/legacy_tilt_processor.rb:25:in `call'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:75:in `call_processor'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:56:in `call_processors'
+ sprockets (3.7.0) lib/sprockets/loader.rb:134:in `load_from_unloaded'
+ sprockets (3.7.0) lib/sprockets/loader.rb:60:in `block in load'
+ sprockets (3.7.0) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
+ sprockets (3.7.0) lib/sprockets/loader.rb:44:in `load'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:20:in `block in initialize'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:47:in `load'
+ sprockets (3.7.0) lib/sprockets/bundle.rb:23:in `block in call'
+ sprockets (3.7.0) lib/sprockets/utils.rb:196:in `dfs'
+ sprockets (3.7.0) lib/sprockets/bundle.rb:24:in `call'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:75:in `call_processor'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
+ sprockets (3.7.0) lib/sprockets/processor_utils.rb:56:in `call_processors'
+ sprockets (3.7.0) lib/sprockets/loader.rb:134:in `load_from_unloaded'
+ sprockets (3.7.0) lib/sprockets/loader.rb:60:in `block in load'
+ sprockets (3.7.0) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
+ sprockets (3.7.0) lib/sprockets/loader.rb:44:in `load'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:20:in `block in initialize'
+ sprockets (3.7.0) lib/sprockets/cached_environment.rb:47:in `load'
+ sprockets (3.7.0) lib/sprockets/base.rb:66:in `find_asset'
+ sprockets (3.7.0) lib/sprockets/base.rb:92:in `[]'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:355:in `find_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:347:in `find_debug_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:241:in `resolve_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag'
+ sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag'
+ app/views/layouts/application.html.erb:9:in `_app_views_layouts_application_html_erb___3791509809203515305_70317782810540'
+ actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
+ activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
+ actionview (4.2.7) lib/action_view/template.rb:143:in `render'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
+ actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
+ actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
+ actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
+ actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
+ actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
+ actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
+ activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
+ actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
+ actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
+ activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
+ activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
+ actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
+ actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
+ activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
+ actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
+ actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
+ actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
+ actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
+ actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
+ actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
+ 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'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
+ better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call'
+ web-console (2.3.0) lib/web_console/middleware.rb:18:in `call'
+ 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/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
+ /Users/brandimilligan/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
+
+
+
+Started POST "/__better_errors/8fd7c3c9fee794fb/variables" for ::1 at 2016-11-04 08:52:02 -0700
+
+
+Started GET "/" for ::1 at 2016-11-04 08:53:50 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 404ms (Views: 402.8ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-b933141091c08770bc894e28d66ee4e1bfb7923177da9e2f63708e36d005dd7c.css?body=1" for ::1 at 2016-11-04 08:53:50 -0700
+
+
+Started GET "/" for ::1 at 2016-11-04 08:54:08 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 362ms (Views: 361.1ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-b0ef6937c2dc011f74c215c0633e0892a8bff4b6a8c9ed7b2d35229f4b2e5e42.css?body=1" for ::1 at 2016-11-04 08:54:08 -0700
+
+
+Started GET "/" for ::1 at 2016-11-04 08:54:47 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 503ms (Views: 501.9ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-9d2dc37a85d6c47baf17d9c541536c776da3f9d52d5edcf9aa6aaf0c3c7d3fe4.css?body=1" for ::1 at 2016-11-04 08:54:47 -0700
+
+
+Started GET "/" for ::1 at 2016-11-04 08:55:14 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 671ms (Views: 670.3ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-8faa96afe34a33791441dda30ec39159941eca410e30d2b0a08e8289694f7fc9.css?body=1" for ::1 at 2016-11-04 08:55:15 -0700
+
+
+Started GET "/" for ::1 at 2016-11-04 08:57:06 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.8ms)
+Completed 200 OK in 424ms (Views: 423.2ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-11f67a0d83ceb33b8a8576214bae5822de4ce820d2cb04d678b501f70921568c.css?body=1" for ::1 at 2016-11-04 08:57:07 -0700
+
+
+Started GET "/" for ::1 at 2016-11-04 08:58:07 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 497ms (Views: 496.1ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-70574cc769307886934ffdac29e8cad806d7e9e8a83ef8cb3e50ac9df81dbc3c.css?body=1" for ::1 at 2016-11-04 08:58:08 -0700
+
+
+Started GET "/" for ::1 at 2016-11-04 08:59:55 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (1.1ms)
+Completed 200 OK in 400ms (Views: 399.7ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-bb7f56db5e850309635d28cfe02cd8908a2dea882a8da4ca0afec7907f05af65.css?body=1" for ::1 at 2016-11-04 08:59:55 -0700
+
+
+Started GET "/" for ::1 at 2016-11-04 09:02:18 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (1.0ms)
+Completed 200 OK in 431ms (Views: 430.4ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-1f604b9371e983abe6206b8e8d00625df94fc50b0b70f04847a75ec275d91c6f.css?body=1" for ::1 at 2016-11-04 09:02:18 -0700
+
+
+Started GET "/" for ::1 at 2016-11-04 09:03:35 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.8ms)
+Completed 200 OK in 359ms (Views: 358.2ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-11-04 09:05:05 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.8ms)
+Completed 200 OK in 334ms (Views: 333.4ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-11-04 09:05:31 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 403ms (Views: 402.2ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-16dbc26befb9beec8daafec1fc7d6d3a9555c82953d270891b2f4e2ec3c03b8c.css?body=1" for ::1 at 2016-11-04 09:05:31 -0700
+
+
+Started GET "/" for ::1 at 2016-11-04 09:05:42 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 445ms (Views: 444.3ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-11-04 09:06:44 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.8ms)
+Completed 200 OK in 385ms (Views: 384.7ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-dd7230b5f1b69cf5a71b3bd35b8114adb64797056446c39b9dc7163f58b11ab3.css?body=1" for ::1 at 2016-11-04 09:06:44 -0700
+
+
+Started GET "/" for ::1 at 2016-11-04 09:07:22 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.9ms)
+Completed 200 OK in 378ms (Views: 377.6ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-11-04 09:07:52 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 459ms (Views: 458.4ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-51cd59cba4fd07fb1f3b023146baf8c83129b20c2a4e21577dd682799c917b0b.css?body=1" for ::1 at 2016-11-04 09:07:52 -0700
+
+
+Started GET "/" for ::1 at 2016-11-04 09:08:09 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 517ms (Views: 516.7ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-6fca9c698611427c071730751ec584eb638fd031b94937615b0f8703954eac36.css?body=1" for ::1 at 2016-11-04 09:08:10 -0700
+
+
+Started GET "/" for ::1 at 2016-11-04 09:08:31 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.1ms)
+Completed 200 OK in 287ms (Views: 286.6ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-91f7941ba74f5b26556b2bca738197e7dccb5fd0329205c1ab087bcec732d662.css?body=1" for ::1 at 2016-11-04 09:08:31 -0700
+
+
+Started GET "/" for ::1 at 2016-11-04 09:08:44 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.2ms)
+Completed 200 OK in 404ms (Views: 403.4ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-bd9b90035c6885ae1d5517889fdb32a9d19fa6a58f1abc5c202f97957adafa97.css?body=1" for ::1 at 2016-11-04 09:08:44 -0700
+
+
+Started GET "/" for ::1 at 2016-11-04 09:08:57 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.1ms)
+Completed 200 OK in 526ms (Views: 525.6ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-0367e3ef8553c4a67eccc268bd1af329ef6ba0fd2aa1b430ca3e2282d06f8033.css?body=1" for ::1 at 2016-11-04 09:08:58 -0700
+
+
+Started GET "/" for ::1 at 2016-11-04 09:09:45 -0700
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.1ms)
+Completed 200 OK in 439ms (Views: 438.5ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-f5d6245ad275f88f4be1d5266332d18b126e911bc688dec4dfd8444cccf0b4e0.css?body=1" for ::1 at 2016-11-04 09:09:45 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-11-04 09:18:19 -0700
+
+
+Started GET "/auth/github" for ::1 at 2016-11-04 09:18:20 -0700
+
+
+Started GET "/auth/github/callback?code=1c59a61806ee001b00c5&state=8fc632743ff95069be9c908631c0ef90ac7cd949e6ab0a66" for ::1 at 2016-11-04 09:18:20 -0700
+Processing by SessionsController#create as HTML
+ Parameters: {"code"=>"1c59a61806ee001b00c5", "state"=>"8fc632743ff95069be9c908631c0ef90ac7cd949e6ab0a66", "provider"=>"github"}
+ [1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "17533030"], ["provider", "github"]]
+Redirected to http://localhost:3000/users/1/edit
+Completed 302 Found in 67ms (ActiveRecord: 1.2ms)
+
+
+Started GET "/users/1/edit" for ::1 at 2016-11-04 09:18:22 -0700
+Processing by UsersController#edit as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
+ [1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ Rendered users/edit.html.erb within layouts/application (38.7ms)
+Completed 200 OK in 425ms (Views: 422.2ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/assets/_settings.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-11-04 09:18:22 -0700
+
+
+Started GET "/assets/foundation_and_overrides.self-b8857805783c2044418bdc369597a77abf51832fc7b8e805727969f03487d245.css?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/navigations.self-f5d6245ad275f88f4be1d5266332d18b126e911bc688dec4dfd8444cccf0b4e0.css?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/application.self-129932ab10f1d1e5a4621657c626d393bb0718716393ddba5dc5b25d244bd3d9.css?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/foundation.core.self-5ed6ae130919ff28bddc99eeb4be8985572bbe9b5f0b1ba1bc6afc599780cebb.js?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/foundation.abide.self-433e642defac6b495106bcaa7f2a33c07efc1dad4c3970721631af8a2b52affc.js?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/foundation.accordion.self-74319d8fb502eb290aeb24e5faa73fcaaf37eae2d7900078f340f0b24935730a.js?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/foundation.dropdown.self-9c145c2f5fc3a177fc41227f741c20dbb83e12e6ab9b3dc4d43ca29e5405b701.js?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/foundation.accordionMenu.self-e689c1884b4ff0c1954861fd62d4731ee547815641354364558281ba1c1f6e60.js?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/foundation.dropdownMenu.self-ad8b1b4094eeef0662f6bc2626fce4dbdbcd378208a40d581a69173f69cf9416.js?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/foundation.equalizer.self-a50f50dcba868d8fa943fbff15ebbf4cc4379642743eb66e01700817f1d9a22d.js?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/foundation.interchange.self-07189eb841f19152efe7b88e50292d9c099a53a4915af9020cf5eea06a8016ec.js?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/foundation.drilldown.self-90f2ea486ef245e95194cd7b3aa3c03f646920688d3f3da4ac9307a1ba218fd6.js?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/foundation.magellan.self-7f76db4c0535c95ec2987c59e161dbb0d95797e6472be23b256ed839f9ffbb3e.js?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/foundation.offcanvas.self-cf7da0443dc19b13c7142a0dbe858c9345298ba3c74c18fd45c32b8e6a36891d.js?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/foundation.orbit.self-8b50fe52746c0bbfdfdd344a7dbd1a26aa712d39b0aa95725ef3f207f999115d.js?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/foundation.responsiveToggle.self-15d27e3276f2100adb158282147ff40f7fc86c37419100d6101c600d2e4df01d.js?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/foundation.responsiveMenu.self-04daa3af5d3c617fa7d588b45b56abd62539f5fde28756c7b4705de2aa10c4fd.js?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/foundation.reveal.self-249f251973a73a8fb50acefd10e382278024146355b39e47ce1934dd64df09d7.js?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/foundation.slider.self-e5558a2d21fad44bba147be2d729ed96f984229d05f6d5550eb1c0c20b974f90.js?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/foundation.sticky.self-0b1d0a23ec6c183dfc64272e91d5450ee95821d7573f1fe7397dc810f3cd6926.js?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/foundation.tabs.self-2e641c12d280fc8c560d070d5caf1e97560e035f955335b1244fa0ee0bb7291c.js?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/foundation.toggler.self-e503f9a635124ad4578a03dc24e47ac4cdb922a60bac8c9c99d024da00b0bd52.js?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/foundation.util.box.self-d575050eeb81d250e2a588d115b437fd2519a50712e1dce1766be2d87c5c7771.js?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/foundation.tooltip.self-8d4d19184b9c2c60eec1cb32096180b09fd0d1bae8bd5bf8674c34187914943d.js?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/foundation.util.keyboard.self-9ddfc95ccf73ddc51ead522151b53198b30c6a400e9f3f0be725d55c30f01912.js?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/foundation.util.mediaQuery.self-a84e048af5284ea81753b0d6b2d3bd8fb37c06084a37c7cb91bde285e3634c52.js?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/foundation.util.motion.self-13d4248460aba53c0fd52e1ec0d5cb41c317b1c4d974bc5d905c9976dc9ef218.js?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/foundation.util.nest.self-4135250cfc78d23e55f714f091d937a962ee8728df21e8c6c8f78fb1a4bae0b0.js?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/foundation.util.timerAndImageLoader.self-79e11d64a4f9336021e9ff10bdc178973516badb1d919695d1ed56595b69c072.js?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/foundation.util.touch.self-95e098450fe69653246bdfa7f1e7fe7dba15348524771d7b2c54c7c4298fccb5.js?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/foundation.util.triggers.self-d40e6f5817093dcf4732709f7dad2922cd74945c353c32a1e22f66da25d9d3f1.js?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/foundation.self-5ecf2f4d83e6260dabd6ec48e76d8ddebccf956563f34072221bf960d3b8c255.js?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/navigations.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-11-04 09:18:23 -0700
+
+
+Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-11-04 09:18:24 -0700
+
+
+Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-11-04 09:18:24 -0700
+
+
+Started GET "/assets/application.self-a11f478daebeec5d29c3a1412323e28b3880b1c782a87821e2cc07f12ccdc9f9.js?body=1" for ::1 at 2016-11-04 09:18:24 -0700
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-11-04 09:18:24 -0700
+
+
+Started PATCH "/users/1/update" for ::1 at 2016-11-04 09:18:27 -0700
+Processing by UsersController#update as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"LTdDNTiC9+4IJlxrm3V2BxOzv/hsJKcu3ltgOBVw+gDEcXz3mEc6d2VZMxjadsed6v/q7TKk6b7l4IZZ2gh/zQ==", "user"=>{"profile_name"=>"b.m.p", "email"=>"milligan.brandi@gmail.com", "name"=>"Brandi Milligan Phillips"}, "commit"=>"Save", "id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
+ [1m[35mCACHE (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mUser Exists (0.2ms)[0m SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'milligan.brandi@gmail.com' AND "users"."id" != 1) LIMIT 1
+ [1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE ("users"."uid" = '17533030' AND "users"."id" != 1) LIMIT 1[0m
+ [1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE ("users"."profile_name" = 'b.m.p' AND "users"."id" != 1) LIMIT 1
+ [1m[36m (0.1ms)[0m [1mcommit transaction[0m
+Redirected to http://localhost:3000/tasks/index
+Completed 302 Found in 27ms (ActiveRecord: 1.1ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-11-04 09:18:27 -0700
+Processing by TasksController#index as HTML
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ?[0m [["user_id", 1]]
+ Rendered tasks/index.html.erb within layouts/application (15.5ms)
+Completed 200 OK in 344ms (Views: 332.4ms | ActiveRecord: 0.8ms)
+
+
+Started GET "/" for ::1 at 2016-11-10 15:23:09 -0800
+ [1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (5.1ms)
+Completed 200 OK in 1676ms (Views: 1652.2ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-11-10 15:23:12 -0800
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.5ms)
+Completed 200 OK in 153ms (Views: 152.0ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-11-10 15:23:12 -0800
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-11-10 15:23:12 -0800
+
+
+Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-11-10 15:23:12 -0800
+
+
+Started GET "/assets/application.self-38cf7d6923eaf57d1e60373935c95de287d6eea945d4696323854a5dc3237072.css?body=1" for ::1 at 2016-11-10 15:23:12 -0800
+
+
+Started GET "/assets/navigations.self-5e8431ed0ae41d6130505b5da0cd268dc016abf008d8754c7c94c6e4168f9382.css?body=1" for ::1 at 2016-11-10 15:23:12 -0800
+
+
+Started GET "/assets/navigations.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-11-10 15:23:12 -0800
+
+
+Started GET "/assets/application.self-a11f478daebeec5d29c3a1412323e28b3880b1c782a87821e2cc07f12ccdc9f9.js?body=1" for ::1 at 2016-11-10 15:23:12 -0800
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-11-10 15:23:12 -0800
+
+
+Started GET "/" for ::1 at 2016-11-10 15:25:02 -0800
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (2.2ms)
+Completed 200 OK in 402ms (Views: 401.7ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-eea42aed8251ef6b94acaf1aad3e915b753dbd7e716c8158cace039f90ae1a12.css?body=1" for ::1 at 2016-11-10 15:25:02 -0800
+
+
+Started GET "/" for ::1 at 2016-11-10 15:25:40 -0800
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (1.2ms)
+Completed 200 OK in 378ms (Views: 376.8ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-11-10 15:25:59 -0800
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.4ms)
+Completed 200 OK in 486ms (Views: 485.0ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-3ebe516ee15458e30f30aa69cf93060d692ccd3ff2f6e2e53933f3e5ae123918.css?body=1" for ::1 at 2016-11-10 15:25:59 -0800
+
+
+Started GET "/" for ::1 at 2016-11-10 15:26:07 -0800
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.8ms)
+Completed 200 OK in 350ms (Views: 348.7ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-e6a00bc734634df148e41bfc58036a1589e22dc54d930944cd2dde4873049356.css?body=1" for ::1 at 2016-11-10 15:26:08 -0800
+
+
+Started GET "/" for ::1 at 2016-11-10 15:27:16 -0800
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.4ms)
+Completed 200 OK in 312ms (Views: 311.6ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-277a58cc89b199809e768a2c5135e639ba4d1f0d04f2cd6f27ddcd729d6f007f.css?body=1" for ::1 at 2016-11-10 15:27:16 -0800
+
+
+Started GET "/" for ::1 at 2016-11-10 15:27:38 -0800
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 306ms (Views: 305.5ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-0ca87cdb38685f0a2bb437bbcfe04d608b7eeac5593bc1d77b6ae06f08c6005f.css?body=1" for ::1 at 2016-11-10 15:27:38 -0800
+
+
+Started GET "/" for ::1 at 2016-11-10 15:28:28 -0800
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (1.1ms)
+Completed 200 OK in 262ms (Views: 261.1ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-11-10 15:30:04 -0800
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (1.1ms)
+Completed 200 OK in 221ms (Views: 220.2ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-11-10 15:30:40 -0800
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 470ms (Views: 469.3ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-3008b81c63a23248286df84722a849bfaad66060a44222e60dcf74212a4b2a16.css?body=1" for ::1 at 2016-11-10 15:30:40 -0800
+
+
+Started GET "/" for ::1 at 2016-11-10 15:31:01 -0800
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.5ms)
+Completed 200 OK in 526ms (Views: 525.2ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-6b6bcef341e195cb865da728fcd8ecda4ee37f2e2a6ac44f51a5a0581f8d27de.css?body=1" for ::1 at 2016-11-10 15:31:02 -0800
+
+
+Started GET "/" for ::1 at 2016-11-10 15:31:25 -0800
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.6ms)
+Completed 200 OK in 422ms (Views: 421.7ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-72851147234a71ccb8a53170d72cf148e40b70160cf846b01713fdc2a9c0b1be.css?body=1" for ::1 at 2016-11-10 15:31:25 -0800
+
+
+Started GET "/" for ::1 at 2016-11-10 15:31:37 -0800
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.4ms)
+Completed 200 OK in 274ms (Views: 273.3ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-11-10 15:31:51 -0800
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 468ms (Views: 465.9ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/assets/navigations.self-e91693caab6a9039236e97929acac35fdc9e3020259450a1c83f5fac96d3dc4f.css?body=1" for ::1 at 2016-11-10 15:31:52 -0800
+
+
+Started DELETE "/sessions/1/destroy" for ::1 at 2016-11-10 15:31:57 -0800
+Processing by SessionsController#destroy as HTML
+ Parameters: {"authenticity_token"=>"QkGmwGEi1muVkQjsDOYK5qajzRpHHxp2+kEtvNK9/b2rB5kCwecb8vjuZ59N5bt8X++YDxmfVObB+svdHcV4cA==", "id"=>"1"}
+Redirected to http://localhost:3000/
+Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
+
+
+Started GET "/" for ::1 at 2016-11-10 15:31:57 -0800
+Processing by NavigationsController#index as HTML
+ Rendered navigations/index.html.erb within layouts/application (0.3ms)
+Completed 200 OK in 297ms (Views: 295.9ms | ActiveRecord: 0.0ms)
+
+
+Started GET "/auth/github" for ::1 at 2016-11-10 15:32:01 -0800
+
+
+Started GET "/auth/github" for ::1 at 2016-11-10 15:32:02 -0800
+
+
+Started GET "/auth/github/callback?code=b96838dc72926324586f&state=6e0061e926e0aac8af7c54c64f84ebc80e205eb5b02eb960" for ::1 at 2016-11-10 15:32:02 -0800
+Processing by SessionsController#create as HTML
+ Parameters: {"code"=>"b96838dc72926324586f", "state"=>"6e0061e926e0aac8af7c54c64f84ebc80e205eb5b02eb960", "provider"=>"github"}
+ [1m[35mUser Load (0.7ms)[0m SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "17533030"], ["provider", "github"]]
+Redirected to http://localhost:3000/users/1/edit
+Completed 302 Found in 42ms (ActiveRecord: 1.3ms)
+
+
+Started GET "/users/1/edit" for ::1 at 2016-11-10 15:32:04 -0800
+Processing by UsersController#edit as HTML
+ Parameters: {"id"=>"1"}
+ [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
+ [1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ Rendered users/edit.html.erb within layouts/application (47.9ms)
+Completed 200 OK in 288ms (Views: 285.2ms | ActiveRecord: 0.3ms)
+
+
+Started GET "/assets/_settings.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/foundation_and_overrides.self-b8857805783c2044418bdc369597a77abf51832fc7b8e805727969f03487d245.css?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/navigations.self-e91693caab6a9039236e97929acac35fdc9e3020259450a1c83f5fac96d3dc4f.css?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/users.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/application.self-38cf7d6923eaf57d1e60373935c95de287d6eea945d4696323854a5dc3237072.css?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/foundation.core.self-5ed6ae130919ff28bddc99eeb4be8985572bbe9b5f0b1ba1bc6afc599780cebb.js?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/foundation.abide.self-433e642defac6b495106bcaa7f2a33c07efc1dad4c3970721631af8a2b52affc.js?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/foundation.accordion.self-74319d8fb502eb290aeb24e5faa73fcaaf37eae2d7900078f340f0b24935730a.js?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/foundation.accordionMenu.self-e689c1884b4ff0c1954861fd62d4731ee547815641354364558281ba1c1f6e60.js?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/foundation.drilldown.self-90f2ea486ef245e95194cd7b3aa3c03f646920688d3f3da4ac9307a1ba218fd6.js?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/foundation.dropdown.self-9c145c2f5fc3a177fc41227f741c20dbb83e12e6ab9b3dc4d43ca29e5405b701.js?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/foundation.dropdownMenu.self-ad8b1b4094eeef0662f6bc2626fce4dbdbcd378208a40d581a69173f69cf9416.js?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/foundation.equalizer.self-a50f50dcba868d8fa943fbff15ebbf4cc4379642743eb66e01700817f1d9a22d.js?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/foundation.interchange.self-07189eb841f19152efe7b88e50292d9c099a53a4915af9020cf5eea06a8016ec.js?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/foundation.magellan.self-7f76db4c0535c95ec2987c59e161dbb0d95797e6472be23b256ed839f9ffbb3e.js?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/foundation.offcanvas.self-cf7da0443dc19b13c7142a0dbe858c9345298ba3c74c18fd45c32b8e6a36891d.js?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/foundation.orbit.self-8b50fe52746c0bbfdfdd344a7dbd1a26aa712d39b0aa95725ef3f207f999115d.js?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/foundation.responsiveMenu.self-04daa3af5d3c617fa7d588b45b56abd62539f5fde28756c7b4705de2aa10c4fd.js?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/foundation.responsiveToggle.self-15d27e3276f2100adb158282147ff40f7fc86c37419100d6101c600d2e4df01d.js?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/foundation.slider.self-e5558a2d21fad44bba147be2d729ed96f984229d05f6d5550eb1c0c20b974f90.js?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/foundation.reveal.self-249f251973a73a8fb50acefd10e382278024146355b39e47ce1934dd64df09d7.js?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/foundation.sticky.self-0b1d0a23ec6c183dfc64272e91d5450ee95821d7573f1fe7397dc810f3cd6926.js?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/foundation.tabs.self-2e641c12d280fc8c560d070d5caf1e97560e035f955335b1244fa0ee0bb7291c.js?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/foundation.toggler.self-e503f9a635124ad4578a03dc24e47ac4cdb922a60bac8c9c99d024da00b0bd52.js?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/foundation.tooltip.self-8d4d19184b9c2c60eec1cb32096180b09fd0d1bae8bd5bf8674c34187914943d.js?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/foundation.util.box.self-d575050eeb81d250e2a588d115b437fd2519a50712e1dce1766be2d87c5c7771.js?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/foundation.util.keyboard.self-9ddfc95ccf73ddc51ead522151b53198b30c6a400e9f3f0be725d55c30f01912.js?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/foundation.util.mediaQuery.self-a84e048af5284ea81753b0d6b2d3bd8fb37c06084a37c7cb91bde285e3634c52.js?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/foundation.util.motion.self-13d4248460aba53c0fd52e1ec0d5cb41c317b1c4d974bc5d905c9976dc9ef218.js?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/foundation.util.nest.self-4135250cfc78d23e55f714f091d937a962ee8728df21e8c6c8f78fb1a4bae0b0.js?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/foundation.util.timerAndImageLoader.self-79e11d64a4f9336021e9ff10bdc178973516badb1d919695d1ed56595b69c072.js?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/foundation.util.touch.self-95e098450fe69653246bdfa7f1e7fe7dba15348524771d7b2c54c7c4298fccb5.js?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/foundation.self-5ecf2f4d83e6260dabd6ec48e76d8ddebccf956563f34072221bf960d3b8c255.js?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/foundation.util.triggers.self-d40e6f5817093dcf4732709f7dad2922cd74945c353c32a1e22f66da25d9d3f1.js?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/navigations.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-11-10 15:32:05 -0800
+
+
+Started GET "/assets/application.self-a11f478daebeec5d29c3a1412323e28b3880b1c782a87821e2cc07f12ccdc9f9.js?body=1" for ::1 at 2016-11-10 15:32:06 -0800
+
+
+Started GET "/assets/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-11-10 15:32:06 -0800
+
+
+Started PATCH "/users/1/update" for ::1 at 2016-11-10 15:32:09 -0800
+Processing by UsersController#update as HTML
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"IX2WoknTypD/dINJ6gAM3gu6m/gLZC8x1QA5z8G3m3bIO6lg6RYHCZIL7DqrA71E8vbO7VXkYaHuu9+uDs8euw==", "user"=>{"profile_name"=>"b.m.p", "email"=>"milligan.brandi@gmail.com", "name"=>"Brandi Milligan Phillips"}, "commit"=>"Save", "id"=>"1"}
+ [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
+ [1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mUser Exists (0.2ms)[0m SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'milligan.brandi@gmail.com' AND "users"."id" != 1) LIMIT 1
+ [1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE ("users"."uid" = '17533030' AND "users"."id" != 1) LIMIT 1[0m
+ [1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE ("users"."profile_name" = 'b.m.p' AND "users"."id" != 1) LIMIT 1
+ [1m[36m (0.1ms)[0m [1mcommit transaction[0m
+Redirected to http://localhost:3000/tasks/index
+Completed 302 Found in 28ms (ActiveRecord: 0.8ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-11-10 15:32:09 -0800
+Processing by TasksController#index as HTML
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ [1m[36mTask Load (0.8ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ?[0m [["user_id", 1]]
+ Rendered tasks/index.html.erb within layouts/application (16.2ms)
+Completed 200 OK in 326ms (Views: 315.5ms | ActiveRecord: 1.4ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-11-10 15:40:19 -0800
+Processing by TasksController#index as HTML
+ [1m[35mUser Load (1.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ Rendered shared/_header.erb (5.0ms)
+ [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ?[0m [["user_id", 1]]
+ Rendered tasks/index.html.erb within layouts/application (83.5ms)
+Completed 200 OK in 791ms (Views: 765.3ms | ActiveRecord: 1.7ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-11-10 15:40:32 -0800
+Processing by TasksController#index as HTML
+ [1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ Rendered shared/_header.erb (0.7ms)
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ?[0m [["user_id", 1]]
+ Rendered tasks/index.html.erb within layouts/application (8.2ms)
+Completed 200 OK in 420ms (Views: 417.2ms | ActiveRecord: 0.6ms)
+
+
+Started GET "/tasks/new" for ::1 at 2016-11-10 15:40:35 -0800
+Processing by TasksController#new as HTML
+ [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ Rendered shared/_header.erb (0.6ms)
+ Rendered shared/_form.html.erb (12.3ms)
+ Rendered shared/_footer.erb (1.0ms)
+ Rendered tasks/new.html.erb within layouts/application (24.2ms)
+Completed 200 OK in 524ms (Views: 517.8ms | ActiveRecord: 0.2ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-11-10 15:40:41 -0800
+Processing by TasksController#index as HTML
+ [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
+ Rendered shared/_header.erb (0.6ms)
+ [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? [["user_id", 1]]
+ Rendered tasks/index.html.erb within layouts/application (11.4ms)
+Completed 200 OK in 372ms (Views: 363.2ms | ActiveRecord: 0.3ms)
+
+
+Started PATCH "/tasks/4/mark_complete" for ::1 at 2016-11-10 15:40:47 -0800
+Processing by TasksController#mark_complete as HTML
+ Parameters: {"authenticity_token"=>"QaVxElPLZykpGM5ro7lQwrTKbZQeI8prvKqE7vLjx+uo407Q8w6qsERnoRjiuuFYTYY4gUCjhPuHEWKPPZtCJg==", "id"=>"4"}
+ [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
+ [1m[35mTask Load (0.4ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 4]]
+ [1m[36m (0.2ms)[0m [1mbegin transaction[0m
+ [1m[35mSQL (1.0ms)[0m UPDATE "tasks" SET "completion_status" = ?, "completion_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_status", "t"], ["completion_date", "2016-11-10 23:40:47.121642"], ["updated_at", "2016-11-10 23:40:47.123153"], ["id", 4]]
+ [1m[36m (1.2ms)[0m [1mcommit transaction[0m
+Redirected to http://localhost:3000/tasks/index
+Completed 302 Found in 22ms (ActiveRecord: 3.0ms)
+
+
+Started GET "/tasks/index" for ::1 at 2016-11-10 15:40:47 -0800
+Processing by TasksController#index as HTML
+ [1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
+ Rendered shared/_header.erb (0.7ms)
+ [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ?[0m [["user_id", 1]]
+ Rendered tasks/index.html.erb within layouts/application (7.1ms)
+Completed 200 OK in 444ms (Views: 440.4ms | ActiveRecord: 0.6ms)
diff --git a/log/test.log b/log/test.log
new file mode 100644
index 000000000..f10670c9b
--- /dev/null
+++ b/log/test.log
@@ -0,0 +1,60 @@
+ [1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mFixture Delete (0.7ms)[0m [1mDELETE FROM "tasks"[0m
+ [1m[35m (0.7ms)[0m rollback transaction
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mFixture Delete (0.3ms)[0m DELETE FROM "tasks"
+ [1m[36m (0.5ms)[0m [1mrollback transaction[0m
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mFixture Delete (28.4ms)[0m [1mDELETE FROM "tasks"[0m
+ [1m[35m (3.5ms)[0m rollback transaction
+ [1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mFixture Delete (0.7ms)[0m [1mDELETE FROM "tasks"[0m
+ [1m[35m (0.4ms)[0m rollback transaction
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mFixture Delete (0.3ms)[0m DELETE FROM "tasks"
+ [1m[36m (0.4ms)[0m [1mrollback transaction[0m
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mFixture Delete (3.3ms)[0m [1mDELETE FROM "tasks"[0m
+ [1m[35m (0.7ms)[0m rollback transaction
+ [1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mFixture Delete (2.2ms)[0m [1mDELETE FROM "tasks"[0m
+ [1m[35m (0.4ms)[0m rollback transaction
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mFixture Delete (0.7ms)[0m DELETE FROM "tasks"
+ [1m[36m (0.4ms)[0m [1mrollback transaction[0m
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mFixture Delete (20.6ms)[0m [1mDELETE FROM "tasks"[0m
+ [1m[35m (0.4ms)[0m rollback transaction
+ [1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+ [1m[35m (0.2ms)[0m begin transaction
+ [1m[36mFixture Delete (0.7ms)[0m [1mDELETE FROM "tasks"[0m
+ [1m[35m (0.4ms)[0m rollback transaction
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mFixture Delete (0.3ms)[0m DELETE FROM "tasks"
+ [1m[36m (0.4ms)[0m [1mrollback transaction[0m
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mFixture Delete (52.9ms)[0m [1mDELETE FROM "tasks"[0m
+ [1m[35m (24.3ms)[0m rollback transaction
+ [1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mFixture Delete (0.7ms)[0m [1mDELETE FROM "tasks"[0m
+ [1m[35m (2.1ms)[0m rollback transaction
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mFixture Delete (0.6ms)[0m DELETE FROM "tasks"
+ [1m[36m (0.4ms)[0m [1mrollback transaction[0m
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mFixture Delete (82.3ms)[0m [1mDELETE FROM "tasks"[0m
+ [1m[35m (28.7ms)[0m rollback transaction
+ [1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mFixture Delete (0.4ms)[0m [1mDELETE FROM "tasks"[0m
+ [1m[35m (0.4ms)[0m rollback transaction
+ [1m[36m (0.1ms)[0m [1mbegin transaction[0m
+ [1m[35mFixture Delete (0.7ms)[0m DELETE FROM "tasks"
+ [1m[36m (0.4ms)[0m [1mrollback transaction[0m
+ [1m[35m (0.1ms)[0m begin transaction
+ [1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "tasks"[0m
+ [1m[35m (0.4ms)[0m rollback transaction
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/navigations_controller_test.rb b/test/controllers/navigations_controller_test.rb
new file mode 100644
index 000000000..e4287c3ac
--- /dev/null
+++ b/test/controllers/navigations_controller_test.rb
@@ -0,0 +1,14 @@
+require 'test_helper'
+
+class NavigationsControllerTest < ActionController::TestCase
+ test "should get index" do
+ get :index
+ assert_response :success
+ end
+
+ test "should get show" do
+ get :show
+ assert_response :success
+ end
+
+end
diff --git a/test/controllers/sessions_controller_test.rb b/test/controllers/sessions_controller_test.rb
new file mode 100644
index 000000000..4db9b1d05
--- /dev/null
+++ b/test/controllers/sessions_controller_test.rb
@@ -0,0 +1,29 @@
+require 'test_helper'
+
+class SessionsControllerTest < ActionController::TestCase
+ test "should get create" do
+ get :create
+ assert_response :success
+ end
+ def login_a_user
+ request.env['omniauth.auth'] = OmniAuth.config.mock_auth[:github]
+ get :create, {provider: "github"}
+ end
+
+ test "can create a user" do
+ assert_difference('User.count', 1) do
+ login_a_user
+ assert_response :redirect
+ assert_redirected_to root_path
+ assert_equal session[:user_id], User.find_by(uid: OmniAuth.config.mock_auth[:github][:uid],
+ provider: "github").id
+ end
+ end
+
+ test "if a user logs in twice it doesn't create a 2nd user" do
+ assert_difference('User.count', 1) do
+ login_a_user
+ end
+ end
+
+end
diff --git a/test/controllers/tasks_controller_test.rb b/test/controllers/tasks_controller_test.rb
new file mode 100644
index 000000000..12d202c53
--- /dev/null
+++ b/test/controllers/tasks_controller_test.rb
@@ -0,0 +1,56 @@
+require 'test_helper'
+
+class TasksControllerTest < ActionController::TestCase
+
+ test 'Make sure a user can see their tasks.' do
+ session[:user_id] = users(:ada).id
+ get :show, id: tasks(:adas_task).id
+
+ assert_response :success
+ end
+
+ test "Make sure a user cannot see another user's tasks" do
+ session[:user_id] = users(:babbage).id
+ get :show, id: tasks(:adas_task).id
+
+ assert_response :redirect
+ assert_equal flash[:notice], "You do not have access to that task."
+ end
+
+
+ test "should get index" do
+ get :index
+ assert_response :success
+ end
+
+ test "should get new" do
+ get :new
+ assert_response :success
+ end
+
+ test "should get show" do
+ get :show
+ assert_response :success
+ end
+
+ test "should get destroy" do
+ get :destroy
+ assert_response :success
+ end
+
+ test "should get edit" do
+ get :edit
+ assert_response :success
+ end
+
+ test "should get update" do
+ get :update
+ assert_response :success
+ end
+
+ test "should get create" do
+ get :create
+ assert_response :success
+ end
+
+end
diff --git a/test/controllers/users_controller_test.rb b/test/controllers/users_controller_test.rb
new file mode 100644
index 000000000..b4a92afc2
--- /dev/null
+++ b/test/controllers/users_controller_test.rb
@@ -0,0 +1,24 @@
+require 'test_helper'
+
+class UsersControllerTest < ActionController::TestCase
+ test "should get new" do
+ get :new
+ assert_response :success
+ end
+
+ test "should get create" do
+ get :create
+ assert_response :success
+ end
+
+ test "should get edit" do
+ get :edit
+ assert_response :success
+ end
+
+ test "should get update" do
+ get :update
+ assert_response :success
+ end
+
+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..f2b12566c
--- /dev/null
+++ b/test/fixtures/tasks.yml
@@ -0,0 +1,17 @@
+# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
+
+adas_task:
+ title: "Write the 1st code"
+ description: "Fortran"
+ details: "love coding"
+ user: :ada
+ completion_status: true
+ completion_date: 2016-09-30 11:22:41
+
+babbages_task:
+ title: "Make a computer"
+ description: "Machine making"
+ details: "Ada needs a machine to run her code"
+ user: :babbage
+
+
diff --git a/test/fixtures/users.yml b/test/fixtures/users.yml
new file mode 100644
index 000000000..38eb4ce22
--- /dev/null
+++ b/test/fixtures/users.yml
@@ -0,0 +1,24 @@
+# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
+
+ada:
+ id: 1
+ uid: 11234
+ name: "Ada Lovelace"
+ email: "ada@ada.com"
+ provider: github
+ created_at: 2016-10-2
+babbage:
+
+ id: 2
+ uid: 11324
+ name: "Mr. Babbage"
+ email: "bab@ada.com"
+ profile_name: "Senor Babbage"
+ provider: github
+ created_at: 2016-10-2
+
+bob:
+ id: 3
+ uid: 12345
+ name: "Mr. Bob"
+ provider: github
diff --git a/test/helpers/.keep b/test/helpers/.keep
new file mode 100644
index 000000000..e69de29bb
diff --git a/test/integration/.keep b/test/integration/.keep
new file mode 100644
index 000000000..e69de29bb
diff --git a/test/mailers/.keep b/test/mailers/.keep
new file mode 100644
index 000000000..e69de29bb
diff --git a/test/models/.keep b/test/models/.keep
new file mode 100644
index 000000000..e69de29bb
diff --git a/test/models/task_test.rb b/test/models/task_test.rb
new file mode 100644
index 000000000..3ca215970
--- /dev/null
+++ b/test/models/task_test.rb
@@ -0,0 +1,7 @@
+require 'test_helper'
+
+class TaskTest < ActiveSupport::TestCase
+ # test "the truth" do
+ # assert true
+ # end
+end
diff --git a/test/models/user_test.rb b/test/models/user_test.rb
new file mode 100644
index 000000000..ad91bacdc
--- /dev/null
+++ b/test/models/user_test.rb
@@ -0,0 +1,29 @@
+require 'test_helper'
+
+class UserTest < ActiveSupport::TestCase
+ # test "the truth" do
+ # assert true
+ # end
+
+ test "users should return their associated attributes" do
+ assert_equal "11234", users(:ada).uid
+ assert_equal "github", users(:ada).provider
+ assert_equal "ada@ada.com", users(:ada).email
+ assert_equal "1", users(:ada).id
+ assert_equal "Ada Lovelace", users(:ada).name
+ end
+
+ test "users without a unique email, uid and profile_name are invalid" do
+ user = User.new(profile_name: "Barbara Bomb", email: "bab@ada.com", uid: "54321", provider: "github")
+ assert_equal false, user.valid?
+ end
+
+ test "users must have a uid, email and provider to be valid" do
+ assert_not user(:bob).valid?
+ user(:bob).uid = nill
+ assert_not user(:babbage).valid?
+ user(:bob).provider = nill
+ assert_not user(:babbage).valid?
+ end
+
+end
diff --git a/test/test_helper.rb b/test/test_helper.rb
new file mode 100644
index 000000000..b13141bab
--- /dev/null
+++ b/test/test_helper.rb
@@ -0,0 +1,17 @@
+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
+
+ def Setup
+ #Once you have enabled test mode, all requests to omniAuth will be short circuited to use the mock authentication hash. A request to /ath/provider will redirect immediately to /auth/provider/callback.
+ OmniAuth.config.test_mode = true
+ #The mock_auth configuration allows you to set per-provider (or default) authentication hashes to return during testing.
+ OmniAuth.config.mock_auth[:github] = OmniAuth::AuthHash.new({provider: 'github', uid: '12345', info: {email: "lovelace@ada.com", name: "Ada"}
+ })
+ end
+
+end
diff --git a/vendor/assets/javascripts/.keep b/vendor/assets/javascripts/.keep
new file mode 100644
index 000000000..e69de29bb
diff --git a/vendor/assets/stylesheets/.keep b/vendor/assets/stylesheets/.keep
new file mode 100644
index 000000000..e69de29bb