diff --git a/.gitignore b/.gitignore index 28f484983..27acf175d 100644 --- a/.gitignore +++ b/.gitignore @@ -33,3 +33,7 @@ build/ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this: .rvmrc + +.DS_Store +*/.DS_Store +.env diff --git a/.ruby-gemset b/.ruby-gemset deleted file mode 100644 index 5d2410e51..000000000 --- a/.ruby-gemset +++ /dev/null @@ -1 +0,0 @@ -TaskListRails diff --git a/.ruby-version b/.ruby-version index 276cbf9e2..2bf1c1ccf 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -2.3.0 +2.3.1 diff --git a/Gemfile b/Gemfile new file mode 100644 index 000000000..3f6675fe2 --- /dev/null +++ b/Gemfile @@ -0,0 +1,58 @@ +source 'https://rubygems.org' + + +# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' +gem 'rails', '4.2.7' +# Use SCSS for stylesheets +gem 'sass-rails', '~> 5.0' +# Use Uglifier as compressor for JavaScript assets +gem 'uglifier', '>= 1.3.0' +# Use CoffeeScript for .coffee assets and views +gem 'coffee-rails', '~> 4.1.0' +# See https://github.com/rails/execjs#readme for more supported runtimes +# gem 'therubyracer', platforms: :ruby + +# Use jquery as the JavaScript library +gem 'jquery-rails' +# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks +gem 'turbolinks' +# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder +gem 'jbuilder', '~> 2.0' +# bundle exec rake doc:rails generates the API under doc/api. +gem 'sdoc', '~> 0.4.0', group: :doc + +gem 'omniauth' +gem 'omniauth-github' +# Use ActiveModel has_secure_password +# gem 'bcrypt', '~> 3.1.7' + +# Use Unicorn as the app server +# gem 'unicorn' + +# Use Capistrano for deployment +# gem 'capistrano-rails', group: :development + +group :development, :test do + # Call 'byebug' anywhere in the code to stop execution and get a debugger console + gem 'byebug' + # gem 'pry' + # Use sqlite3 as the database for Active Record + gem 'sqlite3' + # gem 'pg' + gem 'dotenv-rails' + gem 'better_errors' + gem "binding_of_caller" +end + +group :development do + # Access an IRB console on exception pages or by using <%= console %> in views + gem 'web-console', '~> 2.0' + + # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring + gem 'spring' +end + +group :production do + gem 'pg' + gem 'rails_12factor' +end diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 000000000..1831eed69 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,206 @@ +GEM + remote: https://rubygems.org/ + specs: + actionmailer (4.2.7) + actionpack (= 4.2.7) + actionview (= 4.2.7) + activejob (= 4.2.7) + mail (~> 2.5, >= 2.5.4) + rails-dom-testing (~> 1.0, >= 1.0.5) + actionpack (4.2.7) + actionview (= 4.2.7) + activesupport (= 4.2.7) + rack (~> 1.6) + rack-test (~> 0.6.2) + rails-dom-testing (~> 1.0, >= 1.0.5) + rails-html-sanitizer (~> 1.0, >= 1.0.2) + actionview (4.2.7) + activesupport (= 4.2.7) + builder (~> 3.1) + erubis (~> 2.7.0) + rails-dom-testing (~> 1.0, >= 1.0.5) + rails-html-sanitizer (~> 1.0, >= 1.0.2) + activejob (4.2.7) + activesupport (= 4.2.7) + globalid (>= 0.3.0) + activemodel (4.2.7) + activesupport (= 4.2.7) + builder (~> 3.1) + activerecord (4.2.7) + activemodel (= 4.2.7) + activesupport (= 4.2.7) + arel (~> 6.0) + activesupport (4.2.7) + i18n (~> 0.7) + json (~> 1.7, >= 1.7.7) + minitest (~> 5.1) + thread_safe (~> 0.3, >= 0.3.4) + tzinfo (~> 1.1) + arel (6.0.3) + better_errors (2.1.1) + coderay (>= 1.0.0) + erubis (>= 2.6.6) + rack (>= 0.9.0) + binding_of_caller (0.7.2) + debug_inspector (>= 0.0.1) + builder (3.2.2) + byebug (9.0.5) + coderay (1.1.1) + coffee-rails (4.1.1) + coffee-script (>= 2.2.0) + railties (>= 4.0.0, < 5.1.x) + coffee-script (2.4.1) + coffee-script-source + execjs + coffee-script-source (1.10.0) + concurrent-ruby (1.0.2) + debug_inspector (0.0.2) + dotenv (2.1.1) + dotenv-rails (2.1.1) + dotenv (= 2.1.1) + railties (>= 4.0, < 5.1) + erubis (2.7.0) + execjs (2.7.0) + faraday (0.9.2) + multipart-post (>= 1.2, < 3) + globalid (0.3.7) + activesupport (>= 4.1.0) + hashie (3.4.6) + i18n (0.7.0) + jbuilder (2.6.0) + activesupport (>= 3.0.0, < 5.1) + multi_json (~> 1.2) + jquery-rails (4.2.1) + rails-dom-testing (>= 1, < 3) + railties (>= 4.2.0) + thor (>= 0.14, < 2.0) + json (1.8.3) + jwt (1.5.6) + loofah (2.0.3) + nokogiri (>= 1.5.9) + mail (2.6.4) + mime-types (>= 1.16, < 4) + mime-types (3.1) + mime-types-data (~> 3.2015) + mime-types-data (3.2016.0521) + mini_portile2 (2.1.0) + minitest (5.9.1) + multi_json (1.12.1) + multi_xml (0.5.5) + multipart-post (2.0.0) + nokogiri (1.6.8) + mini_portile2 (~> 2.1.0) + pkg-config (~> 1.1.7) + oauth2 (1.2.0) + faraday (>= 0.8, < 0.10) + jwt (~> 1.0) + multi_json (~> 1.3) + multi_xml (~> 0.5) + rack (>= 1.2, < 3) + omniauth (1.3.1) + hashie (>= 1.2, < 4) + rack (>= 1.0, < 3) + omniauth-github (1.1.2) + omniauth (~> 1.0) + omniauth-oauth2 (~> 1.1) + omniauth-oauth2 (1.4.0) + oauth2 (~> 1.0) + omniauth (~> 1.2) + pg (0.19.0) + pkg-config (1.1.7) + rack (1.6.4) + rack-test (0.6.3) + rack (>= 1.0) + rails (4.2.7) + actionmailer (= 4.2.7) + actionpack (= 4.2.7) + actionview (= 4.2.7) + activejob (= 4.2.7) + activemodel (= 4.2.7) + activerecord (= 4.2.7) + activesupport (= 4.2.7) + bundler (>= 1.3.0, < 2.0) + railties (= 4.2.7) + sprockets-rails + rails-deprecated_sanitizer (1.0.3) + activesupport (>= 4.2.0.alpha) + rails-dom-testing (1.0.7) + activesupport (>= 4.2.0.beta, < 5.0) + nokogiri (~> 1.6.0) + rails-deprecated_sanitizer (>= 1.0.1) + rails-html-sanitizer (1.0.3) + loofah (~> 2.0) + rails_12factor (0.0.3) + rails_serve_static_assets + rails_stdout_logging + rails_serve_static_assets (0.0.5) + rails_stdout_logging (0.0.5) + railties (4.2.7) + actionpack (= 4.2.7) + activesupport (= 4.2.7) + rake (>= 0.8.7) + thor (>= 0.18.1, < 2.0) + rake (11.3.0) + rdoc (4.2.2) + json (~> 1.4) + sass (3.4.22) + sass-rails (5.0.6) + railties (>= 4.0.0, < 6) + sass (~> 3.1) + sprockets (>= 2.8, < 4.0) + sprockets-rails (>= 2.0, < 4.0) + tilt (>= 1.1, < 3) + sdoc (0.4.1) + json (~> 1.7, >= 1.7.7) + rdoc (~> 4.0) + spring (1.7.2) + sprockets (3.7.0) + concurrent-ruby (~> 1.0) + rack (> 1, < 3) + sprockets-rails (3.2.0) + actionpack (>= 4.0) + activesupport (>= 4.0) + sprockets (>= 3.0.0) + sqlite3 (1.3.11) + thor (0.19.1) + thread_safe (0.3.5) + tilt (2.0.5) + turbolinks (5.0.1) + turbolinks-source (~> 5) + turbolinks-source (5.0.0) + tzinfo (1.2.2) + thread_safe (~> 0.1) + uglifier (3.0.2) + execjs (>= 0.3.0, < 3) + web-console (2.3.0) + activemodel (>= 4.0) + binding_of_caller (>= 0.7.2) + railties (>= 4.0) + sprockets-rails (>= 2.0, < 4.0) + +PLATFORMS + ruby + +DEPENDENCIES + better_errors + binding_of_caller + byebug + coffee-rails (~> 4.1.0) + dotenv-rails + jbuilder (~> 2.0) + jquery-rails + omniauth + omniauth-github + pg + rails (= 4.2.7) + rails_12factor + sass-rails (~> 5.0) + sdoc (~> 0.4.0) + spring + sqlite3 + turbolinks + uglifier (>= 1.3.0) + web-console (~> 2.0) + +BUNDLED WITH + 1.13.5 diff --git a/Rakefile b/Rakefile new file mode 100644 index 000000000..ba6b733dd --- /dev/null +++ b/Rakefile @@ -0,0 +1,6 @@ +# Add your own tasks in files placed in lib/tasks ending in .rake, +# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. + +require File.expand_path('../config/application', __FILE__) + +Rails.application.load_tasks diff --git a/app/assets/images/.keep b/app/assets/images/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app/assets/javascripts/application.js b/app/assets/javascripts/application.js new file mode 100644 index 000000000..e07c5a830 --- /dev/null +++ b/app/assets/javascripts/application.js @@ -0,0 +1,16 @@ +// This is a manifest file that'll be compiled into application.js, which will include all the files +// listed below. +// +// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts, +// or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path. +// +// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the +// compiled file. +// +// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details +// about supported directives. +// +//= require jquery +//= require jquery_ujs +//= require turbolinks +//= require_tree . diff --git a/app/assets/javascripts/sessions.coffee b/app/assets/javascripts/sessions.coffee new file mode 100644 index 000000000..24f83d18b --- /dev/null +++ b/app/assets/javascripts/sessions.coffee @@ -0,0 +1,3 @@ +# Place all the behaviors and hooks related to the matching controller here. +# All this logic will automatically be available in application.js. +# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/app/assets/javascripts/tasks.coffee b/app/assets/javascripts/tasks.coffee new file mode 100644 index 000000000..24f83d18b --- /dev/null +++ b/app/assets/javascripts/tasks.coffee @@ -0,0 +1,3 @@ +# Place all the behaviors and hooks related to the matching controller here. +# All this logic will automatically be available in application.js. +# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css new file mode 100644 index 000000000..b049efa85 --- /dev/null +++ b/app/assets/stylesheets/application.css @@ -0,0 +1,99 @@ +/* + * This is a manifest file that'll be compiled into application.css, which will include all the files + * listed below. + * + * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets, + * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path. + * + * You're free to add application-wide styles to this file and they'll appear at the bottom of the + * compiled file so the styles you add here take precedence over styles defined in any styles + * defined in the other CSS/SCSS files in this directory. It is generally better to create a new + * file per style scope. + * + *= require_tree . + *= require_self + */ + +@import url('foundation.css'); + + +body { + width: 50%; + text-align: center; + background-color: #d7d7d7; + margin: 0 auto; +} + +p, td { + font-family: 'Cabin Condensed', sans-serif; + font-size: 1.25em; +} + +h1, h2, h3, h4, h5, h6, th { + font-family: 'Londrina Solid', cursive; +} + +form * { + font-family: 'Cabin Condensed', sans-serif; + text-align: left; + font-size: 1.5em; + font-weight: bold; +} + +a { + color: #1b9e06; +} + +a:hover { + color: #23cd07; +} + +tr:nth-of-type(odd) { + background-color: #dadada; +} + +tr:nth-of-type(even) { + background-color: #dad7d7; +} + +#new-task-button { + background-color: transparent; + border-radius: 15px; +} + +div.task-button { + background-color: transparent; + border-radius: 15px; +} + +#new-task-button:hover { + background-color: #a2cd9b; +} + +div.task-button { + background-color: #a2cd9b; +} + +#new-task-button h3 { + color: black; +} + +table th { + background-color: #a2cd9b; + font-size: 2em; +} + +footer { + position: absolute; + right: 0; + bottom: 0; + left: 0; +} + +div p { + text-align: left; +} + +header { + background-color: #a2cd9b; +} diff --git a/app/assets/stylesheets/foundation.css b/app/assets/stylesheets/foundation.css new file mode 100644 index 000000000..c59eaf55b --- /dev/null +++ b/app/assets/stylesheets/foundation.css @@ -0,0 +1,4226 @@ +@charset "UTF-8"; +/** + * Foundation for Sites by ZURB + * Version 6.2.4 + * foundation.zurb.com + * Licensed under MIT Open Source + */ +/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ +/** + * 1. Set default font family to sans-serif. + * 2. Prevent iOS and IE text size adjust after device orientation change, + * without disabling user zoom. + */ +html { + font-family: sans-serif; + /* 1 */ + -ms-text-size-adjust: 100%; + /* 2 */ + -webkit-text-size-adjust: 100%; + /* 2 */ } + +/** + * Remove default margin. + */ +body { + margin: 0; } + +/* HTML5 display definitions + ========================================================================== */ +/** + * Correct `block` display not defined for any HTML5 element in IE 8/9. + * Correct `block` display not defined for `details` or `summary` in IE 10/11 + * and Firefox. + * Correct `block` display not defined for `main` in IE 11. + */ +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +main, +menu, +nav, +section, +summary { + display: block; } + +/** + * 1. Correct `inline-block` display not defined in IE 8/9. + * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. + */ +audio, +canvas, +progress, +video { + display: inline-block; + /* 1 */ + vertical-align: baseline; + /* 2 */ } + +/** + * Prevent modern browsers from displaying `audio` without controls. + * Remove excess height in iOS 5 devices. + */ +audio:not([controls]) { + display: none; + height: 0; } + +/** + * Address `[hidden]` styling not present in IE 8/9/10. + * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22. + */ +[hidden], +template { + display: none; } + +/* Links + ========================================================================== */ +/** + * Remove the gray background color from active links in IE 10. + */ +a { + background-color: transparent; } + +/** + * Improve readability of focused elements when they are also in an + * active/hover state. + */ +a:active, +a:hover { + outline: 0; } + +/* Text-level semantics + ========================================================================== */ +/** + * Address styling not present in IE 8/9/10/11, Safari, and Chrome. + */ +abbr[title] { + border-bottom: 1px dotted; } + +/** + * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. + */ +b, +strong { + font-weight: bold; } + +/** + * Address styling not present in Safari and Chrome. + */ +dfn { + font-style: italic; } + +/** + * Address variable `h1` font-size and margin within `section` and `article` + * contexts in Firefox 4+, Safari, and Chrome. + */ +h1 { + font-size: 2em; + margin: 0.67em 0; } + +/** + * Address styling not present in IE 8/9. + */ +mark { + background: #ff0; + color: #000; } + +/** + * Address inconsistent and variable font size in all browsers. + */ +small { + font-size: 80%; } + +/** + * Prevent `sub` and `sup` affecting `line-height` in all browsers. + */ +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; } + +sup { + top: -0.5em; } + +sub { + bottom: -0.25em; } + +/* Embedded content + ========================================================================== */ +/** + * Remove border when inside `a` element in IE 8/9/10. + */ +img { + border: 0; } + +/** + * Correct overflow not hidden in IE 9/10/11. + */ +svg:not(:root) { + overflow: hidden; } + +/* Grouping content + ========================================================================== */ +/** + * Address margin not present in IE 8/9 and Safari. + */ +figure { + margin: 1em 40px; } + +/** + * Address differences between Firefox and other browsers. + */ +hr { + box-sizing: content-box; + height: 0; } + +/** + * Contain overflow in all browsers. + */ +pre { + overflow: auto; } + +/** + * Address odd `em`-unit font size rendering in all browsers. + */ +code, +kbd, +pre, +samp { + font-family: monospace, monospace; + font-size: 1em; } + +/* Forms + ========================================================================== */ +/** + * Known limitation: by default, Chrome and Safari on OS X allow very limited + * styling of `select`, unless a `border` property is set. + */ +/** + * 1. Correct color not being inherited. + * Known issue: affects color of disabled elements. + * 2. Correct font properties not being inherited. + * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. + */ +button, +input, +optgroup, +select, +textarea { + color: inherit; + /* 1 */ + font: inherit; + /* 2 */ + margin: 0; + /* 3 */ } + +/** + * Address `overflow` set to `hidden` in IE 8/9/10/11. + */ +button { + overflow: visible; } + +/** + * Address inconsistent `text-transform` inheritance for `button` and `select`. + * All other form control elements do not inherit `text-transform` values. + * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera. + * Correct `select` style inheritance in Firefox. + */ +button, +select { + text-transform: none; } + +/** + * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` + * and `video` controls. + * 2. Correct inability to style clickable `input` types in iOS. + * 3. Improve usability and consistency of cursor style between image-type + * `input` and others. + */ +button, +html input[type="button"], +input[type="reset"], +input[type="submit"] { + -webkit-appearance: button; + /* 2 */ + cursor: pointer; + /* 3 */ } + +/** + * Re-set default cursor for disabled elements. + */ +button[disabled], +html input[disabled] { + cursor: not-allowed; } + +/** + * Remove inner padding and border in Firefox 4+. + */ +button::-moz-focus-inner, +input::-moz-focus-inner { + border: 0; + padding: 0; } + +/** + * Address Firefox 4+ setting `line-height` on `input` using `!important` in + * the UA stylesheet. + */ +input { + line-height: normal; } + +/** + * It's recommended that you don't attempt to style these elements. + * Firefox's implementation doesn't respect box-sizing, padding, or width. + * + * 1. Address box sizing set to `content-box` in IE 8/9/10. + * 2. Remove excess padding in IE 8/9/10. + */ +input[type="checkbox"], +input[type="radio"] { + box-sizing: border-box; + /* 1 */ + padding: 0; + /* 2 */ } + +/** + * Fix the cursor style for Chrome's increment/decrement buttons. For certain + * `font-size` values of the `input`, it causes the cursor style of the + * decrement button to change from `default` to `text`. + */ +input[type="number"]::-webkit-inner-spin-button, +input[type="number"]::-webkit-outer-spin-button { + height: auto; } + +/** + * 1. Address `appearance` set to `searchfield` in Safari and Chrome. + * 2. Address `box-sizing` set to `border-box` in Safari and Chrome. + */ +input[type="search"] { + -webkit-appearance: textfield; + /* 1 */ + box-sizing: content-box; + /* 2 */ } + +/** + * Remove inner padding and search cancel button in Safari and Chrome on OS X. + * Safari (but not Chrome) clips the cancel button when the search input has + * padding (and `textfield` appearance). + */ +input[type="search"]::-webkit-search-cancel-button, +input[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; } + +/** + * Define consistent border, margin, and padding. + * [NOTE] We don't enable this ruleset in Foundation, because we want the
element to have plain styling. + */ +/* fieldset { + border: 1px solid #c0c0c0; + margin: 0 2px; + padding: 0.35em 0.625em 0.75em; + } */ +/** + * 1. Correct `color` not being inherited in IE 8/9/10/11. + * 2. Remove padding so people aren't caught out if they zero out fieldsets. + */ +legend { + border: 0; + /* 1 */ + padding: 0; + /* 2 */ } + +/** + * Remove default vertical scrollbar in IE 8/9/10/11. + */ +textarea { + overflow: auto; } + +/** + * Don't inherit the `font-weight` (applied by a rule above). + * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. + */ +optgroup { + font-weight: bold; } + +/* Tables + ========================================================================== */ +/** + * Remove most spacing between table cells. + */ +table { + border-collapse: collapse; + border-spacing: 0; } + +td, +th { + padding: 0; } + +.foundation-mq { + font-family: "small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em"; } + +html { + font-size: 100%; + box-sizing: border-box; } + +*, +*::before, +*::after { + box-sizing: inherit; } + +body { + padding: 0; + margin: 0; + font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; + font-weight: normal; + line-height: 1.5; + color: #0a0a0a; + background: #fefefe; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; } + +img { + max-width: 100%; + height: auto; + -ms-interpolation-mode: bicubic; + display: inline-block; + vertical-align: middle; } + +textarea { + height: auto; + min-height: 50px; + border-radius: 0; } + +select { + width: 100%; + border-radius: 0; } + +#map_canvas img, +#map_canvas embed, +#map_canvas object, +.map_canvas img, +.map_canvas embed, +.map_canvas object, +.mqa-display img, +.mqa-display embed, +.mqa-display object { + max-width: none !important; } + +button { + -webkit-appearance: none; + -moz-appearance: none; + background: transparent; + padding: 0; + border: 0; + border-radius: 0; + line-height: 1; } + [data-whatinput='mouse'] button { + outline: 0; } + +.is-visible { + display: block !important; } + +.is-hidden { + display: none !important; } + +.row { + max-width: 75rem; + margin-left: auto; + margin-right: auto; } + .row::before, .row::after { + content: ' '; + display: table; } + .row::after { + clear: both; } + .row.collapse > .column, .row.collapse > .columns { + padding-left: 0; + padding-right: 0; } + .row .row { + margin-left: -0.625rem; + margin-right: -0.625rem; } + @media screen and (min-width: 40em) { + .row .row { + margin-left: -0.9375rem; + margin-right: -0.9375rem; } } + .row .row.collapse { + margin-left: 0; + margin-right: 0; } + .row.expanded { + max-width: none; } + .row.expanded .row { + margin-left: auto; + margin-right: auto; } + +.column, .columns { + width: 100%; + float: left; + padding-left: 0.625rem; + padding-right: 0.625rem; } + @media screen and (min-width: 40em) { + .column, .columns { + padding-left: 0.9375rem; + padding-right: 0.9375rem; } } + .column:last-child:not(:first-child), .columns:last-child:not(:first-child) { + float: right; } + .column.end:last-child:last-child, .end.columns:last-child:last-child { + float: left; } + +.column.row.row, .row.row.columns { + float: none; } + +.row .column.row.row, .row .row.row.columns { + padding-left: 0; + padding-right: 0; + margin-left: 0; + margin-right: 0; } + +.small-1 { + width: 8.33333%; } + +.small-push-1 { + position: relative; + left: 8.33333%; } + +.small-pull-1 { + position: relative; + left: -8.33333%; } + +.small-offset-0 { + margin-left: 0%; } + +.small-2 { + width: 16.66667%; } + +.small-push-2 { + position: relative; + left: 16.66667%; } + +.small-pull-2 { + position: relative; + left: -16.66667%; } + +.small-offset-1 { + margin-left: 8.33333%; } + +.small-3 { + width: 25%; } + +.small-push-3 { + position: relative; + left: 25%; } + +.small-pull-3 { + position: relative; + left: -25%; } + +.small-offset-2 { + margin-left: 16.66667%; } + +.small-4 { + width: 33.33333%; } + +.small-push-4 { + position: relative; + left: 33.33333%; } + +.small-pull-4 { + position: relative; + left: -33.33333%; } + +.small-offset-3 { + margin-left: 25%; } + +.small-5 { + width: 41.66667%; } + +.small-push-5 { + position: relative; + left: 41.66667%; } + +.small-pull-5 { + position: relative; + left: -41.66667%; } + +.small-offset-4 { + margin-left: 33.33333%; } + +.small-6 { + width: 50%; } + +.small-push-6 { + position: relative; + left: 50%; } + +.small-pull-6 { + position: relative; + left: -50%; } + +.small-offset-5 { + margin-left: 41.66667%; } + +.small-7 { + width: 58.33333%; } + +.small-push-7 { + position: relative; + left: 58.33333%; } + +.small-pull-7 { + position: relative; + left: -58.33333%; } + +.small-offset-6 { + margin-left: 50%; } + +.small-8 { + width: 66.66667%; } + +.small-push-8 { + position: relative; + left: 66.66667%; } + +.small-pull-8 { + position: relative; + left: -66.66667%; } + +.small-offset-7 { + margin-left: 58.33333%; } + +.small-9 { + width: 75%; } + +.small-push-9 { + position: relative; + left: 75%; } + +.small-pull-9 { + position: relative; + left: -75%; } + +.small-offset-8 { + margin-left: 66.66667%; } + +.small-10 { + width: 83.33333%; } + +.small-push-10 { + position: relative; + left: 83.33333%; } + +.small-pull-10 { + position: relative; + left: -83.33333%; } + +.small-offset-9 { + margin-left: 75%; } + +.small-11 { + width: 91.66667%; } + +.small-push-11 { + position: relative; + left: 91.66667%; } + +.small-pull-11 { + position: relative; + left: -91.66667%; } + +.small-offset-10 { + margin-left: 83.33333%; } + +.small-12 { + width: 100%; } + +.small-offset-11 { + margin-left: 91.66667%; } + +.small-up-1 > .column, .small-up-1 > .columns { + width: 100%; + float: left; } + .small-up-1 > .column:nth-of-type(1n), .small-up-1 > .columns:nth-of-type(1n) { + clear: none; } + .small-up-1 > .column:nth-of-type(1n+1), .small-up-1 > .columns:nth-of-type(1n+1) { + clear: both; } + .small-up-1 > .column:last-child, .small-up-1 > .columns:last-child { + float: left; } + +.small-up-2 > .column, .small-up-2 > .columns { + width: 50%; + float: left; } + .small-up-2 > .column:nth-of-type(1n), .small-up-2 > .columns:nth-of-type(1n) { + clear: none; } + .small-up-2 > .column:nth-of-type(2n+1), .small-up-2 > .columns:nth-of-type(2n+1) { + clear: both; } + .small-up-2 > .column:last-child, .small-up-2 > .columns:last-child { + float: left; } + +.small-up-3 > .column, .small-up-3 > .columns { + width: 33.33333%; + float: left; } + .small-up-3 > .column:nth-of-type(1n), .small-up-3 > .columns:nth-of-type(1n) { + clear: none; } + .small-up-3 > .column:nth-of-type(3n+1), .small-up-3 > .columns:nth-of-type(3n+1) { + clear: both; } + .small-up-3 > .column:last-child, .small-up-3 > .columns:last-child { + float: left; } + +.small-up-4 > .column, .small-up-4 > .columns { + width: 25%; + float: left; } + .small-up-4 > .column:nth-of-type(1n), .small-up-4 > .columns:nth-of-type(1n) { + clear: none; } + .small-up-4 > .column:nth-of-type(4n+1), .small-up-4 > .columns:nth-of-type(4n+1) { + clear: both; } + .small-up-4 > .column:last-child, .small-up-4 > .columns:last-child { + float: left; } + +.small-up-5 > .column, .small-up-5 > .columns { + width: 20%; + float: left; } + .small-up-5 > .column:nth-of-type(1n), .small-up-5 > .columns:nth-of-type(1n) { + clear: none; } + .small-up-5 > .column:nth-of-type(5n+1), .small-up-5 > .columns:nth-of-type(5n+1) { + clear: both; } + .small-up-5 > .column:last-child, .small-up-5 > .columns:last-child { + float: left; } + +.small-up-6 > .column, .small-up-6 > .columns { + width: 16.66667%; + float: left; } + .small-up-6 > .column:nth-of-type(1n), .small-up-6 > .columns:nth-of-type(1n) { + clear: none; } + .small-up-6 > .column:nth-of-type(6n+1), .small-up-6 > .columns:nth-of-type(6n+1) { + clear: both; } + .small-up-6 > .column:last-child, .small-up-6 > .columns:last-child { + float: left; } + +.small-up-7 > .column, .small-up-7 > .columns { + width: 14.28571%; + float: left; } + .small-up-7 > .column:nth-of-type(1n), .small-up-7 > .columns:nth-of-type(1n) { + clear: none; } + .small-up-7 > .column:nth-of-type(7n+1), .small-up-7 > .columns:nth-of-type(7n+1) { + clear: both; } + .small-up-7 > .column:last-child, .small-up-7 > .columns:last-child { + float: left; } + +.small-up-8 > .column, .small-up-8 > .columns { + width: 12.5%; + float: left; } + .small-up-8 > .column:nth-of-type(1n), .small-up-8 > .columns:nth-of-type(1n) { + clear: none; } + .small-up-8 > .column:nth-of-type(8n+1), .small-up-8 > .columns:nth-of-type(8n+1) { + clear: both; } + .small-up-8 > .column:last-child, .small-up-8 > .columns:last-child { + float: left; } + +.small-collapse > .column, .small-collapse > .columns { + padding-left: 0; + padding-right: 0; } + +.small-collapse .row { + margin-left: 0; + margin-right: 0; } + +.expanded.row .small-collapse.row { + margin-left: 0; + margin-right: 0; } + +.small-uncollapse > .column, .small-uncollapse > .columns { + padding-left: 0.625rem; + padding-right: 0.625rem; } + +.small-centered { + margin-left: auto; + margin-right: auto; } + .small-centered, .small-centered:last-child:not(:first-child) { + float: none; + clear: both; } + +.small-uncentered, +.small-push-0, +.small-pull-0 { + position: static; + margin-left: 0; + margin-right: 0; + float: left; } + +@media screen and (min-width: 40em) { + .medium-1 { + width: 8.33333%; } + .medium-push-1 { + position: relative; + left: 8.33333%; } + .medium-pull-1 { + position: relative; + left: -8.33333%; } + .medium-offset-0 { + margin-left: 0%; } + .medium-2 { + width: 16.66667%; } + .medium-push-2 { + position: relative; + left: 16.66667%; } + .medium-pull-2 { + position: relative; + left: -16.66667%; } + .medium-offset-1 { + margin-left: 8.33333%; } + .medium-3 { + width: 25%; } + .medium-push-3 { + position: relative; + left: 25%; } + .medium-pull-3 { + position: relative; + left: -25%; } + .medium-offset-2 { + margin-left: 16.66667%; } + .medium-4 { + width: 33.33333%; } + .medium-push-4 { + position: relative; + left: 33.33333%; } + .medium-pull-4 { + position: relative; + left: -33.33333%; } + .medium-offset-3 { + margin-left: 25%; } + .medium-5 { + width: 41.66667%; } + .medium-push-5 { + position: relative; + left: 41.66667%; } + .medium-pull-5 { + position: relative; + left: -41.66667%; } + .medium-offset-4 { + margin-left: 33.33333%; } + .medium-6 { + width: 50%; } + .medium-push-6 { + position: relative; + left: 50%; } + .medium-pull-6 { + position: relative; + left: -50%; } + .medium-offset-5 { + margin-left: 41.66667%; } + .medium-7 { + width: 58.33333%; } + .medium-push-7 { + position: relative; + left: 58.33333%; } + .medium-pull-7 { + position: relative; + left: -58.33333%; } + .medium-offset-6 { + margin-left: 50%; } + .medium-8 { + width: 66.66667%; } + .medium-push-8 { + position: relative; + left: 66.66667%; } + .medium-pull-8 { + position: relative; + left: -66.66667%; } + .medium-offset-7 { + margin-left: 58.33333%; } + .medium-9 { + width: 75%; } + .medium-push-9 { + position: relative; + left: 75%; } + .medium-pull-9 { + position: relative; + left: -75%; } + .medium-offset-8 { + margin-left: 66.66667%; } + .medium-10 { + width: 83.33333%; } + .medium-push-10 { + position: relative; + left: 83.33333%; } + .medium-pull-10 { + position: relative; + left: -83.33333%; } + .medium-offset-9 { + margin-left: 75%; } + .medium-11 { + width: 91.66667%; } + .medium-push-11 { + position: relative; + left: 91.66667%; } + .medium-pull-11 { + position: relative; + left: -91.66667%; } + .medium-offset-10 { + margin-left: 83.33333%; } + .medium-12 { + width: 100%; } + .medium-offset-11 { + margin-left: 91.66667%; } + .medium-up-1 > .column, .medium-up-1 > .columns { + width: 100%; + float: left; } + .medium-up-1 > .column:nth-of-type(1n), .medium-up-1 > .columns:nth-of-type(1n) { + clear: none; } + .medium-up-1 > .column:nth-of-type(1n+1), .medium-up-1 > .columns:nth-of-type(1n+1) { + clear: both; } + .medium-up-1 > .column:last-child, .medium-up-1 > .columns:last-child { + float: left; } + .medium-up-2 > .column, .medium-up-2 > .columns { + width: 50%; + float: left; } + .medium-up-2 > .column:nth-of-type(1n), .medium-up-2 > .columns:nth-of-type(1n) { + clear: none; } + .medium-up-2 > .column:nth-of-type(2n+1), .medium-up-2 > .columns:nth-of-type(2n+1) { + clear: both; } + .medium-up-2 > .column:last-child, .medium-up-2 > .columns:last-child { + float: left; } + .medium-up-3 > .column, .medium-up-3 > .columns { + width: 33.33333%; + float: left; } + .medium-up-3 > .column:nth-of-type(1n), .medium-up-3 > .columns:nth-of-type(1n) { + clear: none; } + .medium-up-3 > .column:nth-of-type(3n+1), .medium-up-3 > .columns:nth-of-type(3n+1) { + clear: both; } + .medium-up-3 > .column:last-child, .medium-up-3 > .columns:last-child { + float: left; } + .medium-up-4 > .column, .medium-up-4 > .columns { + width: 25%; + float: left; } + .medium-up-4 > .column:nth-of-type(1n), .medium-up-4 > .columns:nth-of-type(1n) { + clear: none; } + .medium-up-4 > .column:nth-of-type(4n+1), .medium-up-4 > .columns:nth-of-type(4n+1) { + clear: both; } + .medium-up-4 > .column:last-child, .medium-up-4 > .columns:last-child { + float: left; } + .medium-up-5 > .column, .medium-up-5 > .columns { + width: 20%; + float: left; } + .medium-up-5 > .column:nth-of-type(1n), .medium-up-5 > .columns:nth-of-type(1n) { + clear: none; } + .medium-up-5 > .column:nth-of-type(5n+1), .medium-up-5 > .columns:nth-of-type(5n+1) { + clear: both; } + .medium-up-5 > .column:last-child, .medium-up-5 > .columns:last-child { + float: left; } + .medium-up-6 > .column, .medium-up-6 > .columns { + width: 16.66667%; + float: left; } + .medium-up-6 > .column:nth-of-type(1n), .medium-up-6 > .columns:nth-of-type(1n) { + clear: none; } + .medium-up-6 > .column:nth-of-type(6n+1), .medium-up-6 > .columns:nth-of-type(6n+1) { + clear: both; } + .medium-up-6 > .column:last-child, .medium-up-6 > .columns:last-child { + float: left; } + .medium-up-7 > .column, .medium-up-7 > .columns { + width: 14.28571%; + float: left; } + .medium-up-7 > .column:nth-of-type(1n), .medium-up-7 > .columns:nth-of-type(1n) { + clear: none; } + .medium-up-7 > .column:nth-of-type(7n+1), .medium-up-7 > .columns:nth-of-type(7n+1) { + clear: both; } + .medium-up-7 > .column:last-child, .medium-up-7 > .columns:last-child { + float: left; } + .medium-up-8 > .column, .medium-up-8 > .columns { + width: 12.5%; + float: left; } + .medium-up-8 > .column:nth-of-type(1n), .medium-up-8 > .columns:nth-of-type(1n) { + clear: none; } + .medium-up-8 > .column:nth-of-type(8n+1), .medium-up-8 > .columns:nth-of-type(8n+1) { + clear: both; } + .medium-up-8 > .column:last-child, .medium-up-8 > .columns:last-child { + float: left; } + .medium-collapse > .column, .medium-collapse > .columns { + padding-left: 0; + padding-right: 0; } + .medium-collapse .row { + margin-left: 0; + margin-right: 0; } + .expanded.row .medium-collapse.row { + margin-left: 0; + margin-right: 0; } + .medium-uncollapse > .column, .medium-uncollapse > .columns { + padding-left: 0.9375rem; + padding-right: 0.9375rem; } + .medium-centered { + margin-left: auto; + margin-right: auto; } + .medium-centered, .medium-centered:last-child:not(:first-child) { + float: none; + clear: both; } + .medium-uncentered, + .medium-push-0, + .medium-pull-0 { + position: static; + margin-left: 0; + margin-right: 0; + float: left; } } + +@media screen and (min-width: 64em) { + .large-1 { + width: 8.33333%; } + .large-push-1 { + position: relative; + left: 8.33333%; } + .large-pull-1 { + position: relative; + left: -8.33333%; } + .large-offset-0 { + margin-left: 0%; } + .large-2 { + width: 16.66667%; } + .large-push-2 { + position: relative; + left: 16.66667%; } + .large-pull-2 { + position: relative; + left: -16.66667%; } + .large-offset-1 { + margin-left: 8.33333%; } + .large-3 { + width: 25%; } + .large-push-3 { + position: relative; + left: 25%; } + .large-pull-3 { + position: relative; + left: -25%; } + .large-offset-2 { + margin-left: 16.66667%; } + .large-4 { + width: 33.33333%; } + .large-push-4 { + position: relative; + left: 33.33333%; } + .large-pull-4 { + position: relative; + left: -33.33333%; } + .large-offset-3 { + margin-left: 25%; } + .large-5 { + width: 41.66667%; } + .large-push-5 { + position: relative; + left: 41.66667%; } + .large-pull-5 { + position: relative; + left: -41.66667%; } + .large-offset-4 { + margin-left: 33.33333%; } + .large-6 { + width: 50%; } + .large-push-6 { + position: relative; + left: 50%; } + .large-pull-6 { + position: relative; + left: -50%; } + .large-offset-5 { + margin-left: 41.66667%; } + .large-7 { + width: 58.33333%; } + .large-push-7 { + position: relative; + left: 58.33333%; } + .large-pull-7 { + position: relative; + left: -58.33333%; } + .large-offset-6 { + margin-left: 50%; } + .large-8 { + width: 66.66667%; } + .large-push-8 { + position: relative; + left: 66.66667%; } + .large-pull-8 { + position: relative; + left: -66.66667%; } + .large-offset-7 { + margin-left: 58.33333%; } + .large-9 { + width: 75%; } + .large-push-9 { + position: relative; + left: 75%; } + .large-pull-9 { + position: relative; + left: -75%; } + .large-offset-8 { + margin-left: 66.66667%; } + .large-10 { + width: 83.33333%; } + .large-push-10 { + position: relative; + left: 83.33333%; } + .large-pull-10 { + position: relative; + left: -83.33333%; } + .large-offset-9 { + margin-left: 75%; } + .large-11 { + width: 91.66667%; } + .large-push-11 { + position: relative; + left: 91.66667%; } + .large-pull-11 { + position: relative; + left: -91.66667%; } + .large-offset-10 { + margin-left: 83.33333%; } + .large-12 { + width: 100%; } + .large-offset-11 { + margin-left: 91.66667%; } + .large-up-1 > .column, .large-up-1 > .columns { + width: 100%; + float: left; } + .large-up-1 > .column:nth-of-type(1n), .large-up-1 > .columns:nth-of-type(1n) { + clear: none; } + .large-up-1 > .column:nth-of-type(1n+1), .large-up-1 > .columns:nth-of-type(1n+1) { + clear: both; } + .large-up-1 > .column:last-child, .large-up-1 > .columns:last-child { + float: left; } + .large-up-2 > .column, .large-up-2 > .columns { + width: 50%; + float: left; } + .large-up-2 > .column:nth-of-type(1n), .large-up-2 > .columns:nth-of-type(1n) { + clear: none; } + .large-up-2 > .column:nth-of-type(2n+1), .large-up-2 > .columns:nth-of-type(2n+1) { + clear: both; } + .large-up-2 > .column:last-child, .large-up-2 > .columns:last-child { + float: left; } + .large-up-3 > .column, .large-up-3 > .columns { + width: 33.33333%; + float: left; } + .large-up-3 > .column:nth-of-type(1n), .large-up-3 > .columns:nth-of-type(1n) { + clear: none; } + .large-up-3 > .column:nth-of-type(3n+1), .large-up-3 > .columns:nth-of-type(3n+1) { + clear: both; } + .large-up-3 > .column:last-child, .large-up-3 > .columns:last-child { + float: left; } + .large-up-4 > .column, .large-up-4 > .columns { + width: 25%; + float: left; } + .large-up-4 > .column:nth-of-type(1n), .large-up-4 > .columns:nth-of-type(1n) { + clear: none; } + .large-up-4 > .column:nth-of-type(4n+1), .large-up-4 > .columns:nth-of-type(4n+1) { + clear: both; } + .large-up-4 > .column:last-child, .large-up-4 > .columns:last-child { + float: left; } + .large-up-5 > .column, .large-up-5 > .columns { + width: 20%; + float: left; } + .large-up-5 > .column:nth-of-type(1n), .large-up-5 > .columns:nth-of-type(1n) { + clear: none; } + .large-up-5 > .column:nth-of-type(5n+1), .large-up-5 > .columns:nth-of-type(5n+1) { + clear: both; } + .large-up-5 > .column:last-child, .large-up-5 > .columns:last-child { + float: left; } + .large-up-6 > .column, .large-up-6 > .columns { + width: 16.66667%; + float: left; } + .large-up-6 > .column:nth-of-type(1n), .large-up-6 > .columns:nth-of-type(1n) { + clear: none; } + .large-up-6 > .column:nth-of-type(6n+1), .large-up-6 > .columns:nth-of-type(6n+1) { + clear: both; } + .large-up-6 > .column:last-child, .large-up-6 > .columns:last-child { + float: left; } + .large-up-7 > .column, .large-up-7 > .columns { + width: 14.28571%; + float: left; } + .large-up-7 > .column:nth-of-type(1n), .large-up-7 > .columns:nth-of-type(1n) { + clear: none; } + .large-up-7 > .column:nth-of-type(7n+1), .large-up-7 > .columns:nth-of-type(7n+1) { + clear: both; } + .large-up-7 > .column:last-child, .large-up-7 > .columns:last-child { + float: left; } + .large-up-8 > .column, .large-up-8 > .columns { + width: 12.5%; + float: left; } + .large-up-8 > .column:nth-of-type(1n), .large-up-8 > .columns:nth-of-type(1n) { + clear: none; } + .large-up-8 > .column:nth-of-type(8n+1), .large-up-8 > .columns:nth-of-type(8n+1) { + clear: both; } + .large-up-8 > .column:last-child, .large-up-8 > .columns:last-child { + float: left; } + .large-collapse > .column, .large-collapse > .columns { + padding-left: 0; + padding-right: 0; } + .large-collapse .row { + margin-left: 0; + margin-right: 0; } + .expanded.row .large-collapse.row { + margin-left: 0; + margin-right: 0; } + .large-uncollapse > .column, .large-uncollapse > .columns { + padding-left: 0.9375rem; + padding-right: 0.9375rem; } + .large-centered { + margin-left: auto; + margin-right: auto; } + .large-centered, .large-centered:last-child:not(:first-child) { + float: none; + clear: both; } + .large-uncentered, + .large-push-0, + .large-pull-0 { + position: static; + margin-left: 0; + margin-right: 0; + float: left; } } + +div, +dl, +dt, +dd, +ul, +ol, +li, +h1, +h2, +h3, +h4, +h5, +h6, +pre, +form, +p, +blockquote, +th, +td { + margin: 0; + padding: 0; } + +p { + font-size: inherit; + line-height: 1.6; + margin-bottom: 1rem; + text-rendering: optimizeLegibility; } + +em, +i { + font-style: italic; + line-height: inherit; } + +strong, +b { + font-weight: bold; + line-height: inherit; } + +small { + font-size: 80%; + line-height: inherit; } + +h1, +h2, +h3, +h4, +h5, +h6 { + font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; + font-weight: normal; + font-style: normal; + color: inherit; + text-rendering: optimizeLegibility; + margin-top: 0; + margin-bottom: 0.5rem; + line-height: 1.4; } + h1 small, + h2 small, + h3 small, + h4 small, + h5 small, + h6 small { + color: #cacaca; + line-height: 0; } + +h1 { + font-size: 1.5rem; } + +h2 { + font-size: 1.25rem; } + +h3 { + font-size: 1.1875rem; } + +h4 { + font-size: 1.125rem; } + +h5 { + font-size: 1.0625rem; } + +h6 { + font-size: 1rem; } + +@media screen and (min-width: 40em) { + h1 { + font-size: 3rem; } + h2 { + font-size: 2.5rem; } + h3 { + font-size: 1.9375rem; } + h4 { + font-size: 1.5625rem; } + h5 { + font-size: 1.25rem; } + h6 { + font-size: 1rem; } } + +a { + color: #2199e8; + text-decoration: none; + line-height: inherit; + cursor: pointer; } + a:hover, a:focus { + color: #1585cf; } + a img { + border: 0; } + +hr { + max-width: 75rem; + height: 0; + border-right: 0; + border-top: 0; + border-bottom: 1px solid #cacaca; + border-left: 0; + margin: 1.25rem auto; + clear: both; } + +ul, +ol, +dl { + line-height: 1.6; + margin-bottom: 1rem; + list-style-position: outside; } + +li { + font-size: inherit; } + +ul { + list-style-type: disc; + margin-left: 1.25rem; } + +ol { + margin-left: 1.25rem; } + +ul ul, ol ul, ul ol, ol ol { + margin-left: 1.25rem; + margin-bottom: 0; } + +dl { + margin-bottom: 1rem; } + dl dt { + margin-bottom: 0.3rem; + font-weight: bold; } + +blockquote { + margin: 0 0 1rem; + padding: 0.5625rem 1.25rem 0 1.1875rem; + border-left: 1px solid #cacaca; } + blockquote, blockquote p { + line-height: 1.6; + color: #8a8a8a; } + +cite { + display: block; + font-size: 0.8125rem; + color: #8a8a8a; } + cite:before { + content: '\2014 \0020'; } + +abbr { + color: #0a0a0a; + cursor: help; + border-bottom: 1px dotted #0a0a0a; } + +code { + font-family: Consolas, "Liberation Mono", Courier, monospace; + font-weight: normal; + color: #0a0a0a; + background-color: #e6e6e6; + border: 1px solid #cacaca; + padding: 0.125rem 0.3125rem 0.0625rem; } + +kbd { + padding: 0.125rem 0.25rem 0; + margin: 0; + background-color: #e6e6e6; + color: #0a0a0a; + font-family: Consolas, "Liberation Mono", Courier, monospace; } + +.subheader { + margin-top: 0.2rem; + margin-bottom: 0.5rem; + font-weight: normal; + line-height: 1.4; + color: #8a8a8a; } + +.lead { + font-size: 125%; + line-height: 1.6; } + +.stat { + font-size: 2.5rem; + line-height: 1; } + p + .stat { + margin-top: -1rem; } + +.no-bullet { + margin-left: 0; + list-style: none; } + +.text-left { + text-align: left; } + +.text-right { + text-align: right; } + +.text-center { + text-align: center; } + +.text-justify { + text-align: justify; } + +@media screen and (min-width: 40em) { + .medium-text-left { + text-align: left; } + .medium-text-right { + text-align: right; } + .medium-text-center { + text-align: center; } + .medium-text-justify { + text-align: justify; } } + +@media screen and (min-width: 64em) { + .large-text-left { + text-align: left; } + .large-text-right { + text-align: right; } + .large-text-center { + text-align: center; } + .large-text-justify { + text-align: justify; } } + +.show-for-print { + display: none !important; } + +@media print { + * { + background: transparent !important; + color: black !important; + box-shadow: none !important; + text-shadow: none !important; } + .show-for-print { + display: block !important; } + .hide-for-print { + display: none !important; } + table.show-for-print { + display: table !important; } + thead.show-for-print { + display: table-header-group !important; } + tbody.show-for-print { + display: table-row-group !important; } + tr.show-for-print { + display: table-row !important; } + td.show-for-print { + display: table-cell !important; } + th.show-for-print { + display: table-cell !important; } + a, + a:visited { + text-decoration: underline; } + a[href]:after { + content: " (" attr(href) ")"; } + .ir a:after, + a[href^='javascript:']:after, + a[href^='#']:after { + content: ''; } + abbr[title]:after { + content: " (" attr(title) ")"; } + pre, + blockquote { + border: 1px solid #8a8a8a; + page-break-inside: avoid; } + thead { + display: table-header-group; } + tr, + img { + page-break-inside: avoid; } + img { + max-width: 100% !important; } + @page { + margin: 0.5cm; } + p, + h2, + h3 { + orphans: 3; + widows: 3; } + h2, + h3 { + page-break-after: avoid; } } + +.button { + display: inline-block; + text-align: center; + line-height: 1; + cursor: pointer; + -webkit-appearance: none; + transition: background-color 0.25s ease-out, color 0.25s ease-out; + vertical-align: middle; + border: 1px solid transparent; + border-radius: 0; + padding: 0.85em 1em; + margin: 0 0 1rem 0; + font-size: 0.9rem; + background-color: #2199e8; + color: #fefefe; } + [data-whatinput='mouse'] .button { + outline: 0; } + .button:hover, .button:focus { + background-color: #1583cc; + color: #fefefe; } + .button.tiny { + font-size: 0.6rem; } + .button.small { + font-size: 0.75rem; } + .button.large { + font-size: 1.25rem; } + .button.expanded { + display: block; + width: 100%; + margin-left: 0; + margin-right: 0; } + .button.primary { + background-color: #2199e8; + color: #fefefe; } + .button.primary:hover, .button.primary:focus { + background-color: #147cc0; + color: #fefefe; } + .button.secondary { + background-color: #777; + color: #fefefe; } + .button.secondary:hover, .button.secondary:focus { + background-color: #5f5f5f; + color: #fefefe; } + .button.success { + background-color: #3adb76; + color: #fefefe; } + .button.success:hover, .button.success:focus { + background-color: #22bb5b; + color: #fefefe; } + .button.warning { + background-color: #ffae00; + color: #fefefe; } + .button.warning:hover, .button.warning:focus { + background-color: #cc8b00; + color: #fefefe; } + .button.alert { + background-color: #ec5840; + color: #fefefe; } + .button.alert:hover, .button.alert:focus { + background-color: #da3116; + color: #fefefe; } + .button.hollow { + border: 1px solid #2199e8; + color: #2199e8; } + .button.hollow, .button.hollow:hover, .button.hollow:focus { + background-color: transparent; } + .button.hollow:hover, .button.hollow:focus { + border-color: #0c4d78; + color: #0c4d78; } + .button.hollow.primary { + border: 1px solid #2199e8; + color: #2199e8; } + .button.hollow.primary:hover, .button.hollow.primary:focus { + border-color: #0c4d78; + color: #0c4d78; } + .button.hollow.secondary { + border: 1px solid #777; + color: #777; } + .button.hollow.secondary:hover, .button.hollow.secondary:focus { + border-color: #3c3c3c; + color: #3c3c3c; } + .button.hollow.success { + border: 1px solid #3adb76; + color: #3adb76; } + .button.hollow.success:hover, .button.hollow.success:focus { + border-color: #157539; + color: #157539; } + .button.hollow.warning { + border: 1px solid #ffae00; + color: #ffae00; } + .button.hollow.warning:hover, .button.hollow.warning:focus { + border-color: #805700; + color: #805700; } + .button.hollow.alert { + border: 1px solid #ec5840; + color: #ec5840; } + .button.hollow.alert:hover, .button.hollow.alert:focus { + border-color: #881f0e; + color: #881f0e; } + .button.disabled, .button[disabled] { + opacity: 0.25; + cursor: not-allowed; } + .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus { + background-color: #2199e8; + color: #fefefe; } + .button.disabled.primary, .button[disabled].primary { + opacity: 0.25; + cursor: not-allowed; } + .button.disabled.primary:hover, .button.disabled.primary:focus, .button[disabled].primary:hover, .button[disabled].primary:focus { + background-color: #2199e8; + color: #fefefe; } + .button.disabled.secondary, .button[disabled].secondary { + opacity: 0.25; + cursor: not-allowed; } + .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus { + background-color: #777; + color: #fefefe; } + .button.disabled.success, .button[disabled].success { + opacity: 0.25; + cursor: not-allowed; } + .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus { + background-color: #3adb76; + color: #fefefe; } + .button.disabled.warning, .button[disabled].warning { + opacity: 0.25; + cursor: not-allowed; } + .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus { + background-color: #ffae00; + color: #fefefe; } + .button.disabled.alert, .button[disabled].alert { + opacity: 0.25; + cursor: not-allowed; } + .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus { + background-color: #ec5840; + color: #fefefe; } + .button.dropdown::after { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 0.4em; + border-color: #fefefe transparent transparent; + border-top-style: solid; + border-bottom-width: 0; + position: relative; + top: 0.4em; + float: right; + margin-left: 1em; + display: inline-block; } + .button.arrow-only::after { + margin-left: 0; + float: none; + top: -0.1em; } + +[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'], +textarea { + display: block; + box-sizing: border-box; + width: 100%; + height: 2.4375rem; + padding: 0.5rem; + border: 1px solid #cacaca; + margin: 0 0 1rem; + font-family: inherit; + font-size: 1rem; + color: #0a0a0a; + background-color: #fefefe; + box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1); + border-radius: 0; + transition: box-shadow 0.5s, border-color 0.25s ease-in-out; + -webkit-appearance: none; + -moz-appearance: none; } + [type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='url']:focus, [type='color']:focus, + textarea:focus { + border: 1px solid #8a8a8a; + background-color: #fefefe; + outline: none; + box-shadow: 0 0 5px #cacaca; + transition: box-shadow 0.5s, border-color 0.25s ease-in-out; } + +textarea { + max-width: 100%; } + textarea[rows] { + height: auto; } + +input::-webkit-input-placeholder, +textarea::-webkit-input-placeholder { + color: #cacaca; } + +input::-moz-placeholder, +textarea::-moz-placeholder { + color: #cacaca; } + +input:-ms-input-placeholder, +textarea:-ms-input-placeholder { + color: #cacaca; } + +input::placeholder, +textarea::placeholder { + color: #cacaca; } + +input:disabled, input[readonly], +textarea:disabled, +textarea[readonly] { + background-color: #e6e6e6; + cursor: not-allowed; } + +[type='submit'], +[type='button'] { + border-radius: 0; + -webkit-appearance: none; + -moz-appearance: none; } + +input[type='search'] { + box-sizing: border-box; } + +[type='file'], +[type='checkbox'], +[type='radio'] { + margin: 0 0 1rem; } + +[type='checkbox'] + label, +[type='radio'] + label { + display: inline-block; + margin-left: 0.5rem; + margin-right: 1rem; + margin-bottom: 0; + vertical-align: baseline; } + [type='checkbox'] + label[for], + [type='radio'] + label[for] { + cursor: pointer; } + +label > [type='checkbox'], +label > [type='radio'] { + margin-right: 0.5rem; } + +[type='file'] { + width: 100%; } + +label { + display: block; + margin: 0; + font-size: 0.875rem; + font-weight: normal; + line-height: 1.8; + color: #0a0a0a; } + label.middle { + margin: 0 0 1rem; + padding: 0.5625rem 0; } + +.help-text { + margin-top: -0.5rem; + font-size: 0.8125rem; + font-style: italic; + color: #0a0a0a; } + +.input-group { + display: table; + width: 100%; + margin-bottom: 1rem; } + .input-group > :first-child { + border-radius: 0 0 0 0; } + .input-group > :last-child > * { + border-radius: 0 0 0 0; } + +.input-group-label, .input-group-field, .input-group-button { + margin: 0; + white-space: nowrap; + display: table-cell; + vertical-align: middle; } + +.input-group-label { + text-align: center; + padding: 0 1rem; + background: #e6e6e6; + color: #0a0a0a; + border: 1px solid #cacaca; + white-space: nowrap; + width: 1%; + height: 100%; } + .input-group-label:first-child { + border-right: 0; } + .input-group-label:last-child { + border-left: 0; } + +.input-group-field { + border-radius: 0; + height: 2.5rem; } + +.input-group-button { + padding-top: 0; + padding-bottom: 0; + text-align: center; + height: 100%; + width: 1%; } + .input-group-button a, + .input-group-button input, + .input-group-button button { + margin: 0; } + +.input-group .input-group-button { + display: table-cell; } + +fieldset { + border: 0; + padding: 0; + margin: 0; } + +legend { + margin-bottom: 0.5rem; + max-width: 100%; } + +.fieldset { + border: 1px solid #cacaca; + padding: 1.25rem; + margin: 1.125rem 0; } + .fieldset legend { + background: #fefefe; + padding: 0 0.1875rem; + margin: 0; + margin-left: -0.1875rem; } + +select { + height: 2.4375rem; + padding: 0.5rem; + border: 1px solid #cacaca; + margin: 0 0 1rem; + font-size: 1rem; + font-family: inherit; + line-height: normal; + color: #0a0a0a; + background-color: #fefefe; + border-radius: 0; + -webkit-appearance: none; + -moz-appearance: none; + background-image: url("data:image/svg+xml;utf8,"); + background-size: 9px 6px; + background-position: right -1rem center; + background-origin: content-box; + background-repeat: no-repeat; + padding-right: 1.5rem; } + @media screen and (min-width: 0\0) { + select { + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg=="); } } + select:disabled { + background-color: #e6e6e6; + cursor: not-allowed; } + select::-ms-expand { + display: none; } + select[multiple] { + height: auto; + background-image: none; } + +.is-invalid-input:not(:focus) { + background-color: rgba(236, 88, 64, 0.1); + border-color: #ec5840; } + +.is-invalid-label { + color: #ec5840; } + +.form-error { + display: none; + margin-top: -0.5rem; + margin-bottom: 1rem; + font-size: 0.75rem; + font-weight: bold; + color: #ec5840; } + .form-error.is-visible { + display: block; } + +.accordion { + list-style-type: none; + background: #fefefe; + margin-left: 0; } + +.accordion-item:first-child > :first-child { + border-radius: 0 0 0 0; } + +.accordion-item:last-child > :last-child { + border-radius: 0 0 0 0; } + +.accordion-title { + display: block; + padding: 1.25rem 1rem; + line-height: 1; + font-size: 0.75rem; + color: #2199e8; + position: relative; + border: 1px solid #e6e6e6; + border-bottom: 0; } + :last-child:not(.is-active) > .accordion-title { + border-radius: 0 0 0 0; + border-bottom: 1px solid #e6e6e6; } + .accordion-title:hover, .accordion-title:focus { + background-color: #e6e6e6; } + .accordion-title::before { + content: '+'; + position: absolute; + right: 1rem; + top: 50%; + margin-top: -0.5rem; } + .is-active > .accordion-title::before { + content: '–'; } + +.accordion-content { + padding: 1rem; + display: none; + border: 1px solid #e6e6e6; + border-bottom: 0; + background-color: #fefefe; + color: #0a0a0a; } + :last-child > .accordion-content:last-child { + border-bottom: 1px solid #e6e6e6; } + +.is-accordion-submenu-parent > a { + position: relative; } + .is-accordion-submenu-parent > a::after { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 6px; + border-color: #2199e8 transparent transparent; + border-top-style: solid; + border-bottom-width: 0; + position: absolute; + top: 50%; + margin-top: -4px; + right: 1rem; } + +.is-accordion-submenu-parent[aria-expanded='true'] > a::after { + -webkit-transform-origin: 50% 50%; + -ms-transform-origin: 50% 50%; + transform-origin: 50% 50%; + -webkit-transform: scaleY(-1); + -ms-transform: scaleY(-1); + transform: scaleY(-1); } + +.badge { + display: inline-block; + padding: 0.3em; + min-width: 2.1em; + font-size: 0.6rem; + text-align: center; + border-radius: 50%; + background: #2199e8; + color: #fefefe; } + .badge.secondary { + background: #777; + color: #fefefe; } + .badge.success { + background: #3adb76; + color: #fefefe; } + .badge.warning { + background: #ffae00; + color: #fefefe; } + .badge.alert { + background: #ec5840; + color: #fefefe; } + +.breadcrumbs { + list-style: none; + margin: 0 0 1rem 0; } + .breadcrumbs::before, .breadcrumbs::after { + content: ' '; + display: table; } + .breadcrumbs::after { + clear: both; } + .breadcrumbs li { + float: left; + color: #0a0a0a; + font-size: 0.6875rem; + cursor: default; + text-transform: uppercase; } + .breadcrumbs li:not(:last-child)::after { + color: #cacaca; + content: "/"; + margin: 0 0.75rem; + position: relative; + top: 1px; + opacity: 1; } + .breadcrumbs a { + color: #2199e8; } + .breadcrumbs a:hover { + text-decoration: underline; } + .breadcrumbs .disabled { + color: #cacaca; + cursor: not-allowed; } + +.button-group { + margin-bottom: 1rem; + font-size: 0; } + .button-group::before, .button-group::after { + content: ' '; + display: table; } + .button-group::after { + clear: both; } + .button-group .button { + margin: 0; + margin-right: 1px; + margin-bottom: 1px; + font-size: 0.9rem; } + .button-group .button:last-child { + margin-right: 0; } + .button-group.tiny .button { + font-size: 0.6rem; } + .button-group.small .button { + font-size: 0.75rem; } + .button-group.large .button { + font-size: 1.25rem; } + .button-group.expanded { + margin-right: -1px; } + .button-group.expanded::before, .button-group.expanded::after { + display: none; } + .button-group.expanded .button:first-child:nth-last-child(2), .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button { + display: inline-block; + width: calc(50% - 1px); + margin-right: 1px; } + .button-group.expanded .button:first-child:nth-last-child(2):last-child, .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button:last-child { + margin-right: -6px; } + .button-group.expanded .button:first-child:nth-last-child(3), .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button { + display: inline-block; + width: calc(33.33333% - 1px); + margin-right: 1px; } + .button-group.expanded .button:first-child:nth-last-child(3):last-child, .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button:last-child { + margin-right: -6px; } + .button-group.expanded .button:first-child:nth-last-child(4), .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button { + display: inline-block; + width: calc(25% - 1px); + margin-right: 1px; } + .button-group.expanded .button:first-child:nth-last-child(4):last-child, .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button:last-child { + margin-right: -6px; } + .button-group.expanded .button:first-child:nth-last-child(5), .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button { + display: inline-block; + width: calc(20% - 1px); + margin-right: 1px; } + .button-group.expanded .button:first-child:nth-last-child(5):last-child, .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button:last-child { + margin-right: -6px; } + .button-group.expanded .button:first-child:nth-last-child(6), .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button { + display: inline-block; + width: calc(16.66667% - 1px); + margin-right: 1px; } + .button-group.expanded .button:first-child:nth-last-child(6):last-child, .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button:last-child { + margin-right: -6px; } + .button-group.primary .button { + background-color: #2199e8; + color: #fefefe; } + .button-group.primary .button:hover, .button-group.primary .button:focus { + background-color: #147cc0; + color: #fefefe; } + .button-group.secondary .button { + background-color: #777; + color: #fefefe; } + .button-group.secondary .button:hover, .button-group.secondary .button:focus { + background-color: #5f5f5f; + color: #fefefe; } + .button-group.success .button { + background-color: #3adb76; + color: #fefefe; } + .button-group.success .button:hover, .button-group.success .button:focus { + background-color: #22bb5b; + color: #fefefe; } + .button-group.warning .button { + background-color: #ffae00; + color: #fefefe; } + .button-group.warning .button:hover, .button-group.warning .button:focus { + background-color: #cc8b00; + color: #fefefe; } + .button-group.alert .button { + background-color: #ec5840; + color: #fefefe; } + .button-group.alert .button:hover, .button-group.alert .button:focus { + background-color: #da3116; + color: #fefefe; } + .button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button { + width: 100%; } + .button-group.stacked .button:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-medium .button:last-child { + margin-bottom: 0; } + @media screen and (min-width: 40em) { + .button-group.stacked-for-small .button { + width: auto; + margin-bottom: 0; } } + @media screen and (min-width: 64em) { + .button-group.stacked-for-medium .button { + width: auto; + margin-bottom: 0; } } + @media screen and (max-width: 39.9375em) { + .button-group.stacked-for-small.expanded { + display: block; } + .button-group.stacked-for-small.expanded .button { + display: block; + margin-right: 0; } } + +.callout { + margin: 0 0 1rem 0; + padding: 1rem; + border: 1px solid rgba(10, 10, 10, 0.25); + border-radius: 0; + position: relative; + color: #0a0a0a; + background-color: white; } + .callout > :first-child { + margin-top: 0; } + .callout > :last-child { + margin-bottom: 0; } + .callout.primary { + background-color: #def0fc; } + .callout.secondary { + background-color: #ebebeb; } + .callout.success { + background-color: #e1faea; } + .callout.warning { + background-color: #fff3d9; } + .callout.alert { + background-color: #fce6e2; } + .callout.small { + padding-top: 0.5rem; + padding-right: 0.5rem; + padding-bottom: 0.5rem; + padding-left: 0.5rem; } + .callout.large { + padding-top: 3rem; + padding-right: 3rem; + padding-bottom: 3rem; + padding-left: 3rem; } + +.close-button { + position: absolute; + color: #8a8a8a; + right: 1rem; + top: 0.5rem; + font-size: 2em; + line-height: 1; + cursor: pointer; } + [data-whatinput='mouse'] .close-button { + outline: 0; } + .close-button:hover, .close-button:focus { + color: #0a0a0a; } + +.menu { + margin: 0; + list-style-type: none; } + .menu > li { + display: table-cell; + vertical-align: middle; } + [data-whatinput='mouse'] .menu > li { + outline: 0; } + .menu > li > a { + display: block; + padding: 0.7rem 1rem; + line-height: 1; } + .menu input, + .menu a, + .menu button { + margin-bottom: 0; } + .menu > li > a img, + .menu > li > a i, + .menu > li > a svg { + vertical-align: middle; } + .menu > li > a img + span, + .menu > li > a i + span, + .menu > li > a svg + span { + vertical-align: middle; } + .menu > li > a img, + .menu > li > a i, + .menu > li > a svg { + margin-right: 0.25rem; + display: inline-block; } + .menu > li { + display: table-cell; } + .menu.vertical > li { + display: block; } + @media screen and (min-width: 40em) { + .menu.medium-horizontal > li { + display: table-cell; } + .menu.medium-vertical > li { + display: block; } } + @media screen and (min-width: 64em) { + .menu.large-horizontal > li { + display: table-cell; } + .menu.large-vertical > li { + display: block; } } + .menu.simple li { + line-height: 1; + display: inline-block; + margin-right: 1rem; } + .menu.simple a { + padding: 0; } + .menu.align-right::before, .menu.align-right::after { + content: ' '; + display: table; } + .menu.align-right::after { + clear: both; } + .menu.align-right > li { + float: right; } + .menu.expanded { + width: 100%; + display: table; + table-layout: fixed; } + .menu.expanded > li:first-child:last-child { + width: 100%; } + .menu.icon-top > li > a { + text-align: center; } + .menu.icon-top > li > a img, + .menu.icon-top > li > a i, + .menu.icon-top > li > a svg { + display: block; + margin: 0 auto 0.25rem; } + .menu.nested { + margin-left: 1rem; } + .menu .active > a { + color: #fefefe; + background: #2199e8; } + +.menu-text { + font-weight: bold; + color: inherit; + line-height: 1; + padding-top: 0; + padding-bottom: 0; + padding: 0.7rem 1rem; } + +.menu-centered { + text-align: center; } + .menu-centered > .menu { + display: inline-block; } + +.no-js [data-responsive-menu] ul { + display: none; } + +.menu-icon { + position: relative; + display: inline-block; + vertical-align: middle; + cursor: pointer; + width: 20px; + height: 16px; } + .menu-icon::after { + content: ''; + position: absolute; + display: block; + width: 100%; + height: 2px; + background: #fefefe; + top: 0; + left: 0; + box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe; } + .menu-icon:hover::after { + background: #cacaca; + box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca; } + +.menu-icon.dark { + position: relative; + display: inline-block; + vertical-align: middle; + cursor: pointer; + width: 20px; + height: 16px; } + .menu-icon.dark::after { + content: ''; + position: absolute; + display: block; + width: 100%; + height: 2px; + background: #0a0a0a; + top: 0; + left: 0; + box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a; } + .menu-icon.dark:hover::after { + background: #8a8a8a; + box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a; } + +.is-drilldown { + position: relative; + overflow: hidden; } + .is-drilldown li { + display: block !important; } + +.is-drilldown-submenu { + position: absolute; + top: 0; + left: 100%; + z-index: -1; + width: 100%; + background: #fefefe; + transition: -webkit-transform 0.15s linear; + transition: transform 0.15s linear; } + .is-drilldown-submenu.is-active { + z-index: 1; + display: block; + -webkit-transform: translateX(-100%); + -ms-transform: translateX(-100%); + transform: translateX(-100%); } + .is-drilldown-submenu.is-closing { + -webkit-transform: translateX(100%); + -ms-transform: translateX(100%); + transform: translateX(100%); } + +.is-drilldown-submenu-parent > a { + position: relative; } + .is-drilldown-submenu-parent > a::after { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 6px; + border-color: transparent transparent transparent #2199e8; + border-left-style: solid; + border-right-width: 0; + position: absolute; + top: 50%; + margin-top: -6px; + right: 1rem; } + +.js-drilldown-back > a::before { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 6px; + border-color: transparent #2199e8 transparent transparent; + border-right-style: solid; + border-left-width: 0; + border-left-width: 0; + display: inline-block; + vertical-align: middle; + margin-right: 0.75rem; } + +.dropdown-pane { + background-color: #fefefe; + border: 1px solid #cacaca; + border-radius: 0; + display: block; + font-size: 1rem; + padding: 1rem; + position: absolute; + visibility: hidden; + width: 300px; + z-index: 10; } + .dropdown-pane.is-open { + visibility: visible; } + +.dropdown-pane.tiny { + width: 100px; } + +.dropdown-pane.small { + width: 200px; } + +.dropdown-pane.large { + width: 400px; } + +.dropdown.menu > li.opens-left > .is-dropdown-submenu { + left: auto; + right: 0; + top: 100%; } + +.dropdown.menu > li.opens-right > .is-dropdown-submenu { + right: auto; + left: 0; + top: 100%; } + +.dropdown.menu > li.is-dropdown-submenu-parent > a { + padding-right: 1.5rem; + position: relative; } + +.dropdown.menu > li.is-dropdown-submenu-parent > a::after { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 5px; + border-color: #2199e8 transparent transparent; + border-top-style: solid; + border-bottom-width: 0; + right: 5px; + margin-top: -2px; } + +[data-whatinput='mouse'] .dropdown.menu a { + outline: 0; } + +.no-js .dropdown.menu ul { + display: none; } + +.dropdown.menu.vertical > li .is-dropdown-submenu { + top: 0; } + +.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu { + left: auto; + right: 100%; } + +.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu { + right: auto; + left: 100%; } + +.dropdown.menu.vertical > li > a::after { + right: 14px; + margin-top: -3px; } + +.dropdown.menu.vertical > li.opens-left > a::after { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 5px; + border-color: transparent #2199e8 transparent transparent; + border-right-style: solid; + border-left-width: 0; } + +.dropdown.menu.vertical > li.opens-right > a::after { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 5px; + border-color: transparent transparent transparent #2199e8; + border-left-style: solid; + border-right-width: 0; } + +@media screen and (min-width: 40em) { + .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu { + left: auto; + right: 0; + top: 100%; } + .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu { + right: auto; + left: 0; + top: 100%; } + .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a { + padding-right: 1.5rem; + position: relative; } + .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 5px; + border-color: #2199e8 transparent transparent; + border-top-style: solid; + border-bottom-width: 0; + right: 5px; + margin-top: -2px; } + .dropdown.menu.medium-vertical > li .is-dropdown-submenu { + top: 0; } + .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu { + left: auto; + right: 100%; } + .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu { + right: auto; + left: 100%; } + .dropdown.menu.medium-vertical > li > a::after { + right: 14px; + margin-top: -3px; } + .dropdown.menu.medium-vertical > li.opens-left > a::after { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 5px; + border-color: transparent #2199e8 transparent transparent; + border-right-style: solid; + border-left-width: 0; } + .dropdown.menu.medium-vertical > li.opens-right > a::after { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 5px; + border-color: transparent transparent transparent #2199e8; + border-left-style: solid; + border-right-width: 0; } } + +@media screen and (min-width: 64em) { + .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu { + left: auto; + right: 0; + top: 100%; } + .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu { + right: auto; + left: 0; + top: 100%; } + .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a { + padding-right: 1.5rem; + position: relative; } + .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 5px; + border-color: #2199e8 transparent transparent; + border-top-style: solid; + border-bottom-width: 0; + right: 5px; + margin-top: -2px; } + .dropdown.menu.large-vertical > li .is-dropdown-submenu { + top: 0; } + .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu { + left: auto; + right: 100%; } + .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu { + right: auto; + left: 100%; } + .dropdown.menu.large-vertical > li > a::after { + right: 14px; + margin-top: -3px; } + .dropdown.menu.large-vertical > li.opens-left > a::after { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 5px; + border-color: transparent #2199e8 transparent transparent; + border-right-style: solid; + border-left-width: 0; } + .dropdown.menu.large-vertical > li.opens-right > a::after { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 5px; + border-color: transparent transparent transparent #2199e8; + border-left-style: solid; + border-right-width: 0; } } + +.dropdown.menu.align-right .is-dropdown-submenu.first-sub { + top: 100%; + left: auto; + right: 0; } + +.is-dropdown-menu.vertical { + width: 100px; } + .is-dropdown-menu.vertical.align-right { + float: right; } + +.is-dropdown-submenu-parent { + position: relative; } + .is-dropdown-submenu-parent a::after { + position: absolute; + top: 50%; + right: 5px; + margin-top: -2px; } + .is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu { + top: 100%; + left: auto; } + .is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu { + left: auto; + right: 100%; } + .is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu { + right: auto; + left: 100%; } + +.is-dropdown-submenu { + display: none; + position: absolute; + top: 0; + left: 100%; + min-width: 200px; + z-index: 1; + background: #fefefe; + border: 1px solid #cacaca; } + .is-dropdown-submenu .is-dropdown-submenu-parent > a::after { + right: 14px; + margin-top: -3px; } + .is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 5px; + border-color: transparent #2199e8 transparent transparent; + border-right-style: solid; + border-left-width: 0; } + .is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 5px; + border-color: transparent transparent transparent #2199e8; + border-left-style: solid; + border-right-width: 0; } + .is-dropdown-submenu .is-dropdown-submenu { + margin-top: -1px; } + .is-dropdown-submenu > li { + width: 100%; } + .is-dropdown-submenu.js-dropdown-active { + display: block; } + +.flex-video { + position: relative; + height: 0; + padding-bottom: 75%; + margin-bottom: 1rem; + overflow: hidden; } + .flex-video iframe, + .flex-video object, + .flex-video embed, + .flex-video video { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; } + .flex-video.widescreen { + padding-bottom: 56.25%; } + .flex-video.vimeo { + padding-top: 0; } + +.label { + display: inline-block; + padding: 0.33333rem 0.5rem; + font-size: 0.8rem; + line-height: 1; + white-space: nowrap; + cursor: default; + border-radius: 0; + background: #2199e8; + color: #fefefe; } + .label.secondary { + background: #777; + color: #fefefe; } + .label.success { + background: #3adb76; + color: #fefefe; } + .label.warning { + background: #ffae00; + color: #fefefe; } + .label.alert { + background: #ec5840; + color: #fefefe; } + +.media-object { + margin-bottom: 1rem; + display: block; } + .media-object img { + max-width: none; } + @media screen and (max-width: 39.9375em) { + .media-object.stack-for-small .media-object-section { + padding: 0; + padding-bottom: 1rem; + display: block; } + .media-object.stack-for-small .media-object-section img { + width: 100%; } } + +.media-object-section { + display: table-cell; + vertical-align: top; } + .media-object-section:first-child { + padding-right: 1rem; } + .media-object-section:last-child:not(:nth-child(2)) { + padding-left: 1rem; } + .media-object-section > :last-child { + margin-bottom: 0; } + .media-object-section.middle { + vertical-align: middle; } + .media-object-section.bottom { + vertical-align: bottom; } + +html, +body { + height: 100%; } + +.off-canvas-wrapper { + width: 100%; + overflow-x: hidden; + position: relative; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + -webkit-overflow-scrolling: auto; } + +.off-canvas-wrapper-inner { + position: relative; + width: 100%; + min-height: 100%; + transition: -webkit-transform 0.5s ease; + transition: transform 0.5s ease; } + .off-canvas-wrapper-inner::before, .off-canvas-wrapper-inner::after { + content: ' '; + display: table; } + .off-canvas-wrapper-inner::after { + clear: both; } + +.off-canvas-content, +.off-canvas-content { + min-height: 100%; + background: #fefefe; + transition: -webkit-transform 0.5s ease; + transition: transform 0.5s ease; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + z-index: 1; + padding-bottom: 0.1px; + box-shadow: 0 0 10px rgba(10, 10, 10, 0.5); } + +.js-off-canvas-exit { + display: none; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: rgba(254, 254, 254, 0.25); + cursor: pointer; + transition: background 0.5s ease; } + +.off-canvas { + position: absolute; + background: #e6e6e6; + z-index: -1; + max-height: 100%; + overflow-y: auto; + -webkit-transform: translateX(0); + -ms-transform: translateX(0); + transform: translateX(0); } + [data-whatinput='mouse'] .off-canvas { + outline: 0; } + .off-canvas.position-left { + left: -250px; + top: 0; + width: 250px; } + .is-open-left { + -webkit-transform: translateX(250px); + -ms-transform: translateX(250px); + transform: translateX(250px); } + .off-canvas.position-right { + right: -250px; + top: 0; + width: 250px; } + .is-open-right { + -webkit-transform: translateX(-250px); + -ms-transform: translateX(-250px); + transform: translateX(-250px); } + +@media screen and (min-width: 40em) { + .position-left.reveal-for-medium { + left: 0; + z-index: auto; + position: fixed; } + .position-left.reveal-for-medium ~ .off-canvas-content { + margin-left: 250px; } + .position-right.reveal-for-medium { + right: 0; + z-index: auto; + position: fixed; } + .position-right.reveal-for-medium ~ .off-canvas-content { + margin-right: 250px; } } + +@media screen and (min-width: 64em) { + .position-left.reveal-for-large { + left: 0; + z-index: auto; + position: fixed; } + .position-left.reveal-for-large ~ .off-canvas-content { + margin-left: 250px; } + .position-right.reveal-for-large { + right: 0; + z-index: auto; + position: fixed; } + .position-right.reveal-for-large ~ .off-canvas-content { + margin-right: 250px; } } + +.orbit { + position: relative; } + +.orbit-container { + position: relative; + margin: 0; + overflow: hidden; + list-style: none; } + +.orbit-slide { + width: 100%; + max-height: 100%; } + .orbit-slide.no-motionui.is-active { + top: 0; + left: 0; } + +.orbit-figure { + margin: 0; } + +.orbit-image { + margin: 0; + width: 100%; + max-width: 100%; } + +.orbit-caption { + position: absolute; + bottom: 0; + width: 100%; + padding: 1rem; + margin-bottom: 0; + color: #fefefe; + background-color: rgba(10, 10, 10, 0.5); } + +.orbit-previous, .orbit-next { + position: absolute; + top: 50%; + -webkit-transform: translateY(-50%); + -ms-transform: translateY(-50%); + transform: translateY(-50%); + z-index: 10; + padding: 1rem; + color: #fefefe; } + [data-whatinput='mouse'] .orbit-previous, [data-whatinput='mouse'] .orbit-next { + outline: 0; } + .orbit-previous:hover, .orbit-next:hover, .orbit-previous:active, .orbit-next:active, .orbit-previous:focus, .orbit-next:focus { + background-color: rgba(10, 10, 10, 0.5); } + +.orbit-previous { + left: 0; } + +.orbit-next { + left: auto; + right: 0; } + +.orbit-bullets { + position: relative; + margin-top: 0.8rem; + margin-bottom: 0.8rem; + text-align: center; } + [data-whatinput='mouse'] .orbit-bullets { + outline: 0; } + .orbit-bullets button { + width: 1.2rem; + height: 1.2rem; + margin: 0.1rem; + background-color: #cacaca; + border-radius: 50%; } + .orbit-bullets button:hover { + background-color: #8a8a8a; } + .orbit-bullets button.is-active { + background-color: #8a8a8a; } + +.pagination { + margin-left: 0; + margin-bottom: 1rem; } + .pagination::before, .pagination::after { + content: ' '; + display: table; } + .pagination::after { + clear: both; } + .pagination li { + font-size: 0.875rem; + margin-right: 0.0625rem; + border-radius: 0; + display: none; } + .pagination li:last-child, .pagination li:first-child { + display: inline-block; } + @media screen and (min-width: 40em) { + .pagination li { + display: inline-block; } } + .pagination a, + .pagination button { + color: #0a0a0a; + display: block; + padding: 0.1875rem 0.625rem; + border-radius: 0; } + .pagination a:hover, + .pagination button:hover { + background: #e6e6e6; } + .pagination .current { + padding: 0.1875rem 0.625rem; + background: #2199e8; + color: #fefefe; + cursor: default; } + .pagination .disabled { + padding: 0.1875rem 0.625rem; + color: #cacaca; + cursor: not-allowed; } + .pagination .disabled:hover { + background: transparent; } + .pagination .ellipsis::after { + content: '\2026'; + padding: 0.1875rem 0.625rem; + color: #0a0a0a; } + +.pagination-previous a::before, +.pagination-previous.disabled::before { + content: '\00ab'; + display: inline-block; + margin-right: 0.5rem; } + +.pagination-next a::after, +.pagination-next.disabled::after { + content: '\00bb'; + display: inline-block; + margin-left: 0.5rem; } + +.progress { + background-color: #cacaca; + height: 1rem; + margin-bottom: 1rem; + border-radius: 0; } + .progress.primary .progress-meter { + background-color: #2199e8; } + .progress.secondary .progress-meter { + background-color: #777; } + .progress.success .progress-meter { + background-color: #3adb76; } + .progress.warning .progress-meter { + background-color: #ffae00; } + .progress.alert .progress-meter { + background-color: #ec5840; } + +.progress-meter { + position: relative; + display: block; + width: 0%; + height: 100%; + background-color: #2199e8; } + +.progress-meter-text { + position: absolute; + top: 50%; + left: 50%; + -webkit-transform: translate(-50%, -50%); + -ms-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); + position: absolute; + margin: 0; + font-size: 0.75rem; + font-weight: bold; + color: #fefefe; + white-space: nowrap; } + +body.is-reveal-open { + overflow: hidden; } + +html.is-reveal-open, +html.is-reveal-open body { + min-height: 100%; + overflow: hidden; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; } + +.reveal-overlay { + display: none; + position: fixed; + top: 0; + bottom: 0; + left: 0; + right: 0; + z-index: 1005; + background-color: rgba(10, 10, 10, 0.45); + overflow-y: scroll; } + +.reveal { + display: none; + z-index: 1006; + padding: 1rem; + border: 1px solid #cacaca; + background-color: #fefefe; + border-radius: 0; + position: relative; + top: 100px; + margin-left: auto; + margin-right: auto; + overflow-y: auto; } + [data-whatinput='mouse'] .reveal { + outline: 0; } + @media screen and (min-width: 40em) { + .reveal { + min-height: 0; } } + .reveal .column, .reveal .columns, + .reveal .columns { + min-width: 0; } + .reveal > :last-child { + margin-bottom: 0; } + @media screen and (min-width: 40em) { + .reveal { + width: 600px; + max-width: 75rem; } } + @media screen and (min-width: 40em) { + .reveal .reveal { + left: auto; + right: auto; + margin: 0 auto; } } + .reveal.collapse { + padding: 0; } + @media screen and (min-width: 40em) { + .reveal.tiny { + width: 30%; + max-width: 75rem; } } + @media screen and (min-width: 40em) { + .reveal.small { + width: 50%; + max-width: 75rem; } } + @media screen and (min-width: 40em) { + .reveal.large { + width: 90%; + max-width: 75rem; } } + .reveal.full { + top: 0; + left: 0; + width: 100%; + height: 100%; + height: 100vh; + min-height: 100vh; + max-width: none; + margin-left: 0; + border: 0; + border-radius: 0; } + @media screen and (max-width: 39.9375em) { + .reveal { + top: 0; + left: 0; + width: 100%; + height: 100%; + height: 100vh; + min-height: 100vh; + max-width: none; + margin-left: 0; + border: 0; + border-radius: 0; } } + .reveal.without-overlay { + position: fixed; } + +.slider { + position: relative; + height: 0.5rem; + margin-top: 1.25rem; + margin-bottom: 2.25rem; + background-color: #e6e6e6; + cursor: pointer; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + -ms-touch-action: none; + touch-action: none; } + +.slider-fill { + position: absolute; + top: 0; + left: 0; + display: inline-block; + max-width: 100%; + height: 0.5rem; + background-color: #cacaca; + transition: all 0.2s ease-in-out; } + .slider-fill.is-dragging { + transition: all 0s linear; } + +.slider-handle { + position: absolute; + top: 50%; + -webkit-transform: translateY(-50%); + -ms-transform: translateY(-50%); + transform: translateY(-50%); + position: absolute; + left: 0; + z-index: 1; + display: inline-block; + width: 1.4rem; + height: 1.4rem; + background-color: #2199e8; + transition: all 0.2s ease-in-out; + -ms-touch-action: manipulation; + touch-action: manipulation; + border-radius: 0; } + [data-whatinput='mouse'] .slider-handle { + outline: 0; } + .slider-handle:hover { + background-color: #1583cc; } + .slider-handle.is-dragging { + transition: all 0s linear; } + +.slider.disabled, +.slider[disabled] { + opacity: 0.25; + cursor: not-allowed; } + +.slider.vertical { + display: inline-block; + width: 0.5rem; + height: 12.5rem; + margin: 0 1.25rem; + -webkit-transform: scale(1, -1); + -ms-transform: scale(1, -1); + transform: scale(1, -1); } + .slider.vertical .slider-fill { + top: 0; + width: 0.5rem; + max-height: 100%; } + .slider.vertical .slider-handle { + position: absolute; + top: 0; + left: 50%; + width: 1.4rem; + height: 1.4rem; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + transform: translateX(-50%); } + +.sticky-container { + position: relative; } + +.sticky { + position: absolute; + z-index: 0; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); } + +.sticky.is-stuck { + position: fixed; + z-index: 5; } + .sticky.is-stuck.is-at-top { + top: 0; } + .sticky.is-stuck.is-at-bottom { + bottom: 0; } + +.sticky.is-anchored { + position: absolute; + left: auto; + right: auto; } + .sticky.is-anchored.is-at-bottom { + bottom: 0; } + +.switch { + height: 2rem; + margin-bottom: 1rem; + outline: 0; + position: relative; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + color: #fefefe; + font-weight: bold; + font-size: 0.875rem; } + +.switch-input { + opacity: 0; + position: absolute; + margin-bottom: 0; } + +.switch-paddle { + background: #cacaca; + cursor: pointer; + display: block; + position: relative; + width: 4rem; + height: 2rem; + transition: all 0.25s ease-out; + border-radius: 0; + color: inherit; + font-weight: inherit; } + input + .switch-paddle { + margin: 0; } + .switch-paddle::after { + background: #fefefe; + content: ''; + display: block; + position: absolute; + height: 1.5rem; + left: 0.25rem; + top: 0.25rem; + width: 1.5rem; + transition: all 0.25s ease-out; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + border-radius: 0; } + input:checked ~ .switch-paddle { + background: #2199e8; } + input:checked ~ .switch-paddle::after { + left: 2.25rem; } + [data-whatinput='mouse'] input:focus ~ .switch-paddle { + outline: 0; } + +.switch-active, .switch-inactive { + position: absolute; + top: 50%; + -webkit-transform: translateY(-50%); + -ms-transform: translateY(-50%); + transform: translateY(-50%); } + +.switch-active { + left: 8%; + display: none; } + input:checked + label > .switch-active { + display: block; } + +.switch-inactive { + right: 15%; } + input:checked + label > .switch-inactive { + display: none; } + +.switch.tiny { + height: 1.5rem; } + .switch.tiny .switch-paddle { + width: 3rem; + height: 1.5rem; + font-size: 0.625rem; } + .switch.tiny .switch-paddle::after { + width: 1rem; + height: 1rem; } + .switch.tiny input:checked ~ .switch-paddle::after { + left: 1.75rem; } + +.switch.small { + height: 1.75rem; } + .switch.small .switch-paddle { + width: 3.5rem; + height: 1.75rem; + font-size: 0.75rem; } + .switch.small .switch-paddle::after { + width: 1.25rem; + height: 1.25rem; } + .switch.small input:checked ~ .switch-paddle::after { + left: 2rem; } + +.switch.large { + height: 2.5rem; } + .switch.large .switch-paddle { + width: 5rem; + height: 2.5rem; + font-size: 1rem; } + .switch.large .switch-paddle::after { + width: 2rem; + height: 2rem; } + .switch.large input:checked ~ .switch-paddle::after { + left: 2.75rem; } + +table { + width: 100%; + margin-bottom: 1rem; + border-radius: 0; } + table thead, + table tbody, + table tfoot { + border: 1px solid #f1f1f1; + background-color: #fefefe; } + table caption { + font-weight: bold; + padding: 0.5rem 0.625rem 0.625rem; } + table thead { + background: #f8f8f8; + color: #0a0a0a; } + table tfoot { + background: #f1f1f1; + color: #0a0a0a; } + table thead tr, + table tfoot tr { + background: transparent; } + table thead th, + table thead td, + table tfoot th, + table tfoot td { + padding: 0.5rem 0.625rem 0.625rem; + font-weight: bold; + text-align: left; } + table tbody tr:nth-child(even) { + background-color: #f1f1f1; } + table tbody th, + table tbody td { + padding: 0.5rem 0.625rem 0.625rem; } + +@media screen and (max-width: 63.9375em) { + table.stack thead { + display: none; } + table.stack tfoot { + display: none; } + table.stack tr, + table.stack th, + table.stack td { + display: block; } + table.stack td { + border-top: 0; } } + +table.scroll { + display: block; + width: 100%; + overflow-x: auto; } + +table.hover thead tr:hover { + background-color: #f3f3f3; } + +table.hover tfoot tr:hover { + background-color: #ececec; } + +table.hover tbody tr:hover { + background-color: #f9f9f9; } + +table.hover tbody tr:nth-of-type(even):hover { + background-color: #ececec; } + +.table-scroll { + overflow-x: auto; } + .table-scroll table { + width: auto; } + +.tabs { + margin: 0; + list-style-type: none; + background: #fefefe; + border: 1px solid #e6e6e6; } + .tabs::before, .tabs::after { + content: ' '; + display: table; } + .tabs::after { + clear: both; } + +.tabs.vertical > li { + width: auto; + float: none; + display: block; } + +.tabs.simple > li > a { + padding: 0; } + .tabs.simple > li > a:hover { + background: transparent; } + +.tabs.primary { + background: #2199e8; } + .tabs.primary > li > a { + color: #fefefe; } + .tabs.primary > li > a:hover, .tabs.primary > li > a:focus { + background: #1893e4; } + +.tabs-title { + float: left; } + .tabs-title > a { + display: block; + padding: 1.25rem 1.5rem; + line-height: 1; + font-size: 0.75rem; } + .tabs-title > a:hover { + background: #fefefe; } + .tabs-title > a:focus, .tabs-title > a[aria-selected='true'] { + background: #e6e6e6; } + +.tabs-content { + background: #fefefe; + transition: all 0.5s ease; + border: 1px solid #e6e6e6; + border-top: 0; } + +.tabs-content.vertical { + border: 1px solid #e6e6e6; + border-left: 0; } + +.tabs-panel { + display: none; + padding: 1rem; } + .tabs-panel.is-active { + display: block; } + +.thumbnail { + border: solid 4px #fefefe; + box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2); + display: inline-block; + line-height: 0; + max-width: 100%; + transition: box-shadow 200ms ease-out; + border-radius: 0; + margin-bottom: 1rem; } + .thumbnail:hover, .thumbnail:focus { + box-shadow: 0 0 6px 1px rgba(33, 153, 232, 0.5); } + +.title-bar { + background: #0a0a0a; + color: #fefefe; + padding: 0.5rem; } + .title-bar::before, .title-bar::after { + content: ' '; + display: table; } + .title-bar::after { + clear: both; } + .title-bar .menu-icon { + margin-left: 0.25rem; + margin-right: 0.25rem; } + +.title-bar-left { + float: left; } + +.title-bar-right { + float: right; + text-align: right; } + +.title-bar-title { + font-weight: bold; + vertical-align: middle; + display: inline-block; } + +.has-tip { + border-bottom: dotted 1px #8a8a8a; + font-weight: bold; + position: relative; + display: inline-block; + cursor: help; } + +.tooltip { + background-color: #0a0a0a; + color: #fefefe; + font-size: 80%; + padding: 0.75rem; + position: absolute; + z-index: 10; + top: calc(100% + 0.6495rem); + max-width: 10rem !important; + border-radius: 0; } + .tooltip::before { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 0.75rem; + border-color: transparent transparent #0a0a0a; + border-bottom-style: solid; + border-top-width: 0; + bottom: 100%; + position: absolute; + left: 50%; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + transform: translateX(-50%); } + .tooltip.top::before { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 0.75rem; + border-color: #0a0a0a transparent transparent; + border-top-style: solid; + border-bottom-width: 0; + top: 100%; + bottom: auto; } + .tooltip.left::before { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 0.75rem; + border-color: transparent transparent transparent #0a0a0a; + border-left-style: solid; + border-right-width: 0; + bottom: auto; + left: 100%; + top: 50%; + -webkit-transform: translateY(-50%); + -ms-transform: translateY(-50%); + transform: translateY(-50%); } + .tooltip.right::before { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 0.75rem; + border-color: transparent #0a0a0a transparent transparent; + border-right-style: solid; + border-left-width: 0; + bottom: auto; + left: auto; + right: 100%; + top: 50%; + -webkit-transform: translateY(-50%); + -ms-transform: translateY(-50%); + transform: translateY(-50%); } + +.top-bar { + padding: 0.5rem; } + .top-bar::before, .top-bar::after { + content: ' '; + display: table; } + .top-bar::after { + clear: both; } + .top-bar, + .top-bar ul { + background-color: #e6e6e6; } + .top-bar input { + max-width: 200px; + margin-right: 1rem; } + .top-bar .input-group-field { + width: 100%; + margin-right: 0; } + .top-bar input.button { + width: auto; } + .top-bar .top-bar-left, + .top-bar .top-bar-right { + width: 100%; } + @media screen and (min-width: 40em) { + .top-bar .top-bar-left, + .top-bar .top-bar-right { + width: auto; } } + @media screen and (max-width: 63.9375em) { + .top-bar.stacked-for-medium .top-bar-left, + .top-bar.stacked-for-medium .top-bar-right { + width: 100%; } } + @media screen and (max-width: 74.9375em) { + .top-bar.stacked-for-large .top-bar-left, + .top-bar.stacked-for-large .top-bar-right { + width: 100%; } } + +.top-bar-title { + float: left; + margin-right: 1rem; } + +.top-bar-left { + float: left; } + +.top-bar-right { + float: right; } + +.hide { + display: none !important; } + +.invisible { + visibility: hidden; } + +@media screen and (max-width: 39.9375em) { + .hide-for-small-only { + display: none !important; } } + +@media screen and (max-width: 0em), screen and (min-width: 40em) { + .show-for-small-only { + display: none !important; } } + +@media screen and (min-width: 40em) { + .hide-for-medium { + display: none !important; } } + +@media screen and (max-width: 39.9375em) { + .show-for-medium { + display: none !important; } } + +@media screen and (min-width: 40em) and (max-width: 63.9375em) { + .hide-for-medium-only { + display: none !important; } } + +@media screen and (max-width: 39.9375em), screen and (min-width: 64em) { + .show-for-medium-only { + display: none !important; } } + +@media screen and (min-width: 64em) { + .hide-for-large { + display: none !important; } } + +@media screen and (max-width: 63.9375em) { + .show-for-large { + display: none !important; } } + +@media screen and (min-width: 64em) and (max-width: 74.9375em) { + .hide-for-large-only { + display: none !important; } } + +@media screen and (max-width: 63.9375em), screen and (min-width: 75em) { + .show-for-large-only { + display: none !important; } } + +.show-for-sr, +.show-on-focus { + position: absolute !important; + width: 1px; + height: 1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); } + +.show-on-focus:active, .show-on-focus:focus { + position: static !important; + height: auto; + width: auto; + overflow: visible; + clip: auto; } + +.show-for-landscape, +.hide-for-portrait { + display: block !important; } + @media screen and (orientation: landscape) { + .show-for-landscape, + .hide-for-portrait { + display: block !important; } } + @media screen and (orientation: portrait) { + .show-for-landscape, + .hide-for-portrait { + display: none !important; } } + +.hide-for-landscape, +.show-for-portrait { + display: none !important; } + @media screen and (orientation: landscape) { + .hide-for-landscape, + .show-for-portrait { + display: none !important; } } + @media screen and (orientation: portrait) { + .hide-for-landscape, + .show-for-portrait { + display: block !important; } } + +.float-left { + float: left !important; } + +.float-right { + float: right !important; } + +.float-center { + display: block; + margin-left: auto; + margin-right: auto; } + +.clearfix::before, .clearfix::after { + content: ' '; + display: table; } + +.clearfix::after { + clear: both; } + +.slide-in-down.mui-enter { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: translateY(-100%); + -ms-transform: translateY(-100%); + transform: translateY(-100%); + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } + +.slide-in-down.mui-enter.mui-enter-active { + -webkit-transform: translateY(0); + -ms-transform: translateY(0); + transform: translateY(0); } + +.slide-in-left.mui-enter { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: translateX(-100%); + -ms-transform: translateX(-100%); + transform: translateX(-100%); + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } + +.slide-in-left.mui-enter.mui-enter-active { + -webkit-transform: translateX(0); + -ms-transform: translateX(0); + transform: translateX(0); } + +.slide-in-up.mui-enter { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: translateY(100%); + -ms-transform: translateY(100%); + transform: translateY(100%); + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } + +.slide-in-up.mui-enter.mui-enter-active { + -webkit-transform: translateY(0); + -ms-transform: translateY(0); + transform: translateY(0); } + +.slide-in-right.mui-enter { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: translateX(100%); + -ms-transform: translateX(100%); + transform: translateX(100%); + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } + +.slide-in-right.mui-enter.mui-enter-active { + -webkit-transform: translateX(0); + -ms-transform: translateX(0); + transform: translateX(0); } + +.slide-out-down.mui-leave { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: translateY(0); + -ms-transform: translateY(0); + transform: translateY(0); + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } + +.slide-out-down.mui-leave.mui-leave-active { + -webkit-transform: translateY(100%); + -ms-transform: translateY(100%); + transform: translateY(100%); } + +.slide-out-right.mui-leave { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: translateX(0); + -ms-transform: translateX(0); + transform: translateX(0); + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } + +.slide-out-right.mui-leave.mui-leave-active { + -webkit-transform: translateX(100%); + -ms-transform: translateX(100%); + transform: translateX(100%); } + +.slide-out-up.mui-leave { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: translateY(0); + -ms-transform: translateY(0); + transform: translateY(0); + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } + +.slide-out-up.mui-leave.mui-leave-active { + -webkit-transform: translateY(-100%); + -ms-transform: translateY(-100%); + transform: translateY(-100%); } + +.slide-out-left.mui-leave { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: translateX(0); + -ms-transform: translateX(0); + transform: translateX(0); + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } + +.slide-out-left.mui-leave.mui-leave-active { + -webkit-transform: translateX(-100%); + -ms-transform: translateX(-100%); + transform: translateX(-100%); } + +.fade-in.mui-enter { + transition-duration: 500ms; + transition-timing-function: linear; + opacity: 0; + transition-property: opacity; } + +.fade-in.mui-enter.mui-enter-active { + opacity: 1; } + +.fade-out.mui-leave { + transition-duration: 500ms; + transition-timing-function: linear; + opacity: 1; + transition-property: opacity; } + +.fade-out.mui-leave.mui-leave-active { + opacity: 0; } + +.hinge-in-from-top.mui-enter { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: perspective(2000px) rotateX(-90deg); + transform: perspective(2000px) rotateX(-90deg); + -webkit-transform-origin: top; + -ms-transform-origin: top; + transform-origin: top; + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 0; } + +.hinge-in-from-top.mui-enter.mui-enter-active { + -webkit-transform: perspective(2000px) rotate(0deg); + transform: perspective(2000px) rotate(0deg); + opacity: 1; } + +.hinge-in-from-right.mui-enter { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: perspective(2000px) rotateY(-90deg); + transform: perspective(2000px) rotateY(-90deg); + -webkit-transform-origin: right; + -ms-transform-origin: right; + transform-origin: right; + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 0; } + +.hinge-in-from-right.mui-enter.mui-enter-active { + -webkit-transform: perspective(2000px) rotate(0deg); + transform: perspective(2000px) rotate(0deg); + opacity: 1; } + +.hinge-in-from-bottom.mui-enter { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: perspective(2000px) rotateX(90deg); + transform: perspective(2000px) rotateX(90deg); + -webkit-transform-origin: bottom; + -ms-transform-origin: bottom; + transform-origin: bottom; + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 0; } + +.hinge-in-from-bottom.mui-enter.mui-enter-active { + -webkit-transform: perspective(2000px) rotate(0deg); + transform: perspective(2000px) rotate(0deg); + opacity: 1; } + +.hinge-in-from-left.mui-enter { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: perspective(2000px) rotateY(90deg); + transform: perspective(2000px) rotateY(90deg); + -webkit-transform-origin: left; + -ms-transform-origin: left; + transform-origin: left; + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 0; } + +.hinge-in-from-left.mui-enter.mui-enter-active { + -webkit-transform: perspective(2000px) rotate(0deg); + transform: perspective(2000px) rotate(0deg); + opacity: 1; } + +.hinge-in-from-middle-x.mui-enter { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: perspective(2000px) rotateX(-90deg); + transform: perspective(2000px) rotateX(-90deg); + -webkit-transform-origin: center; + -ms-transform-origin: center; + transform-origin: center; + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 0; } + +.hinge-in-from-middle-x.mui-enter.mui-enter-active { + -webkit-transform: perspective(2000px) rotate(0deg); + transform: perspective(2000px) rotate(0deg); + opacity: 1; } + +.hinge-in-from-middle-y.mui-enter { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: perspective(2000px) rotateY(-90deg); + transform: perspective(2000px) rotateY(-90deg); + -webkit-transform-origin: center; + -ms-transform-origin: center; + transform-origin: center; + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 0; } + +.hinge-in-from-middle-y.mui-enter.mui-enter-active { + -webkit-transform: perspective(2000px) rotate(0deg); + transform: perspective(2000px) rotate(0deg); + opacity: 1; } + +.hinge-out-from-top.mui-leave { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: perspective(2000px) rotate(0deg); + transform: perspective(2000px) rotate(0deg); + -webkit-transform-origin: top; + -ms-transform-origin: top; + transform-origin: top; + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 1; } + +.hinge-out-from-top.mui-leave.mui-leave-active { + -webkit-transform: perspective(2000px) rotateX(-90deg); + transform: perspective(2000px) rotateX(-90deg); + opacity: 0; } + +.hinge-out-from-right.mui-leave { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: perspective(2000px) rotate(0deg); + transform: perspective(2000px) rotate(0deg); + -webkit-transform-origin: right; + -ms-transform-origin: right; + transform-origin: right; + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 1; } + +.hinge-out-from-right.mui-leave.mui-leave-active { + -webkit-transform: perspective(2000px) rotateY(-90deg); + transform: perspective(2000px) rotateY(-90deg); + opacity: 0; } + +.hinge-out-from-bottom.mui-leave { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: perspective(2000px) rotate(0deg); + transform: perspective(2000px) rotate(0deg); + -webkit-transform-origin: bottom; + -ms-transform-origin: bottom; + transform-origin: bottom; + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 1; } + +.hinge-out-from-bottom.mui-leave.mui-leave-active { + -webkit-transform: perspective(2000px) rotateX(90deg); + transform: perspective(2000px) rotateX(90deg); + opacity: 0; } + +.hinge-out-from-left.mui-leave { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: perspective(2000px) rotate(0deg); + transform: perspective(2000px) rotate(0deg); + -webkit-transform-origin: left; + -ms-transform-origin: left; + transform-origin: left; + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 1; } + +.hinge-out-from-left.mui-leave.mui-leave-active { + -webkit-transform: perspective(2000px) rotateY(90deg); + transform: perspective(2000px) rotateY(90deg); + opacity: 0; } + +.hinge-out-from-middle-x.mui-leave { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: perspective(2000px) rotate(0deg); + transform: perspective(2000px) rotate(0deg); + -webkit-transform-origin: center; + -ms-transform-origin: center; + transform-origin: center; + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 1; } + +.hinge-out-from-middle-x.mui-leave.mui-leave-active { + -webkit-transform: perspective(2000px) rotateX(-90deg); + transform: perspective(2000px) rotateX(-90deg); + opacity: 0; } + +.hinge-out-from-middle-y.mui-leave { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: perspective(2000px) rotate(0deg); + transform: perspective(2000px) rotate(0deg); + -webkit-transform-origin: center; + -ms-transform-origin: center; + transform-origin: center; + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 1; } + +.hinge-out-from-middle-y.mui-leave.mui-leave-active { + -webkit-transform: perspective(2000px) rotateY(-90deg); + transform: perspective(2000px) rotateY(-90deg); + opacity: 0; } + +.scale-in-up.mui-enter { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: scale(0.5); + -ms-transform: scale(0.5); + transform: scale(0.5); + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 0; } + +.scale-in-up.mui-enter.mui-enter-active { + -webkit-transform: scale(1); + -ms-transform: scale(1); + transform: scale(1); + opacity: 1; } + +.scale-in-down.mui-enter { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: scale(1.5); + -ms-transform: scale(1.5); + transform: scale(1.5); + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 0; } + +.scale-in-down.mui-enter.mui-enter-active { + -webkit-transform: scale(1); + -ms-transform: scale(1); + transform: scale(1); + opacity: 1; } + +.scale-out-up.mui-leave { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: scale(1); + -ms-transform: scale(1); + transform: scale(1); + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 1; } + +.scale-out-up.mui-leave.mui-leave-active { + -webkit-transform: scale(1.5); + -ms-transform: scale(1.5); + transform: scale(1.5); + opacity: 0; } + +.scale-out-down.mui-leave { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: scale(1); + -ms-transform: scale(1); + transform: scale(1); + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 1; } + +.scale-out-down.mui-leave.mui-leave-active { + -webkit-transform: scale(0.5); + -ms-transform: scale(0.5); + transform: scale(0.5); + opacity: 0; } + +.spin-in.mui-enter { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: rotate(-0.75turn); + -ms-transform: rotate(-0.75turn); + transform: rotate(-0.75turn); + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 0; } + +.spin-in.mui-enter.mui-enter-active { + -webkit-transform: rotate(0); + -ms-transform: rotate(0); + transform: rotate(0); + opacity: 1; } + +.spin-out.mui-leave { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: rotate(0); + -ms-transform: rotate(0); + transform: rotate(0); + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 1; } + +.spin-out.mui-leave.mui-leave-active { + -webkit-transform: rotate(0.75turn); + -ms-transform: rotate(0.75turn); + transform: rotate(0.75turn); + opacity: 0; } + +.spin-in-ccw.mui-enter { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: rotate(0.75turn); + -ms-transform: rotate(0.75turn); + transform: rotate(0.75turn); + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 0; } + +.spin-in-ccw.mui-enter.mui-enter-active { + -webkit-transform: rotate(0); + -ms-transform: rotate(0); + transform: rotate(0); + opacity: 1; } + +.spin-out-ccw.mui-leave { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: rotate(0); + -ms-transform: rotate(0); + transform: rotate(0); + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 1; } + +.spin-out-ccw.mui-leave.mui-leave-active { + -webkit-transform: rotate(-0.75turn); + -ms-transform: rotate(-0.75turn); + transform: rotate(-0.75turn); + opacity: 0; } + +.slow { + transition-duration: 750ms !important; } + +.fast { + transition-duration: 250ms !important; } + +.linear { + transition-timing-function: linear !important; } + +.ease { + transition-timing-function: ease !important; } + +.ease-in { + transition-timing-function: ease-in !important; } + +.ease-out { + transition-timing-function: ease-out !important; } + +.ease-in-out { + transition-timing-function: ease-in-out !important; } + +.bounce-in { + transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important; } + +.bounce-out { + transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important; } + +.bounce-in-out { + transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important; } + +.short-delay { + transition-delay: 300ms !important; } + +.long-delay { + transition-delay: 700ms !important; } + +.shake { + -webkit-animation-name: shake-7; + animation-name: shake-7; } + +@-webkit-keyframes shake-7 { + 0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% { + -webkit-transform: translateX(7%); + transform: translateX(7%); } + 5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% { + -webkit-transform: translateX(-7%); + transform: translateX(-7%); } } + +@keyframes shake-7 { + 0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% { + -webkit-transform: translateX(7%); + transform: translateX(7%); } + 5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% { + -webkit-transform: translateX(-7%); + transform: translateX(-7%); } } + +.spin-cw { + -webkit-animation-name: spin-cw-1turn; + animation-name: spin-cw-1turn; } + +@-webkit-keyframes spin-cw-1turn { + 0% { + -webkit-transform: rotate(-1turn); + transform: rotate(-1turn); } + 100% { + -webkit-transform: rotate(0); + transform: rotate(0); } } + +@keyframes spin-cw-1turn { + 0% { + -webkit-transform: rotate(-1turn); + transform: rotate(-1turn); } + 100% { + -webkit-transform: rotate(0); + transform: rotate(0); } } + +.spin-ccw { + -webkit-animation-name: spin-cw-1turn; + animation-name: spin-cw-1turn; } + +@keyframes spin-cw-1turn { + 0% { + -webkit-transform: rotate(0); + transform: rotate(0); } + 100% { + -webkit-transform: rotate(1turn); + transform: rotate(1turn); } } + +.wiggle { + -webkit-animation-name: wiggle-7deg; + animation-name: wiggle-7deg; } + +@-webkit-keyframes wiggle-7deg { + 40%, 50%, 60% { + -webkit-transform: rotate(7deg); + transform: rotate(7deg); } + 35%, 45%, 55%, 65% { + -webkit-transform: rotate(-7deg); + transform: rotate(-7deg); } + 0%, 30%, 70%, 100% { + -webkit-transform: rotate(0); + transform: rotate(0); } } + +@keyframes wiggle-7deg { + 40%, 50%, 60% { + -webkit-transform: rotate(7deg); + transform: rotate(7deg); } + 35%, 45%, 55%, 65% { + -webkit-transform: rotate(-7deg); + transform: rotate(-7deg); } + 0%, 30%, 70%, 100% { + -webkit-transform: rotate(0); + transform: rotate(0); } } + +.shake, +.spin-cw, +.spin-ccw, +.wiggle { + -webkit-animation-duration: 500ms; + animation-duration: 500ms; } + +.infinite { + -webkit-animation-iteration-count: infinite; + animation-iteration-count: infinite; } + +.slow { + -webkit-animation-duration: 750ms !important; + animation-duration: 750ms !important; } + +.fast { + -webkit-animation-duration: 250ms !important; + animation-duration: 250ms !important; } + +.linear { + -webkit-animation-timing-function: linear !important; + animation-timing-function: linear !important; } + +.ease { + -webkit-animation-timing-function: ease !important; + animation-timing-function: ease !important; } + +.ease-in { + -webkit-animation-timing-function: ease-in !important; + animation-timing-function: ease-in !important; } + +.ease-out { + -webkit-animation-timing-function: ease-out !important; + animation-timing-function: ease-out !important; } + +.ease-in-out { + -webkit-animation-timing-function: ease-in-out !important; + animation-timing-function: ease-in-out !important; } + +.bounce-in { + -webkit-animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important; + animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important; } + +.bounce-out { + -webkit-animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important; + animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important; } + +.bounce-in-out { + -webkit-animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important; + animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important; } + +.short-delay { + -webkit-animation-delay: 300ms !important; + animation-delay: 300ms !important; } + +.long-delay { + -webkit-animation-delay: 700ms !important; + animation-delay: 700ms !important; } diff --git a/app/assets/stylesheets/sessions.scss b/app/assets/stylesheets/sessions.scss new file mode 100644 index 000000000..7bef9cf82 --- /dev/null +++ b/app/assets/stylesheets/sessions.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the sessions controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/app/assets/stylesheets/tasks.scss b/app/assets/stylesheets/tasks.scss new file mode 100644 index 000000000..c5e7712d4 --- /dev/null +++ b/app/assets/stylesheets/tasks.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the Tasks controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb new file mode 100644 index 000000000..2d8e78196 --- /dev/null +++ b/app/controllers/application_controller.rb @@ -0,0 +1,22 @@ +class ApplicationController < ActionController::Base + # Prevent CSRF attacks by raising an exception. + # For APIs, you may want to use :null_session instead. + + protect_from_forgery with: :exception + before_action :logged_in? + +private + + def logged_in? + redirect_to login_path if session[:user_id].nil? + end + + def current_user + begin + @current_user ||= User.find(session[:user_id]) if session[:user_id] + rescue ActiveRecord::RecordNotFound + nil + end + end + +end diff --git a/app/controllers/concerns/.keep b/app/controllers/concerns/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app/controllers/sessions_controller.rb b/app/controllers/sessions_controller.rb new file mode 100644 index 000000000..fa4cfe43e --- /dev/null +++ b/app/controllers/sessions_controller.rb @@ -0,0 +1,26 @@ +class SessionsController < ApplicationController + skip_before_action :logged_in?, only: [:login, :create] + + def create + auth_hash = request.env['omniauth.auth'] + redirect_to login_path unless auth_hash[:uid] + + @user = User.find_by(uid: auth_hash[:uid], provider: "github") + if @user.nil? + @user = User.create_from_github(auth_hash) + redirect_to login_path unless @user.save + end + + session[:user_id] = auth_hash[:uid] + + redirect_to root_path + end + + def login; end + + def logout + session.delete(:user_id) + @current_user = nil + end + +end diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb new file mode 100644 index 000000000..c56a743a5 --- /dev/null +++ b/app/controllers/tasks_controller.rb @@ -0,0 +1,65 @@ +class TasksController < ApplicationController + skip_before_action :logged_in?, only: [:update, :create] + before_action :find_task, except: [:index, :new, :create] + + def index + tasks = Task.all.where(user_id: session[:user_id]) + + @completed_tasks = tasks.where.not(completed_at: nil) + @incompleted_tasks = tasks.where(completed_at: nil) + end + + def show; end + + ##### NEW CREATE ################################ + def new + @task = Task.new + end + + def create + if (@task = Task.create(task_params)) + @task.user_id = session[:user_id] + @task.save + redirect_to task_path(@task) + else + render :new + end + end + + ##### EDIT UPDATE ############################### + def edit; end + + def update + if @task.update(task_params) + redirect_to task_path(@task) + else + render :edit + end + end + + def complete + @task.completed_at = Date.today + @task.save + redirect_to root_path + end + + ##### DESTROY ################################# + def destroy + @task = Task.find(params[:id]).destroy + redirect_to tasks_path + end + + ###################### PRIVATE ################### + + private + + def task_params + params.require(:task).permit(:name, :description, :completed_at, :user_id) + # params.require(:table_name).permit(:field_one, :field_two) + end + + def find_task + @task = Task.find(params[:id]) + end + +end diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb new file mode 100644 index 000000000..de6be7945 --- /dev/null +++ b/app/helpers/application_helper.rb @@ -0,0 +1,2 @@ +module ApplicationHelper +end diff --git a/app/helpers/sessions_helper.rb b/app/helpers/sessions_helper.rb new file mode 100644 index 000000000..309f8b2eb --- /dev/null +++ b/app/helpers/sessions_helper.rb @@ -0,0 +1,2 @@ +module SessionsHelper +end diff --git a/app/helpers/tasks_helper.rb b/app/helpers/tasks_helper.rb new file mode 100644 index 000000000..6d3522740 --- /dev/null +++ b/app/helpers/tasks_helper.rb @@ -0,0 +1,13 @@ +module TasksHelper + def task_completed?(task) + if task.completed_at.nil? + return false + else + return true + end + end + + def formatted_date(task) + return "#{task.completed_at.month}/#{task.completed_at.day}/#{task.completed_at.year}" + end +end diff --git a/app/mailers/.keep b/app/mailers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app/models/.keep b/app/models/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app/models/concerns/.keep b/app/models/concerns/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app/models/task.rb b/app/models/task.rb new file mode 100644 index 000000000..5c58542c4 --- /dev/null +++ b/app/models/task.rb @@ -0,0 +1,3 @@ +class Task < ActiveRecord::Base + belongs_to :user +end diff --git a/app/models/user.rb b/app/models/user.rb new file mode 100644 index 000000000..353ab89d4 --- /dev/null +++ b/app/models/user.rb @@ -0,0 +1,14 @@ +class User < ActiveRecord::Base + validates :email, :uid, :provider, presence: true + has_many :tasks + + def self.create_from_github(auth_hash) + user = User.new + user.uid = auth_hash[:uid].to_i + user.provider = 'github' + user.name = auth_hash['info']['name'] + user.email = auth_hash['info']['email'] + + return user + end +end diff --git a/app/views/application/login_failure.html.erb b/app/views/application/login_failure.html.erb new file mode 100644 index 000000000..2d2cf5194 --- /dev/null +++ b/app/views/application/login_failure.html.erb @@ -0,0 +1,5 @@ +

You must be logged in

+

to do that.

+<%= link_to "/auth/github" do %> +
Login
+<% end %> diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb new file mode 100644 index 000000000..931fa610a --- /dev/null +++ b/app/views/layouts/application.html.erb @@ -0,0 +1,28 @@ + + + + TaskList + <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %> + <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %> + <%= csrf_meta_tags %> + + + +
+

Task List

+ +
+ +
+ <%= yield %> +
+ + + + diff --git a/app/views/sessions/login.html.erb b/app/views/sessions/login.html.erb new file mode 100644 index 000000000..2d2feb6fe --- /dev/null +++ b/app/views/sessions/login.html.erb @@ -0,0 +1,10 @@ +

Welcome to Task List

+

Get your shit together ®

+ +

+ Welcome to the app that ought to help you keep your life on track. All the fun of checklists except there are no checkboxes, sorry mate. +

+ +

+ Please click to login to your account above. +

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

You have successfully logged out!

+

+ Keep on bein' productive and whatnot. +

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

--Task Deletion Confirmation--

+ +<%= "Task \"#{@task.name}\" has been deleted." %> diff --git a/app/views/tasks/edit.html.erb b/app/views/tasks/edit.html.erb new file mode 100644 index 000000000..2df27c355 --- /dev/null +++ b/app/views/tasks/edit.html.erb @@ -0,0 +1,19 @@ +

Edit your task here:

+ +<%= form_for @task, :action=> root_path, :method => :patch do |f| %> + <%= f.label :name %> + <%= f.text_field :name %> +
+ + <%= f.label :description %> + <%= f.text_field :description, :size => 150%> +
+ + <%= f.label :completed_at %> + <%= f.date_field :completed_at %> +
+ + <%= f.submit "Submit your edits" %> +
+ +<% end %> diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb new file mode 100644 index 000000000..4e2b1b949 --- /dev/null +++ b/app/views/tasks/index.html.erb @@ -0,0 +1,55 @@ +
+ <%= link_to new_task_path do %> +

Click here to create a new task!

+ <% end %> +
+ +
+ + + + + + <% @incompleted_tasks.each do |task| %> + + + + + + + <% end %> +
+ TO DO +
<%= "#{ task.name.capitalize}" %> + <%= form_tag task_complete_path(task), method: :patch do %> + <%= submit_tag "Completed!" %> + <% end %> + + <%= link_to "[Details]", task_path(task) %> + <%= link_to "[Edit]", edit_task_path(task) %> + <%= link_to "[Delete]", task_path(task), method: :delete, data: { confirm: "Don't be a frickin' slacker." } %> +
+ + + + + + + <% @completed_tasks.each do |task| %> + + + + + + <% end %> +
+ COMPLETED: +
+ <%= "#{ task.name.capitalize} (on #{ formatted_date(task) })" %> + + <%= link_to "[Details]", task_path(task) %> + <%= link_to "[Edit]", edit_task_path(task) %> + <%= link_to "[Delete]", task_path(task), method: :delete, data: { confirm: "Nice work gettin' that done!" } %> +
+ +
diff --git a/app/views/tasks/new.html.erb b/app/views/tasks/new.html.erb new file mode 100644 index 000000000..3885efa4b --- /dev/null +++ b/app/views/tasks/new.html.erb @@ -0,0 +1,19 @@ +

Enter a new task here:

+ +<%= form_for @task do |f| %> + <%= f.label :name %> + <%= f.text_field :name %> +
+ + <%= f.label :description %> + <%= f.text_field :description, :size => 150 %> +
+ + <%= f.label :completed_at %> + <%= f.date_field :completed_at %> +
+ + <%= f.submit "Submit your task" %> +
+ +<% end %> diff --git a/app/views/tasks/show.html.erb b/app/views/tasks/show.html.erb new file mode 100644 index 000000000..8b542d475 --- /dev/null +++ b/app/views/tasks/show.html.erb @@ -0,0 +1,23 @@ +

<%= @task.name %>

+
+

Task name: <%= @task.name.capitalize %>

+

Task description: <%= @task.description %>

+ <% if task_completed?(@task) %> +

Task completed date: + <%= "#{ formatted_date(@task) }" %>

+ <% end %> +
+ +
+ <%= link_to root_path do %> +
Back home
+ <% end %> +
+ +
+ +
+ <%= link_to task_path(@task), :method => :delete, data: { confirm: "Is this really the right decision?" } do %> +
Delete task
+ <% end %> +
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..fe39b94eb --- /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 TaskList + class Application < Rails::Application + # Settings in config/environments/* take precedence over those specified here. + # Application configuration should go into files in config/initializers + # -- all .rb files in that directory are automatically loaded. + + # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone. + # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC. + # config.time_zone = 'Central Time (US & Canada)' + + # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded. + # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s] + # config.i18n.default_locale = :de + + # Do not swallow errors in after_commit/after_rollback callbacks. + config.active_record.raise_in_transactional_callbacks = true + end +end diff --git a/config/boot.rb b/config/boot.rb new file mode 100644 index 000000000..6b750f00b --- /dev/null +++ b/config/boot.rb @@ -0,0 +1,3 @@ +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) + +require 'bundler/setup' # Set up gems listed in the Gemfile. diff --git a/config/database.yml b/config/database.yml new file mode 100644 index 000000000..1c1a37ca8 --- /dev/null +++ b/config/database.yml @@ -0,0 +1,25 @@ +# SQLite version 3.x +# gem install sqlite3 +# +# Ensure the SQLite 3 gem is defined in your Gemfile +# gem 'sqlite3' +# +default: &default + adapter: sqlite3 + pool: 5 + timeout: 5000 + +development: + <<: *default + database: db/development.sqlite3 + +# Warning: The database defined as "test" will be erased and +# re-generated from your development database when you run "rake". +# Do not set this db to the same as development or production. +test: + <<: *default + database: db/test.sqlite3 + +production: + <<: *default + database: db/production.sqlite3 diff --git a/config/environment.rb b/config/environment.rb new file mode 100644 index 000000000..ee8d90dc6 --- /dev/null +++ b/config/environment.rb @@ -0,0 +1,5 @@ +# Load the Rails application. +require File.expand_path('../application', __FILE__) + +# Initialize the Rails application. +Rails.application.initialize! diff --git a/config/environments/development.rb b/config/environments/development.rb new file mode 100644 index 000000000..b55e2144b --- /dev/null +++ b/config/environments/development.rb @@ -0,0 +1,41 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # In the development environment your application's code is reloaded on + # every request. This slows down response time but is perfect for development + # since you don't have to restart the web server when you make code changes. + config.cache_classes = false + + # Do not eager load code on boot. + config.eager_load = false + + # Show full error reports and disable caching. + config.consider_all_requests_local = true + config.action_controller.perform_caching = false + + # Don't care if the mailer can't send. + config.action_mailer.raise_delivery_errors = false + + # Print deprecation notices to the Rails logger. + config.active_support.deprecation = :log + + # Raise an error on page load if there are pending migrations. + config.active_record.migration_error = :page_load + + # Debug mode disables concatenation and preprocessing of assets. + # This option may cause significant delays in view rendering with a large + # number of complex assets. + config.assets.debug = true + + # Asset digests allow you to set far-future HTTP expiration dates on all assets, + # yet still be able to expire them through the digest params. + config.assets.digest = true + + # Adds additional error checking when serving assets at runtime. + # Checks for improperly declared sprockets dependencies. + # Raises helpful error messages. + config.assets.raise_runtime_errors = true + + # Raises error for missing translations + # config.action_view.raise_on_missing_translations = true +end diff --git a/config/environments/production.rb b/config/environments/production.rb new file mode 100644 index 000000000..5c1b32e48 --- /dev/null +++ b/config/environments/production.rb @@ -0,0 +1,79 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # Code is not reloaded between requests. + config.cache_classes = true + + # Eager load code on boot. This eager loads most of Rails and + # your application in memory, allowing both threaded web servers + # and those relying on copy on write to perform better. + # Rake tasks automatically ignore this option for performance. + config.eager_load = true + + # Full error reports are disabled and caching is turned on. + config.consider_all_requests_local = false + config.action_controller.perform_caching = true + + # Enable Rack::Cache to put a simple HTTP cache in front of your application + # Add `rack-cache` to your Gemfile before enabling this. + # For large-scale production use, consider using a caching reverse proxy like + # NGINX, varnish or squid. + # config.action_dispatch.rack_cache = true + + # Disable serving static files from the `/public` folder by default since + # Apache or NGINX already handles this. + config.serve_static_files = ENV['RAILS_SERVE_STATIC_FILES'].present? + + # Compress JavaScripts and CSS. + config.assets.js_compressor = :uglifier + # config.assets.css_compressor = :sass + + # Do not fallback to assets pipeline if a precompiled asset is missed. + config.assets.compile = false + + # Asset digests allow you to set far-future HTTP expiration dates on all assets, + # yet still be able to expire them through the digest params. + config.assets.digest = true + + # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb + + # Specifies the header that your server uses for sending files. + # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache + # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX + + # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies. + # config.force_ssl = true + + # Use the lowest log level to ensure availability of diagnostic information + # when problems arise. + config.log_level = :debug + + # Prepend all log lines with the following tags. + # config.log_tags = [ :subdomain, :uuid ] + + # Use a different logger for distributed setups. + # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new) + + # Use a different cache store in production. + # config.cache_store = :mem_cache_store + + # Enable serving of images, stylesheets, and JavaScripts from an asset server. + # config.action_controller.asset_host = 'http://assets.example.com' + + # Ignore bad email addresses and do not raise email delivery errors. + # Set this to true and configure the email server for immediate delivery to raise delivery errors. + # config.action_mailer.raise_delivery_errors = false + + # Enable locale fallbacks for I18n (makes lookups for any locale fall back to + # the I18n.default_locale when a translation cannot be found). + config.i18n.fallbacks = true + + # Send deprecation notices to registered listeners. + config.active_support.deprecation = :notify + + # Use default logging formatter so that PID and timestamp are not suppressed. + config.log_formatter = ::Logger::Formatter.new + + # Do not dump schema after migrations. + config.active_record.dump_schema_after_migration = false +end diff --git a/config/environments/test.rb b/config/environments/test.rb new file mode 100644 index 000000000..1c19f08b2 --- /dev/null +++ b/config/environments/test.rb @@ -0,0 +1,42 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # The test environment is used exclusively to run your application's + # test suite. You never need to work with it otherwise. Remember that + # your test database is "scratch space" for the test suite and is wiped + # and recreated between test runs. Don't rely on the data there! + config.cache_classes = true + + # Do not eager load code on boot. This avoids loading your whole application + # just for the purpose of running a single test. If you are using a tool that + # preloads Rails for running tests, you may have to set it to true. + config.eager_load = false + + # Configure static file server for tests with Cache-Control for performance. + config.serve_static_files = true + config.static_cache_control = 'public, max-age=3600' + + # Show full error reports and disable caching. + config.consider_all_requests_local = true + config.action_controller.perform_caching = false + + # Raise exceptions instead of rendering exception templates. + config.action_dispatch.show_exceptions = false + + # Disable request forgery protection in test environment. + config.action_controller.allow_forgery_protection = false + + # Tell Action Mailer not to deliver emails to the real world. + # The :test delivery method accumulates sent emails in the + # ActionMailer::Base.deliveries array. + config.action_mailer.delivery_method = :test + + # Randomize the order test cases are executed. + config.active_support.test_order = :random + + # Print deprecation notices to the stderr. + config.active_support.deprecation = :stderr + + # Raises error for missing translations + # config.action_view.raise_on_missing_translations = true +end diff --git a/config/initializers/assets.rb b/config/initializers/assets.rb new file mode 100644 index 000000000..01ef3e663 --- /dev/null +++ b/config/initializers/assets.rb @@ -0,0 +1,11 @@ +# Be sure to restart your server when you modify this file. + +# Version of your assets, change this if you want to expire all your assets. +Rails.application.config.assets.version = '1.0' + +# Add additional assets to the asset load path +# Rails.application.config.assets.paths << Emoji.images_path + +# Precompile additional assets. +# application.js, application.css, and all non-JS/CSS in app/assets folder are already added. +# Rails.application.config.assets.precompile += %w( search.js ) diff --git a/config/initializers/backtrace_silencers.rb b/config/initializers/backtrace_silencers.rb new file mode 100644 index 000000000..59385cdf3 --- /dev/null +++ b/config/initializers/backtrace_silencers.rb @@ -0,0 +1,7 @@ +# Be sure to restart your server when you modify this file. + +# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces. +# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ } + +# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code. +# Rails.backtrace_cleaner.remove_silencers! diff --git a/config/initializers/cookies_serializer.rb b/config/initializers/cookies_serializer.rb new file mode 100644 index 000000000..7f70458de --- /dev/null +++ b/config/initializers/cookies_serializer.rb @@ -0,0 +1,3 @@ +# Be sure to restart your server when you modify this file. + +Rails.application.config.action_dispatch.cookies_serializer = :json diff --git a/config/initializers/filter_parameter_logging.rb b/config/initializers/filter_parameter_logging.rb new file mode 100644 index 000000000..4a994e1e7 --- /dev/null +++ b/config/initializers/filter_parameter_logging.rb @@ -0,0 +1,4 @@ +# Be sure to restart your server when you modify this file. + +# Configure sensitive parameters which will be filtered from the log file. +Rails.application.config.filter_parameters += [:password] diff --git a/config/initializers/inflections.rb b/config/initializers/inflections.rb new file mode 100644 index 000000000..ac033bf9d --- /dev/null +++ b/config/initializers/inflections.rb @@ -0,0 +1,16 @@ +# Be sure to restart your server when you modify this file. + +# Add new inflection rules using the following format. Inflections +# are locale specific, and you may define rules for as many different +# locales as you wish. All of these examples are active by default: +# ActiveSupport::Inflector.inflections(:en) do |inflect| +# inflect.plural /^(ox)$/i, '\1en' +# inflect.singular /^(ox)en/i, '\1' +# inflect.irregular 'person', 'people' +# inflect.uncountable %w( fish sheep ) +# end + +# These inflection rules are supported but not enabled by default: +# ActiveSupport::Inflector.inflections(:en) do |inflect| +# inflect.acronym 'RESTful' +# end diff --git a/config/initializers/mime_types.rb b/config/initializers/mime_types.rb new file mode 100644 index 000000000..dc1899682 --- /dev/null +++ b/config/initializers/mime_types.rb @@ -0,0 +1,4 @@ +# Be sure to restart your server when you modify this file. + +# Add new mime types for use in respond_to blocks: +# Mime::Type.register "text/richtext", :rtf diff --git a/config/initializers/omniauth.rb b/config/initializers/omniauth.rb new file mode 100644 index 000000000..fd4416122 --- /dev/null +++ b/config/initializers/omniauth.rb @@ -0,0 +1,3 @@ +Rails.application.config.middleware.use OmniAuth::Builder do + provider :github, ENV["GITHUB_CLIENT_ID"], ENV["GITHUB_CLIENT_SECRET"], scope: "user:email" +end diff --git a/config/initializers/session_store.rb b/config/initializers/session_store.rb new file mode 100644 index 000000000..80e157130 --- /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: '_TaskList_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..68da9c7bb --- /dev/null +++ b/config/routes.rb @@ -0,0 +1,13 @@ +Rails.application.routes.draw do + root 'tasks#index' + resources :tasks + + patch '/tasks/:id/complete' => 'tasks#complete', as: 'task_complete' + + get '/auth/:provider/callback' => 'sessions#create' + + get '/auth/login' => 'sessions#login', as: 'login' + + delete "/logout", to: "sessions#logout", as: "logout" + +end diff --git a/config/secrets.yml b/config/secrets.yml new file mode 100644 index 000000000..fd786ce79 --- /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: 97d3ab5933beee75ab00a1c9727ee4fc41ef145ec2e5207e5b4cd37c6c7b023c7f797843696f53d0d4d35bbd356a57f6d74dac6c55359c8a4b4d25dae27f2af0 + +test: + secret_key_base: 2d1d9649bce26f7e9903983207c7fb8a4b431ec58a291b55ff59f22dcf5b63b0bddae4e57a853a005dd8ef5bc9fd8c210d75c085a500cc8421b70091f99bf922 + +# 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..6c08d5841 Binary files /dev/null and b/db/development.sqlite3 differ diff --git a/db/migrate/20160928205345_create_tasks.rb b/db/migrate/20160928205345_create_tasks.rb new file mode 100644 index 000000000..4cbb32ee1 --- /dev/null +++ b/db/migrate/20160928205345_create_tasks.rb @@ -0,0 +1,12 @@ +class CreateTasks < ActiveRecord::Migration + def change + create_table :tasks do |t| + t.belongs_to :user + t.string :name + t.string :description + t.date :completed + + t.timestamps null: false + end + end +end diff --git a/db/migrate/20160928210351_change_completed_column_name.rb b/db/migrate/20160928210351_change_completed_column_name.rb new file mode 100644 index 000000000..f811c51b6 --- /dev/null +++ b/db/migrate/20160928210351_change_completed_column_name.rb @@ -0,0 +1,5 @@ +class ChangeCompletedColumnName < ActiveRecord::Migration + def change + rename_column(:tasks, :completed, :completed_at) + end +end diff --git a/db/migrate/20161017213941_create_users.rb b/db/migrate/20161017213941_create_users.rb new file mode 100644 index 000000000..01dafa620 --- /dev/null +++ b/db/migrate/20161017213941_create_users.rb @@ -0,0 +1,12 @@ +class CreateUsers < ActiveRecord::Migration + def change + create_table :users do |t| + t.string :name + t.string :email + t.integer :uid, null: false + t.string :provider, null: false + + t.timestamps null: false + end + end +end diff --git a/db/migrate/20161021050520_add_user_id_to_tasks.rb b/db/migrate/20161021050520_add_user_id_to_tasks.rb new file mode 100644 index 000000000..757cf20c2 --- /dev/null +++ b/db/migrate/20161021050520_add_user_id_to_tasks.rb @@ -0,0 +1,5 @@ +class AddUserIdToTasks < ActiveRecord::Migration + def change + add_column(:tasks, :user_id, :integer) + end +end diff --git a/db/schema.rb b/db/schema.rb new file mode 100644 index 000000000..e8450e94a --- /dev/null +++ b/db/schema.rb @@ -0,0 +1,34 @@ +# 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: 20161021050520) do + + create_table "tasks", force: :cascade do |t| + t.string "name" + t.string "description" + t.date "completed_at" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.integer "user_id" + end + + create_table "users", force: :cascade do |t| + t.string "name" + t.string "email" + t.integer "uid", null: false + t.string "provider", null: false + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + 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..abb1a1c51 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..a9a00ca7e --- /dev/null +++ b/log/development.log @@ -0,0 +1,22934 @@ + + +Started GET "/" for ::1 at 2016-09-27 15:46:19 -0700 +Processing by Rails::WelcomeController#index as HTML + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/railties-4.2.7/lib/rails/templates/rails/welcome/index.html.erb (2.0ms) +Completed 200 OK in 17ms (Views: 10.1ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-27 15:54:36 -0700 +Processing by Rails::WelcomeController#index as HTML + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/railties-4.2.7/lib/rails/templates/rails/welcome/index.html.erb (0.1ms) +Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-27 16:02:00 -0700 +Processing by Rails::WelcomeController#index as HTML + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/railties-4.2.7/lib/rails/templates/rails/welcome/index.html.erb (0.1ms) +Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-27 16:02:09 -0700 +Processing by Rails::WelcomeController#index as HTML + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/railties-4.2.7/lib/rails/templates/rails/welcome/index.html.erb (0.1ms) +Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-27 16:02:31 -0700 + +ArgumentError (Missing :controller key on routes definition, please check your routes.): + config/routes.rb:2:in `block in ' + config/routes.rb:1:in `' + + + Rendered /Users/nurl/.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/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.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 (78.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (96.2ms) + + +Started GET "/" for ::1 at 2016-09-27 16:02:57 -0700 + +ArgumentError (Missing :controller key on routes definition, please check your routes.): + config/routes.rb:2:in `block in ' + config/routes.rb:1:in `' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (49.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.6ms) + + +Started GET "/tasks" for ::1 at 2016-09-27 16:03:27 -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/nurl/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.9ms) + Rendered /Users/nurl/.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/nurl/.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 (48.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.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/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (49.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (110.3ms) + + +Started GET "/tasks" for ::1 at 2016-09-27 16:05:21 -0700 + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/controllers/tasks_controller.rb:9: syntax error, unexpected end-of-input): + app/controllers/tasks_controller.rb:9: syntax error, unexpected end-of-input + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (45.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.6ms) + Rendered /Users/nurl/.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/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (102.6ms) + + +Started GET "/tasks" for ::1 at 2016-09-27 16:06:50 -0700 +Processing by TasksController#index as HTML +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +ActionView::MissingTemplate (Missing template tasks/index, application/index with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/nurl/ada/homework/rails/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/nurl/.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 `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/nurl/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms) + Rendered /Users/nurl/.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/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (45.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.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.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.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/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.5ms) + + +Started GET "/tasks" for ::1 at 2016-09-27 16:09:16 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.2ms) +Completed 200 OK in 484ms (Views: 483.1ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-27 16:09:16 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-27 16:09:16 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-27 16:09:16 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-27 16:09:16 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-27 16:09:16 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-27 16:09:16 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-27 16:09:16 -0700 + + +Started GET "/tasks" for ::1 at 2016-09-27 16:10:51 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.1ms) +Completed 200 OK in 22ms (Views: 20.8ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-27 16:10:51 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-27 16:10:51 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-27 16:10:51 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-27 16:10:51 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-27 16:10:51 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-27 16:10:51 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-27 16:10:51 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-09-27 16:18:11 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 12ms (Views: 11.9ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks/index.html" for ::1 at 2016-09-27 16:18:41 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/index.html"): + 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/nurl/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nurl/.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 (60.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.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/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (46.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.6ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-27 16:23:14 -0700 + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/controllers/tasks_controller.rb:5: syntax error, unexpected ']', expecting '}' +/Users/nurl/ada/homework/rails/TaskListRails/app/controllers/tasks_controller.rb:17: syntax error, unexpected end-of-input, expecting keyword_end): + app/controllers/tasks_controller.rb:5: syntax error, unexpected ']', expecting '}' + app/controllers/tasks_controller.rb:17: syntax error, unexpected end-of-input, expecting keyword_end + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/nurl/.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 (53.3ms) + Rendered /Users/nurl/.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/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (5.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.6ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-27 16:23:21 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks/index.html" for ::1 at 2016-09-27 16:23:26 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/index.html"): + 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/nurl/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) + Rendered /Users/nurl/.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/nurl/.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 (59.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.6ms) + + +Started GET "/tasks" for ::1 at 2016-09-27 16:32:22 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 18ms (Views: 17.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for ::1 at 2016-09-27 16:33:12 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-27 16:33:12 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-27 16:33:12 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-27 16:33:12 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-27 16:33:12 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-27 16:33:12 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-27 16:33:12 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-27 16:33:12 -0700 + + +Started GET "/tasks" for ::1 at 2016-09-27 16:37:43 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:13: syntax error, unexpected keyword_ensure, expecting keyword_end +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:15: syntax error, unexpected end-of-input, expecting keyword_end): + app/views/tasks/index.html.erb:13: syntax error, unexpected keyword_ensure, expecting keyword_end + app/views/tasks/index.html.erb:15: syntax error, unexpected end-of-input, expecting keyword_end + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (50.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.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.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (50.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (107.9ms) + + +Started GET "/tasks" for ::1 at 2016-09-27 16:38:04 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `[]' for false:FalseClass): + 2:

+ 3: <% @list_o_tasks.map do |k,v| %> + 4: <% v.each do |task| %> + 5: <% if task[1] == false %> + 6: <%= "#{task} is incomplete!" %> + 7: <% else %> + 8:

<%= task %>

+ app/views/tasks/index.html.erb:5:in `block (2 levels) in _app_views_tasks_index_html_erb__3184378462818711500_70314167787740' + app/views/tasks/index.html.erb:4:in `each' + app/views/tasks/index.html.erb:4:in `block in _app_views_tasks_index_html_erb__3184378462818711500_70314167787740' + app/views/tasks/index.html.erb:3:in `each' + app/views/tasks/index.html.erb:3:in `map' + app/views/tasks/index.html.erb:3:in `_app_views_tasks_index_html_erb__3184378462818711500_70314167787740' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (50.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.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/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.5ms) + + +Started GET "/tasks" for ::1 at 2016-09-27 16:42:10 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-27 16:42:10 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-27 16:42:10 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-27 16:42:10 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-27 16:42:10 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-27 16:42:10 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-27 16:42:10 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-27 16:42:10 -0700 + + +Started GET "/tasks" for ::1 at 2016-09-27 16:43:53 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-27 16:43:53 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-27 16:43:53 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-27 16:43:53 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-27 16:43:53 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-27 16:43:53 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-27 16:43:53 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-27 16:43:53 -0700 + + +Started GET "/tasks" for ::1 at 2016-09-27 16:46:15 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 14ms (Views: 12.5ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-27 16:46:15 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-27 16:46:15 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-27 16:46:15 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-27 16:46:15 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-27 16:46:15 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-27 16:46:15 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-27 16:46:15 -0700 + + +Started GET "/tasks" for ::1 at 2016-09-27 16:46:30 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (17.8ms) +Completed 500 Internal Server Error in 21ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined local variable or method `n' for #<#:0x007fe695f9f118>): + 10: <% end %> + 11:

Incomplete tasks: + 12: <%incomplete.each do |task| %> + 13:

<%= task[n][0] %>

+ 14: <% end %> + 15:

+ app/views/tasks/index.html.erb:13:in `block in _app_views_tasks_index_html_erb__3184378462818711500_70314167692660' + app/views/tasks/index.html.erb:12:in `each' + app/views/tasks/index.html.erb:12:in `_app_views_tasks_index_html_erb__3184378462818711500_70314167692660' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms) + Rendered /Users/nurl/.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/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (54.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (94.8ms) + + +Started GET "/tasks" for ::1 at 2016-09-27 16:47:42 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (4.7ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `[]' for false:FalseClass): + 13: + 14: <% n=0 %> + 15: <%incomplete.each do |task| %> + 16:

<%= "#{task[n][0]}" %>

+ 17: <% n += 1 %> + 18: <% end %> + 19:

+ app/views/tasks/index.html.erb:16:in `block in _app_views_tasks_index_html_erb__3184378462818711500_70314139978920' + app/views/tasks/index.html.erb:15:in `each' + app/views/tasks/index.html.erb:15:in `_app_views_tasks_index_html_erb__3184378462818711500_70314139978920' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nurl/.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 (64.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.4ms) + + +Started GET "/tasks" for ::1 at 2016-09-27 16:48:12 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-27 16:48:12 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-27 16:48:12 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-27 16:48:12 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-27 16:48:12 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-27 16:48:12 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-27 16:48:12 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-27 16:48:12 -0700 + + +Started GET "/tasks" for ::1 at 2016-09-27 16:48:25 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 19ms (Views: 18.1ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-27 16:48:25 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-27 16:48:25 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-27 16:48:25 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-27 16:48:25 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-27 16:48:25 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-27 16:48:25 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-27 16:48:25 -0700 + + +Started GET "/tasks" for ::1 at 2016-09-27 16:48:28 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.1ms) +Completed 200 OK in 14ms (Views: 13.7ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-27 16:48:28 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-27 16:48:28 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-27 16:48:28 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-27 16:48:28 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-27 16:48:28 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-27 16:48:28 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-27 16:48:28 -0700 + + +Started GET "/tasks/1" for ::1 at 2016-09-27 16:52:12 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 12ms (Views: 12.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/sweep" for ::1 at 2016-09-27 16:52:40 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"sweep"} + Rendered tasks/show.html.erb within layouts/application (0.0ms) +Completed 200 OK in 13ms (Views: 12.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/sweep" for ::1 at 2016-09-27 16:53:00 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"sweep"} + Rendered tasks/show.html.erb within layouts/application (0.0ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-27 16:53:01 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-27 16:53:01 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-27 16:53:01 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-27 16:53:01 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-27 16:53:01 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-27 16:53:01 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-27 16:53:01 -0700 + + +Started GET "/tasks/sweep" for ::1 at 2016-09-27 16:54:39 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"sweep"} + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-27 16:54:39 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-27 16:54:39 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-27 16:54:39 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-27 16:54:39 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-27 16:54:39 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-27 16:54:39 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-27 16:54:39 -0700 + + +Started GET "/tasks/sweep" for ::1 at 2016-09-27 16:55:01 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"sweep"} + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 19ms (Views: 18.9ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-27 16:55:01 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-27 16:55:01 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-27 16:55:01 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-27 16:55:01 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-27 16:55:01 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-27 16:55:01 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-27 16:55:01 -0700 + + +Started GET "/tasks/sweep" for ::1 at 2016-09-27 16:55:15 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"sweep"} + Rendered tasks/show.html.erb within layouts/application (2.8ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (no implicit conversion of Symbol into Integer): + 1: <%= @task[:key] %> + app/views/tasks/show.html.erb:1:in `[]' + app/views/tasks/show.html.erb:1:in `_app_views_tasks_show_html_erb__3380174568262482294_70314188981540' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/nurl/.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/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (54.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.9ms) + + +Started GET "/tasks/sweep" for ::1 at 2016-09-27 16:55:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"sweep"} + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-27 16:55:34 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-27 16:55:34 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-27 16:55:34 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-27 16:55:34 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-27 16:55:34 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-27 16:55:34 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-27 16:55:34 -0700 + + +Started GET "/" for ::1 at 2016-09-28 13:44:22 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 469ms (Views: 460.1ms | ActiveRecord: 0.0ms) +  (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)  +  (0.1ms) select sqlite_version(*) +  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateTasks (20160928205345) +  (0.1ms) begin transaction +  (0.7ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" varchar, "completed" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) + SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160928205345"]] +  (2.5ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to ChangeCompletedColumnName (20160928210351) +  (0.1ms) begin transaction +  (0.4ms) CREATE TEMPORARY TABLE "atasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" varchar, "completed" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  +  (0.1ms) SELECT * FROM "tasks" +  (2.7ms) DROP TABLE "tasks" +  (0.2ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" varchar, "completed" completed_at, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) +  (0.1ms) SELECT * FROM "atasks" +  (0.4ms) DROP TABLE "atasks" + SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160928210351"]] +  (2.4ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" +  (0.2ms) begin transaction + SQL (0.5ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sweep"], ["description", "sweep the kitchen and then the bathroom"], ["created_at", "2016-09-28 21:12:28.110897"], ["updated_at", "2016-09-28 21:12:28.110897"]] +  (4.9ms) commit transaction +  (0.1ms) begin transaction + SQL (0.5ms) INSERT INTO "tasks" ("name", "description", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "cook"], ["description", "cook dinner for sunday night"], ["completed", "-4712-01-01 12:00:00.000000"], ["created_at", "2016-09-28 21:12:30.098837"], ["updated_at", "2016-09-28 21:12:30.098837"]] +  (2.5ms) commit transaction + Task Load (3.0ms) SELECT "tasks".* FROM "tasks" +  (0.1ms) begin transaction + SQL (0.6ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "exercise"], ["description", "do cardio for at least 30 minutes"], ["created_at", "2016-09-28 21:13:55.646467"], ["updated_at", "2016-09-28 21:13:55.646467"]] +  (2.8ms) commit transaction +  (0.1ms) begin transaction + SQL (1.5ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "walk the dog"], ["description", "walk Scruffy for at least 30 minutes"], ["created_at", "2016-09-28 21:14:40.985584"], ["updated_at", "2016-09-28 21:14:40.985584"]] +  (2.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.5ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Homework"], ["description", "Do all of your homework for the night"], ["created_at", "2016-09-28 21:15:40.026356"], ["updated_at", "2016-09-28 21:15:40.026356"]] +  (6.9ms) commit transaction +  (0.1ms) begin transaction + SQL (0.6ms) INSERT INTO "tasks" ("name", "description", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "laundry"], ["description", "do at least one load of laundry"], ["completed", "-4712-01-01"], ["created_at", "2016-09-28 21:19:55.588874"], ["updated_at", "2016-09-28 21:19:55.588874"]] +  (5.3ms) commit transaction +  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + Task Load (1.9ms) SELECT "tasks".* FROM "tasks" +  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)  +  (0.1ms) select sqlite_version(*) +  (3.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateTasks (20160928205345) +  (0.1ms) begin transaction +  (0.5ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" varchar, "completed" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) + SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160928205345"]] +  (2.5ms) commit transaction +Migrating to ChangeCompletedColumnName (20160928210351) +  (0.1ms) begin transaction +  (0.5ms) CREATE TEMPORARY TABLE "atasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" varchar, "completed_at" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) +  (0.1ms) SELECT * FROM "tasks" +  (0.3ms) DROP TABLE "tasks" +  (0.1ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" varchar, "completed_at" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  +  (0.0ms) SELECT * FROM "atasks" +  (0.2ms) DROP TABLE "atasks" + SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160928210351"]] +  (2.5ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + + +Started GET "/" for ::1 at 2016-09-29 15:23:32 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.0ms) +Completed 500 Internal Server Error in 35ms (ActiveRecord: 0.5ms) + +ActionView::Template::Error (wrong number of arguments (given 0, expected 1)): + 2: + 3:

+ 4: <% @task_list.each do |v| %> + 5: <% if task_completed? %> + 6:

<%="Incomplete task: #{v.name}" %> <%= link_to "[Edit]", task_edit_path(v) %>

+ 7: <% else %> + 8:

<%= "Complete task: #{v.name} on #{v.completed_at.month}/#{v.completed_at.day}/#{v.completed_at.year}" %> <%= link_to "[Edit]", task_edit_path(v) %>

+ app/helpers/tasks_helper.rb:2:in `task_completed?' + app/views/tasks/index.html.erb:5:in `block in _app_views_tasks_index_html_erb___4440298934848170623_70305230445300' + app/views/tasks/index.html.erb:4:in `_app_views_tasks_index_html_erb___4440298934848170623_70305230445300' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (55.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (50.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (108.2ms) + + +Started GET "/" for ::1 at 2016-09-29 15:23:53 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.1ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.2ms) + +ActionView::Template::Error (undefined method `is_nil?' for nil:NilClass +Did you mean? is_a?): + 2: + 3:

+ 4: <% @task_list.each do |v| %> + 5: <% if task_completed?(v) %> + 6:

<%="Incomplete task: #{v.name}" %> <%= link_to "[Edit]", task_edit_path(v) %>

+ 7: <% else %> + 8:

<%= "Complete task: #{v.name} on #{v.completed_at.month}/#{v.completed_at.day}/#{v.completed_at.year}" %> <%= link_to "[Edit]", task_edit_path(v) %>

+ app/helpers/tasks_helper.rb:3:in `task_completed?' + app/views/tasks/index.html.erb:5:in `block in _app_views_tasks_index_html_erb___4440298934848170623_70305252135700' + app/views/tasks/index.html.erb:4:in `_app_views_tasks_index_html_erb___4440298934848170623_70305252135700' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (51.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (81.8ms) + + +Started GET "/" for ::1 at 2016-09-29 15:24:13 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.7ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.5ms) + +ActionView::Template::Error (undefined method `month' for nil:NilClass): + 5: <% if task_completed?(v) %> + 6:

<%="Incomplete task: #{v.name}" %> <%= link_to "[Edit]", task_edit_path(v) %>

+ 7: <% else %> + 8:

<%= "Complete task: #{v.name} on #{v.completed_at.month}/#{v.completed_at.day}/#{v.completed_at.year}" %> <%= link_to "[Edit]", task_edit_path(v) %>

+ 9: <% end %> + 10: <% end %> + 11:

+ app/views/tasks/index.html.erb:8:in `block in _app_views_tasks_index_html_erb___4440298934848170623_70305252135700' + app/views/tasks/index.html.erb:4:in `_app_views_tasks_index_html_erb___4440298934848170623_70305252135700' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (51.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (50.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (105.6ms) + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] +  (0.2ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "name" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["name", "blank weirdo"], ["updated_at", "2016-09-29 22:26:39.284117"], ["id", 6]] +  (2.3ms) commit transaction + + +Started GET "/" for ::1 at 2016-09-29 15:27:29 -0700 + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/helpers/tasks_helper.rb:6: void value expression): + app/helpers/tasks_helper.rb:6: void value expression + app/controllers/application_controller.rb:1:in `' + app/controllers/tasks_controller.rb:1:in `' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (45.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.7ms) + + +Started GET "/" for ::1 at 2016-09-29 15:27:42 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.3ms) +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.4ms) + +ActionView::Template::Error (undefined method `month' for nil:NilClass): + 5: <% if task_completed?(v) %> + 6:

<%="Incomplete task: #{v.name}" %> <%= link_to "[Edit]", task_edit_path(v) %>

+ 7: <% else %> + 8:

<%= "Complete task: #{v.name} on #{v.completed_at.month}/#{v.completed_at.day}/#{v.completed_at.year}" %> <%= link_to "[Edit]", task_edit_path(v) %>

+ 9: <% end %> + 10: <% end %> + 11:

+ app/views/tasks/index.html.erb:8:in `block in _app_views_tasks_index_html_erb___4440298934848170623_70305252135700' + app/views/tasks/index.html.erb:4:in `_app_views_tasks_index_html_erb___4440298934848170623_70305252135700' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (48.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.4ms) + + +Started GET "/" for ::1 at 2016-09-29 15:28:23 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 324ms (Views: 322.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 15:28:23 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 15:28:23 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 15:28:23 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 15:28:23 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 15:28:23 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 15:28:23 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 15:28:23 -0700 + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 15:28:44 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.2ms) + +ActionView::MissingTemplate (Missing template tasks/edit, application/edit with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/nurl/ada/homework/rails/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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb: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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (44.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (33.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (74.6ms) + + +Started GET "/" for ::1 at 2016-09-29 15:30:25 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 20ms (Views: 18.6ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 15:30:25 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 15:30:25 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 15:30:25 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 15:30:25 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 15:30:25 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 15:30:25 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 15:30:25 -0700 + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 15:30:41 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/edit.html.erb within layouts/application (1.5ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/edit.html.erb:3: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' +...pend= form_for @task, method :patch do |f| @output_buffer.s... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/edit.html.erb:21: syntax error, unexpected keyword_ensure, expecting end-of-input): + app/views/tasks/edit.html.erb:3: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' + app/views/tasks/edit.html.erb:21: syntax error, unexpected keyword_ensure, expecting end-of-input + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (6.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (48.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (81.3ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 15:32:58 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/edit.html.erb within layouts/application (1.4ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/edit.html.erb:3: syntax error, unexpected tIDENTIFIER, expecting keyword_end +....append= form_for @task method :patch do |f| @output_buffer... +... ^): + app/views/tasks/edit.html.erb:3: syntax error, unexpected tIDENTIFIER, expecting keyword_end + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (47.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (36.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (82.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 15:33:42 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (21.0ms) +Completed 500 Internal Server Error in 25ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `completed_at' for # +Did you mean? Complex): + 9: <%= f.text_field :description %> + 10:
+ 11: + 12: <%= f.completed_at :completed_at %> + 13: <%= f.date :completed_at %> + 14:
+ 15: + app/views/tasks/new.html.erb:12:in `block in _app_views_tasks_new_html_erb___4008070088818465131_70305252904180' + app/views/tasks/new.html.erb:3:in `_app_views_tasks_new_html_erb___4008070088818465131_70305252904180' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (51.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.5ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 15:34:20 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (17.8ms) +Completed 500 Internal Server Error in 21ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `date' for #): + 10:
+ 11: + 12: <%= f.label :completed_at %> + 13: <%= f.date :completed_at %> + 14:
+ 15: + 16: <%= f.submit "SUBMIT" %> + app/views/tasks/new.html.erb:13:in `block in _app_views_tasks_new_html_erb___4008070088818465131_70305276007640' + app/views/tasks/new.html.erb:3:in `_app_views_tasks_new_html_erb___4008070088818465131_70305276007640' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (51.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (46.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.4ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 15:34:55 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (12.9ms) +Completed 200 OK in 35ms (Views: 33.7ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 15:34:55 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 15:34:55 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 15:34:55 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 15:34:55 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 15:34:55 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 15:34:55 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 15:34:55 -0700 + + +Started POST "/tasks" for ::1 at 2016-09-29 15:35:13 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"uKRff5zSiZ/xyDA7jvenTzd8AopTZgNgpf2FLdRkfao94xyNL8g1xRw3IPMqysjoJ6bwAvonDq6HbqJa0dHFCg==", "task"=>{"name"=>"test", "description"=>"test to see if form works", "completed_at"=>""}, "commit"=>"SUBMIT"} +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "test"], ["description", "test to see if form works"], ["created_at", "2016-09-29 22:35:13.512718"], ["updated_at", "2016-09-29 22:35:13.512718"]] +  (2.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 2.9ms) + + +Started GET "/" for ::1 at 2016-09-29 15:35:13 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/7/edit" for ::1 at 2016-09-29 15:35:18 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"7"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 7]] + Rendered tasks/edit.html.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/edit.html.erb:3: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' +...pend= form_for @task, method :patch do |f| @output_buffer.s... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/edit.html.erb:21: syntax error, unexpected keyword_ensure, expecting end-of-input): + app/views/tasks/edit.html.erb:3: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' + app/views/tasks/edit.html.erb:21: syntax error, unexpected keyword_ensure, expecting end-of-input + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (46.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (83.4ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 15:36:01 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/edit.html.erb within layouts/application (1.2ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.2ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/edit.html.erb:3: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' +...pend= form_for @task, method :patch do |f| @output_buffer.s... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/edit.html.erb:21: syntax error, unexpected keyword_ensure, expecting end-of-input): + app/views/tasks/edit.html.erb:3: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' + app/views/tasks/edit.html.erb:21: syntax error, unexpected keyword_ensure, expecting end-of-input + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (44.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.6ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 15:38:19 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/edit.html.erb within layouts/application (28.3ms) +Completed 500 Internal Server Error in 34ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe2722e9f80> +Did you mean? tasks_path): + 1:

Edit a new task here:

+ 2: + 3: <%= form_for @task, method: :patch do |f| %> + 4: <%= f.label :name %> + 5: <%= f.text_field :name %> + 6:
+ app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__3421740780238415314_70305277494760' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (48.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (53.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (99.3ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 15:39:43 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/edit.html.erb within layouts/application (1.3ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/edit.html.erb:3: `@:' is not allowed as an instance variable name +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/edit.html.erb:3: syntax error, unexpected end-of-input, expecting keyword_end +...tput_buffer.append= form_for @:task, method: :patch do |f| ... +... ^): + app/views/tasks/edit.html.erb:3: `@:' is not allowed as an instance variable name + app/views/tasks/edit.html.erb:3: syntax error, unexpected end-of-input, expecting keyword_end + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (46.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (35.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (79.6ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 15:39:50 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/edit.html.erb within layouts/application (1.8ms) +Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 15:39:50 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 15:39:50 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 15:39:50 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 15:39:50 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 15:39:50 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 15:39:50 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 15:39:50 -0700 + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 15:42:58 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/edit.html.erb within layouts/application (1.6ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 15:42:59 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 15:42:59 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 15:42:59 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 15:42:59 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 15:42:59 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 15:42:59 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 15:42:59 -0700 + + +Started GET "/" for ::1 at 2016-09-29 15:44:30 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3/edit" for ::1 at 2016-09-29 15:44:32 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/edit.html.erb within layouts/application (3.3ms) +Completed 200 OK in 31ms (Views: 29.9ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/3/edit" for ::1 at 2016-09-29 15:44:44 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasks/3/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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (55.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.1ms) + + +Started GET "/" for ::1 at 2016-09-29 15:45:12 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.9ms) +Completed 200 OK in 20ms (Views: 17.6ms | ActiveRecord: 0.7ms) + + +Started GET "/tasks/3/edit" for ::1 at 2016-09-29 15:45:17 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/edit.html.erb within layouts/application (2.2ms) +Completed 200 OK in 24ms (Views: 22.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/3/edit" for ::1 at 2016-09-29 15:46:22 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasks/3/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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (64.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (35.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (78.5ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 15:51:59 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (2.0ms) +Completed 200 OK in 20ms (Views: 15.1ms | ActiveRecord: 0.3ms) + + +Started POST "/tasks/new" for ::1 at 2016-09-29 15:52:18 -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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (70.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (46.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.7ms) + + +Started POST "/tasks/new" for ::1 at 2016-09-29 15:53:25 -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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (66.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.5ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 15:53:28 -0700 +Processing by TasksController#new as HTML +Completed 400 Bad Request in 2ms (ActiveRecord: 0.0ms) + +ActionController::ParameterMissing (param is missing or the value is empty: task): + app/controllers/tasks_controller.rb:43:in `task_params' + app/controllers/tasks_controller.rb:11:in `new' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (61.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (59.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (113.7ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 15:57:57 -0700 +Processing by TasksController#new as HTML +Completed 400 Bad Request in 1ms (ActiveRecord: 0.0ms) + +ActionController::ParameterMissing (param is missing or the value is empty: task): + app/controllers/tasks_controller.rb:43:in `task_params' + app/controllers/tasks_controller.rb:11:in `new' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (44.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.2ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 16:01:03 -0700 +Processing by TasksController#new as HTML +Completed 400 Bad Request in 2ms (ActiveRecord: 0.0ms) + +ActionController::ParameterMissing (param is missing or the value is empty: task): + app/controllers/tasks_controller.rb:49:in `task_params' + app/controllers/tasks_controller.rb:13:in `new' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (45.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.5ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 16:03:03 -0700 +Processing by TasksController#new as HTML +Completed 400 Bad Request in 2ms (ActiveRecord: 0.0ms) + +ActionController::ParameterMissing (param is missing or the value is empty: tasks): + app/controllers/tasks_controller.rb:52:in `task_params' + app/controllers/tasks_controller.rb:13:in `new' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (54.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.7ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 16:05:18 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (2.4ms) +Completed 200 OK in 21ms (Views: 16.4ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 16:05:18 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 16:05:18 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 16:05:18 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 16:05:18 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 16:05:18 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 16:05:18 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 16:05:18 -0700 + + +Started POST "/tasks/new" for ::1 at 2016-09-29 16:05:26 -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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (57.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (35.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.5ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 16:06:54 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (2.3ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-09-29 16:06:58 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"VxEqIO/3KqZ7IangzXW2lyxyD9c22Pmx/UGRn8ArmuXSVmnSXO2W/JbeuShpSNkwPKj9X5+Z9H/f0rboxZ4iRQ==", "task"=>{"name"=>"sdf", "description"=>"sdga", "completed_at"=>""}, "commit"=>"Submit your task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sdf"], ["description", "sdga"], ["created_at", "2016-09-29 23:06:58.323067"], ["updated_at", "2016-09-29 23:06:58.323067"]] +  (2.1ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.4ms) + + +Started GET "/" for ::1 at 2016-09-29 16:06:58 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 14ms (Views: 13.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 16:07:51 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/edit.html.erb within layouts/application (34.7ms) +Completed 500 Internal Server Error in 41ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe272112630> +Did you mean? tasks_path): + 1:

Edit a new task here:

+ 2: + 3: <%= form_for @task, method: :patch do |f| %> + 4: <%= f.label :name %> + 5: <%= f.text_field :name %> + 6:
+ app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__3421740780238415314_70305276516940' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (9.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (52.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (36.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (78.8ms) + + +Started GET "/tasks/5/edit" for ::1 at 2016-09-29 16:08:01 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasks/edit.html.erb within layouts/application (10.7ms) +Completed 200 OK in 48ms (Views: 46.9ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/5/edit" for ::1 at 2016-09-29 16:08:17 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasks/5/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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (53.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (35.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (77.2ms) + + +Started GET "/tasks/5/edit" for ::1 at 2016-09-29 16:09:53 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasks/edit.html.erb within layouts/application (23.3ms) +Completed 500 Internal Server Error in 28ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe26df9e370> +Did you mean? tasks_path): + 1:

Edit a new task here:

+ 2: + 3: <%= form_for @task, method: :patch do |f| %> + 4: <%= f.label :name %> + 5: <%= f.text_field :name %> + 6:
+ app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__3421740780238415314_70305242200220' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (44.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.9ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 16:12:15 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/edit.html.erb within layouts/application (17.3ms) +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.6ms) + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe270df9850> +Did you mean? tasks_path): + 1:

Edit a new task here:

+ 2: + 3: <%= form_for @task, method: :patch do |f| %> + 4: <%= f.label :name %> + 5: <%= f.text_field :name %> + 6:
+ app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__3421740780238415314_70305242200220' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (43.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (36.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.6ms) + + +Started POST "/tasks" for ::1 at 2016-09-29 16:14:39 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"VxEqIO/3KqZ7IangzXW2lyxyD9c22Pmx/UGRn8ArmuXSVmnSXO2W/JbeuShpSNkwPKj9X5+Z9H/f0rboxZ4iRQ==", "task"=>{"name"=>"sdf", "description"=>"sdga", "completed_at"=>""}, "commit"=>"Submit your task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sdf"], ["description", "sdga"], ["created_at", "2016-09-29 23:14:39.167432"], ["updated_at", "2016-09-29 23:14:39.167432"]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.7ms) + + +Started GET "/" for ::1 at 2016-09-29 16:14:39 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 15ms (Views: 13.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/9/edit" for ::1 at 2016-09-29 16:19:08 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/edit.html.erb within layouts/application (16.8ms) +Completed 500 Internal Server Error in 30ms (ActiveRecord: 0.9ms) + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe270e32600> +Did you mean? tasks_path): + 1:

Edit a new task here:

+ 2: + 3: <%= form_for @task, method: :patch do |f| %> + 4: <%= f.label :name %> + 5: <%= f.text_field :name %> + 6:
+ app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__3421740780238415314_70305242200220' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (49.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (34.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (78.2ms) + + +Started GET "/tasks/9/edit" for ::1 at 2016-09-29 16:19:58 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/edit.html.erb within layouts/application (20.1ms) +Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe26dd3cd70> +Did you mean? tasks_path): + 1:

Edit a new task here:

+ 2: + 3: <%= form_for @task, method: :patch do |f| %> + 4: <%= f.label :name %> + 5: <%= f.text_field :name %> + 6:
+ app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__3421740780238415314_70305240935380' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (45.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (36.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (80.5ms) + + +Started GET "/" for ::1 at 2016-09-29 16:20:19 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 14ms (Views: 13.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/9/edit" for ::1 at 2016-09-29 16:20:20 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/edit.html.erb within layouts/application (30.8ms) +Completed 500 Internal Server Error in 37ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe273309730> +Did you mean? tasks_path): + 1:

Edit a new task here:

+ 2: + 3: <%= form_for @task, method: :patch do |f| %> + 4: <%= f.label :name %> + 5: <%= f.text_field :name %> + 6:
+ app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__3421740780238415314_70305240935380' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (12.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (63.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (34.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (76.2ms) + + +Started GET "/tasks/9/edit" for ::1 at 2016-09-29 16:21:52 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/edit.html.erb within layouts/application (2.8ms) +Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 16:21:52 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 16:21:52 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 16:21:52 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 16:21:52 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 16:21:52 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 16:21:52 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 16:21:52 -0700 + + +Started GET "/tasks/9/edit" for ::1 at 2016-09-29 16:22:02 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/edit.html.erb within layouts/application (19.1ms) +Completed 500 Internal Server Error in 22ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe2731a9b60> +Did you mean? tasks_path): + 1:

Edit a new task here:

+ 2: + 3: <%= form_for @task, method: :patch do |f| %> + 4: <%= f.label :name %> + 5: <%= f.text_field :name %> + 6:
+ app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__3421740780238415314_70305285227480' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (56.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (48.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (98.9ms) + + +Started GET "/tasks/9/edit" for ::1 at 2016-09-29 16:22:42 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/edit.html.erb within layouts/application (20.1ms) +Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe27490d018> +Did you mean? tasks_path): + 1:

Edit a new task here:

+ 2: + 3: <%= form_for @task, :method => :patch do |f| %> + 4: <%= f.label :name %> + 5: <%= f.text_field :name %> + 6:
+ app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__3421740780238415314_70305277008640' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (52.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.2ms) + + +Started GET "/tasks/9/edit" for ::1 at 2016-09-29 16:23:05 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/edit.html.erb within layouts/application (24.9ms) +Completed 500 Internal Server Error in 28ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe274d224f0> +Did you mean? tasks_path): + 1:

Edit a new task here:

+ 2: + 3: <%= form_for @task do |f| %> + 4: <%= f.label :name %> + 5: <%= f.text_field :name %> + 6:
+ app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__3421740780238415314_70305299630280' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (49.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.9ms) + + +Started GET "/tasks/9/edit" for ::1 at 2016-09-29 16:23:42 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/edit.html.erb within layouts/application (21.2ms) +Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe274ddd5e8> +Did you mean? tasks_path): + 1:

Edit a new task here:

+ 2: + 3: <%= form_for @task, :method => :patch do |f| %> + 4: <%= f.label :name %> + 5: <%= f.text_field :name %> + 6:
+ app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__3421740780238415314_70305300013340' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (44.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (103.5ms) + + +Started GET "/tasks/9/edit" for ::1 at 2016-09-29 16:24:37 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/edit.html.erb within layouts/application (22.6ms) +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe26e235f48> +Did you mean? tasks_path): + 1:

Edit a new task here:

+ 2: + 3: <%= form_for @task, :action => task_path(@task), :method => :patch do |f| %> + 4: <%= f.label :name %> + 5: <%= f.text_field :name %> + 6:
+ app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__3421740780238415314_70305243571660' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (64.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (34.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.7ms) + + +Started GET "/tasks/9/edit" for ::1 at 2016-09-29 16:24:39 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/edit.html.erb within layouts/application (18.5ms) +Completed 500 Internal Server Error in 22ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe274acf810> +Did you mean? tasks_path): + 1:

Edit a new task here:

+ 2: + 3: <%= form_for @task, :action => task_path(@task), :method => :patch do |f| %> + 4: <%= f.label :name %> + 5: <%= f.text_field :name %> + 6:
+ app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__3421740780238415314_70305243571660' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (55.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (82.4ms) + + +Started GET "/tasks/9/edit" for ::1 at 2016-09-29 16:24:46 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/edit.html.erb within layouts/application (26.1ms) +Completed 500 Internal Server Error in 31ms (ActiveRecord: 0.2ms) + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe26f3fb840> +Did you mean? tasks_path): + 1:

Edit a new task here:

+ 2: + 3: <%= form_for @task, :action => tasks_path, :method => :patch do |f| %> + 4: <%= f.label :name %> + 5: <%= f.text_field :name %> + 6:
+ app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__3421740780238415314_70305252855160' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (52.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (57.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (100.5ms) + + +Started GET "/tasks/9/edit" for ::1 at 2016-09-29 16:30:25 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/edit.html.erb within layouts/application (25.5ms) +Completed 500 Internal Server Error in 42ms (ActiveRecord: 0.9ms) + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe27099b0b0> +Did you mean? tasks_path): + 1:

Edit a new task here:

+ 2: + 3: <%= form_for @task, :method => :patch do |f| %> + 4: <%= f.label :name %> + 5: <%= f.text_field :name %> + 6:
+ app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__3421740780238415314_70305264192200' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (62.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (49.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (106.0ms) + + +Started GET "/" for ::1 at 2016-09-29 16:31:25 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.5ms) +Completed 200 OK in 22ms (Views: 20.0ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 16:31:25 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 16:31:25 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 16:31:25 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 16:31:25 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 16:31:25 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 16:31:25 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 16:31:25 -0700 + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 16:32:57 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/edit.html.erb within layouts/application (21.7ms) +Completed 500 Internal Server Error in 42ms (ActiveRecord: 1.3ms) + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe2737e8d50> +Did you mean? tasks_path): + 1:

Edit a new task here:

+ 2: + 3: <%= form_for @task, :method => :patch do |f| %> + 4: <%= f.label :name %> + 5: <%= f.text_field :name %> + 6:
+ app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__3421740780238415314_70305264192200' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (51.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.5ms) + + +Started GET "/tasks/9/edit" for ::1 at 2016-09-29 16:33:19 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/edit.html.erb within layouts/application (1.9ms) +Completed 200 OK in 32ms (Views: 19.6ms | ActiveRecord: 0.7ms) + + +Started PATCH "/tasks.9" for ::1 at 2016-09-29 16:33:49 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasks.9"): + 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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (52.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (53.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (102.0ms) + + +Started PATCH "/tasks.9" for ::1 at 2016-09-29 16:34:56 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasks.9"): + 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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (65.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.8ms) + + +Started GET "/" for ::1 at 2016-09-29 16:36:11 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (36.3ms) +Completed 500 Internal Server Error in 44ms (ActiveRecord: 0.5ms) + +ActionView::Template::Error (undefined local variable or method `tasks_new_path' for #<#:0x007fe2737d2410> +Did you mean? new_task_path + task_path + task_show_path): + 16: <% end %> + 17:

+ 18: + 19:

<%= link_to "Click here to create a new task!", tasks_new_path %>

+ app/views/tasks/index.html.erb:19:in `_app_views_tasks_index_html_erb___4440298934848170623_70305266584020' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (53.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.8ms) + + +Started GET "/" for ::1 at 2016-09-29 16:36:28 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 15ms (Views: 13.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 16:36:28 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 16:36:28 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 16:36:28 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 16:36:28 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 16:36:28 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 16:36:28 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 16:36:28 -0700 + + +Started GET "/" for ::1 at 2016-09-29 16:36:34 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 16:36:35 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 16:36:35 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 16:36:35 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 16:36:35 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 16:36:35 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 16:36:35 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 16:36:35 -0700 + + +Started GET "/tasks/9/edit" for ::1 at 2016-09-29 16:36:36 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/edit.html.erb within layouts/application (1.8ms) +Completed 200 OK in 25ms (Views: 23.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 16:39:50 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (17.7ms) +Completed 500 Internal Server Error in 21ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `tasks_path' for #<#:0x007fe274d87bc0> +Did you mean? task_path): + 1:

Enter a new task here:

+ 2: + 3: <%= form_for @task do |f| %> + 4: <%= f.label :name %> + 5: <%= f.text_field :name %> + 6:
+ app/views/tasks/new.html.erb:3:in `_app_views_tasks_new_html_erb___4008070088818465131_70305277454960' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (45.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (35.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.4ms) + + +Started GET "/" for ::1 at 2016-09-29 16:44:19 -0700 +Processing by TasksController#index as HTML + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 23ms (Views: 22.3ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/9/edit" for ::1 at 2016-09-29 16:44:21 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/edit.html.erb within layouts/application (3.1ms) +Completed 200 OK in 25ms (Views: 24.3ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks.9" for ::1 at 2016-09-29 16:44:29 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasks.9"): + 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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (69.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.0ms) + + +Started GET "/tasks/9/edit" for ::1 at 2016-09-29 16:45:30 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/edit.html.erb within layouts/application (2.0ms) +Completed 200 OK in 14ms (Views: 13.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 16:45:30 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 16:45:30 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 16:45:30 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 16:45:30 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 16:45:30 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 16:45:30 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 16:45:30 -0700 + + +Started GET "/" for ::1 at 2016-09-29 16:45:46 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 24ms (Views: 23.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/9/edit" for ::1 at 2016-09-29 16:45:47 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/edit.html.erb within layouts/application (3.1ms) +Completed 200 OK in 26ms (Views: 25.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 16:46:10 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (16.5ms) +Completed 500 Internal Server Error in 20ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `tasks_path' for #<#:0x007fe273200028> +Did you mean? task_path): + 1:

Enter a new task here:

+ 2: + 3: <%= form_for @task do |f| %> + 4: <%= f.label :name %> + 5: <%= f.text_field :name %> + 6:
+ app/views/tasks/new.html.erb:3:in `_app_views_tasks_new_html_erb___4008070088818465131_70305277454960' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (48.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.8ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 16:46:47 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.8ms) +Completed 200 OK in 20ms (Views: 14.8ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 16:46:48 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 16:46:48 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 16:46:48 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 16:46:48 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 16:46:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 16:46:48 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 16:46:48 -0700 + + +Started GET "/" for ::1 at 2016-09-29 16:46:52 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 23ms (Views: 21.8ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/4/edit" for ::1 at 2016-09-29 16:46:54 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"4"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 4]] + Rendered tasks/edit.html.erb within layouts/application (32.0ms) +Completed 500 Internal Server Error in 39ms (ActiveRecord: 0.2ms) + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe26e246708> +Did you mean? tasks_path): + 1:

Edit a new task here:

+ 2: + 3: <%= form_for @task, :action=> root_path, :method => :patch do |f| %> + 4: <%= f.label :name %> + 5: <%= f.text_field :name %> + 6:
+ app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__3421740780238415314_70305279538140' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (60.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (34.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (77.1ms) + + +Started GET "/tasks/4/edit" for ::1 at 2016-09-29 16:50:04 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 4]] + Rendered tasks/edit.html.erb within layouts/application (17.8ms) +Completed 500 Internal Server Error in 21ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe2750bd4e8> +Did you mean? tasks_path): + 1:

Edit a new task here:

+ 2: + 3: <%= form_for @task, :action=> root_path, :method => :patch do |f| %> + 4: <%= f.label :name %> + 5: <%= f.text_field :name %> + 6:
+ app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__3421740780238415314_70305279538140' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (57.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.3ms) + + +Started GET "/tasks/4/edit" for ::1 at 2016-09-29 16:50:08 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"4"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 4]] + Rendered tasks/edit.html.erb within layouts/application (1.6ms) +Completed 200 OK in 20ms (Views: 14.7ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 16:50:08 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 16:50:08 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 16:50:08 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 16:50:08 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 16:50:08 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 16:50:08 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 16:50:08 -0700 + + +Started GET "/tasks/4/edit" for ::1 at 2016-09-29 16:50:24 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 4]] + Rendered tasks/edit.html.erb within layouts/application (22.3ms) +Completed 500 Internal Server Error in 35ms (ActiveRecord: 0.5ms) + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe2722a9908> +Did you mean? tasks_path): + 1:

Edit a new task here:

+ 2: + 3: <%= form_for @task, :action=> root_path, :method => :patch do |f| %> + 4: <%= f.label :name %> + 5: <%= f.text_field :name %> + 6:
+ app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__3421740780238415314_70305279538140' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (26.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (70.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (99.7ms) + + +Started GET "/tasks/4/edit" for ::1 at 2016-09-29 16:50:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 4]] + Rendered tasks/edit.html.erb within layouts/application (1.5ms) +Completed 200 OK in 22ms (Views: 15.7ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 16:50:50 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 16:50:50 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 16:50:50 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 16:50:50 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 16:50:50 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 16:50:50 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 16:50:50 -0700 + + +Started PATCH "/tasks/4" for ::1 at 2016-09-29 16:51:13 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"2jpZnJVgfwqr/RpGco35VfWwm76PPd3IioYGXGa3Yd1ffRpuJnrDUEYCCo7WsJby5WppNiZ80AaoFSErYwLZfQ==", "task"=>{"name"=>"exercise", "description"=>"do at least 30 minutes of cardio", "completed_at"=>""}, "commit"=>"Submit your edits", "id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 4]] +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-29 16:51:13 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/9/edit" for ::1 at 2016-09-29 16:51:19 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/edit.html.erb within layouts/application (1.5ms) +Completed 200 OK in 25ms (Views: 24.5ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/9" for ::1 at 2016-09-29 16:51:28 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"oeBXTj7n7XFYhCgotPMmvUBRh3Ms8EnCMKN5eUIaoBEkpxS8jf1RK7V7OOAQzkkaUIt1+4WxRAwSMF4OR68YsQ==", "task"=>{"name"=>"books", "description"=>"Return all your library books", "completed_at"=>""}, "commit"=>"Submit your edits", "id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "name" = ?, "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["name", "books"], ["description", "Return all your library books"], ["updated_at", "2016-09-29 23:51:28.610413"], ["id", 9]] +  (2.3ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.7ms) + + +Started GET "/" for ::1 at 2016-09-29 16:51:28 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-29 16:53:04 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/9" for ::1 at 2016-09-29 16:53:08 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 24ms (Views: 22.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/8/edit" for ::1 at 2016-09-29 16:54:38 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"8"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/edit.html.erb within layouts/application (2.0ms) +Completed 200 OK in 46ms (Views: 44.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/8" for ::1 at 2016-09-29 16:54:43 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"xyexOGzH/tzYMIAz1JKnuOU7p9/9y+YNbIDxWQTu6l1CYPLK391ChjXPkPtwr8gf9eFVV1SK68NOE9YuAVtS/Q==", "task"=>{"name"=>"sdf", "description"=>"sdga", "completed_at"=>"2016-09-21"}, "commit"=>"Submit your edits", "id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-09-21"], ["updated_at", "2016-09-29 23:54:43.329899"], ["id", 8]] +  (5.8ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 9ms (ActiveRecord: 6.2ms) + + +Started GET "/" for ::1 at 2016-09-29 16:54:43 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 14ms (Views: 12.9ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-29 19:23:08 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.6ms) +Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.4ms) + +ActionView::Template::Error (wrong number of arguments (given 0, expected 1)): + 10:

+ 11: <% else %> + 12:

+ 13: <%= "Complete task: #{v.name} on #{ formatted_date }." %> + 14: <%= link_to "[Details]", task_path(v) %> + 15: <%= link_to "[Edit]", task_edit_path(v) %> + 16:

+ app/helpers/tasks_helper.rb:10:in `formatted_date' + app/views/tasks/index.html.erb:13:in `block in _app_views_tasks_index_html_erb___4440298934848170623_70305299869420' + app/views/tasks/index.html.erb:4:in `_app_views_tasks_index_html_erb___4440298934848170623_70305299869420' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (51.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (36.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.2ms) + + +Started GET "/" for ::1 at 2016-09-29 19:23:16 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 19:23:16 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 19:23:16 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 19:23:16 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 19:23:16 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 19:23:16 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 19:23:16 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 19:23:16 -0700 + + +Started GET "/tasks/1" for ::1 at 2016-09-29 19:28:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 25ms (Views: 23.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for ::1 at 2016-09-29 19:28:54 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 15ms (Views: 13.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 19:28:54 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 19:28:54 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 19:28:54 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 19:28:54 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 19:28:54 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 19:28:54 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 19:28:54 -0700 + + +Started GET "/tasks/1" for ::1 at 2016-09-29 19:31:21 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 19:31:21 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 19:31:21 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 19:31:21 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 19:31:21 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 19:31:21 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 19:31:21 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 19:31:21 -0700 + + +Started GET "/tasks/1" for ::1 at 2016-09-29 19:32:44 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 19:32:44 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 19:32:44 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 19:32:44 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 19:32:44 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 19:32:44 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 19:32:44 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 19:32:44 -0700 + + +Started GET "/" for ::1 at 2016-09-29 19:33:45 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/5" for ::1 at 2016-09-29 19:33:47 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 27ms (Views: 25.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/5" for ::1 at 2016-09-29 19:37:23 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 22ms (Views: 12.7ms | ActiveRecord: 0.9ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 19:37:23 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 19:37:23 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 19:37:23 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 19:37:23 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 19:37:23 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 19:37:23 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 19:37:23 -0700 + + +Started GET "/tasks" for ::1 at 2016-09-29 19:37:27 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 14ms (Views: 13.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/8/edit" for ::1 at 2016-09-29 19:37:36 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/edit.html.erb within layouts/application (2.7ms) +Completed 200 OK in 27ms (Views: 26.6ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/8" for ::1 at 2016-09-29 19:37:53 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"eMMtOiF4vI1Qsiuf+HsqoWsqiuGRNabmueSW62HZjab9hG7IkmIA171NO1dcRkUGe/B4aTh0qyibd7GcZGw1Bg==", "task"=>{"name"=>"poverty", "description"=>"End world poverty and also hunger.", "completed_at"=>"2016-09-21"}, "commit"=>"Submit your edits", "id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "name" = ?, "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["name", "poverty"], ["description", "End world poverty and also hunger."], ["updated_at", "2016-09-30 02:37:53.447049"], ["id", 8]] +  (2.2ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 8ms (ActiveRecord: 2.6ms) + + +Started GET "/" for ::1 at 2016-09-29 19:37:53 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2" for ::1 at 2016-09-29 19:41:33 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 20ms (Views: 18.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for ::1 at 2016-09-29 19:48:53 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/show.html.erb within layouts/application (2.9ms) +Completed 200 OK in 21ms (Views: 20.5ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/2" for ::1 at 2016-09-29 19:48:58 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"sDStSvsmf8CFlXzcKACJyIjVr1SA+gVstu83foE4O9I1c+64SDzDmmhqbBSMPeZvmA9d3Cm7CKKUfBAJhI2Dcg==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]] +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 2]] +  (2.3ms) commit transaction +Completed 500 Internal Server Error in 6ms (ActiveRecord: 2.7ms) + +ActionView::MissingTemplate (Missing template tasks/destroy, application/destroy with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/nurl/ada/homework/rails/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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (46.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (49.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (96.0ms) + + +Started GET "/tasks/" for ::1 at 2016-09-29 19:49:49 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 13ms (Views: 12.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/7" for ::1 at 2016-09-29 19:50:42 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"7"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 7]] + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 50ms (Views: 49.0ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/7" for ::1 at 2016-09-29 19:50:44 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"pCUPnaGN3JvOLUpx9OrSD4MOcbLHWtHVFoQUpkTsy+chYkxvEpdgwSPSWrlQ172ok9SDOm4b3Bs0FzPRQVlzRw==", "id"=>"7"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 7]] +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 7]] +  (2.3ms) commit transaction +Completed 500 Internal Server Error in 7ms (ActiveRecord: 2.6ms) + +ActionView::MissingTemplate (Missing template tasks/destroy, application/destroy with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/nurl/ada/homework/rails/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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (11.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (54.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.1ms) + + +Started GET "/tasks/" for ::1 at 2016-09-29 19:51:06 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/6" for ::1 at 2016-09-29 19:51:11 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 27ms (Views: 25.9ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/6" for ::1 at 2016-09-29 19:51:12 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"L02bjOX7CKUBQb4EOb87UbSywPDCFgF78vSyRCpFgZaqCth+VuG0/+y+rsydglT2pGgyeGtXDLXQZ5UzL/A5Ng==", "id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 6]] +  (4.8ms) commit transaction + Rendered tasks/destroy.html.erb within layouts/application (0.9ms) +Completed 200 OK in 25ms (Views: 18.8ms | ActiveRecord: 5.1ms) + + +Started GET "/tasks/6" for ::1 at 2016-09-29 19:52:47 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=6): + app/controllers/tasks_controller.rb:7:in `show' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (56.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (48.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (100.9ms) + + +Started GET "/tasks/" for ::1 at 2016-09-29 19:52:50 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/9" for ::1 at 2016-09-29 19:52:57 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 24ms (Views: 23.4ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/9" for ::1 at 2016-09-29 19:52:59 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"Lfb9vPVI+U0u+gWjzb97glqtgOj6oqwFNpbSzLOv/Aaosb5ORlJFF8MFFWtpghQlSndyYFPjocsUBfW7thpEpg==", "id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] +  (0.1ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 9]] +  (2.3ms) commit transaction + Rendered tasks/destroy.html.erb within layouts/application (0.6ms) +Completed 200 OK in 21ms (Views: 17.0ms | ActiveRecord: 2.7ms) + + +Started GET "/tasks/9" for ::1 at 2016-09-29 19:53:48 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=9): + app/controllers/tasks_controller.rb:7:in `show' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (44.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.3ms) + + +Started GET "/tasks" for ::1 at 2016-09-29 20:02:05 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 21ms (Views: 20.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/application.self-c829424f2ac3c277ac9a972b7c942757a6444c4bd3e4d2217e16f74ec6073704.css?body=1" for ::1 at 2016-09-29 20:02:05 -0700 + + +Started GET "/tasks" for ::1 at 2016-09-29 20:06:40 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/application.self-2bbf9f88134f74124e25fa8a8715c68fd9ed1f527c4824e02f891a579b46d863.css?body=1" for ::1 at 2016-09-29 20:06:40 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:06:40 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:06:40 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:06:40 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:06:40 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:06:40 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:06:40 -0700 + + +Started GET "/tasks" for ::1 at 2016-09-29 20:07:11 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 26ms (Views: 25.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:07:11 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-29 20:07:12 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:07:12 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:07:12 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:07:12 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:07:12 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:07:12 -0700 + + +Started GET "/tasks" for ::1 at 2016-09-29 20:07:32 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 19ms (Views: 18.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:07:32 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:07:32 -0700 + + +Started GET "/assets/application.self-7c950d30ec9ffc64e1b791c8692aecad127e548b3d8d1735d46ca1ea0ca06563.css?body=1" for ::1 at 2016-09-29 20:07:32 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:07:32 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:07:32 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:07:32 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:07:32 -0700 + + +Started GET "/tasks" for ::1 at 2016-09-29 20:07:48 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 21ms (Views: 19.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/application.self-38535e8cc287cac2d290a39a86a6dab9b0744ffe3d7c6deaeff4005387aa2da7.css?body=1" for ::1 at 2016-09-29 20:07:48 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:07:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:07:48 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:07:48 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:07:48 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:07:48 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:07:48 -0700 + + +Started GET "/tasks/8" for ::1 at 2016-09-29 20:08:53 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 40ms (Views: 38.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2016-09-29 20:13:09 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 20:13:12 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (2.4ms) +Completed 200 OK in 38ms (Views: 37.8ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-09-29 20:13:31 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"aa/DsHzxXFafKLelPX6H2gvdxDyhL4fyDdZXXK4TU/js6IBCz+vgDHLXp22ZQ+h9Gwc2tAhuijwvRXArq6brWA==", "task"=>{"name"=>"jump rope", "description"=>"Jump up, then down, then up again, to a specific rhythm", "completed_at"=>""}, "commit"=>"Submit your task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "jump rope"], ["description", "Jump up, then down, then up again, to a specific rhythm"], ["created_at", "2016-09-30 03:13:32.001605"], ["updated_at", "2016-09-30 03:13:32.001605"]] +  (2.2ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.5ms) + + +Started GET "/" for ::1 at 2016-09-29 20:13:32 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-29 20:19:44 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 14ms (Views: 12.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:19:44 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:19:44 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:19:44 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:19:44 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:19:44 -0700 + + +Started GET "/assets/application.self-38535e8cc287cac2d290a39a86a6dab9b0744ffe3d7c6deaeff4005387aa2da7.css?body=1" for ::1 at 2016-09-29 20:19:44 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:19:44 -0700 + + +Started GET "/" for ::1 at 2016-09-29 20:20:12 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.4ms) +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.4ms) + +ActionView::Template::Error (wrong number of arguments (given 1, expected 0)): + 10:

+ 11: <% else %> + 12:

+ 13: <%= "Complete task: #{v.name} on #{ formatted_date(v) }." %> + 14: <%= link_to "[Details]", task_path(v) %> + 15: <%= link_to "[Edit]", task_edit_path(v) %> + 16:

+ app/helpers/tasks_helper.rb:10:in `formatted_date' + app/views/tasks/index.html.erb:13:in `block in _app_views_tasks_index_html_erb___4440298934848170623_70305277315660' + app/views/tasks/index.html.erb:4:in `_app_views_tasks_index_html_erb___4440298934848170623_70305277315660' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (47.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (35.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (78.1ms) + + +Started GET "/" for ::1 at 2016-09-29 20:20:35 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.4ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `completed_at' for nil:NilClass): + 10:

+ 11: <% else %> + 12:

+ 13: <%= "Complete task: #{v.name} on #{ formatted_date }." %> + 14: <%= link_to "[Details]", task_path(v) %> + 15: <%= link_to "[Edit]", task_edit_path(v) %> + 16:

+ app/helpers/tasks_helper.rb:11:in `formatted_date' + app/views/tasks/index.html.erb:13:in `block in _app_views_tasks_index_html_erb___4440298934848170623_70305299469820' + app/views/tasks/index.html.erb:4:in `_app_views_tasks_index_html_erb___4440298934848170623_70305299469820' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (51.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.7ms) + + +Started GET "/" for ::1 at 2016-09-29 20:20:51 -0700 + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/helpers/tasks_helper.rb:10: formal argument cannot be an instance variable + def formatted_date(@task) + ^): + app/helpers/tasks_helper.rb:10: formal argument cannot be an instance variable + app/controllers/application_controller.rb:1:in `' + app/controllers/tasks_controller.rb:1:in `' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (47.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.1ms) + + +Started GET "/" for ::1 at 2016-09-29 20:21:52 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.9ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.5ms) + +ActionView::Template::Error (wrong number of arguments (given 0, expected 1)): + 10:

+ 11: <% else %> + 12:

+ 13: <%= "Complete task: #{v.name} on #{ formatted_date }." %> + 14: <%= link_to "[Details]", task_path(v) %> + 15: <%= link_to "[Edit]", task_edit_path(v) %> + 16:

+ app/helpers/tasks_helper.rb:10:in `formatted_date' + app/views/tasks/index.html.erb:13:in `block in _app_views_tasks_index_html_erb___4440298934848170623_70305299469820' + app/views/tasks/index.html.erb:4:in `_app_views_tasks_index_html_erb___4440298934848170623_70305299469820' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (50.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.2ms) + + +Started GET "/" for ::1 at 2016-09-29 20:22:04 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 14ms (Views: 13.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:22:04 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:22:04 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:22:04 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:22:04 -0700 + + +Started GET "/assets/application.self-38535e8cc287cac2d290a39a86a6dab9b0744ffe3d7c6deaeff4005387aa2da7.css?body=1" for ::1 at 2016-09-29 20:22:04 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:22:04 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:22:04 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-09-29 20:22:11 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (2.1ms) +Completed 200 OK in 28ms (Views: 27.5ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-09-29 20:22:22 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"43ZKl4fGpLlGVGGGZtqkTdFC7fS97WqDfr/Gzgsr6b9mMQllNNwY46urcU7C58vqwZgffBSsZ01cLOG5Dp5RHw==", "task"=>{"name"=>"comb", "description"=>"Comb the kitties", "completed_at"=>""}, "commit"=>"Submit your task"} +  (0.0ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "comb"], ["description", "Comb the kitties"], ["created_at", "2016-09-30 03:22:22.552162"], ["updated_at", "2016-09-30 03:22:22.552162"]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.8ms) + + +Started GET "/" for ::1 at 2016-09-29 20:22:22 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-29 20:23:52 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:23:52 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:23:52 -0700 + + +Started GET "/assets/application.self-38535e8cc287cac2d290a39a86a6dab9b0744ffe3d7c6deaeff4005387aa2da7.css?body=1" for ::1 at 2016-09-29 20:23:52 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:23:52 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:23:52 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:23:53 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:23:53 -0700 + + +Started GET "/tasks/8/edit" for ::1 at 2016-09-29 20:25:04 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"8"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/edit.html.erb within layouts/application (1.3ms) +Completed 200 OK in 24ms (Views: 22.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/8/edit" for ::1 at 2016-09-29 20:28:58 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/edit.html.erb within layouts/application (2.3ms) +Completed 200 OK in 24ms (Views: 23.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/8" for ::1 at 2016-09-29 20:29:03 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"lQwxDju+d10QXkXmoYOAVG0/aSUMjgIYTw2X7sej9wIQS3L8iKTLB/2hVS4Fvu/zfeWbraXPD9ZtnrCZwhZPog==", "task"=>{"name"=>"poverty", "description"=>"End world poverty and also hunger.", "completed_at"=>"2016-09-22"}, "commit"=>"Submit your edits", "id"=>"8"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] +  (0.1ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-09-22"], ["updated_at", "2016-09-30 03:29:03.136256"], ["id", 8]] +  (2.2ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 2.7ms) + + +Started GET "/" for ::1 at 2016-09-29 20:29:03 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-29 20:57:06 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.1ms) +Completed 200 OK in 20ms (Views: 18.3ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 20:57:06 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 20:57:06 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 20:57:06 -0700 + + +Started GET "/assets/application.self-38535e8cc287cac2d290a39a86a6dab9b0744ffe3d7c6deaeff4005387aa2da7.css?body=1" for ::1 at 2016-09-29 20:57:06 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 20:57:06 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 20:57:06 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 20:57:06 -0700 + + +Started GET "/" for ::1 at 2016-09-29 20:57:23 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.9ms) +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.2ms) + +ActionView::Template::Error (undefined method `delete_if' for # +Did you mean? delete + delete_all): + 18: <% end %> + 19:

+ 20: + 21:

<%= all_completes %>

+ 22: + 23:
+ 24:
+ app/helpers/tasks_helper.rb:17:in `all_completes' + app/views/tasks/index.html.erb:21:in `_app_views_tasks_index_html_erb___4440298934848170623_70305254506660' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (48.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.1ms) + Task Load (2.1ms) SELECT "tasks".* FROM "tasks" + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + + +Started GET "/" for ::1 at 2016-09-29 21:14:53 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.0ms) +Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 21:14:53 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 21:14:53 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 21:14:53 -0700 + + +Started GET "/assets/application.self-38535e8cc287cac2d290a39a86a6dab9b0744ffe3d7c6deaeff4005387aa2da7.css?body=1" for ::1 at 2016-09-29 21:14:53 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 21:14:53 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 21:14:53 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 21:14:53 -0700 + + +Started GET "/" for ::1 at 2016-09-29 21:31:06 -0700 +Processing by TasksController#index as HTML +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/models/task.rb:3: syntax error, unexpected '=', expecting ')' + task_list = Task.all.where.not(:completed_at = nil) + ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/models/task.rb:9: syntax error, unexpected '=', expecting ')' + task_list = Task.all.where(:completed_at = nil) + ^): + app/models/task.rb:3: syntax error, unexpected '=', expecting ')' + app/models/task.rb:9: syntax error, unexpected '=', expecting ')' + app/controllers/tasks_controller.rb:3:in `index' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (43.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (35.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.1ms) + + +Started GET "/" for ::1 at 2016-09-29 21:38:38 -0700 +Processing by TasksController#index as HTML +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/models/task.rb:9: syntax error, unexpected '=', expecting ')' + task_list = Task.all.where(:completed_at = nil) + ^): + app/models/task.rb:9: syntax error, unexpected '=', expecting ')' + app/controllers/tasks_controller.rb:3:in `index' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (43.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.6ms) + + +Started GET "/" for ::1 at 2016-09-29 21:38:51 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (38.7ms) +Completed 500 Internal Server Error in 46ms (ActiveRecord: 0.4ms) + +ActionView::Template::Error (undefined local variable or method `all_completes' for #<#:0x007fe26f7f11e8>): + 18: <% end %> + 19:

+ 20: + 21:

<%= all_completes %>

+ 22: + 23:
+ 24:
+ app/views/tasks/index.html.erb:21:in `_app_views_tasks_index_html_erb___4440298934848170623_70305254506660' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (55.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (36.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (83.2ms) + + +Started GET "/" for ::1 at 2016-09-29 21:41:32 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.5ms) +Completed 200 OK in 20ms (Views: 17.8ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 21:41:32 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 21:41:32 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 21:41:32 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 21:41:32 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 21:41:32 -0700 + + +Started GET "/assets/application.self-38535e8cc287cac2d290a39a86a6dab9b0744ffe3d7c6deaeff4005387aa2da7.css?body=1" for ::1 at 2016-09-29 21:41:32 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 21:41:32 -0700 + + +Started GET "/" for ::1 at 2016-09-29 21:45:30 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (5.6ms) +Completed 200 OK in 21ms (Views: 18.5ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 21:45:30 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 21:45:30 -0700 + + +Started GET "/assets/application.self-38535e8cc287cac2d290a39a86a6dab9b0744ffe3d7c6deaeff4005387aa2da7.css?body=1" for ::1 at 2016-09-29 21:45:30 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 21:45:30 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 21:45:30 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 21:45:30 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 21:45:30 -0700 + + +Started GET "/" for ::1 at 2016-09-29 21:46:56 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (5.8ms) +Completed 200 OK in 23ms (Views: 20.6ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 21:46:56 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 21:46:56 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 21:46:56 -0700 + + +Started GET "/assets/application.self-38535e8cc287cac2d290a39a86a6dab9b0744ffe3d7c6deaeff4005387aa2da7.css?body=1" for ::1 at 2016-09-29 21:46:56 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 21:46:56 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 21:46:56 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 21:46:56 -0700 + + +Started GET "/" for ::1 at 2016-09-29 21:47:04 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 21:47:04 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 21:47:04 -0700 + + +Started GET "/assets/application.self-38535e8cc287cac2d290a39a86a6dab9b0744ffe3d7c6deaeff4005387aa2da7.css?body=1" for ::1 at 2016-09-29 21:47:04 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 21:47:04 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 21:47:04 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 21:47:04 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 21:47:04 -0700 + + +Started GET "/" for ::1 at 2016-09-29 21:47:14 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (5.3ms) +Completed 200 OK in 19ms (Views: 17.0ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 21:47:15 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 21:47:15 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 21:47:15 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 21:47:15 -0700 + + +Started GET "/assets/application.self-38535e8cc287cac2d290a39a86a6dab9b0744ffe3d7c6deaeff4005387aa2da7.css?body=1" for ::1 at 2016-09-29 21:47:15 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 21:47:15 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 21:47:15 -0700 + + +Started GET "/" for ::1 at 2016-09-29 21:49:53 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (7.8ms) +Completed 200 OK in 24ms (Views: 21.9ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 21:49:53 -0700 + + +Started GET "/assets/application.self-38535e8cc287cac2d290a39a86a6dab9b0744ffe3d7c6deaeff4005387aa2da7.css?body=1" for ::1 at 2016-09-29 21:49:53 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 21:49:53 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 21:49:53 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 21:49:53 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 21:49:53 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 21:49:53 -0700 + + +Started GET "/" for ::1 at 2016-09-29 21:51:11 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.2ms) +Completed 200 OK in 31ms (Views: 28.6ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 21:51:11 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 21:51:11 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 21:51:11 -0700 + + +Started GET "/assets/application.self-38535e8cc287cac2d290a39a86a6dab9b0744ffe3d7c6deaeff4005387aa2da7.css?body=1" for ::1 at 2016-09-29 21:51:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 21:51:11 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 21:51:11 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 21:51:11 -0700 + + +Started GET "/" for ::1 at 2016-09-29 21:52:59 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 21:52:59 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 21:52:59 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 21:52:59 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 21:52:59 -0700 + + +Started GET "/assets/application.self-38535e8cc287cac2d290a39a86a6dab9b0744ffe3d7c6deaeff4005387aa2da7.css?body=1" for ::1 at 2016-09-29 21:52:59 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 21:52:59 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 21:52:59 -0700 + + +Started GET "/" for ::1 at 2016-09-29 21:54:53 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 21:54:53 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 21:54:53 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 21:54:53 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 21:54:53 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 21:54:53 -0700 + + +Started GET "/assets/application.self-38535e8cc287cac2d290a39a86a6dab9b0744ffe3d7c6deaeff4005387aa2da7.css?body=1" for ::1 at 2016-09-29 21:54:53 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 21:54:53 -0700 + + +Started GET "/" for ::1 at 2016-09-29 21:55:37 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (29.5ms) +Completed 500 Internal Server Error in 33ms (ActiveRecord: 0.2ms) + +ActionView::Template::Error (undefined local variable or method `v' for #<#:0x007fe274860ca0>): + 20: + 21: <% Task.all_completes.each do |i| %> + 22:

+ 23: <%="Incomplete task: #{v.name}" %> + 24: <%= link_to "[Details]", task_path(v) %> + 25: <%= link_to "[Edit]", task_edit_path(v) %> + 26:

+ app/views/tasks/index.html.erb:23:in `block in _app_views_tasks_index_html_erb___4440298934848170623_70305287150140' + app/views/tasks/index.html.erb:21:in `_app_views_tasks_index_html_erb___4440298934848170623_70305287150140' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (47.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.8ms) + + +Started GET "/" for ::1 at 2016-09-29 21:55:46 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 18ms (Views: 16.8ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/application.self-38535e8cc287cac2d290a39a86a6dab9b0744ffe3d7c6deaeff4005387aa2da7.css?body=1" for ::1 at 2016-09-29 21:55:47 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 21:55:47 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 21:55:47 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 21:55:47 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 21:55:47 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 21:55:47 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 21:55:47 -0700 + + +Started GET "/" for ::1 at 2016-09-29 21:56:47 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 21:56:47 -0700 + + +Started GET "/assets/application.self-38535e8cc287cac2d290a39a86a6dab9b0744ffe3d7c6deaeff4005387aa2da7.css?body=1" for ::1 at 2016-09-29 21:56:47 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 21:56:47 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 21:56:47 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 21:56:47 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 21:56:47 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 21:56:47 -0700 + + +Started GET "/" for ::1 at 2016-09-29 21:57:00 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 21:57:00 -0700 + + +Started GET "/assets/application.self-38535e8cc287cac2d290a39a86a6dab9b0744ffe3d7c6deaeff4005387aa2da7.css?body=1" for ::1 at 2016-09-29 21:57:00 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 21:57:00 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 21:57:00 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 21:57:00 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 21:57:00 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 21:57:00 -0700 + + +Started GET "/" for ::1 at 2016-09-29 21:57:41 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 21:57:41 -0700 + + +Started GET "/assets/application.self-38535e8cc287cac2d290a39a86a6dab9b0744ffe3d7c6deaeff4005387aa2da7.css?body=1" for ::1 at 2016-09-29 21:57:41 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 21:57:41 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 21:57:41 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 21:57:41 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 21:57:41 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 21:57:41 -0700 + + +Started GET "/tasks/5" for ::1 at 2016-09-29 21:58:12 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 27ms (Views: 25.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-29 21:59:43 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 33ms (Views: 31.9ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 21:59:43 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 21:59:43 -0700 + + +Started GET "/assets/application.self-38535e8cc287cac2d290a39a86a6dab9b0744ffe3d7c6deaeff4005387aa2da7.css?body=1" for ::1 at 2016-09-29 21:59:43 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 21:59:43 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 21:59:43 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 21:59:43 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 21:59:43 -0700 + + +Started GET "/" for ::1 at 2016-09-29 22:00:35 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 22:00:35 -0700 + + +Started GET "/assets/application.self-38535e8cc287cac2d290a39a86a6dab9b0744ffe3d7c6deaeff4005387aa2da7.css?body=1" for ::1 at 2016-09-29 22:00:35 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 22:00:35 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 22:00:35 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 22:00:35 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 22:00:35 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 22:00:35 -0700 + + +Started GET "/" for ::1 at 2016-09-29 22:01:40 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 20ms (Views: 18.4ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 22:01:40 -0700 + + +Started GET "/assets/application.self-38535e8cc287cac2d290a39a86a6dab9b0744ffe3d7c6deaeff4005387aa2da7.css?body=1" for ::1 at 2016-09-29 22:01:40 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 22:01:40 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 22:01:40 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 22:01:40 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 22:01:40 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 22:01:40 -0700 + + +Started GET "/" for ::1 at 2016-09-29 22:01:55 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 22:01:55 -0700 + + +Started GET "/assets/application.self-38535e8cc287cac2d290a39a86a6dab9b0744ffe3d7c6deaeff4005387aa2da7.css?body=1" for ::1 at 2016-09-29 22:01:55 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 22:01:55 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 22:01:55 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 22:01:55 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 22:01:55 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 22:01:55 -0700 + + +Started GET "/" for ::1 at 2016-09-29 22:02:20 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/application.self-b5eb7fef1e0b07c7b082f8f599dec70c98593beecc14b3614e82d4180753252f.css?body=1" for ::1 at 2016-09-29 22:02:20 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 22:02:20 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 22:02:20 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 22:02:20 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 22:02:20 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 22:02:20 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 22:02:20 -0700 + + +Started GET "/" for ::1 at 2016-09-29 22:02:29 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 20ms (Views: 18.4ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 22:02:29 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 22:02:29 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 22:02:29 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 22:02:29 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-29 22:02:29 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 22:02:29 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 22:02:29 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-09-29 22:03:48 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (3.7ms) +Completed 200 OK in 32ms (Views: 23.8ms | ActiveRecord: 0.8ms) + + +Started POST "/tasks" for ::1 at 2016-09-29 22:04:40 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"xYAE32GwUrk6JaeSAs7RHvK3BfAYTPWFB6cbydjsPO5Ax0ct0qru49fat1qm87654m33eLEN+EslNDy+3VmETg==", "task"=>{"name"=>"Fix chair", "description"=>"Seriously, I'm afraid to sit in that freaking thing.", "completed_at"=>""}, "commit"=>"Submit your task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fix chair"], ["description", "Seriously, I'm afraid to sit in that freaking thing."], ["created_at", "2016-09-30 05:04:40.304046"], ["updated_at", "2016-09-30 05:04:40.304046"]] +  (2.2ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.5ms) + + +Started GET "/" for ::1 at 2016-09-29 22:04:40 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-09-29 22:07:53 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 20ms (Views: 19.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 22:07:53 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 22:07:53 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 22:07:53 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 22:07:53 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 22:07:53 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 22:07:53 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-29 22:07:53 -0700 + + +Started GET "/tasks/12" for ::1 at 2016-09-29 22:07:58 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 24ms (Views: 21.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/12" for ::1 at 2016-09-29 22:10:42 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] + Rendered tasks/show.html.erb within layouts/application (4.0ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (No route matches {:action=>"redirect_to root_path", :controller=>"tasks", :id=>"12"}): + 10: <% end %> + 11:

+ 12:
+ 13: <%= button_to "Back home", {:controller => :tasks, + 14: :action => 'redirect_to root_path'}, :method => :delete %> + 15: + 16:
+ app/views/tasks/show.html.erb:13:in `_app_views_tasks_show_html_erb___2466850312660591381_70305243359220' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (49.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (83.8ms) + + +Started GET "/tasks/12" for ::1 at 2016-09-29 22:10:55 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] + Rendered tasks/show.html.erb within layouts/application (2.3ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (No route matches {:action=>"get", :controller=>"tasks", :id=>"12"}): + 10: <% end %> + 11:

+ 12:
+ 13: <%= button_to "Back home", {:controller => :tasks, + 14: :action => 'get'}, :method => :delete %> + 15: + 16:
+ app/views/tasks/show.html.erb:13:in `_app_views_tasks_show_html_erb___2466850312660591381_70305284665340' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (49.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.4ms) + + +Started GET "/tasks/12" for ::1 at 2016-09-29 22:11:32 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] + Rendered tasks/show.html.erb within layouts/application (2.5ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (No route matches {:action=>"/tasks", :controller=>"tasks", :id=>"12"}): + 10: <% end %> + 11:

+ 12:
+ 13: <%= button_to "Back home", {:controller => :tasks, + 14: :action => '/tasks'}, :method => :delete %> + 15: + 16:
+ app/views/tasks/show.html.erb:13:in `_app_views_tasks_show_html_erb___2466850312660591381_70305310215180' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (47.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.5ms) + + +Started GET "/tasks/12" for ::1 at 2016-09-29 22:12:54 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] + Rendered tasks/show.html.erb within layouts/application (1.8ms) +Completed 200 OK in 13ms (Views: 12.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 22:12:54 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-29 22:12:54 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 22:12:55 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 22:12:55 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 22:12:55 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 22:12:55 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 22:12:55 -0700 + + +Started DELETE "/" for ::1 at 2016-09-29 22:12:57 -0700 + +ActionController::RoutingError (No route matches [DELETE] "/"): + 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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (61.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.8ms) + + +Started DELETE "/" for ::1 at 2016-09-29 22:13:22 -0700 + +ActionController::RoutingError (No route matches [DELETE] "/"): + 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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (53.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (80.8ms) + + +Started GET "/tasks/12" for ::1 at 2016-09-29 22:13:27 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] + Rendered tasks/show.html.erb within layouts/application (12.6ms) +Completed 200 OK in 26ms (Views: 25.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 22:13:27 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 22:13:27 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 22:13:27 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-29 22:13:27 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 22:13:27 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 22:13:27 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 22:13:27 -0700 + + +Started POST "/" for ::1 at 2016-09-29 22:13:29 -0700 + +ActionController::RoutingError (No route matches [POST] "/"): + 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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (60.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.6ms) + + +Started GET "/tasks/12" for ::1 at 2016-09-29 22:14:54 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 22:14:54 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-29 22:14:54 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 22:14:54 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 22:14:54 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 22:14:54 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 22:14:54 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 22:14:54 -0700 + + +Started POST "/" for ::1 at 2016-09-29 22:14:57 -0700 + +ActionController::RoutingError (No route matches [POST] "/"): + 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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (60.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.5ms) + + +Started POST "/" for ::1 at 2016-09-29 22:20:18 -0700 + +ActionController::RoutingError (No route matches [POST] "/"): + 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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (64.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (35.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.4ms) + + +Started GET "/tasks/12" for ::1 at 2016-09-29 22:25:02 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 13ms (Views: 11.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 22:25:02 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-29 22:25:02 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 22:25:02 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 22:25:02 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 22:25:02 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 22:25:02 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 22:25:02 -0700 + + +Started POST "/tasks/12" for ::1 at 2016-09-29 22:25:04 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/12"): + 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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (63.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (98.2ms) + + +Started GET "/tasks/12" for ::1 at 2016-09-29 22:25:45 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 22:25:45 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 22:25:45 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 22:25:45 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 22:25:45 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 22:25:45 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 22:25:45 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-29 22:25:45 -0700 + + +Started GET "/" for ::1 at 2016-09-30 09:11:17 -0700 + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (28.4ms) +Completed 200 OK in 464ms (Views: 446.9ms | ActiveRecord: 1.0ms) + + +Started GET "/" for ::1 at 2016-09-30 09:14:00 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 09:14:00 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 09:14:00 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 09:14:00 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 09:14:00 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 09:14:00 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 09:14:01 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 09:14:01 -0700 + + +Started GET "/" for ::1 at 2016-09-30 09:14:12 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 09:14:12 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 09:14:12 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 09:14:12 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 09:14:12 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 09:14:12 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 09:14:12 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 09:14:12 -0700 + + +Started GET "/" for ::1 at 2016-09-30 09:15:37 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 09:15:37 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 09:15:37 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 09:15:37 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 09:15:37 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 09:15:37 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 09:15:37 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 09:15:37 -0700 + + +Started GET "/" for ::1 at 2016-09-30 09:16:38 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 18ms (Views: 16.5ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 09:16:38 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 09:16:38 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 09:16:38 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 09:16:38 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 09:16:38 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 09:16:38 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 09:16:38 -0700 + + +Started GET "/" for ::1 at 2016-09-30 09:18:21 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 09:18:22 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 09:18:22 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 09:18:22 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 09:18:22 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 09:18:22 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 09:18:22 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 09:18:22 -0700 + + +Started GET "/" for ::1 at 2016-09-30 09:18:44 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 09:18:44 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 09:18:44 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 09:18:44 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 09:18:44 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 09:18:44 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 09:18:44 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 09:18:44 -0700 + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-30 09:22:38 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/edit.html.erb within layouts/application (80.1ms) +Completed 200 OK in 114ms (Views: 102.9ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 09:33:23 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (6.2ms) +Completed 200 OK in 21ms (Views: 18.8ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 09:33:23 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 09:33:23 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 09:33:23 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 09:33:23 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 09:33:23 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 09:33:23 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 09:33:23 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-09-30 09:34:35 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (3.6ms) +Completed 200 OK in 31ms (Views: 28.8ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-09-30 09:34:39 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"aIQcaxjii3ZNV05bq/5HQT9kjy9l0+/4rYg1lp4/M0Ltw1+Zq/g3LKCoXpMPwyjmL759p8yS4jaPGxLhm4qL4g==", "task"=>{"name"=>"lksjdflkdsaj", "description"=>"lskjdfalskjdflskd", "completed_at"=>""}, "commit"=>"Submit your task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "lksjdflkdsaj"], ["description", "lskjdfalskjdflskd"], ["created_at", "2016-09-30 16:34:39.572575"], ["updated_at", "2016-09-30 16:34:39.572575"]] +  (2.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 2.9ms) + + +Started GET "/" for ::1 at 2016-09-30 09:34:39 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/13" for ::1 at 2016-09-30 09:34:43 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"ekqNz4WddvVtU/+tJrw4Ucu8oA06Z7/Za51JjmieB9H/Dc49NofKr4Cs72WCgVf222ZShZMmshdJDm75bSu/cQ==", "id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 13]] +  (0.1ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 13]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.8ms) + + +Started GET "/" for ::1 at 2016-09-30 09:34:43 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 20ms (Views: 19.3ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-09-30 09:36:44 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (4.9ms) +Completed 200 OK in 19ms (Views: 17.4ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 09:36:44 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 09:36:44 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 09:36:44 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 09:36:44 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 09:36:44 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 09:36:44 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 09:36:44 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-09-30 09:36:45 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (3.6ms) +Completed 200 OK in 23ms (Views: 22.9ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-09-30 09:36:51 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"/yRcJqvZcoZTF250qzpmS3u5iXix3VscuUkgByv+rfl6Yx/UGMPO3L7ofrwPBwnsa2N78BicVtKb2gdwLksVWQ==", "task"=>{"name"=>"asdflkjas", "description"=>"lksadjf;lkajsdflksa", "completed_at"=>"2016-09-07"}, "commit"=>"Submit your task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "asdflkjas"], ["description", "lksadjf;lkajsdflksa"], ["completed_at", "2016-09-07"], ["created_at", "2016-09-30 16:36:51.590090"], ["updated_at", "2016-09-30 16:36:51.590090"]] +  (2.3ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.6ms) + + +Started GET "/" for ::1 at 2016-09-30 09:36:51 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (8.4ms) +Completed 200 OK in 21ms (Views: 20.6ms | ActiveRecord: 0.3ms) + + +Started DELETE "/tasks/14" for ::1 at 2016-09-30 09:36:55 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"w8tOmerAKEc4hKj0e5Q661YPTq0tAD+vSA6BLJtLybhGjA1rWdqUHdV7uDzfqVVMRtW8JYRBMmFqnaZbnv5xGA==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 14]] +  (2.7ms) commit transaction + Rendered tasks/destroy.html.erb within layouts/application (0.6ms) +Completed 200 OK in 29ms (Views: 23.8ms | ActiveRecord: 3.1ms) + + +Started GET "/tasks" for ::1 at 2016-09-30 09:37:13 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2016-09-30 09:41:57 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (5.4ms) +Completed 200 OK in 22ms (Views: 19.5ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 09:41:57 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 09:41:57 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 09:41:57 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 09:41:57 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 09:41:57 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 09:41:57 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 09:41:57 -0700 + + +Started GET "/tasks/10/edit" for ::1 at 2016-09-30 09:41:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"10"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 10]] + Rendered tasks/edit.html.erb within layouts/application (2.3ms) +Completed 200 OK in 24ms (Views: 22.4ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/10" for ::1 at 2016-09-30 09:42:03 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"FqsPMIEI5j6geONcQP7CMvNZhUZGHDw/n2u+O0RQkdGT7EzCMhJaZE2H85Tkw62V44N3zu9dMfG9+JlMQeUpcQ==", "task"=>{"name"=>"jump rope", "description"=>"Jump up, then down, then up again, to a specific rhythm", "completed_at"=>""}, "commit"=>"Submit your edits", "id"=>"10"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 10]] +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 09:42:03 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/8/edit" for ::1 at 2016-09-30 09:42:13 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/edit.html.erb within layouts/application (2.2ms) +Completed 200 OK in 27ms (Views: 25.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for ::1 at 2016-09-30 10:32:27 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.9ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (2.5ms) +Completed 200 OK in 28ms (Views: 26.0ms | ActiveRecord: 0.9ms) + + +Started GET "/tasks/1" for ::1 at 2016-09-30 10:36:12 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 13ms (Views: 12.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:36:12 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:36:12 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:36:12 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:36:12 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 10:36:12 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:36:12 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:36:12 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-09-30 10:36:16 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.3ms) +Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-09-30 10:36:18 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"itfhBo8Hm2P5mHz1AtcZjSQ7KVgN9IMNRbvCM80DyCYPkKL0PB0nORRnbD2m6nYqNOHb0KS1jsNnKOVEyLZwhg==", "task"=>{"name"=>"asdlkfjasl", "description"=>"lkdjglkad", "completed_at"=>""}, "commit"=>"Submit your task"} +  (0.0ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "asdlkfjasl"], ["description", "lkdjglkad"], ["created_at", "2016-09-30 17:36:18.607831"], ["updated_at", "2016-09-30 17:36:18.607831"]] +  (2.3ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.6ms) + + +Started GET "/" for ::1 at 2016-09-30 10:36:18 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/15" for ::1 at 2016-09-30 10:36:22 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 21ms (Views: 20.1ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/15" for ::1 at 2016-09-30 10:36:25 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"KnXuu+ohhjYksEhq1EQI/w7mgF8cp2JTvHQUbrPGB0CvMq1JWTs6bMlPWKJweWdYHjxy17Xmb52e5zMZtnO/4A==", "id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 15]] +  (5.3ms) commit transaction + Rendered tasks/destroy.html.erb within layouts/application (0.1ms) +Completed 200 OK in 22ms (Views: 14.7ms | ActiveRecord: 5.7ms) + + +Started GET "/" for ::1 at 2016-09-30 10:36:45 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-09-30 10:39:26 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:39:26 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:39:26 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:39:26 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 10:39:26 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:39:26 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:39:26 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:39:26 -0700 + + +Started GET "/tasks/1" for ::1 at 2016-09-30 10:39:28 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (7.8ms) +Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (No route matches {:action=>"/tasks", :controller=>"tasks", :id=>"1"}): + 12: + 13:
+ 14: + 15: <%= button_to "Back home", action: '/tasks' %> + 16: + 17:
+ 18: <%= button_to "Delete this record", {:controller => :tasks, + app/views/tasks/show.html.erb:15:in `_app_views_tasks_show_html_erb__515921479323566144_70281092622780' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (62.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (66.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (139.8ms) + + +Started GET "/tasks/1" for ::1 at 2016-09-30 10:40:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (2.3ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (No route matches {:action=>"/tasks", :controller=>"tasks", :id=>"1"}): + 12: + 13:
+ 14: + 15: <%= link_to "Back home", action: '/tasks' %> + 16: + 17:
+ 18: <%= button_to "Delete this record", {:controller => :tasks, + app/views/tasks/show.html.erb:15:in `_app_views_tasks_show_html_erb__515921479323566144_70281067952680' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (49.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (35.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (5.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (83.5ms) + + +Started GET "/tasks/1" for ::1 at 2016-09-30 10:40:31 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:40:31 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 10:40:31 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:40:31 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:40:31 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:40:31 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:40:31 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:40:31 -0700 + + +Started GET "/tasks/1" for ::1 at 2016-09-30 10:40:46 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 14ms (Views: 12.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:40:46 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:40:46 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:40:46 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:40:46 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:40:46 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:40:46 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 10:40:46 -0700 + + +Started GET "/" for ::1 at 2016-09-30 10:42:10 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 26ms (Views: 25.4ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-09-30 10:57:47 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (5.7ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:57:47 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 10:57:47 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:57:47 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:57:47 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:57:47 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:57:47 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:57:47 -0700 + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-30 11:01:30 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/edit.html.erb within layouts/application (1.6ms) +Completed 200 OK in 29ms (Views: 27.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/12/edit" for ::1 at 2016-09-30 11:02:20 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] + Rendered tasks/edit.html.erb within layouts/application (1.7ms) +Completed 200 OK in 26ms (Views: 24.7ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/12" for ::1 at 2016-09-30 11:02:25 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"NEveWAIc6A5yhtBYsHLT/IQbehw3biU8p+bkMrq77y2xDJ2qsQZUVJ95wJAUT7xblMGIlJ4vKPKFdcNFvw5XjQ==", "task"=>{"name"=>"Fix chair", "description"=>"Seriously, I'm afraid to sit in that freaking thing.", "completed_at"=>"2016-09-17"}, "commit"=>"Submit your edits", "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-09-17"], ["updated_at", "2016-09-30 18:02:25.686265"], ["id", 12]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 2.8ms) + + +Started GET "/" for ::1 at 2016-09-30 11:02:25 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 13ms (Views: 11.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/12/edit" for ::1 at 2016-09-30 11:02:32 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] + Rendered tasks/edit.html.erb within layouts/application (3.5ms) +Completed 200 OK in 20ms (Views: 18.8ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/12" for ::1 at 2016-09-30 11:02:44 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"+RXOMs/C2Yrg40KzGrSDqtdfINKG/2bG5drG0NetRw58Uo3AfNhl0A0cUnu+iewNx4XSWi++awjHSeGn0hj/rg==", "task"=>{"name"=>"Fix chair", "description"=>"Seriously, I'm afraid to sit in that freaking thing.", "completed_at"=>"2016-09-03"}, "commit"=>"Submit your edits", "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-09-03"], ["updated_at", "2016-09-30 18:02:44.319143"], ["id", 12]] +  (2.8ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 8ms (ActiveRecord: 3.3ms) + + +Started GET "/" for ::1 at 2016-09-30 11:02:44 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 11:22:07 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:6: syntax error, unexpected tIDENTIFIER, expecting ')' +...{ v.name.capitalize}" button_to "Mark as complete", task_com... +... ^): + app/views/tasks/index.html.erb:6: syntax error, unexpected tIDENTIFIER, expecting ')' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (48.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.8ms) + + +Started GET "/" for ::1 at 2016-09-30 11:22:23 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:7: syntax error, unexpected '<', expecting ')' + <%= button_to "Mark as complet... + ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:12: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end ;@output_buffer.safe_append=' + ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:28: syntax error, unexpected keyword_ensure, expecting ')' +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:30: syntax error, unexpected keyword_end, expecting ')'): + app/views/tasks/index.html.erb:7: syntax error, unexpected '<', expecting ')' + app/views/tasks/index.html.erb:12: syntax error, unexpected keyword_end, expecting ')' + app/views/tasks/index.html.erb:28: syntax error, unexpected keyword_ensure, expecting ')' + app/views/tasks/index.html.erb:30: syntax error, unexpected keyword_end, expecting ')' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (47.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.9ms) + + +Started GET "/" for ::1 at 2016-09-30 11:22:38 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:7: syntax error, unexpected '<', expecting ')' + <%= button_to "Mark as complet... + ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:12: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end ;@output_buffer.safe_append=' + ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:28: syntax error, unexpected keyword_ensure, expecting ')' +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:30: syntax error, unexpected keyword_end, expecting ')'): + app/views/tasks/index.html.erb:7: syntax error, unexpected '<', expecting ')' + app/views/tasks/index.html.erb:12: syntax error, unexpected keyword_end, expecting ')' + app/views/tasks/index.html.erb:28: syntax error, unexpected keyword_ensure, expecting ')' + app/views/tasks/index.html.erb:30: syntax error, unexpected keyword_end, expecting ')' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (53.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.5ms) + + +Started GET "/" for ::1 at 2016-09-30 11:23:13 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:7: syntax error, unexpected '<', expecting ')' + <%= button_to "Mark as complet... + ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:12: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end ;@output_buffer.safe_append=' + ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:28: syntax error, unexpected keyword_ensure, expecting ')' +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:30: syntax error, unexpected keyword_end, expecting ')'): + app/views/tasks/index.html.erb:7: syntax error, unexpected '<', expecting ')' + app/views/tasks/index.html.erb:12: syntax error, unexpected keyword_end, expecting ')' + app/views/tasks/index.html.erb:28: syntax error, unexpected keyword_ensure, expecting ')' + app/views/tasks/index.html.erb:30: syntax error, unexpected keyword_end, expecting ')' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (51.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.0ms) + + +Started GET "/" for ::1 at 2016-09-30 11:23:56 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:7: syntax error, unexpected '<', expecting ')' + <%= button_to "Mark as complet... + ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:12: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end ;@output_buffer.safe_append=' + ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:28: syntax error, unexpected keyword_ensure, expecting ')' +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:30: syntax error, unexpected keyword_end, expecting ')'): + app/views/tasks/index.html.erb:7: syntax error, unexpected '<', expecting ')' + app/views/tasks/index.html.erb:12: syntax error, unexpected keyword_end, expecting ')' + app/views/tasks/index.html.erb:28: syntax error, unexpected keyword_ensure, expecting ')' + app/views/tasks/index.html.erb:30: syntax error, unexpected keyword_end, expecting ')' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (45.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.2ms) + + +Started GET "/" for ::1 at 2016-09-30 11:24:09 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (13.0ms) +Completed 200 OK in 26ms (Views: 24.8ms | ActiveRecord: 0.7ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 11:24:09 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 11:24:09 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 11:24:09 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 11:24:09 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 11:24:09 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 11:24:09 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 11:24:09 -0700 + + +Started GET "/" for ::1 at 2016-09-30 11:28:14 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (No route matches {:action=>"/tasks/1", :controller=>"tasks", :method=>:patch}): + 4:
    <% Task.all_incompletes.each do |v| %> + 5:
  • + 6: <%= "#{ v.name.capitalize}" %> + 7: <%= button_to "Mark as complete", action: task_complete_path(v), method: :patch %> + 8: + 10: + app/views/tasks/index.html.erb:7:in `block in _app_views_tasks_index_html_erb___3235378923728893440_70281052985480' + app/views/tasks/index.html.erb:4:in `_app_views_tasks_index_html_erb___3235378923728893440_70281052985480' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (51.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.1ms) + + +Started GET "/" for ::1 at 2016-09-30 11:28:51 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Rendered tasks/index.html.erb within layouts/application (5.7ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.4ms) + +ActionView::Template::Error (No route matches {:action=>"/tasks/1", :controller=>"tasks", :method=>:patch}): + 4:

      <% Task.all_incompletes.each do |v| %> + 5:
    • + 6: <%= "#{ v.name.capitalize}" %> + 7: <%= button_to "Mark as complete", action: task_complete_path(v), method: :patch %> + 8: + 10: + app/views/tasks/index.html.erb:7:in `block in _app_views_tasks_index_html_erb___3235378923728893440_70281052985480' + app/views/tasks/index.html.erb:4:in `_app_views_tasks_index_html_erb___3235378923728893440_70281052985480' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (51.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (79.4ms) + + +Started GET "/" for ::1 at 2016-09-30 11:29:59 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Rendered tasks/index.html.erb within layouts/application (5.4ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.2ms) + +ActionView::Template::Error (undefined method `label' for nil:NilClass): + 5:

    • + 6: <%= "#{ v.name.capitalize}" %> + 7: <%= button_to "Mark as complete", action: task_complete_path(v), method: :patch do |b| %> + 8: <%= b.label :completed_at %> + 9: <%= b.date_field Date.today %> + 10: <% end %> + 11: + app/views/tasks/index.html.erb:8:in `block (2 levels) in _app_views_tasks_index_html_erb___3235378923728893440_70281086579540' + app/views/tasks/index.html.erb:7:in `block in _app_views_tasks_index_html_erb___3235378923728893440_70281086579540' + app/views/tasks/index.html.erb:4:in `_app_views_tasks_index_html_erb___3235378923728893440_70281086579540' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (52.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (52.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (106.1ms) + + +Started GET "/" for ::1 at 2016-09-30 11:31:00 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:32: syntax error, unexpected keyword_ensure, expecting end-of-input): + app/views/tasks/index.html.erb:32: syntax error, unexpected keyword_ensure, expecting end-of-input + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (64.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (51.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (105.8ms) + + +Started GET "/" for ::1 at 2016-09-30 11:42:17 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:32: syntax error, unexpected keyword_ensure, expecting end-of-input): + app/views/tasks/index.html.erb:32: syntax error, unexpected keyword_ensure, expecting end-of-input + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (11.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (51.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.7ms) + + +Started GET "/" for ::1 at 2016-09-30 11:43:08 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.2ms) + +ActionView::Template::Error (No route matches {:action=>"/tasks/1", :controller=>"tasks", :method=>:patch}): + 4:

        <% Task.all_incompletes.each do |v| %> + 5:
      • + 6: <%= "#{ v.name.capitalize}" %> + 7: <%= button_to "Mark as complete", action: task_complete_path(v), method: :patch %> + 8: <%= b.label :completed_at %> + 9: <%= b.date_field :completed_at %> + 10: + app/views/tasks/index.html.erb:7:in `block in _app_views_tasks_index_html_erb___3235378923728893440_70281052376220' + app/views/tasks/index.html.erb:4:in `_app_views_tasks_index_html_erb___3235378923728893440_70281052376220' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (49.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.4ms) + + +Started GET "/" for ::1 at 2016-09-30 11:44:06 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:32: syntax error, unexpected keyword_ensure, expecting end-of-input): + app/views/tasks/index.html.erb:32: syntax error, unexpected keyword_ensure, expecting end-of-input + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (46.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.5ms) + + +Started GET "/" for ::1 at 2016-09-30 11:44:22 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:32: syntax error, unexpected keyword_ensure, expecting end-of-input): + app/views/tasks/index.html.erb:32: syntax error, unexpected keyword_ensure, expecting end-of-input + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (59.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (102.6ms) + + +Started GET "/" for ::1 at 2016-09-30 11:45:00 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:32: syntax error, unexpected keyword_ensure, expecting end-of-input): + app/views/tasks/index.html.erb:32: syntax error, unexpected keyword_ensure, expecting end-of-input + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (47.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.2ms) + + +Started GET "/" for ::1 at 2016-09-30 11:46:43 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:33: syntax error, unexpected keyword_ensure, expecting end-of-input): + app/views/tasks/index.html.erb:33: syntax error, unexpected keyword_ensure, expecting end-of-input + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (50.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.9ms) + + +Started GET "/" for ::1 at 2016-09-30 11:46:52 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:33: syntax error, unexpected keyword_ensure, expecting end-of-input): + app/views/tasks/index.html.erb:33: syntax error, unexpected keyword_ensure, expecting end-of-input + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (48.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.9ms) + + +Started GET "/" for ::1 at 2016-09-30 11:47:46 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:32: syntax error, unexpected keyword_ensure, expecting end-of-input): + app/views/tasks/index.html.erb:32: syntax error, unexpected keyword_ensure, expecting end-of-input + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (44.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (35.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.2ms) + + +Started GET "/" for ::1 at 2016-09-30 11:47:58 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:32: syntax error, unexpected keyword_ensure, expecting end-of-input): + app/views/tasks/index.html.erb:32: syntax error, unexpected keyword_ensure, expecting end-of-input + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (48.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (36.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (82.5ms) + + +Started GET "/" for ::1 at 2016-09-30 11:48:13 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:32: syntax error, unexpected keyword_ensure, expecting end-of-input): + app/views/tasks/index.html.erb:32: syntax error, unexpected keyword_ensure, expecting end-of-input + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (54.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (94.0ms) + + +Started GET "/" for ::1 at 2016-09-30 11:48:56 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:32: syntax error, unexpected keyword_ensure, expecting end-of-input): + app/views/tasks/index.html.erb:32: syntax error, unexpected keyword_ensure, expecting end-of-input + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (11.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (53.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (51.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.1ms) + + +Started GET "/" for ::1 at 2016-09-30 11:50:32 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:34: syntax error, unexpected keyword_ensure, expecting end-of-input): + app/views/tasks/index.html.erb:34: syntax error, unexpected keyword_ensure, expecting end-of-input + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (45.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.3ms) + + +Started GET "/" for ::1 at 2016-09-30 11:50:51 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:33: syntax error, unexpected keyword_ensure, expecting end-of-input): + app/views/tasks/index.html.erb:33: syntax error, unexpected keyword_ensure, expecting end-of-input + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (49.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.4ms) + + +Started GET "/" for ::1 at 2016-09-30 11:51:59 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (7.2ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 11:51:59 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 11:51:59 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 11:51:59 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 11:51:59 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 11:51:59 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 11:51:59 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 11:51:59 -0700 + + +Started GET "/" for ::1 at 2016-09-30 11:52:30 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:34: syntax error, unexpected keyword_ensure, expecting end-of-input): + app/views/tasks/index.html.erb:34: syntax error, unexpected keyword_ensure, expecting end-of-input + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (45.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.6ms) + + +Started GET "/" for ::1 at 2016-09-30 11:52:49 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `id' for nil:NilClass): + 6: <%= "#{ v.name.capitalize}" %> + 7: + 8: + 9: <%= button_to "Mark as complete", {:controller => :tasks, :action => 'patch', :id => @task.id } %> + 10: + 11: + 12: + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb___3235378923728893440_70281104462260' + app/views/tasks/index.html.erb:4:in `_app_views_tasks_index_html_erb___3235378923728893440_70281104462260' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (44.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (48.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.8ms) + + +Started GET "/" for ::1 at 2016-09-30 11:53:05 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (No route matches {:action=>"patch", :controller=>"tasks"}): + 6: <%= "#{ v.name.capitalize}" %> + 7: + 8: + 9: <%= button_to "Mark as complete", {:controller => :tasks, :action => 'patch' } %> + 10: + 11: + 12: + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb___3235378923728893440_70281084049120' + app/views/tasks/index.html.erb:4:in `_app_views_tasks_index_html_erb___3235378923728893440_70281084049120' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (53.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (94.6ms) + + +Started GET "/" for ::1 at 2016-09-30 11:53:23 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Rendered tasks/index.html.erb within layouts/application (5.6ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.3ms) + +ActionView::Template::Error (No route matches {:action=>"/task/complete", :controller=>"tasks"}): + 6: <%= "#{ v.name.capitalize}" %> + 7: + 8: + 9: <%= button_to "Mark as complete", {:controller => :tasks, :action => '/task/complete' } %> + 10: + 11: + 12: + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb___3235378923728893440_70281105856200' + app/views/tasks/index.html.erb:4:in `_app_views_tasks_index_html_erb___3235378923728893440_70281105856200' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (50.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.8ms) + + +Started GET "/" for ::1 at 2016-09-30 11:53:33 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (No route matches {:action=>"/task/:id/complete", :controller=>"tasks"}): + 6: <%= "#{ v.name.capitalize}" %> + 7: + 8: + 9: <%= button_to "Mark as complete", {:controller => :tasks, :action => '/task/:id/complete' } %> + 10: + 11: + 12: + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb___3235378923728893440_70281094266280' + app/views/tasks/index.html.erb:4:in `_app_views_tasks_index_html_erb___3235378923728893440_70281094266280' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (48.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.5ms) + + +Started GET "/" for ::1 at 2016-09-30 11:53:46 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Rendered tasks/index.html.erb within layouts/application (6.1ms) +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.4ms) + +ActionView::Template::Error (No route matches {:action=>"/task/:id/complete", :controller=>"tasks"}): + 6: <%= "#{ v.name.capitalize}" %> + 7: + 8: + 9: <%= button_to "Mark as complete", {:controller => :tasks, :action => '/task/:id/complete' } %> + 10: + 11: + 12: + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb___3235378923728893440_70281094266280' + app/views/tasks/index.html.erb:4:in `_app_views_tasks_index_html_erb___3235378923728893440_70281094266280' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (47.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.7ms) + + +Started GET "/" for ::1 at 2016-09-30 11:54:01 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (No route matches {:action=>"/task/:id/", :controller=>"tasks"}): + 6: <%= "#{ v.name.capitalize}" %> + 7: + 8: + 9: <%= button_to "Mark as complete", {:controller => :tasks, :action => '/task/:id/' } %> + 10: + 11: + 12: + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb___3235378923728893440_70281121057880' + app/views/tasks/index.html.erb:4:in `_app_views_tasks_index_html_erb___3235378923728893440_70281121057880' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (48.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (46.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.9ms) + + +Started GET "/" for ::1 at 2016-09-30 11:54:21 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Rendered tasks/index.html.erb within layouts/application (4.2ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (No route matches {:action=>"patch", :controller=>"tasks"}): + 6: <%= "#{ v.name.capitalize}" %> + 7: + 8: + 9: <%= button_to "Mark as complete", {:controller => :tasks, :action => 'patch' } %> + 10: + 11: + 12: + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb___3235378923728893440_70281094899480' + app/views/tasks/index.html.erb:4:in `_app_views_tasks_index_html_erb___3235378923728893440_70281094899480' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (47.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.6ms) + + +Started GET "/" for ::1 at 2016-09-30 11:54:37 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Rendered tasks/index.html.erb within layouts/application (4.9ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.2ms) + +ActionView::Template::Error (No route matches {:action=>"/task/:id/", :controller=>"tasks", :method=>:patch}): + 6: <%= "#{ v.name.capitalize}" %> + 7: + 8: + 9: <%= button_to "Mark as complete", {:controller => :tasks, :action => '/task/:id/', method: :patch } %> + 10: + 11: + 12: + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb___3235378923728893440_70281105128400' + app/views/tasks/index.html.erb:4:in `_app_views_tasks_index_html_erb___3235378923728893440_70281105128400' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (54.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (47.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (104.1ms) + + +Started GET "/" for ::1 at 2016-09-30 11:54:57 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (No route matches {:action=>"/task/:id/", :controller=>"tasks", :method=>:patch}): + 6: <%= "#{ v.name.capitalize}" %> + 7: + 8: + 9: <%= button_to "Mark as complete", { :action => '/task/:id/', method: :patch } %> + 10: + 11: + 12: + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb___3235378923728893440_70281107139600' + app/views/tasks/index.html.erb:4:in `_app_views_tasks_index_html_erb___3235378923728893440_70281107139600' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (47.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.0ms) + + +Started GET "/" for ::1 at 2016-09-30 11:55:08 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (5.5ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 11:55:08 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 11:55:08 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 11:55:08 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 11:55:08 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 11:55:08 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 11:55:08 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 11:55:08 -0700 + + +Started POST "/?method=patch" for ::1 at 2016-09-30 11:55:16 -0700 + +ActionController::RoutingError (No route matches [POST] "/"): + 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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (8.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (86.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.8ms) + + +Started GET "/" for ::1 at 2016-09-30 11:56:36 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:9: syntax error, unexpected tSTRING_DEND, expecting ')' +...plete_path(v), method: :patch } );@output_buffer.safe_append... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting '}' +...ta: { confirm: "Really, now?" } );@output_buffer.safe_append... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:17: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:21: syntax error, unexpected keyword_do_block, expecting ')' +...eze; Task.all_completes.each do |v| ;@output_buffer.safe_app... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:26: syntax error, unexpected tSTRING_DEND, expecting '}' +...ta: { confirm: "Really, now?" } );@output_buffer.safe_append... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:28: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:35: syntax error, unexpected keyword_ensure, expecting ')' +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:37: syntax error, unexpected keyword_end, expecting ')'): + app/views/tasks/index.html.erb:9: syntax error, unexpected tSTRING_DEND, expecting ')' + app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting '}' + app/views/tasks/index.html.erb:17: syntax error, unexpected keyword_end, expecting ')' + app/views/tasks/index.html.erb:21: syntax error, unexpected keyword_do_block, expecting ')' + app/views/tasks/index.html.erb:26: syntax error, unexpected tSTRING_DEND, expecting '}' + app/views/tasks/index.html.erb:28: syntax error, unexpected keyword_end, expecting ')' + app/views/tasks/index.html.erb:35: syntax error, unexpected keyword_ensure, expecting ')' + app/views/tasks/index.html.erb:37: syntax error, unexpected keyword_end, expecting ')' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (48.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.2ms) + + +Started GET "/" for ::1 at 2016-09-30 11:59:10 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:9: syntax error, unexpected tSTRING_DEND, expecting ')' +...plete_path(v), method: :patch } );@output_buffer.safe_append... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting '}' +...ta: { confirm: "Really, now?" } );@output_buffer.safe_append... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:17: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:21: syntax error, unexpected keyword_do_block, expecting ')' +...eze; Task.all_completes.each do |v| ;@output_buffer.safe_app... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:26: syntax error, unexpected tSTRING_DEND, expecting '}' +...ta: { confirm: "Really, now?" } );@output_buffer.safe_append... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:28: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:35: syntax error, unexpected keyword_ensure, expecting ')' +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:37: syntax error, unexpected keyword_end, expecting ')'): + app/views/tasks/index.html.erb:9: syntax error, unexpected tSTRING_DEND, expecting ')' + app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting '}' + app/views/tasks/index.html.erb:17: syntax error, unexpected keyword_end, expecting ')' + app/views/tasks/index.html.erb:21: syntax error, unexpected keyword_do_block, expecting ')' + app/views/tasks/index.html.erb:26: syntax error, unexpected tSTRING_DEND, expecting '}' + app/views/tasks/index.html.erb:28: syntax error, unexpected keyword_end, expecting ')' + app/views/tasks/index.html.erb:35: syntax error, unexpected keyword_ensure, expecting ')' + app/views/tasks/index.html.erb:37: syntax error, unexpected keyword_end, expecting ')' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (46.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.3ms) + + +Started GET "/" for ::1 at 2016-09-30 11:59:20 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:9: syntax error, unexpected tSTRING_DEND, expecting ')' +... as complete", method: :patch } );@output_buffer.safe_append... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting '}' +...ta: { confirm: "Really, now?" } );@output_buffer.safe_append... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:17: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:21: syntax error, unexpected keyword_do_block, expecting ')' +...eze; Task.all_completes.each do |v| ;@output_buffer.safe_app... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:26: syntax error, unexpected tSTRING_DEND, expecting '}' +...ta: { confirm: "Really, now?" } );@output_buffer.safe_append... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:28: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:35: syntax error, unexpected keyword_ensure, expecting ')' +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:37: syntax error, unexpected keyword_end, expecting ')'): + app/views/tasks/index.html.erb:9: syntax error, unexpected tSTRING_DEND, expecting ')' + app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting '}' + app/views/tasks/index.html.erb:17: syntax error, unexpected keyword_end, expecting ')' + app/views/tasks/index.html.erb:21: syntax error, unexpected keyword_do_block, expecting ')' + app/views/tasks/index.html.erb:26: syntax error, unexpected tSTRING_DEND, expecting '}' + app/views/tasks/index.html.erb:28: syntax error, unexpected keyword_end, expecting ')' + app/views/tasks/index.html.erb:35: syntax error, unexpected keyword_ensure, expecting ')' + app/views/tasks/index.html.erb:37: syntax error, unexpected keyword_end, expecting ')' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (53.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.1ms) + + +Started GET "/" for ::1 at 2016-09-30 12:01:28 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:9: syntax error, unexpected tSTRING_DEND, expecting ')' +...complete_path, method: :patch } );@output_buffer.safe_append... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting '}' +...ta: { confirm: "Really, now?" } );@output_buffer.safe_append... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:17: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:21: syntax error, unexpected keyword_do_block, expecting ')' +...eze; Task.all_completes.each do |v| ;@output_buffer.safe_app... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:26: syntax error, unexpected tSTRING_DEND, expecting '}' +...ta: { confirm: "Really, now?" } );@output_buffer.safe_append... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:28: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:35: syntax error, unexpected keyword_ensure, expecting ')' +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:37: syntax error, unexpected keyword_end, expecting ')'): + app/views/tasks/index.html.erb:9: syntax error, unexpected tSTRING_DEND, expecting ')' + app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting '}' + app/views/tasks/index.html.erb:17: syntax error, unexpected keyword_end, expecting ')' + app/views/tasks/index.html.erb:21: syntax error, unexpected keyword_do_block, expecting ')' + app/views/tasks/index.html.erb:26: syntax error, unexpected tSTRING_DEND, expecting '}' + app/views/tasks/index.html.erb:28: syntax error, unexpected keyword_end, expecting ')' + app/views/tasks/index.html.erb:35: syntax error, unexpected keyword_ensure, expecting ')' + app/views/tasks/index.html.erb:37: syntax error, unexpected keyword_end, expecting ')' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (51.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (50.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.4ms) + + +Started GET "/" for ::1 at 2016-09-30 12:01:34 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:9: syntax error, unexpected tSTRING_DEND, expecting ')' +...complete_path, method: :patch } );@output_buffer.safe_append... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting '}' +...ta: { confirm: "Really, now?" } );@output_buffer.safe_append... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:17: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:21: syntax error, unexpected keyword_do_block, expecting ')' +...eze; Task.all_completes.each do |v| ;@output_buffer.safe_app... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:26: syntax error, unexpected tSTRING_DEND, expecting '}' +...ta: { confirm: "Really, now?" } );@output_buffer.safe_append... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:28: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:35: syntax error, unexpected keyword_ensure, expecting ')' +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:37: syntax error, unexpected keyword_end, expecting ')'): + app/views/tasks/index.html.erb:9: syntax error, unexpected tSTRING_DEND, expecting ')' + app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting '}' + app/views/tasks/index.html.erb:17: syntax error, unexpected keyword_end, expecting ')' + app/views/tasks/index.html.erb:21: syntax error, unexpected keyword_do_block, expecting ')' + app/views/tasks/index.html.erb:26: syntax error, unexpected tSTRING_DEND, expecting '}' + app/views/tasks/index.html.erb:28: syntax error, unexpected keyword_end, expecting ')' + app/views/tasks/index.html.erb:35: syntax error, unexpected keyword_ensure, expecting ')' + app/views/tasks/index.html.erb:37: syntax error, unexpected keyword_end, expecting ')' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (48.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.4ms) + + +Started GET "/" for ::1 at 2016-09-30 12:01:54 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:9: syntax error, unexpected tSTRING_DEND, expecting ')' +...te_path(v.id), method: :patch } );@output_buffer.safe_append... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting '}' +...ta: { confirm: "Really, now?" } );@output_buffer.safe_append... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:17: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:21: syntax error, unexpected keyword_do_block, expecting ')' +...eze; Task.all_completes.each do |v| ;@output_buffer.safe_app... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:26: syntax error, unexpected tSTRING_DEND, expecting '}' +...ta: { confirm: "Really, now?" } );@output_buffer.safe_append... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:28: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:35: syntax error, unexpected keyword_ensure, expecting ')' +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:37: syntax error, unexpected keyword_end, expecting ')'): + app/views/tasks/index.html.erb:9: syntax error, unexpected tSTRING_DEND, expecting ')' + app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting '}' + app/views/tasks/index.html.erb:17: syntax error, unexpected keyword_end, expecting ')' + app/views/tasks/index.html.erb:21: syntax error, unexpected keyword_do_block, expecting ')' + app/views/tasks/index.html.erb:26: syntax error, unexpected tSTRING_DEND, expecting '}' + app/views/tasks/index.html.erb:28: syntax error, unexpected keyword_end, expecting ')' + app/views/tasks/index.html.erb:35: syntax error, unexpected keyword_ensure, expecting ')' + app/views/tasks/index.html.erb:37: syntax error, unexpected keyword_end, expecting ')' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (50.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.9ms) + + +Started GET "/" for ::1 at 2016-09-30 12:05:24 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:9: syntax error, unexpected tSTRING_DEND, expecting ')' +...te_path(v.id), method: :patch } );@output_buffer.safe_append... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting '}' +...ta: { confirm: "Really, now?" } );@output_buffer.safe_append... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:17: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:21: syntax error, unexpected keyword_do_block, expecting ')' +...eze; Task.all_completes.each do |v| ;@output_buffer.safe_app... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:26: syntax error, unexpected tSTRING_DEND, expecting '}' +...ta: { confirm: "Really, now?" } );@output_buffer.safe_append... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:28: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:35: syntax error, unexpected keyword_ensure, expecting ')' +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:37: syntax error, unexpected keyword_end, expecting ')'): + app/views/tasks/index.html.erb:9: syntax error, unexpected tSTRING_DEND, expecting ')' + app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting '}' + app/views/tasks/index.html.erb:17: syntax error, unexpected keyword_end, expecting ')' + app/views/tasks/index.html.erb:21: syntax error, unexpected keyword_do_block, expecting ')' + app/views/tasks/index.html.erb:26: syntax error, unexpected tSTRING_DEND, expecting '}' + app/views/tasks/index.html.erb:28: syntax error, unexpected keyword_end, expecting ')' + app/views/tasks/index.html.erb:35: syntax error, unexpected keyword_ensure, expecting ')' + app/views/tasks/index.html.erb:37: syntax error, unexpected keyword_end, expecting ')' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (8.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (54.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (50.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.1ms) + + +Started GET "/" for ::1 at 2016-09-30 12:05:52 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Rendered tasks/index.html.erb within layouts/application (7.6ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.5ms) + +ActionView::Template::Error (No route matches {:action=>"/tasks/1", :controller=>"tasks", :method=>:patch}): + 6: <%= "#{ v.name.capitalize}" %> + 7: + 8: + 9: <%= button_to "Mark as complete", { action: task_complete_path(v.id), method: :patch } %> + 10: + 11: + 12: + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb___3235378923728893440_70281053545880' + app/views/tasks/index.html.erb:4:in `_app_views_tasks_index_html_erb___3235378923728893440_70281053545880' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (48.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (94.6ms) + + +Started GET "/tasks/1" for ::1 at 2016-09-30 12:06:43 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 13ms (Views: 11.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for ::1 at 2016-09-30 12:09:20 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 13ms (Views: 12.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 12:09:20 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 12:09:20 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 12:09:20 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 12:09:20 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 12:09:20 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 12:09:20 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 12:09:20 -0700 + + +Started GET "/" for ::1 at 2016-09-30 12:09:24 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (16.0ms) +Completed 500 Internal Server Error in 19ms (ActiveRecord: 0.3ms) + +ActionView::Template::Error (undefined method `field' for #): + 7: + 8: + 9: <%= form_for v, { action: task_complete_path(v.id), method: :patch } do |f| %> + 10: <%= f.field :completed_at %> + 11: <%= f.checkbox :completed_at %> + 12: <% end %> + 13: + app/views/tasks/index.html.erb:10:in `block (2 levels) in _app_views_tasks_index_html_erb___3235378923728893440_70281093723720' + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb___3235378923728893440_70281093723720' + app/views/tasks/index.html.erb:4:in `_app_views_tasks_index_html_erb___3235378923728893440_70281093723720' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (47.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (94.6ms) + + +Started GET "/" for ::1 at 2016-09-30 12:09:31 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (13.7ms) +Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.4ms) + +ActionView::Template::Error (undefined method `field' for #): + 7: + 8: + 9: <%= form_for v, { action: task_complete_path(v.id), method: :patch } do |f| %> + 10: + 11: <%= f.checkbox :completed_at %> + 12: <% end %> + 13: + app/views/tasks/index.html.erb:10:in `block (2 levels) in _app_views_tasks_index_html_erb___3235378923728893440_70281118671680' + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb___3235378923728893440_70281118671680' + app/views/tasks/index.html.erb:4:in `_app_views_tasks_index_html_erb___3235378923728893440_70281118671680' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (50.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.2ms) + + +Started GET "/" for ::1 at 2016-09-30 12:10:05 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (16.4ms) +Completed 500 Internal Server Error in 20ms (ActiveRecord: 0.3ms) + +ActionView::Template::Error (undefined method `checkbox' for # +Did you mean? check_box): + 8: + 9: <%= form_for v, { action: task_complete_path(v.id), method: :patch } do |f| %> + 10: <%#= f.field :completed_at %> + 11: <%= f.checkbox :completed_at %> + 12: <% end %> + 13: + 14: + app/views/tasks/index.html.erb:11:in `block (2 levels) in _app_views_tasks_index_html_erb___3235378923728893440_70281120526140' + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb___3235378923728893440_70281120526140' + app/views/tasks/index.html.erb:4:in `_app_views_tasks_index_html_erb___3235378923728893440_70281120526140' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (52.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.6ms) + + +Started GET "/" for ::1 at 2016-09-30 12:10:35 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (15.6ms) +Completed 500 Internal Server Error in 18ms (ActiveRecord: 0.3ms) + +ActionView::Template::Error (undefined method `checkbox' for # +Did you mean? check_box): + 7: + 8: + 9: <%= form_for v, { action: task_complete_path(v.id), method: :patch } do |f| %> + 10: <%= f.checkbox :completed_at %> + 11: <% end %> + 12: + 13: + app/views/tasks/index.html.erb:10:in `block (2 levels) in _app_views_tasks_index_html_erb___3235378923728893440_70281068588740' + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb___3235378923728893440_70281068588740' + app/views/tasks/index.html.erb:4:in `_app_views_tasks_index_html_erb___3235378923728893440_70281068588740' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (47.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.7ms) + + +Started GET "/" for ::1 at 2016-09-30 12:10:41 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (15.2ms) +Completed 200 OK in 28ms (Views: 27.4ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 12:10:41 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 12:10:41 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 12:10:41 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 12:10:41 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 12:10:41 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 12:10:41 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 12:10:41 -0700 + + +Started GET "/" for ::1 at 2016-09-30 12:11:15 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (16.2ms) +Completed 500 Internal Server Error in 20ms (ActiveRecord: 0.3ms) + +ActionView::Template::Error (undefined method `field' for #): + 7: + 8: + 9: <%= form_for v, { action: task_complete_path(v.id), method: :patch } do |f| %> + 10: <%= f.field :completed_at %> + 11: <%= f.check_box :completed_at %> + 12: <% end %> + 13: + app/views/tasks/index.html.erb:10:in `block (2 levels) in _app_views_tasks_index_html_erb___3235378923728893440_70281086205620' + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb___3235378923728893440_70281086205620' + app/views/tasks/index.html.erb:4:in `_app_views_tasks_index_html_erb___3235378923728893440_70281086205620' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (9.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (52.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.0ms) + + +Started GET "/" for ::1 at 2016-09-30 12:12:01 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (7.9ms) +Completed 200 OK in 20ms (Views: 19.5ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 12:12:01 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 12:12:01 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 12:12:01 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 12:12:01 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 12:12:01 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 12:12:01 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 12:12:01 -0700 + + +Started GET "/" for ::1 at 2016-09-30 12:12:41 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (10.7ms) +Completed 200 OK in 24ms (Views: 23.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 12:12:41 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 12:12:41 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 12:12:41 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 12:12:41 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 12:12:41 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 12:12:41 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 12:12:41 -0700 + + +Started GET "/" for ::1 at 2016-09-30 12:12:57 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (7.0ms) +Completed 200 OK in 21ms (Views: 20.6ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 12:12:57 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 12:12:57 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 12:12:57 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 12:12:57 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 12:12:57 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 12:12:57 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 12:12:57 -0700 + + +Started GET "/" for ::1 at 2016-09-30 12:13:01 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (7.1ms) +Completed 200 OK in 21ms (Views: 19.8ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 12:13:01 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 12:13:01 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 12:13:01 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 12:13:01 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 12:13:01 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 12:13:01 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 12:13:01 -0700 + + +Started GET "/" for ::1 at 2016-09-30 12:13:30 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (15.8ms) +Completed 200 OK in 28ms (Views: 27.6ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 12:13:31 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 12:13:31 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 12:13:31 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 12:13:31 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 12:13:31 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 12:13:31 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 12:13:31 -0700 + + +Started GET "/" for ::1 at 2016-09-30 12:13:51 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (7.6ms) +Completed 200 OK in 21ms (Views: 20.5ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 12:13:51 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 12:13:51 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 12:13:51 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 12:13:51 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 12:13:51 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 12:13:51 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 12:13:51 -0700 + + +Started GET "/" for ::1 at 2016-09-30 12:14:34 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (6.1ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 12:14:34 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 12:14:34 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 12:14:34 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 12:14:34 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 12:14:34 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 12:14:34 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 12:14:34 -0700 + + +Started GET "/tasks/1" for ::1 at 2016-09-30 12:15:05 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 25ms (Views: 23.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-30 12:15:10 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (2.0ms) +Completed 200 OK in 61ms (Views: 60.8ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-30 12:15:43 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (6.2ms) +Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-09-30 12:17:13 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Rendered tasks/index.html.erb within layouts/application (11.6ms) +Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `completed_check' for # +Did you mean? completed_at_change): + 7: + 8: + 9: <%= form_for v, { action: task_complete_path(v.id), method: :patch } do |f| %> + 10: <%= f.check_box :completed_check, type: :submit %> + 11: <% end %> + 12: + 13: + app/views/tasks/index.html.erb:10:in `block (2 levels) in _app_views_tasks_index_html_erb___3235378923728893440_70281116801380' + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb___3235378923728893440_70281116801380' + app/views/tasks/index.html.erb:4:in `_app_views_tasks_index_html_erb___3235378923728893440_70281116801380' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (52.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.1ms) + + +Started GET "/" for ::1 at 2016-09-30 12:17:28 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (5.5ms) +Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 12:17:28 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 12:17:28 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 12:17:28 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 12:17:28 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 12:17:28 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 12:17:28 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 12:17:28 -0700 + + +Started GET "/" for ::1 at 2016-09-30 12:19:51 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (8.3ms) +Completed 200 OK in 30ms (Views: 27.9ms | ActiveRecord: 0.8ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 12:19:51 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 12:19:51 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 12:19:51 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 12:19:51 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 12:19:51 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 12:19:51 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 12:19:51 -0700 + + +Started PATCH "/tasks/1" for ::1 at 2016-09-30 12:19:54 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"sYyZqTmJtSM2pkDbFcbXov2HXCuNdrqYSWi0dF9nQ0g0y9pbipMJedtZUBOx+7gF7V2uoyQ3t1Zr+5MDWtL76A==", "commit"=>"Completed", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +Completed 400 Bad Request in 2ms (ActiveRecord: 0.1ms) + +ActionController::ParameterMissing (param is missing or the value is empty: task): + app/controllers/tasks_controller.rb:66:in `task_params' + app/controllers/tasks_controller.rb:36:in `update' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (49.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (102.2ms) + + +Started PATCH "/tasks/1" for ::1 at 2016-09-30 12:21:43 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"sYyZqTmJtSM2pkDbFcbXov2HXCuNdrqYSWi0dF9nQ0g0y9pbipMJedtZUBOx+7gF7V2uoyQ3t1Zr+5MDWtL76A==", "commit"=>"Completed", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +Completed 400 Bad Request in 6ms (ActiveRecord: 0.4ms) + +ActionController::ParameterMissing (param is missing or the value is empty: task): + app/controllers/tasks_controller.rb:66:in `task_params' + app/controllers/tasks_controller.rb:36:in `update' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (47.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (82.8ms) + + +Started PATCH "/tasks/1" for ::1 at 2016-09-30 12:21:47 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"sYyZqTmJtSM2pkDbFcbXov2HXCuNdrqYSWi0dF9nQ0g0y9pbipMJedtZUBOx+7gF7V2uoyQ3t1Zr+5MDWtL76A==", "commit"=>"Completed", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +Completed 400 Bad Request in 2ms (ActiveRecord: 0.1ms) + +ActionController::ParameterMissing (param is missing or the value is empty: task): + app/controllers/tasks_controller.rb:66:in `task_params' + app/controllers/tasks_controller.rb:36:in `update' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (54.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (10.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (108.4ms) + + +Started PATCH "/tasks/1" for ::1 at 2016-09-30 12:21:57 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"sYyZqTmJtSM2pkDbFcbXov2HXCuNdrqYSWi0dF9nQ0g0y9pbipMJedtZUBOx+7gF7V2uoyQ3t1Zr+5MDWtL76A==", "commit"=>"Completed", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +Completed 400 Bad Request in 6ms (ActiveRecord: 0.4ms) + +ActionController::ParameterMissing (param is missing or the value is empty: task): + app/controllers/tasks_controller.rb:66:in `task_params' + app/controllers/tasks_controller.rb:36:in `update' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (54.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.8ms) + + +Started PATCH "/tasks/1" for ::1 at 2016-09-30 12:22:33 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"sYyZqTmJtSM2pkDbFcbXov2HXCuNdrqYSWi0dF9nQ0g0y9pbipMJedtZUBOx+7gF7V2uoyQ3t1Zr+5MDWtL76A==", "commit"=>"Completed", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +Completed 400 Bad Request in 1ms (ActiveRecord: 0.1ms) + +ActionController::ParameterMissing (param is missing or the value is empty: task): + app/controllers/tasks_controller.rb:66:in `task_params' + app/controllers/tasks_controller.rb:36:in `update' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (45.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.3ms) + + +Started PATCH "/tasks/1" for ::1 at 2016-09-30 12:22:37 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"sYyZqTmJtSM2pkDbFcbXov2HXCuNdrqYSWi0dF9nQ0g0y9pbipMJedtZUBOx+7gF7V2uoyQ3t1Zr+5MDWtL76A==", "commit"=>"Completed", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +Completed 400 Bad Request in 1ms (ActiveRecord: 0.1ms) + +ActionController::ParameterMissing (param is missing or the value is empty: task): + app/controllers/tasks_controller.rb:66:in `task_params' + app/controllers/tasks_controller.rb:36:in `update' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (45.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.9ms) + + +Started PATCH "/tasks/1" for ::1 at 2016-09-30 12:22:55 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"sYyZqTmJtSM2pkDbFcbXov2HXCuNdrqYSWi0dF9nQ0g0y9pbipMJedtZUBOx+7gF7V2uoyQ3t1Zr+5MDWtL76A==", "commit"=>"Completed", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +Completed 400 Bad Request in 1ms (ActiveRecord: 0.1ms) + +ActionController::ParameterMissing (param is missing or the value is empty: task): + app/controllers/tasks_controller.rb:66:in `task_params' + app/controllers/tasks_controller.rb:36:in `update' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (44.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.2ms) + + +Started PATCH "/tasks/1" for ::1 at 2016-09-30 12:28:53 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"sYyZqTmJtSM2pkDbFcbXov2HXCuNdrqYSWi0dF9nQ0g0y9pbipMJedtZUBOx+7gF7V2uoyQ3t1Zr+5MDWtL76A==", "commit"=>"Completed", "id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +Completed 400 Bad Request in 8ms (ActiveRecord: 0.9ms) + +ActionController::ParameterMissing (param is missing or the value is empty: task): + app/controllers/tasks_controller.rb:66:in `task_params' + app/controllers/tasks_controller.rb:36:in `update' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (42.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (51.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.8ms) + + +Started PATCH "/tasks/1" for ::1 at 2016-09-30 12:29:28 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"sYyZqTmJtSM2pkDbFcbXov2HXCuNdrqYSWi0dF9nQ0g0y9pbipMJedtZUBOx+7gF7V2uoyQ3t1Zr+5MDWtL76A==", "commit"=>"Completed", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +Completed 400 Bad Request in 2ms (ActiveRecord: 0.1ms) + +ActionController::ParameterMissing (param is missing or the value is empty: task): + app/controllers/tasks_controller.rb:66:in `task_params' + app/controllers/tasks_controller.rb:36:in `update' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (47.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (35.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.0ms) + + +Started PATCH "/tasks/1" for ::1 at 2016-09-30 12:29:40 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"sYyZqTmJtSM2pkDbFcbXov2HXCuNdrqYSWi0dF9nQ0g0y9pbipMJedtZUBOx+7gF7V2uoyQ3t1Zr+5MDWtL76A==", "commit"=>"Completed", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +Completed 400 Bad Request in 6ms (ActiveRecord: 0.4ms) + +ActionController::ParameterMissing (param is missing or the value is empty: task): + app/controllers/tasks_controller.rb:66:in `task_params' + app/controllers/tasks_controller.rb:36:in `update' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (46.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.5ms) + + +Started PATCH "/tasks/1" for ::1 at 2016-09-30 12:30:07 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"sYyZqTmJtSM2pkDbFcbXov2HXCuNdrqYSWi0dF9nQ0g0y9pbipMJedtZUBOx+7gF7V2uoyQ3t1Zr+5MDWtL76A==", "commit"=>"Completed", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +Completed 400 Bad Request in 1ms (ActiveRecord: 0.1ms) + +ActionController::ParameterMissing (param is missing or the value is empty: task): + app/controllers/tasks_controller.rb:66:in `task_params' + app/controllers/tasks_controller.rb:36:in `update' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (50.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.8ms) + + +Started GET "/" for ::1 at 2016-09-30 12:30:21 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/1" for ::1 at 2016-09-30 12:30:24 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 25ms (Views: 23.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for ::1 at 2016-09-30 13:36:10 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 13:36:10 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 13:36:10 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 13:36:10 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 13:36:10 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 13:36:10 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 13:36:10 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 13:36:10 -0700 + + +Started GET "/" for ::1 at 2016-09-30 13:36:13 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for ::1 at 2016-09-30 13:36:14 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 23ms (Views: 21.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 13:37:02 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (39.5ms) +Completed 500 Internal Server Error in 46ms (ActiveRecord: 0.6ms) + +ActionView::Template::Error (undefined method `task_complete_path' for #<#:0x007fd730999a58> +Did you mean? task_completed? + task_create_path + task_create_url + task_update_path): + 5:

      • + 6: <%= "#{ v.name.capitalize}" %> + 7: + 8: <%= link_to "Completed", task_complete_path(v) %> + 9: + 10: + 11: + app/views/tasks/index.html.erb:8:in `block in _app_views_tasks_index_html_erb___3235378923728893440_70281067868820' + app/views/tasks/index.html.erb:4:in `_app_views_tasks_index_html_erb___3235378923728893440_70281067868820' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (62.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (35.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (78.2ms) + + +Started GET "/" for ::1 at 2016-09-30 13:37:32 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (6.5ms) +Completed 200 OK in 21ms (Views: 18.7ms | ActiveRecord: 0.6ms) + + +Started GET "/" for ::1 at 2016-09-30 13:37:49 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Rendered tasks/index.html.erb within layouts/application (5.6ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.3ms) + +ActionView::Template::Error (No route matches {:action=>"complete", :controller=>"tasks"} missing required keys: [:id]): + 5:

      • + 6: <%= "#{ v.name.capitalize}" %> + 7: + 8: <%= link_to "Completed", task_complete_path %> + 9: + 10: + 11: + app/views/tasks/index.html.erb:8:in `block in _app_views_tasks_index_html_erb___3235378923728893440_70281119923900' + app/views/tasks/index.html.erb:4:in `_app_views_tasks_index_html_erb___3235378923728893440_70281119923900' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (49.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.0ms) + + +Started GET "/" for ::1 at 2016-09-30 13:39:18 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 13:39:18 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 13:39:18 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 13:39:18 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 13:39:18 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 13:39:18 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 13:39:18 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 13:39:18 -0700 + + +Started PATCH "/tasks/1" for ::1 at 2016-09-30 13:39:19 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"+Jc4zt+vm9zCPoHcmr7lfwbGKCccvroYuBJ80lqkljF90Hs8bLUnhi/BkRQ+g4rYFhzar7X/t9aagVulXxEukQ==", "id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +Completed 400 Bad Request in 2ms (ActiveRecord: 0.2ms) + +ActionController::ParameterMissing (param is missing or the value is empty: task): + app/controllers/tasks_controller.rb:66:in `task_params' + app/controllers/tasks_controller.rb:36:in `update' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (46.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.5ms) + + +Started PATCH "/tasks/1" for ::1 at 2016-09-30 13:40:35 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"+Jc4zt+vm9zCPoHcmr7lfwbGKCccvroYuBJ80lqkljF90Hs8bLUnhi/BkRQ+g4rYFhzar7X/t9aagVulXxEukQ==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +Completed 400 Bad Request in 2ms (ActiveRecord: 0.1ms) + +ActionController::ParameterMissing (param is missing or the value is empty: task): + app/controllers/tasks_controller.rb:66:in `task_params' + app/controllers/tasks_controller.rb:36:in `update' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (50.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (48.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (100.2ms) + + +Started PATCH "/tasks/1" for ::1 at 2016-09-30 13:41:50 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"+Jc4zt+vm9zCPoHcmr7lfwbGKCccvroYuBJ80lqkljF90Hs8bLUnhi/BkRQ+g4rYFhzar7X/t9aagVulXxEukQ==", "id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +Completed 400 Bad Request in 7ms (ActiveRecord: 0.8ms) + +ActionController::ParameterMissing (param is missing or the value is empty: task): + app/controllers/tasks_controller.rb:66:in `task_params' + app/controllers/tasks_controller.rb:36:in `update' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (46.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (35.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.9ms) + + +Started PATCH "/tasks/1" for ::1 at 2016-09-30 13:43:39 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"+Jc4zt+vm9zCPoHcmr7lfwbGKCccvroYuBJ80lqkljF90Hs8bLUnhi/BkRQ+g4rYFhzar7X/t9aagVulXxEukQ==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +Completed 400 Bad Request in 2ms (ActiveRecord: 0.1ms) + +ActionController::ParameterMissing (param is missing or the value is empty: task): + app/controllers/tasks_controller.rb:66:in `task_params' + app/controllers/tasks_controller.rb:36:in `update' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (53.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (80.9ms) + + +Started PATCH "/tasks/1" for ::1 at 2016-09-30 13:44:48 -0700 + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/controllers/tasks_controller.rb:66: syntax error, unexpected ':', expecting keyword_end + params.require(:task).permit():name, :description, :completed_at) + ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/controllers/tasks_controller.rb:66: syntax error, unexpected ',', expecting &. or :: or '[' or '.' + params.require(:task).permit():name, :description, :completed_at) + ^): + app/controllers/tasks_controller.rb:66: syntax error, unexpected ':', expecting keyword_end + app/controllers/tasks_controller.rb:66: syntax error, unexpected ',', expecting &. or :: or '[' or '.' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (53.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.4ms) + + +Started PATCH "/tasks/1" for ::1 at 2016-09-30 13:44:58 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"+Jc4zt+vm9zCPoHcmr7lfwbGKCccvroYuBJ80lqkljF90Hs8bLUnhi/BkRQ+g4rYFhzar7X/t9aagVulXxEukQ==", "id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +Completed 400 Bad Request in 8ms (ActiveRecord: 0.7ms) + +ActionController::ParameterMissing (param is missing or the value is empty: task): + app/controllers/tasks_controller.rb:66:in `task_params' + app/controllers/tasks_controller.rb:36:in `update' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (52.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (51.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (98.2ms) + + +Started PATCH "/tasks/1" for ::1 at 2016-09-30 13:46:10 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"+Jc4zt+vm9zCPoHcmr7lfwbGKCccvroYuBJ80lqkljF90Hs8bLUnhi/BkRQ+g4rYFhzar7X/t9aagVulXxEukQ==", "id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +Completed 400 Bad Request in 7ms (ActiveRecord: 0.7ms) + +ActionController::ParameterMissing (param is missing or the value is empty: task): + app/controllers/tasks_controller.rb:66:in `task_params' + app/controllers/tasks_controller.rb:36:in `update' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (45.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.0ms) + + +Started PATCH "/tasks/1" for ::1 at 2016-09-30 13:48:40 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"+Jc4zt+vm9zCPoHcmr7lfwbGKCccvroYuBJ80lqkljF90Hs8bLUnhi/BkRQ+g4rYFhzar7X/t9aagVulXxEukQ==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +Completed 400 Bad Request in 1ms (ActiveRecord: 0.1ms) + +ActionController::ParameterMissing (param is missing or the value is empty: task): + app/controllers/tasks_controller.rb:66:in `task_params' + app/controllers/tasks_controller.rb:36:in `update' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (52.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (4.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (47.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.0ms) + + +Started PATCH "/tasks/1" for ::1 at 2016-09-30 13:49:04 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"+Jc4zt+vm9zCPoHcmr7lfwbGKCccvroYuBJ80lqkljF90Hs8bLUnhi/BkRQ+g4rYFhzar7X/t9aagVulXxEukQ==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +Completed 400 Bad Request in 1ms (ActiveRecord: 0.1ms) + +ActionController::ParameterMissing (param is missing or the value is empty: task): + app/controllers/tasks_controller.rb:66:in `task_params' + app/controllers/tasks_controller.rb:36:in `update' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (44.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (81.5ms) + + +Started GET "/tasks" for ::1 at 2016-09-30 13:49:09 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 19ms (Views: 18.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/1/complete" for ::1 at 2016-09-30 13:49:11 -0700 +Processing by TasksController#complete as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"cJ4LexR+e0AuTdA9vu/H2UxQ1Te/6uyhd5ibR3B5Voj12UiJp2THGsOywPUa0qh+XIonvxar4W9VC7wwdczuKA==", "name"=>"name", "description"=>"description", "completed_at"=>"completed_at", "commit"=>"Completed", "id"=>"1"} +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.0ms) + +NameError (undefined local variable or method `param' for # +Did you mean? params + params= + @_params): + app/controllers/tasks_controller.rb:45:in `complete' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (54.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.6ms) + + +Started GET "/" for ::1 at 2016-09-30 13:49:27 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (7.4ms) +Completed 200 OK in 21ms (Views: 18.6ms | ActiveRecord: 0.7ms) + + +Started PATCH "/tasks/1/complete" for ::1 at 2016-09-30 13:49:29 -0700 +Processing by TasksController#complete as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"/+xBHvfRL3XWyGX78gHT3WKoBtkO3APpYidCrEDeXId6qwLsRMuTLzs3dTNWPLx6cnL0UaedDidAtGXbRWvkJw==", "name"=>"name", "description"=>"description", "completed_at"=>"completed_at", "commit"=>"Completed", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.1ms) + +NoMethodError (undefined method `today' for Mon, 01 Jan -4712:Date +Did you mean? today?): + app/controllers/tasks_controller.rb:46:in `complete' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (44.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.3ms) + + +Started PATCH "/tasks/1/complete" for ::1 at 2016-09-30 13:50:43 -0700 +Processing by TasksController#complete as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"/+xBHvfRL3XWyGX78gHT3WKoBtkO3APpYidCrEDeXId6qwLsRMuTLzs3dTNWPLx6cnL0UaedDidAtGXbRWvkJw==", "name"=>"name", "description"=>"description", "completed_at"=>"completed_at", "commit"=>"Completed", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.4ms) + +NameError (undefined local variable or method `today' for #): + app/controllers/tasks_controller.rb:46:in `complete' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (47.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (36.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.2ms) + + +Started PATCH "/tasks/1/complete" for ::1 at 2016-09-30 13:50:56 -0700 +Processing by TasksController#complete as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"/+xBHvfRL3XWyGX78gHT3WKoBtkO3APpYidCrEDeXId6qwLsRMuTLzs3dTNWPLx6cnL0UaedDidAtGXbRWvkJw==", "name"=>"name", "description"=>"description", "completed_at"=>"completed_at", "commit"=>"Completed", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.6ms) + +NoMethodError (undefined method `now' for Mon, 01 Jan -4712:Date +Did you mean? noon): + app/controllers/tasks_controller.rb:46:in `complete' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (47.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (35.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.4ms) + + +Started PATCH "/tasks/1/complete" for ::1 at 2016-09-30 13:51:06 -0700 +Processing by TasksController#complete as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"/+xBHvfRL3XWyGX78gHT3WKoBtkO3APpYidCrEDeXId6qwLsRMuTLzs3dTNWPLx6cnL0UaedDidAtGXbRWvkJw==", "name"=>"name", "description"=>"description", "completed_at"=>"completed_at", "commit"=>"Completed", "id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.5ms) + +NoMethodError (undefined method `now' for Date:Class +Did you mean? new): + app/controllers/tasks_controller.rb:46:in `complete' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (45.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (35.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (81.7ms) + + +Started PATCH "/tasks/1/complete" for ::1 at 2016-09-30 13:51:19 -0700 +Processing by TasksController#complete as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"/+xBHvfRL3XWyGX78gHT3WKoBtkO3APpYidCrEDeXId6qwLsRMuTLzs3dTNWPLx6cnL0UaedDidAtGXbRWvkJw==", "name"=>"name", "description"=>"description", "completed_at"=>"completed_at", "commit"=>"Completed", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.7ms) + +NoMethodError (undefined method `today' for Mon, 01 Jan -4712:Date +Did you mean? today?): + app/controllers/tasks_controller.rb:46:in `complete' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (45.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (80.5ms) + + +Started GET "/tasks" for ::1 at 2016-09-30 13:52:03 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (7.9ms) +Completed 200 OK in 21ms (Views: 19.1ms | ActiveRecord: 0.5ms) + + +Started PATCH "/tasks/1/complete" for ::1 at 2016-09-30 13:52:05 -0700 +Processing by TasksController#complete as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"mKbYhbDVyYFYby6YogDTVWQkXLVoAa7LQM2gRIVqMkYd4Zt3A89127WQPlAGPbzydP6uPcFAowViXoczgN+K5g==", "name"=>"name", "description"=>"description", "completed_at"=>"completed_at", "commit"=>"Completed", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "-4712-01-01"], ["updated_at", "2016-09-30 20:52:05.124819"], ["id", 1]] +  (5.1ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 8ms (ActiveRecord: 5.4ms) + + +Started GET "/" for ::1 at 2016-09-30 13:52:05 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (6.5ms) +Completed 200 OK in 18ms (Views: 17.7ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/3/complete" for ::1 at 2016-09-30 13:52:46 -0700 +Processing by TasksController#complete as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"IRcCOSg3rOtoI2keTfFqtNL/EDoe2M06Bk6WywMKP5SkUEHLmy0QsYXcedbpzAUTwiXisreZwPQk3bG8Br+HNA==", "name"=>"name", "description"=>"description", "completed_at"=>"completed_at", "commit"=>"Completed", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "-4712-01-01"], ["updated_at", "2016-09-30 20:52:46.658266"], ["id", 3]] +  (3.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 3.8ms) + + +Started GET "/" for ::1 at 2016-09-30 13:52:46 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (4.8ms) +Completed 200 OK in 20ms (Views: 18.9ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-09-30 13:55:23 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (4.8ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 13:55:23 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 13:55:23 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 13:55:23 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 13:55:23 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 13:55:23 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 13:55:23 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 13:55:23 -0700 + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-30 13:56:02 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/edit.html.erb within layouts/application (1.9ms) +Completed 200 OK in 29ms (Views: 27.7ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/1" for ::1 at 2016-09-30 13:56:07 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"6tATaNGFjQkIGyESSNPl/IruxfeKNyY3A482IpFpOgFvl1CaYp8xU+XkMdrs7opbmjQ3fyN2K/khHBFVlNyCoQ==", "task"=>{"name"=>"sweep", "description"=>"sweep the kitchen and bathroom", "completed_at"=>""}, "commit"=>"Submit your edits", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", nil], ["updated_at", "2016-09-30 20:56:07.580585"], ["id", 1]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.7ms) + + +Started GET "/" for ::1 at 2016-09-30 13:56:07 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/3/edit" for ::1 at 2016-09-30 13:56:11 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/edit.html.erb within layouts/application (2.1ms) +Completed 200 OK in 24ms (Views: 23.0ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/3" for ::1 at 2016-09-30 13:56:13 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"DsPcV+dJqQdjg9sJw2T6iIpuZdhsKKHqbTtTH0yU85WLhJ+lVFMVXY58y8FnWZUvmrSXUMVprCRPqHRoSSFLNQ==", "task"=>{"name"=>"walk dog", "description"=>"walk the dog around the block", "completed_at"=>""}, "commit"=>"Submit your edits", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", nil], ["updated_at", "2016-09-30 20:56:13.061338"], ["id", 3]] +  (2.3ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 2.7ms) + + +Started GET "/" for ::1 at 2016-09-30 13:56:13 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-09-30 13:56:58 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (6.2ms) +Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 13:56:58 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 13:56:58 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 13:56:58 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 13:56:58 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 13:56:58 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 13:56:58 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 13:56:58 -0700 + + +Started PATCH "/tasks/1/complete" for ::1 at 2016-09-30 13:57:00 -0700 +Processing by TasksController#complete as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"yu6ftYj4NeKwZ2LUHWV1P0KdXwaymn3LutPohjw7nIpPqdxHO+KJuF2Ychy5WBqYUketjhvbcAWYQM/xOY4kKg==", "commit"=>"Completed", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.1ms) + +NoMethodError (undefined method `localtime' for Mon, 01 Jan -4712:Date): + app/controllers/tasks_controller.rb:46:in `complete' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (45.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (83.3ms) + + +Started PATCH "/tasks/1/complete" for ::1 at 2016-09-30 13:57:44 -0700 +Processing by TasksController#complete as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"yu6ftYj4NeKwZ2LUHWV1P0KdXwaymn3LutPohjw7nIpPqdxHO+KJuF2Ychy5WBqYUketjhvbcAWYQM/xOY4kKg==", "commit"=>"Completed", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.4ms) + +NoMethodError (undefined method `now' for Date:Class +Did you mean? new): + app/controllers/tasks_controller.rb:46:in `complete' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (41.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.0ms) + + +Started GET "/task" for ::1 at 2016-09-30 14:01:07 -0700 + +ActionController::RoutingError (No route matches [GET] "/task"): + 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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (62.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (96.3ms) + + +Started GET "/" for ::1 at 2016-09-30 14:01:16 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (6.8ms) +Completed 200 OK in 23ms (Views: 20.0ms | ActiveRecord: 0.5ms) + + +Started PATCH "/tasks/1/complete" for ::1 at 2016-09-30 14:01:18 -0700 +Processing by TasksController#complete as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"N3pk+AuHnSJRoIuIADvaWW2y+Xs+v9mQ38+hLJUbcl2yPScKuJ0heLxfm0CkBrX+fWgL85f+1F79XIZbkK7K/Q==", "commit"=>"Completed", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.1ms) + +NoMethodError (undefined method `now' for Date:Class +Did you mean? new): + app/controllers/tasks_controller.rb:48:in `complete' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (57.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (48.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.2ms) + + +Started GET "/tasks" for ::1 at 2016-09-30 14:02:16 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (6.6ms) +Completed 200 OK in 21ms (Views: 18.6ms | ActiveRecord: 0.6ms) + + +Started PATCH "/tasks/1/complete" for ::1 at 2016-09-30 14:02:18 -0700 +Processing by TasksController#complete as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"3P2igPhjplhVqbXKhfU4kn4ER1IyJgJViNZkAxnSO1lZuuFyS3kaArhWpQIhyFc1bt612ptnD5uqRUN0HGeD+Q==", "commit"=>"Completed", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-09-30"], ["updated_at", "2016-09-30 21:02:18.615179"], ["id", 1]] +  (2.2ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.6ms) + + +Started GET "/" for ::1 at 2016-09-30 14:02:18 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (6.1ms) +Completed 200 OK in 19ms (Views: 18.2ms | ActiveRecord: 0.5ms) + + +Started PATCH "/tasks/3/complete" for ::1 at 2016-09-30 14:02:30 -0700 +Processing by TasksController#complete as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"3UKs1sdWrb3NkyfuA7KjjQ/Y9ouNzdmcXrvnCsvzNqxYBe8kdEwR5yBsNyanj8wqHwIEAySM1FJ8KMB9zkaODA==", "commit"=>"Completed", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-09-30"], ["updated_at", "2016-09-30 21:02:30.923621"], ["id", 3]] +  (2.2ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.6ms) + + +Started GET "/" for ::1 at 2016-09-30 14:02:30 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/11/complete" for ::1 at 2016-09-30 14:02:34 -0700 +Processing by TasksController#complete as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"6yBvwFJnr+nGneGR2Vrev2bpWKe331McirByUBTieDNuZywy4X0Tsyti8Vl9Z7EYdjOqLx6eXtKoI1UnEVfAkw==", "commit"=>"Completed", "id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 11]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-09-30"], ["updated_at", "2016-09-30 21:02:34.989997"], ["id", 11]] +  (2.2ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.5ms) + + +Started GET "/" for ::1 at 2016-09-30 14:02:35 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 14:02:55 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (6.5ms) +Completed 200 OK in 23ms (Views: 20.7ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 14:02:55 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 14:02:55 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 14:02:55 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 14:02:56 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 14:02:56 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 14:02:56 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 14:02:56 -0700 + + +Started PATCH "/tasks/4/complete" for ::1 at 2016-09-30 14:02:57 -0700 +Processing by TasksController#complete as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"3QCFnYbPN5fe1HDG4DtuXEEfouS1C6nVZjt9lA1AIkdYR8ZvNdWLzTMrYA5EBgH7UcVQbBxKpBtEqFrjCPWa5w==", "commit"=>"Completed", "id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 4]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-09-30"], ["updated_at", "2016-09-30 21:02:57.302962"], ["id", 4]] +  (2.7ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 3.1ms) + + +Started GET "/" for ::1 at 2016-09-30 14:02:57 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (5.3ms) +Completed 200 OK in 24ms (Views: 22.9ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-09-30 14:11:51 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (6.7ms) +Completed 200 OK in 24ms (Views: 20.1ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 14:11:51 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 14:11:52 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 14:11:52 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 14:11:52 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 14:11:52 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 14:11:52 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 14:11:52 -0700 + + +Started PATCH "/tasks/10" for ::1 at 2016-09-30 14:11:54 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"8yQqfi8otVTEYqNpUbGvhqFA4c4kSgGW5t7u7y+anFl2Y2mMnDIJDimds6H1jMAhsZoTRo0LDFjETcmYKi8k+Q==", "commit"=>"Completed", "id"=>"10"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 10]] +Completed 400 Bad Request in 2ms (ActiveRecord: 0.1ms) + +ActionController::ParameterMissing (param is missing or the value is empty: task): + app/controllers/tasks_controller.rb:66:in `task_params' + app/controllers/tasks_controller.rb:36:in `update' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (42.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.7ms) + + +Started PATCH "/tasks/10" for ::1 at 2016-09-30 14:12:01 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"8yQqfi8otVTEYqNpUbGvhqFA4c4kSgGW5t7u7y+anFl2Y2mMnDIJDimds6H1jMAhsZoTRo0LDFjETcmYKi8k+Q==", "commit"=>"Completed", "id"=>"10"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 10]] +Completed 400 Bad Request in 6ms (ActiveRecord: 0.4ms) + +ActionController::ParameterMissing (param is missing or the value is empty: task): + app/controllers/tasks_controller.rb:66:in `task_params' + app/controllers/tasks_controller.rb:36:in `update' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (50.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (36.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.4ms) + + +Started GET "/tasks/8/edit" for ::1 at 2016-09-30 14:12:26 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/edit.html.erb within layouts/application (4.1ms) +Completed 200 OK in 30ms (Views: 29.0ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/8" for ::1 at 2016-09-30 14:12:29 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"/W0Cu5R3qYAu514YCwEmkHj/jnnSkoF34U920ImXM714KkFJJ20V2sMYTtCvPEk3aCV88XvTjLnD3FGnjCKLHQ==", "task"=>{"name"=>"poverty", "description"=>"End world poverty and also hunger.", "completed_at"=>""}, "commit"=>"Submit your edits", "id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", nil], ["updated_at", "2016-09-30 21:12:29.259474"], ["id", 8]] +  (2.3ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.7ms) + + +Started GET "/" for ::1 at 2016-09-30 14:12:29 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/3/edit" for ::1 at 2016-09-30 14:12:36 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/edit.html.erb within layouts/application (1.7ms) +Completed 200 OK in 55ms (Views: 53.9ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/3" for ::1 at 2016-09-30 14:12:40 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"NU8zINowPcaDrV3Q6vC1CzXKiNMOFA+K6nb3LoBto9WwCHDSaSqBnG5STRhOzdqsJRB6W6dVAkTI5dBZhdgbdQ==", "task"=>{"name"=>"walk dog", "description"=>"walk the dog around the block", "completed_at"=>""}, "commit"=>"Submit your edits", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", nil], ["updated_at", "2016-09-30 21:12:40.067816"], ["id", 3]] +  (2.2ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.6ms) + + +Started GET "/" for ::1 at 2016-09-30 14:12:40 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-30 14:12:44 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/edit.html.erb within layouts/application (2.1ms) +Completed 200 OK in 26ms (Views: 25.0ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/1" for ::1 at 2016-09-30 14:13:09 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"An64IuC4q8PIK4TKZqTckMsNlLABWduVt6yAmd3Y9FGHOfvQU6IXmSXUlALCmbM329dmOKgY1luVP6fu2G1M8Q==", "task"=>{"name"=>"sweep", "description"=>"sweep the kitchen and bathroom", "completed_at"=>""}, "commit"=>"Submit your edits", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", nil], ["updated_at", "2016-09-30 21:13:09.419612"], ["id", 1]] +  (2.2ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.5ms) + + +Started GET "/" for ::1 at 2016-09-30 14:13:09 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/1/complete" for ::1 at 2016-09-30 14:13:45 -0700 +Processing by TasksController#complete as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"odvhAxENiugJDWte20m8UVsLBqZo/6lY4bWQLwyOEjIknKLxohc2suTye5Z/dNP2S9H0LsG+pJbDJrdYCTuqkg==", "commit"=>"Completed", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-09-30"], ["updated_at", "2016-09-30 21:13:45.703475"], ["id", 1]] +  (2.2ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.6ms) + + +Started GET "/" for ::1 at 2016-09-30 14:13:45 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/10/complete" for ::1 at 2016-09-30 14:13:49 -0700 +Processing by TasksController#complete as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"MjoUjLb1tvbqGfkBGABs/PbQbMFTYCfa6oXzJNcEw1a3fVd+Be8KrAfm6cm8PQNb5gqeSfohKhTIFtRT0rF79g==", "commit"=>"Completed", "id"=>"10"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 10]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-09-30"], ["updated_at", "2016-09-30 21:13:49.645544"], ["id", 10]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.8ms) + + +Started GET "/" for ::1 at 2016-09-30 14:13:49 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/3/complete" for ::1 at 2016-09-30 14:13:50 -0700 +Processing by TasksController#complete as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"01R39NbwIVJNAwe51Ghz/sefNo6IGU00VZqzGeWd+ylWEzQGZeqdCKD8F3FwVRxZ10XEBiFYQPp3CZRu4ChDiQ==", "commit"=>"Completed", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-09-30"], ["updated_at", "2016-09-30 21:13:50.981537"], ["id", 3]] +  (2.1ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.4ms) + + +Started GET "/" for ::1 at 2016-09-30 14:13:50 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/8/complete" for ::1 at 2016-09-30 14:13:52 -0700 +Processing by TasksController#complete as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"9JyWn2n7G4V3E++8LS8Sd8NESiyfvSv6Y9iZUSxwUi1x29Vt2uGn35rs/3SJEn3Q0564pDb8JjRBS74mKcXqjQ==", "commit"=>"Completed", "id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-09-30"], ["updated_at", "2016-09-30 21:13:52.059337"], ["id", 8]] +  (2.3ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 2.8ms) + + +Started GET "/" for ::1 at 2016-09-30 14:13:52 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 13ms (Views: 12.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-30 14:13:58 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/edit.html.erb within layouts/application (1.8ms) +Completed 200 OK in 25ms (Views: 24.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/1" for ::1 at 2016-09-30 14:14:00 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"64fRZetAnxGUt4FNVjsItvKGu4L2Gs1A8c9RLkFgq+tuwJKXWFojS3lIkYXyBmcR4lxJCl9bwI7TXHZZRNUTSw==", "task"=>{"name"=>"sweep", "description"=>"sweep the kitchen and bathroom", "completed_at"=>""}, "commit"=>"Submit your edits", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", nil], ["updated_at", "2016-09-30 21:14:00.267722"], ["id", 1]] +  (2.3ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.6ms) + + +Started GET "/" for ::1 at 2016-09-30 14:14:00 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/3/edit" for ::1 at 2016-09-30 14:14:01 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/edit.html.erb within layouts/application (1.5ms) +Completed 200 OK in 48ms (Views: 46.7ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/3" for ::1 at 2016-09-30 14:14:04 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"H/lBQ9ibY3y0jYkgWW/wBK05MVr9cWuTrqOz//QrsqeavgKxa4HfJllymej9Up+jvePD0lQwZl2MMJSI8Z4KBw==", "task"=>{"name"=>"walk dog", "description"=>"walk the dog around the block", "completed_at"=>""}, "commit"=>"Submit your edits", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", nil], ["updated_at", "2016-09-30 21:14:04.568915"], ["id", 3]] +  (2.3ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.6ms) + + +Started GET "/" for ::1 at 2016-09-30 14:14:04 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/4/edit" for ::1 at 2016-09-30 14:14:06 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 4]] + Rendered tasks/edit.html.erb within layouts/application (1.8ms) +Completed 200 OK in 27ms (Views: 26.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/4" for ::1 at 2016-09-30 14:14:09 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"jsbdr9OI3MpCt7Jt37MJDrvcXy3zsa1HTNwAccVtytALgZ5dYJJgkK9IoqV7jmapqwatpVrwoIluTycGwNhycA==", "task"=>{"name"=>"exercise", "description"=>"do at least 30 minutes of cardio", "completed_at"=>""}, "commit"=>"Submit your edits", "id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 4]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", nil], ["updated_at", "2016-09-30 21:14:09.269670"], ["id", 4]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 2.7ms) + + +Started GET "/" for ::1 at 2016-09-30 14:14:09 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-09-30 14:15:33 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (4.9ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 14:15:34 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 14:15:34 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 14:15:34 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 14:15:34 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 14:15:34 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 14:15:34 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 14:15:34 -0700 + + +Started PATCH "/" for ::1 at 2016-09-30 14:15:35 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/"): + 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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (62.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.5ms) + + +Started GET "/" for ::1 at 2016-09-30 14:15:46 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-09-30 14:16:11 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:6: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' +..." + form_tag task_complete_path(v), method: :patch do @outpu... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:6: syntax error, unexpected ',', expecting keyword_end +...form_tag task_complete_path(v), method: :patch do @output_bu... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:36: syntax error, unexpected keyword_ensure, expecting end-of-input): + app/views/tasks/index.html.erb:6: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' + app/views/tasks/index.html.erb:6: syntax error, unexpected ',', expecting keyword_end + app/views/tasks/index.html.erb:36: syntax error, unexpected keyword_ensure, expecting end-of-input + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (46.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (47.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.3ms) + + +Started GET "/" for ::1 at 2016-09-30 14:16:45 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:6: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' +..." + form_tag task_complete_path(v), method: :patch do @outpu... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:6: syntax error, unexpected ',', expecting keyword_end +...form_tag task_complete_path(v), method: :patch do @output_bu... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:36: syntax error, unexpected keyword_ensure, expecting end-of-input): + app/views/tasks/index.html.erb:6: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' + app/views/tasks/index.html.erb:6: syntax error, unexpected ',', expecting keyword_end + app/views/tasks/index.html.erb:36: syntax error, unexpected keyword_ensure, expecting end-of-input + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (46.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.3ms) + + +Started GET "/" for ::1 at 2016-09-30 14:16:52 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:6: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' +..." + form_tag task_complete_path(v), method: :patch do @outpu... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:6: syntax error, unexpected ',', expecting keyword_end +...form_tag task_complete_path(v), method: :patch do @output_bu... +... ^ +/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:36: syntax error, unexpected keyword_ensure, expecting end-of-input): + app/views/tasks/index.html.erb:6: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' + app/views/tasks/index.html.erb:6: syntax error, unexpected ',', expecting keyword_end + app/views/tasks/index.html.erb:36: syntax error, unexpected keyword_ensure, expecting end-of-input + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (47.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (96.0ms) + + +Started GET "/" for ::1 at 2016-09-30 14:16:58 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 14:16:58 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 14:16:58 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 14:16:58 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 14:16:58 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 14:16:58 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 14:16:58 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 14:16:58 -0700 + + +Started GET "/" for ::1 at 2016-09-30 14:17:37 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (5.9ms) +Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 14:17:37 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 14:17:37 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 14:17:37 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 14:17:37 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 14:17:37 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 14:17:37 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 14:17:37 -0700 + + +Started GET "/tasks/5/edit" for ::1 at 2016-09-30 14:17:40 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasks/edit.html.erb within layouts/application (2.0ms) +Completed 200 OK in 24ms (Views: 23.0ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/5" for ::1 at 2016-09-30 14:17:42 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"g+gi5zwYczOR6ISaUHBg3mDGP6uzy+dUv8wjqPpNH7EGr2EVjwLPaXwXlFL0TQ95cBzNIxqK6pqdXwTf//inEQ==", "task"=>{"name"=>"cook", "description"=>"cook dinner", "completed_at"=>""}, "commit"=>"Submit your edits", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 5]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", nil], ["updated_at", "2016-09-30 21:17:42.991284"], ["id", 5]] +  (2.2ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.5ms) + + +Started GET "/" for ::1 at 2016-09-30 14:17:43 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (5.3ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-09-30 14:18:36 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 25ms (Views: 24.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 14:18:36 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 14:18:36 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 14:18:36 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 14:18:36 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 14:18:36 -0700 + + +Started GET "/assets/application.self-642c6da1d0d06d61e307005179d0f0637251644edafd0dbc2d2b3f1cbd7d6c30.css?body=1" for ::1 at 2016-09-30 14:18:36 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 14:18:36 -0700 + + +Started GET "/" for ::1 at 2016-09-30 14:19:59 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 14:19:59 -0700 + + +Started GET "/assets/application.self-642c6da1d0d06d61e307005179d0f0637251644edafd0dbc2d2b3f1cbd7d6c30.css?body=1" for ::1 at 2016-09-30 14:19:59 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 14:19:59 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 14:19:59 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 14:19:59 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 14:19:59 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 14:19:59 -0700 + + +Started GET "/" for ::1 at 2016-09-30 14:20:21 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (17.1ms) +Completed 200 OK in 32ms (Views: 31.7ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 14:20:21 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 14:20:21 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 14:20:21 -0700 + + +Started GET "/assets/application.self-c1bba5d9067aa02719cfc9dd07ca4eecbc32e2d56ee0532de623e66f7a3fefb2.css?body=1" for ::1 at 2016-09-30 14:20:21 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 14:20:21 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 14:20:21 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 14:20:21 -0700 + + +Started GET "/" for ::1 at 2016-09-30 14:22:30 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (6.0ms) +Completed 200 OK in 20ms (Views: 17.5ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 14:22:30 -0700 + + +Started GET "/assets/application.self-c1bba5d9067aa02719cfc9dd07ca4eecbc32e2d56ee0532de623e66f7a3fefb2.css?body=1" for ::1 at 2016-09-30 14:22:30 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 14:22:30 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 14:22:30 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 14:22:30 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 14:22:30 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 14:22:30 -0700 + + +Started GET "/" for ::1 at 2016-09-30 14:23:38 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (5.2ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 14:23:38 -0700 + + +Started GET "/assets/application.self-c1bba5d9067aa02719cfc9dd07ca4eecbc32e2d56ee0532de623e66f7a3fefb2.css?body=1" for ::1 at 2016-09-30 14:23:38 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 14:23:38 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 14:23:38 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 14:23:38 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 14:23:38 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 14:23:38 -0700 + + +Started GET "/" for ::1 at 2016-09-30 14:24:13 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (5.0ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 14:24:13 -0700 + + +Started GET "/assets/application.self-c1bba5d9067aa02719cfc9dd07ca4eecbc32e2d56ee0532de623e66f7a3fefb2.css?body=1" for ::1 at 2016-09-30 14:24:13 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 14:24:13 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 14:24:13 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 14:24:13 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 14:24:13 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 14:24:13 -0700 + + +Started GET "/" for ::1 at 2016-09-30 14:24:41 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (5.6ms) +Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 14:24:41 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 14:24:41 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 14:24:41 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 14:24:41 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 14:24:41 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 14:24:41 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 14:24:41 -0700 + + +Started GET "/" for ::1 at 2016-09-30 14:27:09 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 14:27:09 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 14:27:09 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 14:27:09 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 14:27:09 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 14:27:09 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 14:27:09 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 14:27:09 -0700 + + +Started GET "/" for ::1 at 2016-09-30 14:27:36 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 21ms (Views: 20.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 14:27:36 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 14:27:36 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 14:27:36 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 14:27:36 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 14:27:36 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 14:27:37 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 14:27:37 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:23:04 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 47ms (Views: 46.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:23:05 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:23:05 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:23:05 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:23:05 -0700 + + +Started GET "/assets/application.self-ec0711e390ae0e4db57a00cea709eb934ad441fb99314cefd1de3f179a4533c1.css?body=1" for ::1 at 2016-09-30 15:23:05 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:23:05 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:23:05 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:23:46 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 21ms (Views: 20.2ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/application.self-3b08f4387a63fa6624e3378b1c765fcee7b69987b47e9e76dacfc3d3c436b54c.css?body=1" for ::1 at 2016-09-30 15:23:46 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:23:46 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:23:46 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:23:46 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:23:46 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:23:46 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:23:46 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:24:00 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (6.4ms) +Completed 200 OK in 24ms (Views: 23.3ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/application.self-05ee72d5dc5eb44cfe7ad8b15c94b9f11cbbd7ef2ea72a5601f1b1fd0c2e20fd.css?body=1" for ::1 at 2016-09-30 15:24:00 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:24:00 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:24:00 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:24:00 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:24:00 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:24:00 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:24:00 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:24:07 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 23ms (Views: 21.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/application.self-a0236dde19b17d2c4f3a792fb5d5385028fa061c6a0581ed5efad1e7193d1d28.css?body=1" for ::1 at 2016-09-30 15:24:07 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:24:07 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:24:07 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:24:07 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:24:07 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:24:07 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:24:07 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:24:16 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 22ms (Views: 20.8ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:24:16 -0700 + + +Started GET "/assets/application.self-20b62793e393c6d4a160d77717e077c3654a2cc2afc3093fc4baf1a98b794d3b.css?body=1" for ::1 at 2016-09-30 15:24:16 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:24:16 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:24:16 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:24:16 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:24:16 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:24:16 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-09-30 15:38:12 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (2.1ms) +Completed 200 OK in 50ms (Views: 49.4ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-09-30 15:38:58 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"duKNhcuHchEa7aPtbvo/AP6xwi67CV/NHuGhwQ2ilNnzpc53eJ3OS/cSsyXKx1Cn7mswphJIUgM8coa2CBcseQ==", "task"=>{"name"=>"Thinky Drinky", "description"=>"Drink and think", "completed_at"=>""}, "commit"=>"Submit your task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Thinky Drinky"], ["description", "Drink and think"], ["created_at", "2016-09-30 22:38:58.749653"], ["updated_at", "2016-09-30 22:38:58.749653"]] +  (2.2ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.5ms) + + +Started GET "/" for ::1 at 2016-09-30 15:38:58 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 23ms (Views: 22.7ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/application.self-e4d1df86d5c7d21687e778b83a9ae00947e7e4c8f308fecc885c3967f3cb50ad.css?body=1" for ::1 at 2016-09-30 15:38:58 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:39:00 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (6.0ms) +Completed 200 OK in 20ms (Views: 18.8ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:39:00 -0700 + + +Started GET "/assets/application.self-e4d1df86d5c7d21687e778b83a9ae00947e7e4c8f308fecc885c3967f3cb50ad.css?body=1" for ::1 at 2016-09-30 15:39:00 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:39:00 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:39:00 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:39:00 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:39:00 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:39:00 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:39:11 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/application.self-eb4ae0021afb177249f510857aae506e071268bdf6e49798bb8c3989fd9c96f1.css?body=1" for ::1 at 2016-09-30 15:39:11 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:39:11 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:39:11 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:39:11 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:39:11 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:39:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:39:11 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:39:51 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/application.self-d4ef42042b5efab1c84520a53152e38d02cfa05116b0e37eb3251e238aef0925.css?body=1" for ::1 at 2016-09-30 15:39:51 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:39:51 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:39:51 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:39:51 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:39:51 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:39:51 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:39:51 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:39:59 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:39:59 -0700 + + +Started GET "/assets/application.self-20b62793e393c6d4a160d77717e077c3654a2cc2afc3093fc4baf1a98b794d3b.css?body=1" for ::1 at 2016-09-30 15:39:59 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:39:59 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:39:59 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:39:59 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:39:59 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:39:59 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:52:06 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 23ms (Views: 22.1ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/application.self-c9a4525b7126efd676637fc69ca3baa17badd048e4f6d0515b8943444f79ce52.css?body=1" for ::1 at 2016-09-30 15:52:06 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:52:06 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:52:06 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:52:06 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:52:06 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:52:06 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:52:06 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:52:12 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 21ms (Views: 20.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:52:12 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:52:12 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:52:12 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:52:12 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:52:12 -0700 + + +Started GET "/assets/application.self-ba6c389830b6f8d56e20059b4c0b250d4bf86ea634e4c872739da2700e8448e5.css?body=1" for ::1 at 2016-09-30 15:52:12 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:52:12 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:52:52 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (16.8ms) +Completed 200 OK in 29ms (Views: 28.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:52:52 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:52:52 -0700 + + +Started GET "/assets/application.self-ba6c389830b6f8d56e20059b4c0b250d4bf86ea634e4c872739da2700e8448e5.css?body=1" for ::1 at 2016-09-30 15:52:52 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:52:52 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:52:52 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:52:52 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:52:52 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:54:25 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (5.1ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:54:25 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:54:25 -0700 + + +Started GET "/assets/application.self-ba6c389830b6f8d56e20059b4c0b250d4bf86ea634e4c872739da2700e8448e5.css?body=1" for ::1 at 2016-09-30 15:54:25 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:54:25 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:54:25 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:54:25 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:54:25 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:54:38 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:54:38 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:54:38 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:54:38 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:54:38 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:54:38 -0700 + + +Started GET "/assets/application.self-ba6c389830b6f8d56e20059b4c0b250d4bf86ea634e4c872739da2700e8448e5.css?body=1" for ::1 at 2016-09-30 15:54:38 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:54:38 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:55:41 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (4.9ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:55:41 -0700 + + +Started GET "/assets/application.self-ba6c389830b6f8d56e20059b4c0b250d4bf86ea634e4c872739da2700e8448e5.css?body=1" for ::1 at 2016-09-30 15:55:41 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:55:41 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:55:41 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:55:41 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:55:41 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:55:41 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:58:34 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 22ms (Views: 21.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/application.self-2da4dd31ba7c299d3b44bac5a640cb610e6d4203edfd9d57092d9fcf28fe27ea.css?body=1" for ::1 at 2016-09-30 15:58:34 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:58:34 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:58:34 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:58:34 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:58:34 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:58:34 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:58:34 -0700 + + +Started GET "/" for ::1 at 2016-10-05 09:11:46 -0700 + ActiveRecord::SchemaMigration Load (2.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by Rails::WelcomeController#index as HTML + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/railties-4.2.7/lib/rails/templates/rails/welcome/index.html.erb (5.1ms) +Completed 200 OK in 40ms (Views: 29.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-10-05 09:12:34 -0700 +Processing by TasksController#index as HTML + Task Load (2.7ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (59.8ms) +Completed 500 Internal Server Error in 69ms (ActiveRecord: 3.2ms) + +ActionView::Template::Error (undefined local variable or method `new_task_path' for #<#:0x007fa874d7bdc8> +Did you mean? task_index_path + task_path): + 1:

        <%= link_to "Click here to create a new task!", new_task_path %>

        + 2: + 3:
        + 4: + app/views/tasks/index.html.erb:1:in `_app_views_tasks_index_html_erb___707385219313134330_70180745745000' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (75.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (75.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (154.6ms) + + +Started GET "/" for ::1 at 2016-10-05 09:12:54 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (24.1ms) +Completed 500 Internal Server Error in 28ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined local variable or method `new_task_path' for #<#:0x007fa876c62db8> +Did you mean? task_index_path + task_path): + 1:

        <%= link_to "Click here to create a new task!", new_task_path %>

        + 2: + 3:
        + 4: + app/views/tasks/index.html.erb:1:in `_app_views_tasks_index_html_erb___707385219313134330_70180745745000' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (51.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.7ms) + + +Started GET "/" for ::1 at 2016-10-05 09:13:03 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (26.4ms) +Completed 500 Internal Server Error in 31ms (ActiveRecord: 0.3ms) + +ActionView::Template::Error (undefined local variable or method `new_task_path' for #<#:0x007fa87311ec98> +Did you mean? task_index_path + task_path): + 1:

        <%= link_to "Click here to create a new task!", new_task_path %>

        + 2: + 3:
        + 4: + app/views/tasks/index.html.erb:1:in `_app_views_tasks_index_html_erb___707385219313134330_70180745745000' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (45.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.7ms) + Task Load (7.7ms) SELECT "tasks".* FROM "tasks" + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."id" BETWEEN 2 AND 7) + + +Started GET "/" for ::1 at 2016-10-13 15:52:16 -0700 + ActiveRecord::SchemaMigration Load (2.0ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (2.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (18.3ms) +Completed 200 OK in 430ms (Views: 413.7ms | ActiveRecord: 2.7ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-13 15:52:17 -0700 + + +Started GET "/assets/application.self-2da4dd31ba7c299d3b44bac5a640cb610e6d4203edfd9d57092d9fcf28fe27ea.css?body=1" for ::1 at 2016-10-13 15:52:17 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-13 15:52:17 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-13 15:52:17 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-13 15:52:17 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-13 15:52:17 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-13 15:52:17 -0700 + ActiveRecord::SchemaMigration Load (2.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateUsers (20161017213941) +  (0.1ms) begin transaction +  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "uid" integer NOT NULL, "provider" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  + SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20161017213941"]] +  (2.0ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + + +Started GET "/" for ::1 at 2016-10-17 14:57:43 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.0ms) + +NoMethodError (undefined method `url' for # +Did you mean? url_for + url_options + URI): + app/controllers/tasks_controller.rb:4:in `index' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (60.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (47.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (96.9ms) + + +Started GET "/" for ::1 at 2016-10-17 15:03:11 -0700 +Processing by TasksController#index as HTML +Redirected to http://localhost:3000/session/login +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/session/login" for ::1 at 2016-10-17 15:03:11 -0700 +Processing by SessionsController#login as HTML + Rendered sessions/login.html.erb within layouts/application (11.9ms) +Completed 500 Internal Server Error in 20ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `url' for #<#:0x007fb6eeb78750> +Did you mean? url_for + url_field + url_encode + url_options + url_to_font + url_to_audio + url_to_video + url_to_asset + url_to_image + url_field_tag + url_to_stylesheet + url_to_javascript + u + URI): + 1:

        Welcome to Task List

        + 2:

        Get your shit together ®

        + 3: + 4: <%= link_to url ('http://localhost:3000/auth/github') do %> + 5:

        LOGIN HERE

        + 6: <% end %> + app/views/sessions/login.html.erb:4:in `_app_views_sessions_login_html_erb___2808538734246734159_70211832876600' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (50.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.6ms) + + +Started GET "/session/login" for ::1 at 2016-10-17 15:04:00 -0700 +Processing by SessionsController#login as HTML + Rendered sessions/login.html.erb within layouts/application (11.2ms) +Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `url' for #<#:0x007fb6ed097b48> +Did you mean? url_for + url_field + url_encode + url_options + url_to_font + url_to_audio + url_to_video + url_to_asset + url_to_image + url_field_tag + url_to_stylesheet + url_to_javascript + u + URI): + 1:

        Welcome to Task List

        + 2:

        Get your shit together ®

        + 3: + 4: <%= link_to url ('http://localhost:3000/auth/github') do %> + 5:

        LOGIN HERE

        + 6: <% end %> + app/views/sessions/login.html.erb:4:in `_app_views_sessions_login_html_erb___2808538734246734159_70211832876600' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (43.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.3ms) + + +Started GET "/session/login" for ::1 at 2016-10-17 15:04:08 -0700 +Processing by SessionsController#login as HTML + Rendered sessions/login.html.erb within layouts/application (14.3ms) +Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `url' for #<#:0x007fb6ee8da688> +Did you mean? url_for + url_field + url_encode + url_options + url_to_font + url_to_audio + url_to_video + url_to_asset + url_to_image + url_field_tag + url_to_stylesheet + url_to_javascript + u + URI): + 1:

        Welcome to Task List

        + 2:

        Get your shit together ®

        + 3: + 4: <%= link_to url('http://localhost:3000/auth/github') do %> + 5:

        LOGIN HERE

        + 6: <% end %> + app/views/sessions/login.html.erb:4:in `_app_views_sessions_login_html_erb___2808538734246734159_70211831503260' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (9.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (52.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.6ms) + + +Started GET "/session/login" for ::1 at 2016-10-17 15:05:26 -0700 +Processing by SessionsController#login as HTML + Rendered sessions/login.html.erb within layouts/application (1.1ms) +Completed 200 OK in 453ms (Views: 452.0ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-17 15:05:27 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-17 15:05:27 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-17 15:05:27 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-17 15:05:27 -0700 + + +Started GET "/assets/application.self-2da4dd31ba7c299d3b44bac5a640cb610e6d4203edfd9d57092d9fcf28fe27ea.css?body=1" for ::1 at 2016-10-17 15:05:27 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-17 15:05:27 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-17 15:05:27 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-17 15:05:27 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-17 15:05:27 -0700 + + +Started GET "/session/login" for ::1 at 2016-10-17 15:05:42 -0700 +Processing by SessionsController#login as HTML + Rendered sessions/login.html.erb within layouts/application (0.5ms) +Completed 200 OK in 32ms (Views: 32.0ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-17 15:05:42 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-17 15:05:42 -0700 + + +Started GET "/assets/application.self-2da4dd31ba7c299d3b44bac5a640cb610e6d4203edfd9d57092d9fcf28fe27ea.css?body=1" for ::1 at 2016-10-17 15:05:42 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-17 15:05:42 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-17 15:05:42 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-17 15:05:42 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-17 15:05:42 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-17 15:05:42 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-17 15:05:42 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-17 15:05:50 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-17 15:05:51 -0700 + + +Started GET "/auth/github/callback?code=0367d08eccbb6d37c43b&state=c5008d9686338406ae17755eae18938051ed44640603e610" for ::1 at 2016-10-17 15:05:54 -0700 +Processing by SessionsController#create as HTML + Parameters: {"code"=>"0367d08eccbb6d37c43b", "state"=>"c5008d9686338406ae17755eae18938051ed44640603e610", "provider"=>"github"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", 17463068], ["provider", "github"]] +Completed 500 Internal Server Error in 35ms (ActiveRecord: 0.7ms) + +NoMethodError (undefined method `create_from_github' for # +Did you mean? create_with): + app/controllers/sessions_controller.rb:16:in `create' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (49.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (35.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (78.6ms) + + +Started GET "/" for ::1 at 2016-10-17 15:07:15 -0700 +Processing by TasksController#index as HTML +Redirected to http://localhost:3000/session/login +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/session/login" for ::1 at 2016-10-17 15:07:15 -0700 +Processing by SessionsController#login as HTML + Rendered sessions/login.html.erb within layouts/application (0.1ms) +Completed 200 OK in 14ms (Views: 13.8ms | ActiveRecord: 0.0ms) + + +Started GET "/auth/github" for ::1 at 2016-10-17 15:07:18 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-17 15:07:18 -0700 + + +Started GET "/auth/github/callback?code=d94848386ff835b0a267&state=6c30ac3226c5e032afff1a4c6db2dfe45b8ce2998eec9fb3" for ::1 at 2016-10-17 15:07:19 -0700 +Processing by SessionsController#create as HTML + Parameters: {"code"=>"d94848386ff835b0a267", "state"=>"6c30ac3226c5e032afff1a4c6db2dfe45b8ce2998eec9fb3", "provider"=>"github"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", 17463068], ["provider", "github"]] +Completed 500 Internal Server Error in 22ms (ActiveRecord: 0.7ms) + +NoMethodError (undefined method `create_from_github' for # +Did you mean? create_with): + app/controllers/sessions_controller.rb:16:in `create' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (8.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (54.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.7ms) + + +Started GET "/" for ::1 at 2016-10-17 15:07:52 -0700 +Processing by TasksController#index as HTML +Redirected to http://localhost:3000/session/login +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/session/login" for ::1 at 2016-10-17 15:07:52 -0700 +Processing by SessionsController#login as HTML + Rendered sessions/login.html.erb within layouts/application (0.1ms) +Completed 200 OK in 14ms (Views: 13.7ms | ActiveRecord: 0.0ms) + + +Started GET "/auth/github" for ::1 at 2016-10-17 15:07:54 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-17 15:07:55 -0700 + + +Started GET "/auth/github/callback?code=65617426cb27e9f7dc6e&state=5738a1e1bd453e2eb7992dc3b55283416296124072ca207b" for ::1 at 2016-10-17 15:07:55 -0700 +Processing by SessionsController#create as HTML + Parameters: {"code"=>"65617426cb27e9f7dc6e", "state"=>"5738a1e1bd453e2eb7992dc3b55283416296124072ca207b", "provider"=>"github"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", 17463068], ["provider", "github"]] +  (0.1ms) begin transaction + SQL (0.8ms) INSERT INTO "users" ("uid", "provider", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", 17463068], ["provider", "github"], ["name", "Nicole"], ["email", "nicole.url.4@gmail.com"], ["created_at", "2016-10-17 22:07:56.876540"], ["updated_at", "2016-10-17 22:07:56.876540"]] +  (2.3ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 22ms (ActiveRecord: 3.9ms) + + +Started GET "/" for ::1 at 2016-10-17 15:07:56 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (16.3ms) +Completed 200 OK in 40ms (Views: 37.1ms | ActiveRecord: 0.8ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-17 15:07:56 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-17 15:07:56 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-17 15:07:56 -0700 + + +Started GET "/assets/application.self-2da4dd31ba7c299d3b44bac5a640cb610e6d4203edfd9d57092d9fcf28fe27ea.css?body=1" for ::1 at 2016-10-17 15:07:56 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-17 15:07:56 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-17 15:07:56 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-17 15:07:57 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-17 15:07:57 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-17 15:07:57 -0700 + + +Started GET "/" for ::1 at 2016-10-17 15:13:09 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (6.1ms) +Completed 200 OK in 28ms (Views: 25.7ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-17 15:13:09 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-17 15:13:09 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-17 15:13:09 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-17 15:13:09 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-17 15:13:09 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-17 15:13:09 -0700 + + +Started GET "/assets/application.self-2da4dd31ba7c299d3b44bac5a640cb610e6d4203edfd9d57092d9fcf28fe27ea.css?body=1" for ::1 at 2016-10-17 15:13:09 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-17 15:13:09 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-17 15:13:09 -0700 + + +Started GET "/" for ::1 at 2016-10-17 15:14:24 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (6.5ms) +Completed 200 OK in 22ms (Views: 20.5ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-17 15:14:24 -0700 + + +Started GET "/assets/application.self-2da4dd31ba7c299d3b44bac5a640cb610e6d4203edfd9d57092d9fcf28fe27ea.css?body=1" for ::1 at 2016-10-17 15:14:24 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-17 15:14:24 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-17 15:14:24 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-17 15:14:24 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-17 15:14:24 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-17 15:14:24 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-17 15:14:24 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-17 15:14:24 -0700 + + +Started GET "/sessions" for ::1 at 2016-10-17 15:14:27 -0700 + +ActionController::RoutingError (No route matches [GET] "/sessions"): + 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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (70.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (46.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.4ms) + + +Started GET "/tasks" for ::1 at 2016-10-17 15:15:29 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (5.7ms) +Completed 200 OK in 20ms (Views: 19.0ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2016-10-17 15:23:03 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (8.5ms) +Completed 200 OK in 31ms (Views: 29.1ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-17 15:23:03 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-17 15:23:03 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-17 15:23:03 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-17 15:23:03 -0700 + + +Started GET "/assets/application.self-2da4dd31ba7c299d3b44bac5a640cb610e6d4203edfd9d57092d9fcf28fe27ea.css?body=1" for ::1 at 2016-10-17 15:23:03 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-17 15:23:03 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-17 15:23:03 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-17 15:23:03 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-17 15:23:03 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-10-17 15:23:05 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (17.0ms) +Completed 200 OK in 36ms (Views: 35.7ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-10-17 15:23:14 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"I+ge9l4Htm5fWPvdlKJE0kFO+QiE2unQqehSj8Gq5ipqbOMKrrBYV5IhLtet8W9bwlwjelUCQLxZy9y4ZBUACA==", "task"=>{"name"=>"Learn Rails", "description"=>"No pressure", "completed_at"=>""}, "commit"=>"Submit your task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Learn Rails"], ["description", "No pressure"], ["created_at", "2016-10-17 22:23:14.883165"], ["updated_at", "2016-10-17 22:23:14.883165"]] +  (2.4ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Completed 500 Internal Server Error in 7ms (ActiveRecord: 2.9ms) + +ActionController::UrlGenerationError (No route matches {:action=>"show", :controller=>"tasks"} missing required keys: [:id]): + app/controllers/tasks_controller.rb:24:in `create' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (46.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.2ms) + + +Started GET "/tasks/new" for ::1 at 2016-10-17 15:23:38 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.5ms) +Completed 200 OK in 27ms (Views: 22.2ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-17 15:23:38 -0700 + + +Started GET "/assets/application.self-2da4dd31ba7c299d3b44bac5a640cb610e6d4203edfd9d57092d9fcf28fe27ea.css?body=1" for ::1 at 2016-10-17 15:23:38 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-17 15:23:38 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-17 15:23:38 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-17 15:23:38 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-17 15:23:38 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-17 15:23:38 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-17 15:23:38 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-17 15:23:38 -0700 + + +Started POST "/tasks" for ::1 at 2016-10-17 15:23:47 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"r0Ba5LxXOe6LkIFZc5Affe3L4Fqz8deVTmsy0XLeyY7mxKcYTODX10bpVFNKwzT0btk6KGIpfvm+SLzm12EvrA==", "task"=>{"name"=>"Learn rails", "description"=>"probably ASAP", "completed_at"=>""}, "commit"=>"Submit your task"} +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Learn rails"], ["description", "probably ASAP"], ["created_at", "2016-10-17 22:23:47.166034"], ["updated_at", "2016-10-17 22:23:47.166034"]] +  (3.6ms) commit transaction +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks/18 +Redirected to +Completed 500 Internal Server Error in 9ms (ActiveRecord: 4.1ms) + +AbstractController::DoubleRenderError (Render and/or redirect were called multiple times in this action. Please note that you may only call render OR redirect, and at most once per action. Also note that neither redirect nor render terminate execution of the action, so if you want to exit an action after redirecting, you need to do something like "redirect_to(...) and return".): + app/controllers/tasks_controller.rb:29:in `create' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (45.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.6ms) + + +Started POST "/tasks" for ::1 at 2016-10-17 15:24:14 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"r0Ba5LxXOe6LkIFZc5Affe3L4Fqz8deVTmsy0XLeyY7mxKcYTODX10bpVFNKwzT0btk6KGIpfvm+SLzm12EvrA==", "task"=>{"name"=>"Learn rails", "description"=>"probably ASAP", "completed_at"=>""}, "commit"=>"Submit your task"} +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Learn rails"], ["description", "probably ASAP"], ["created_at", "2016-10-17 22:24:14.349763"], ["updated_at", "2016-10-17 22:24:14.349763"]] +  (2.3ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks/19 +Completed 302 Found in 11ms (ActiveRecord: 3.1ms) + + +Started GET "/tasks/19" for ::1 at 2016-10-17 15:24:14 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"19"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 19]] + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 19ms (Views: 17.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-10-17 15:24:19 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (11.6ms) +Completed 200 OK in 37ms (Views: 36.2ms | ActiveRecord: 0.5ms) + + +Started DELETE "/tasks/17" for ::1 at 2016-10-17 15:24:28 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"4RTYexwNPvLltFI/E7BvN9GRwkHVKrRWpLfHjiz8xmqokCWH7LrQyyjNhzUq40S+UoMYMwTyHTpUlEm5iUMgSA==", "id"=>"17"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 17]] +  (0.0ms) begin transaction + SQL (0.7ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 17]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 3.2ms) + + +Started GET "/tasks" for ::1 at 2016-10-17 15:24:28 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (6.2ms) +Completed 200 OK in 21ms (Views: 19.7ms | ActiveRecord: 0.3ms) + + +Started DELETE "/tasks/18" for ::1 at 2016-10-17 15:24:33 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"qaBdJeN/0EBa8hMizVevKaPLfc+b35AzqGOF8F1yX9fgJKDZE8g+eZeLxij0BISgINmnvUoHOV9YQAvH+M259Q==", "id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 18]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 18]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.8ms) + + +Started GET "/tasks" for ::1 at 2016-10-17 15:24:33 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (4.8ms) +Completed 200 OK in 18ms (Views: 16.6ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/5/complete" for ::1 at 2016-10-17 15:24:39 -0700 +Processing by TasksController#complete as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"oijVClLUMjTSwzMPcedz75KQCyQAvI22aIek8sFMUrvrrCj2omPcDR+65gVItFhmEYLRVtFkJNqYpCrFZPO0mQ==", "commit"=>"DID IT!", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 5]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-10-17"], ["updated_at", "2016-10-17 22:24:39.705358"], ["id", 5]] +  (3.2ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 12ms (ActiveRecord: 3.7ms) + + +Started GET "/" for ::1 at 2016-10-17 15:24:39 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.2ms) + + +Started GET "/sessions" for ::1 at 2016-10-17 15:24:53 -0700 + +ActionController::RoutingError (No route matches [GET] "/sessions"): + 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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (56.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (82.8ms) + + +Started GET "/" for ::1 at 2016-10-17 15:28:14 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (8.3ms) +Completed 200 OK in 24ms (Views: 21.4ms | ActiveRecord: 0.7ms) + + +Started GET "/session" for ::1 at 2016-10-17 15:28:16 -0700 + +ActionController::RoutingError (No route matches [GET] "/session"): + 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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (65.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (47.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.0ms) + + +Started GET "/" for ::1 at 2016-10-20 13:21:25 -0700 + ActiveRecord::SchemaMigration Load (2.0ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML +Redirected to http://localhost:3000/session/login +Completed 302 Found in 19ms (ActiveRecord: 0.0ms) + + +Started GET "/session/login" for ::1 at 2016-10-20 13:21:26 -0700 +Processing by SessionsController#login as HTML + Rendered sessions/login.html.erb within layouts/application (4.3ms) +Completed 200 OK in 423ms (Views: 422.3ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-20 13:21:27 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-20 13:21:27 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-20 13:21:27 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-20 13:21:27 -0700 + + +Started GET "/assets/application.self-2da4dd31ba7c299d3b44bac5a640cb610e6d4203edfd9d57092d9fcf28fe27ea.css?body=1" for ::1 at 2016-10-20 13:21:27 -0700 + + +Started GET "/session/login" for ::1 at 2016-10-20 13:30:32 -0700 +Processing by SessionsController#login as HTML + Rendered sessions/login.html.erb within layouts/application (0.1ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-20 13:30:32 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-20 13:30:32 -0700 + + +Started GET "/assets/application.self-2da4dd31ba7c299d3b44bac5a640cb610e6d4203edfd9d57092d9fcf28fe27ea.css?body=1" for ::1 at 2016-10-20 13:30:32 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-20 13:30:33 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-20 13:30:33 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-20 13:30:33 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-20 13:30:33 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-20 13:30:33 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-20 13:30:33 -0700 + + +Started GET "/tasks" for ::1 at 2016-10-20 13:31:39 -0700 +Processing by TasksController#index as HTML +Redirected to http://localhost:3000/session/login +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/session/login" for ::1 at 2016-10-20 13:31:39 -0700 +Processing by SessionsController#login as HTML + Rendered sessions/login.html.erb within layouts/application (0.1ms) +Completed 200 OK in 33ms (Views: 32.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/1" for ::1 at 2016-10-20 13:31:46 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (2.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (1.7ms) +Completed 200 OK in 59ms (Views: 20.7ms | ActiveRecord: 2.8ms) + + +Started GET "/tasks/1" for ::1 at 2016-10-20 13:53:10 -0700 + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/controllers/tasks_controller.rb:75: syntax error, unexpected keyword_end, expecting end-of-input): + app/controllers/tasks_controller.rb:75: syntax error, unexpected keyword_end, expecting end-of-input + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (71.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (86.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (179.6ms) + + +Started GET "/tasks/1" for ::1 at 2016-10-20 13:53:17 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} +Redirected to http://localhost:3000/session/login +Filter chain halted as :logged_in? rendered or redirected +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/session/login" for ::1 at 2016-10-20 13:53:17 -0700 +Processing by SessionsController#login as HTML + Rendered sessions/login.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-20 13:53:17 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-20 13:53:17 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-20 13:53:17 -0700 + + +Started GET "/assets/application.self-2da4dd31ba7c299d3b44bac5a640cb610e6d4203edfd9d57092d9fcf28fe27ea.css?body=1" for ::1 at 2016-10-20 13:53:17 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-20 13:53:17 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-20 13:53:17 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-20 13:53:17 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-20 13:53:17 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-20 13:53:17 -0700 + + +Started GET "/" for ::1 at 2016-10-20 14:09:12 -0700 +Processing by TasksController#index as HTML +Redirected to http://localhost:3000/session/login +Filter chain halted as :logged_in? rendered or redirected +Completed 302 Found in 0ms (ActiveRecord: 0.0ms) + + +Started GET "/session/login" for ::1 at 2016-10-20 14:09:12 -0700 +Processing by SessionsController#login as HTML + Rendered sessions/login.html.erb within layouts/application (0.1ms) +Completed 200 OK in 13ms (Views: 12.6ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-20 14:09:12 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-20 14:09:12 -0700 + + +Started GET "/assets/application.self-2da4dd31ba7c299d3b44bac5a640cb610e6d4203edfd9d57092d9fcf28fe27ea.css?body=1" for ::1 at 2016-10-20 14:09:12 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-20 14:09:12 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-20 14:09:12 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-20 14:09:12 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-20 14:09:12 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-20 14:09:12 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-20 14:09:12 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-20 14:09:14 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-20 14:09:14 -0700 + + +Started GET "/auth/github/callback?code=2da35c2f8650820edc22&state=fd9a8fa066e59c554409fe23e3bd3432556419e56b7e5a2b" for ::1 at 2016-10-20 14:09:19 -0700 +Processing by SessionsController#create as HTML + Parameters: {"code"=>"2da35c2f8650820edc22", "state"=>"fd9a8fa066e59c554409fe23e3bd3432556419e56b7e5a2b", "provider"=>"github"} + User Load (2.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", 17463068], ["provider", "github"]] +Redirected to http://localhost:3000/ +Completed 302 Found in 23ms (ActiveRecord: 5.1ms) + + +Started GET "/" for ::1 at 2016-10-20 14:09:20 -0700 +Processing by TasksController#index as HTML + Task Load (2.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (15.3ms) +Completed 200 OK in 41ms (Views: 33.9ms | ActiveRecord: 2.8ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-10-20 14:09:22 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/edit.html.erb within layouts/application (42.2ms) +Completed 200 OK in 61ms (Views: 59.3ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/1" for ::1 at 2016-10-20 14:09:28 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"DrBPgookzoZeBnO7YJTFbCSugbxfM9OFuGtXJSG4aFo6p3MecYkrd8u4CLoO6xztoreBGjY3ActH6XPkBut/mw==", "task"=>{"name"=>"sweep", "description"=>"sweep the kitchen and bathroom", "completed_at"=>""}, "commit"=>"Submit your edits", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for ::1 at 2016-10-20 14:09:28 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 18ms (Views: 16.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-10-20 14:09:31 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (7.5ms) +Completed 200 OK in 25ms (Views: 23.7ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/new" for ::1 at 2016-10-20 14:09:56 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (3.8ms) +Completed 200 OK in 26ms (Views: 25.3ms | ActiveRecord: 0.0ms) + + +Started GET "/session" for ::1 at 2016-10-20 14:09:58 -0700 + +ActionController::RoutingError (No route matches [GET] "/session"): + 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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (73.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (65.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (124.8ms) + ActiveRecord::SchemaMigration Load (2.4ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (6.2ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" varchar, "completed_at" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  +  (3.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "uid" integer NOT NULL, "provider" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) +  (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)  +  (3.4ms) select sqlite_version(*) +  (7.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") +  (1.0ms) SELECT version FROM "schema_migrations" +  (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20161017213941') +  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20160928205345') +  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20160928210351') +  (3.2ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" varchar, "completed_at" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) +  (3.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "uid" integer NOT NULL, "provider" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  +  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) +  (0.1ms) select sqlite_version(*) +  (3.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") +  (0.2ms) SELECT version FROM "schema_migrations" +  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20161017213941') +  (4.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20160928205345') +  (3.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20160928210351') + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.2ms) begin transaction +  (0.1ms) rollback transaction +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sdf"], ["description", "LIkjsdflk"], ["created_at", "2016-10-21 04:50:58.773292"], ["updated_at", "2016-10-21 04:50:58.773292"]] +  (2.2ms) commit transaction + Task Load (0.8ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? [[nil, 1]] +  (2.7ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" varchar, "completed_at" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  +  (2.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "uid" integer NOT NULL, "provider" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) +  (2.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)  +  (0.1ms) select sqlite_version(*) +  (2.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") +  (0.1ms) SELECT version FROM "schema_migrations" +  (3.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20161017213941') +  (3.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20160928205345') +  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20160928210351') +  (3.1ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" varchar, "completed_at" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) +  (3.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "uid" integer NOT NULL, "provider" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  +  (3.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) +  (0.1ms) select sqlite_version(*) +  (3.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") +  (0.1ms) SELECT version FROM "schema_migrations" +  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20161017213941') +  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20160928205345') +  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20160928210351') + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.1ms) begin transaction +  (0.1ms) rollback transaction +  (2.6ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" varchar, "completed_at" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  +  (2.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "uid" integer NOT NULL, "provider" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) +  (2.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)  +  (0.1ms) select sqlite_version(*) +  (2.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") +  (0.2ms) SELECT version FROM "schema_migrations" +  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20161017213941') +  (3.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20160928205345') +  (3.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20160928210351') +  (3.3ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" varchar, "completed_at" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) +  (2.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "uid" integer NOT NULL, "provider" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  +  (3.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) +  (0.1ms) select sqlite_version(*) +  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") +  (0.1ms) SELECT version FROM "schema_migrations" +  (3.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20161017213941') +  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20160928205345') +  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20160928210351') + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "users" ("email", "uid", "provider", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["email", "sdfds"], ["uid", 0], ["provider", "sdffsd"], ["created_at", "2016-10-21 05:02:47.530887"], ["updated_at", "2016-10-21 05:02:47.530887"]] +  (2.2ms) commit transaction +  (0.1ms) begin transaction + SQL (0.7ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ASdf"], ["description", "asdlkfjasdlf"], ["created_at", "2016-10-21 05:03:13.623398"], ["updated_at", "2016-10-21 05:03:13.623398"]] +  (2.2ms) commit transaction +  (0.1ms) begin transaction +  (0.1ms) rollback transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to AddUserIdToTasks (20161021050520) +  (0.1ms) begin transaction +  (0.4ms) ALTER TABLE "tasks" ADD "user_id" integer + SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20161021050520"]] +  (2.6ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + + +Started GET "/" for ::1 at 2016-10-22 16:23:32 -0700 + ActiveRecord::SchemaMigration Load (4.7ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML +Redirected to http://localhost:1444/session/login +Filter chain halted as :logged_in? rendered or redirected +Completed 302 Found in 12ms (ActiveRecord: 0.0ms) + + +Started GET "/session/login" for ::1 at 2016-10-22 16:23:32 -0700 +Processing by SessionsController#login as HTML + Rendered sessions/login.html.erb within layouts/application (4.2ms) +Completed 200 OK in 426ms (Views: 425.8ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 16:23:33 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 16:23:33 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 16:23:33 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 16:23:33 -0700 + + +Started GET "/assets/application.self-2da4dd31ba7c299d3b44bac5a640cb610e6d4203edfd9d57092d9fcf28fe27ea.css?body=1" for ::1 at 2016-10-22 16:23:33 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 16:23:33 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 16:23:33 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 16:23:33 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 16:23:33 -0700 + + +Started GET "/" for ::1 at 2016-10-22 16:23:51 -0700 +Processing by TasksController#index as HTML +Redirected to http://localhost:1444/session/login +Filter chain halted as :logged_in? rendered or redirected +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/session/login" for ::1 at 2016-10-22 16:23:51 -0700 +Processing by SessionsController#login as HTML + Rendered sessions/login.html.erb within layouts/application (0.0ms) +Completed 200 OK in 31ms (Views: 30.7ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 16:23:51 -0700 + + +Started GET "/assets/application.self-2da4dd31ba7c299d3b44bac5a640cb610e6d4203edfd9d57092d9fcf28fe27ea.css?body=1" for ::1 at 2016-10-22 16:23:51 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 16:23:51 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 16:23:51 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 16:23:51 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 16:23:51 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 16:23:51 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 16:23:51 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 16:23:51 -0700 + + +Started GET "/session/login" for ::1 at 2016-10-22 16:23:54 -0700 +Processing by SessionsController#login as HTML + Rendered sessions/login.html.erb within layouts/application (0.0ms) +Completed 200 OK in 26ms (Views: 25.3ms | ActiveRecord: 0.0ms) + + +Started GET "/session/login" for ::1 at 2016-10-22 16:23:58 -0700 +Processing by SessionsController#login as HTML + Rendered sessions/login.html.erb within layouts/application (0.0ms) +Completed 200 OK in 29ms (Views: 28.6ms | ActiveRecord: 0.0ms) + + +Started GET "/session/login" for ::1 at 2016-10-22 16:23:59 -0700 +Processing by SessionsController#login as HTML + Rendered sessions/login.html.erb within layouts/application (0.0ms) +Completed 200 OK in 26ms (Views: 25.4ms | ActiveRecord: 0.0ms) + + +Started GET "/session/login" for ::1 at 2016-10-22 16:23:59 -0700 +Processing by SessionsController#login as HTML + Rendered sessions/login.html.erb within layouts/application (0.0ms) +Completed 200 OK in 28ms (Views: 27.1ms | ActiveRecord: 0.0ms) + + +Started GET "/session/login" for ::1 at 2016-10-22 16:24:00 -0700 +Processing by SessionsController#login as HTML + Rendered sessions/login.html.erb within layouts/application (0.1ms) +Completed 200 OK in 25ms (Views: 24.2ms | ActiveRecord: 0.0ms) + + +Started GET "/session/login" for ::1 at 2016-10-22 16:27:59 -0700 +Processing by SessionsController#login as HTML + Rendered sessions/login.html.erb within layouts/application (0.0ms) +Completed 200 OK in 19ms (Views: 18.5ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 16:27:59 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 16:27:59 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 16:27:59 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 16:27:59 -0700 + + +Started GET "/assets/application.self-2da4dd31ba7c299d3b44bac5a640cb610e6d4203edfd9d57092d9fcf28fe27ea.css?body=1" for ::1 at 2016-10-22 16:27:59 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 16:27:59 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 16:27:59 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 16:27:59 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 16:27:59 -0700 + + +Started GET "/session/login" for ::1 at 2016-10-22 16:28:10 -0700 +Processing by SessionsController#login as HTML + Rendered sessions/login.html.erb within layouts/application (0.0ms) +Completed 200 OK in 17ms (Views: 17.0ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 16:28:10 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 16:28:10 -0700 + + +Started GET "/assets/application.self-2da4dd31ba7c299d3b44bac5a640cb610e6d4203edfd9d57092d9fcf28fe27ea.css?body=1" for ::1 at 2016-10-22 16:28:10 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 16:28:10 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 16:28:10 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 16:28:10 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 16:28:10 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 16:28:10 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 16:28:10 -0700 + + +Started GET "/session/login" for ::1 at 2016-10-22 16:56:34 -0700 +Processing by SessionsController#login as HTML + Rendered sessions/login.html.erb within layouts/application (0.0ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 16:56:34 -0700 + + +Started GET "/assets/application.self-2da4dd31ba7c299d3b44bac5a640cb610e6d4203edfd9d57092d9fcf28fe27ea.css?body=1" for ::1 at 2016-10-22 16:56:34 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 16:56:34 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 16:56:34 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 16:56:34 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 16:56:34 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 16:56:34 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 16:56:34 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 16:56:34 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-22 16:56:36 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-22 16:56:37 -0700 + + +Started GET "/auth/github/callback?error=redirect_uri_mismatch&error_description=The+redirect_uri+MUST+match+the+registered+callback+URL+for+this+application.&error_uri=https%3A%2F%2Fdeveloper.github.com%2Fv3%2Foauth%2F%23redirect-uri-mismatch&state=f105a7190d1e67980d5a31b4d2541140b07e49a6ac4df540" for ::1 at 2016-10-22 16:56:59 -0700 + +OmniAuth::Strategies::OAuth2::CallbackError (redirect_uri_mismatch | The redirect_uri MUST match the registered callback URL for this application. | https://developer.github.com/v3/oauth/#redirect-uri-mismatch): + 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:69: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' + 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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (59.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (72.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (146.8ms) + + +Started GET "/auth/github/callback?error=redirect_uri_mismatch&error_description=The+redirect_uri+MUST+match+the+registered+callback+URL+for+this+application.&error_uri=https%3A%2F%2Fdeveloper.github.com%2Fv3%2Foauth%2F%23redirect-uri-mismatch&state=f105a7190d1e67980d5a31b4d2541140b07e49a6ac4df540" for ::1 at 2016-10-22 16:57:41 -0700 + ActiveRecord::SchemaMigration Load (2.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + +OmniAuth::Strategies::OAuth2::CallbackError (redirect_uri_mismatch | The redirect_uri MUST match the registered callback URL for this application. | https://developer.github.com/v3/oauth/#redirect-uri-mismatch): + 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:69: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' + 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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (50.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (49.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (99.7ms) + + +Started GET "/" for ::1 at 2016-10-22 16:57:47 -0700 +Processing by TasksController#index as HTML +Redirected to http://localhost:3000/session/login +Filter chain halted as :logged_in? rendered or redirected +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/session/login" for ::1 at 2016-10-22 16:57:47 -0700 +Processing by SessionsController#login as HTML + Rendered sessions/login.html.erb within layouts/application (0.3ms) +Completed 200 OK in 363ms (Views: 362.8ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 16:57:47 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 16:57:47 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 16:57:47 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 16:57:47 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 16:57:47 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 16:57:47 -0700 + + +Started GET "/assets/application.self-2da4dd31ba7c299d3b44bac5a640cb610e6d4203edfd9d57092d9fcf28fe27ea.css?body=1" for ::1 at 2016-10-22 16:57:47 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 16:57:47 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 16:57:47 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-22 16:57:48 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-22 16:57:49 -0700 + + +Started GET "/auth/github/callback?code=a5c9ef5a5f1a3c61a9a1&state=7cf5dbb066805ffd2f67c6719c4a68bfda6ae2f0fcb9c452" for ::1 at 2016-10-22 16:57:49 -0700 +Processing by SessionsController#create as HTML + Parameters: {"code"=>"a5c9ef5a5f1a3c61a9a1", "state"=>"7cf5dbb066805ffd2f67c6719c4a68bfda6ae2f0fcb9c452", "provider"=>"github"} + User Load (2.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", 17463068], ["provider", "github"]] +  (0.1ms) begin transaction + SQL (2.5ms) INSERT INTO "users" ("uid", "provider", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", 17463068], ["provider", "github"], ["name", "Nicole"], ["email", "nicole.url.4@gmail.com"], ["created_at", "2016-10-22 23:57:51.291185"], ["updated_at", "2016-10-22 23:57:51.291185"]] +  (2.7ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 74ms (ActiveRecord: 7.8ms) + + +Started GET "/" for ::1 at 2016-10-22 16:57:51 -0700 +Processing by TasksController#index as HTML + Task Load (2.7ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (18.4ms) +Completed 200 OK in 54ms (Views: 38.9ms | ActiveRecord: 3.2ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 16:57:51 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 16:57:51 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 16:57:51 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 16:57:51 -0700 + + +Started GET "/assets/application.self-2da4dd31ba7c299d3b44bac5a640cb610e6d4203edfd9d57092d9fcf28fe27ea.css?body=1" for ::1 at 2016-10-22 16:57:51 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 16:57:51 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 16:57:51 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 16:57:51 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 16:57:51 -0700 + + +Started PATCH "/tasks/1/complete" for ::1 at 2016-10-22 16:58:00 -0700 +Processing by TasksController#complete as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"QYUSF5/TB3A8cKLmJg1LWqElCarVHI+6f69+2HMzqlVgT89dS6KEfEKQl9jViNYGRRmO4SatJM1id1y0MUGxDg==", "commit"=>"DID IT!", "id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-10-22"], ["updated_at", "2016-10-22 23:58:00.362679"], ["id", 1]] +  (3.3ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 14ms (ActiveRecord: 3.9ms) + + +Started GET "/" for ::1 at 2016-10-22 16:58:00 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 22ms (Views: 21.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2016-10-22 16:58:05 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (33.3ms) +Completed 200 OK in 51ms (Views: 50.1ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-10-22 16:58:10 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"U58vHdEqx7IL32mQPk4kSNnM7H+k7MN/zcwy+UnQbCtyVfJXBVtEvnU/XK7Ny7kUPfBrNFddaAjQFBCVC6J3cA==", "task"=>{"name"=>"fshdjfkglhikgjfhdgfd", "description"=>"fasgdfhdjf", "completed_at"=>""}, "commit"=>"Submit your task"} +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "fshdjfkglhikgjfhdgfd"], ["description", "fasgdfhdjf"], ["created_at", "2016-10-22 23:58:10.547682"], ["updated_at", "2016-10-22 23:58:10.547682"]] +  (2.3ms) commit transaction +Redirected to http://localhost:3000/tasks/2 +Completed 302 Found in 5ms (ActiveRecord: 2.6ms) + + +Started GET "/tasks/2" for ::1 at 2016-10-22 16:58:10 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 21ms (Views: 19.3ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-10-22 16:58:36 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 26ms (Views: 25.3ms | ActiveRecord: 0.4ms) + + +Started GET "/session" for ::1 at 2016-10-22 16:58:49 -0700 + +ActionController::RoutingError (No route matches [GET] "/session"): + 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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (65.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (36.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (79.2ms) + + +Started GET "/" for ::1 at 2016-10-22 17:00:23 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (5.5ms) +Completed 200 OK in 28ms (Views: 21.6ms | ActiveRecord: 1.0ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:00:23 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:00:23 -0700 + + +Started GET "/assets/application.self-2da4dd31ba7c299d3b44bac5a640cb610e6d4203edfd9d57092d9fcf28fe27ea.css?body=1" for ::1 at 2016-10-22 17:00:23 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:00:23 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:00:23 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:00:23 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:00:23 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:00:23 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:00:23 -0700 + + +Started GET "/session" for ::1 at 2016-10-22 17:00:24 -0700 + +ActionController::RoutingError (No route matches [GET] "/session"): + 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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (57.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (35.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (83.1ms) + + +Started GET "/" for ::1 at 2016-10-22 17:00:28 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:00:28 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:00:28 -0700 + + +Started GET "/assets/application.self-2da4dd31ba7c299d3b44bac5a640cb610e6d4203edfd9d57092d9fcf28fe27ea.css?body=1" for ::1 at 2016-10-22 17:00:28 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:00:28 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:00:28 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:00:28 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:00:28 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:00:28 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:00:28 -0700 + + +Started GET "/" for ::1 at 2016-10-22 17:00:30 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:00:30 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 17:00:30 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 17:00:30 -0700 + + +Started GET "/assets/application.self-2da4dd31ba7c299d3b44bac5a640cb610e6d4203edfd9d57092d9fcf28fe27ea.css?body=1" for ::1 at 2016-10-22 17:00:30 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 17:00:30 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:00:30 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 17:00:30 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 17:00:30 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 17:00:30 -0700 + + +Started GET "/session" for ::1 at 2016-10-22 17:00:32 -0700 + +ActionController::RoutingError (No route matches [GET] "/session"): + 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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (56.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (80.9ms) + Task Load (2.9ms) SELECT "tasks".* FROM "tasks" + + +Started GET "/session" for ::1 at 2016-10-22 17:11:58 -0700 + +ActionController::RoutingError (No route matches [GET] "/session"): + 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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (59.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.2ms) + + +Started GET "/" for ::1 at 2016-10-22 17:17:43 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."completed_at" IS NULL + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE ("tasks"."completed_at" IS NOT NULL) + Rendered tasks/index.html.erb within layouts/application (5.0ms) +Completed 200 OK in 31ms (Views: 19.9ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks/new" for ::1 at 2016-10-22 17:17:50 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (2.4ms) +Completed 200 OK in 28ms (Views: 27.3ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-10-22 17:17:54 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"KbS1jBukd3SVixLiUWey4u8g8QWNPsAbNN0gaMAJcPMIfmjGz9X0eOtrJ9yi4i++Cxx2Tn6Pa2wpBQIEgntrqA==", "task"=>{"name"=>"save", "description"=>"dsjlafkdj", "completed_at"=>""}, "commit"=>"Submit your task"} +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "save"], ["description", "dsjlafkdj"], ["created_at", "2016-10-23 00:17:54.990482"], ["updated_at", "2016-10-23 00:17:54.990482"]] +  (2.4ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "user_id" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["user_id", 17463068], ["updated_at", "2016-10-23 00:17:54.995228"], ["id", 3]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/tasks/3 +Completed 302 Found in 10ms (ActiveRecord: 5.5ms) + + +Started GET "/tasks/3" for ::1 at 2016-10-22 17:17:55 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 18ms (Views: 16.3ms | ActiveRecord: 0.2ms) + Task Load (1.9ms) SELECT "tasks".* FROM "tasks" + User Load (0.2ms) SELECT "users".* FROM "users" + + +Started GET "/" for ::1 at 2016-10-22 18:41:07 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (4.6ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `all_incompletes' for nil:NilClass): + 5:

        Here is a list of all your tasks:

        + 6: + 7:

        To Do:

        + 8:
          <% @tasks.all_incompletes.each do |v| %> + 9:
        • + 10:

          <%= "#{ v.name.capitalize}" %>

          + 11:
            + app/views/tasks/index.html.erb:8:in `_app_views_tasks_index_html_erb__102251811041191314_70178521646080' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (66.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (52.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (133.4ms) + + +Started GET "/" for ::1 at 2016-10-22 18:55:17 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (28.4ms) +Completed 500 Internal Server Error in 36ms (ActiveRecord: 0.7ms) + +ActionView::Template::Error (undefined method `all_incompletes' for #<#:0x007fa76fea7e78>): + 5:

            Here is a list of all your tasks:

            + 6: + 7:

            To Do:

            + 8:
              <% all_incompletes(@tasks).each do |v| %> + 9:
            • + 10:

              <%= "#{ v.name.capitalize}" %>

              + 11:
                + app/views/tasks/index.html.erb:8:in `_app_views_tasks_index_html_erb__102251811041191314_70178556949840' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (59.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (48.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (104.8ms) + + +Started GET "/" for ::1 at 2016-10-22 19:00:15 -0700 +Processing by TasksController#index as HTML +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.2ms) + +NoMethodError (undefined method `all_completes' for #): + app/controllers/tasks_controller.rb:8:in `index' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (50.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.9ms) + + +Started GET "/" for ::1 at 2016-10-22 19:00:21 -0700 +Processing by TasksController#index as HTML +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.0ms) + +NoMethodError (undefined method `all_completes' for #): + app/controllers/tasks_controller.rb:8:in `index' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (50.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.9ms) + + +Started GET "/" for ::1 at 2016-10-22 19:01:30 -0700 +Processing by TasksController#index as HTML +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/models/task.rb:12: syntax error, unexpected end-of-input, expecting keyword_end): + app/models/task.rb:12: syntax error, unexpected end-of-input, expecting keyword_end + app/controllers/tasks_controller.rb:6:in `index' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (48.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.6ms) + + +Started GET "/" for ::1 at 2016-10-22 19:01:52 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (8.7ms) +Completed 500 Internal Server Error in 18ms (ActiveRecord: 0.8ms) + +ActionView::Template::Error (undefined method `month' for nil:NilClass): + 26:

                Completed Tasks:

                + 27:
                  <% @incompleted_tasks.each do |v| %> + 28:
                • + 29:

                  <%= "#{ v.name.capitalize} (on #{ formatted_date(v) })" %>

                  + 30:
                    + 31:
                  • + 32: <%= link_to "[Details]", task_path(v) %> + app/helpers/tasks_helper.rb:11:in `formatted_date' + app/views/tasks/index.html.erb:29:in `block in _app_views_tasks_index_html_erb__102251811041191314_70178529599940' + app/views/tasks/index.html.erb:27:in `_app_views_tasks_index_html_erb__102251811041191314_70178529599940' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (48.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.3ms) + + +Started GET "/" for ::1 at 2016-10-22 19:07:54 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 62ms (Views: 60.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:07:54 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:07:54 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:07:54 -0700 + + +Started GET "/assets/application.self-2da4dd31ba7c299d3b44bac5a640cb610e6d4203edfd9d57092d9fcf28fe27ea.css?body=1" for ::1 at 2016-10-22 19:07:54 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 19:07:54 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 19:07:54 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 19:07:54 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:07:54 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 19:07:54 -0700 + + +Started GET "/" for ::1 at 2016-10-22 19:11:45 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nurl/ada/homework/rails/TaskListRails/app/views/tasks/index.html.erb:8: syntax error, unexpected tIDENTIFIER, expecting keyword_end +...>'.freeze; @in completed_tasks.each do |v| ;@output_buffer.... +... ^): + app/views/tasks/index.html.erb:8: syntax error, unexpected tIDENTIFIER, expecting keyword_end + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (64.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (66.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (136.5ms) + + +Started GET "/" for ::1 at 2016-10-22 19:11:57 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (4.8ms) +Completed 200 OK in 183ms (Views: 182.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 19:11:57 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:11:57 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:11:57 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 19:11:57 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 19:11:57 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:11:57 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:11:57 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 19:11:57 -0700 + + +Started GET "/assets/application.self-b2ed3e2f09266dbb113d76e037efc41af7ebdbc0e4e80022c34412130e266f64.css?body=1" for ::1 at 2016-10-22 19:11:57 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 19:11:57 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 19:11:57 -0700 + + +Started GET "/" for ::1 at 2016-10-22 19:20:01 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 19:20:01 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:20:01 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 19:20:01 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 19:20:01 -0700 + + +Started GET "/assets/application.self-b2ed3e2f09266dbb113d76e037efc41af7ebdbc0e4e80022c34412130e266f64.css?body=1" for ::1 at 2016-10-22 19:20:01 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:20:01 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:20:01 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:20:01 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 19:20:01 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 19:20:01 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 19:20:01 -0700 + + +Started GET "/" for ::1 at 2016-10-22 19:20:51 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (5.5ms) +Completed 200 OK in 25ms (Views: 23.8ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 19:20:51 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:20:51 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 19:20:51 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 19:20:51 -0700 + + +Started GET "/assets/application.self-b2ed3e2f09266dbb113d76e037efc41af7ebdbc0e4e80022c34412130e266f64.css?body=1" for ::1 at 2016-10-22 19:20:51 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 19:20:51 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:20:51 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:20:51 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:20:51 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 19:20:51 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 19:20:51 -0700 + + +Started PATCH "/tasks/3/complete" for ::1 at 2016-10-22 19:21:14 -0700 +Processing by TasksController#complete as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"wRnIn4R/dJ2MxWhX89utJsayM32VkA65nATWh8aS087g0xXVUA73kfIlXWkAXjB6Io60NmYhpc6B3PTrhODIlQ==", "commit"=>"Completed!", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-10-22"], ["updated_at", "2016-10-23 02:21:14.519418"], ["id", 3]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 3.0ms) + + +Started GET "/" for ::1 at 2016-10-22 19:21:14 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 22ms (Views: 21.1ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 19:21:14 -0700 + + +Started GET "/" for ::1 at 2016-10-22 19:21:52 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 18ms (Views: 17.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 19:21:52 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:21:52 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 19:21:52 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 19:21:52 -0700 + + +Started GET "/assets/application.self-b2ed3e2f09266dbb113d76e037efc41af7ebdbc0e4e80022c34412130e266f64.css?body=1" for ::1 at 2016-10-22 19:21:52 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 19:21:52 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:21:52 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:21:52 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:21:52 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 19:21:52 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 19:21:52 -0700 + + +Started GET "/" for ::1 at 2016-10-22 19:22:42 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 23ms (Views: 21.8ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 19:22:42 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:22:42 -0700 + + +Started GET "/assets/application.self-b2ed3e2f09266dbb113d76e037efc41af7ebdbc0e4e80022c34412130e266f64.css?body=1" for ::1 at 2016-10-22 19:22:42 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 19:22:42 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:22:42 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:22:42 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 19:22:42 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 19:22:42 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:22:42 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 19:22:42 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 19:22:42 -0700 + + +Started GET "/" for ::1 at 2016-10-22 19:24:09 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 23ms (Views: 22.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 19:24:09 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:24:09 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 19:24:09 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 19:24:09 -0700 + + +Started GET "/assets/application.self-b2ed3e2f09266dbb113d76e037efc41af7ebdbc0e4e80022c34412130e266f64.css?body=1" for ::1 at 2016-10-22 19:24:09 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 19:24:09 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:24:09 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:24:09 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:24:09 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 19:24:09 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 19:24:09 -0700 + + +Started GET "/" for ::1 at 2016-10-22 19:26:16 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 27ms (Views: 25.7ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 19:26:17 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:26:17 -0700 + + +Started GET "/assets/application.self-b2ed3e2f09266dbb113d76e037efc41af7ebdbc0e4e80022c34412130e266f64.css?body=1" for ::1 at 2016-10-22 19:26:17 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:26:17 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 19:26:17 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 19:26:17 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:26:17 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 19:26:17 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:26:17 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 19:26:17 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 19:26:17 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-10-22 19:26:31 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (4.0ms) +Completed 200 OK in 56ms (Views: 55.0ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-10-22 19:26:42 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"x7WdobAGLy+xXqWq7q/uXHp+xSCrWLFIxBOvM7U93Lfmf0DrZHesI8++kJQdKnMAnkJCa1jpGj/Zy41f90/H7A==", "task"=>{"name"=>"WERK IT", "description"=>"????", "completed_at"=>""}, "commit"=>"Submit your task"} +  (0.1ms) begin transaction + SQL (0.9ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "WERK IT"], ["description", "????"], ["created_at", "2016-10-23 02:26:42.237189"], ["updated_at", "2016-10-23 02:26:42.237189"]] +  (2.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "user_id" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["user_id", 17463068], ["updated_at", "2016-10-23 02:26:42.243551"], ["id", 4]] +  (2.3ms) commit transaction +Redirected to http://localhost:3000/tasks/4 +Completed 302 Found in 12ms (ActiveRecord: 6.3ms) + + +Started GET "/tasks/4" for ::1 at 2016-10-22 19:26:42 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"4"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 4]] + Rendered tasks/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 26ms (Views: 24.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 19:26:42 -0700 + + +Started GET "/" for ::1 at 2016-10-22 19:26:46 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (5.4ms) +Completed 200 OK in 31ms (Views: 29.3ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-10-22 19:27:16 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (7.0ms) +Completed 200 OK in 22ms (Views: 20.7ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:27:16 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 19:27:16 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 19:27:16 -0700 + + +Started GET "/assets/application.self-b2ed3e2f09266dbb113d76e037efc41af7ebdbc0e4e80022c34412130e266f64.css?body=1" for ::1 at 2016-10-22 19:27:16 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:27:16 -0700 + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 19:27:16 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 19:27:16 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:27:16 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:27:16 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 19:27:16 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 19:27:16 -0700 + + +Started GET "/" for ::1 at 2016-10-22 19:29:01 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 63ms (Views: 62.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 19:29:01 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:29:01 -0700 + + +Started GET "/assets/application.self-b2ed3e2f09266dbb113d76e037efc41af7ebdbc0e4e80022c34412130e266f64.css?body=1" for ::1 at 2016-10-22 19:29:01 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:29:01 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 19:29:01 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:29:01 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 19:29:01 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 19:29:01 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:29:01 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 19:29:01 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 19:29:02 -0700 + + +Started GET "/" for ::1 at 2016-10-22 19:33:26 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 84ms (Views: 83.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:33:26 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:33:26 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 19:33:26 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 19:33:26 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 19:33:26 -0700 + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 19:33:26 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:33:26 -0700 + + +Started GET "/assets/application.self-635d34f7c6a4915a77e615ee892b1abd4037824f449c83246ac01ab75bd253c8.css?body=1" for ::1 at 2016-10-22 19:33:26 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:33:26 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 19:33:26 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 19:33:26 -0700 + + +Started GET "/" for ::1 at 2016-10-22 19:33:49 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 42ms (Views: 41.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 19:33:49 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:33:49 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:33:49 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 19:33:49 -0700 + + +Started GET "/assets/application.self-de4774d1183a48bf9041164e37cfd6da9c35e9ff97bf4b5ced4c70ddd49d3e00.css?body=1" for ::1 at 2016-10-22 19:33:49 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:33:49 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 19:33:49 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 19:33:49 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 19:33:49 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:33:49 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 19:33:49 -0700 + + +Started GET "/" for ::1 at 2016-10-22 19:34:25 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 46ms (Views: 44.7ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:34:25 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 19:34:25 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:34:25 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 19:34:25 -0700 + + +Started GET "/assets/application.self-453c806d5f7fa02dd2cbdb38b939e1bd5b3635ee5e068af1715fe996ab77427c.css?body=1" for ::1 at 2016-10-22 19:34:25 -0700 + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 19:34:25 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 19:34:25 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:34:25 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:34:25 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 19:34:25 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 19:34:25 -0700 + + +Started GET "/" for ::1 at 2016-10-22 19:35:04 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 37ms (Views: 35.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 19:35:04 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:35:04 -0700 + + +Started GET "/assets/application.self-391dc2ce8e8b68c5ac393ca575cc8310c2a972e09207079d2fae53907bb4664d.css?body=1" for ::1 at 2016-10-22 19:35:04 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:35:04 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:35:04 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:35:04 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 19:35:04 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 19:35:04 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 19:35:04 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 19:35:04 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 19:35:04 -0700 + + +Started GET "/" for ::1 at 2016-10-22 19:36:43 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 28ms (Views: 26.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 19:36:43 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:36:43 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 19:36:43 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:36:43 -0700 + + +Started GET "/assets/application.self-391dc2ce8e8b68c5ac393ca575cc8310c2a972e09207079d2fae53907bb4664d.css?body=1" for ::1 at 2016-10-22 19:36:43 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 19:36:43 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 19:36:43 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:36:43 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 19:36:43 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:36:43 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 19:36:43 -0700 + + +Started GET "/" for ::1 at 2016-10-22 19:43:04 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 80ms (Views: 79.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:43:04 -0700 + + +Started GET "/assets/application.self-1d00a7f4196433e456311785eb91a50b6ed4df59e120ee17b326a089564f9d0b.css?body=1" for ::1 at 2016-10-22 19:43:04 -0700 + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 19:43:04 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 19:43:04 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:43:04 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 19:43:04 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 19:43:04 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 19:43:04 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 19:43:04 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:43:04 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:43:04 -0700 + + +Started GET "/" for ::1 at 2016-10-22 19:44:23 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 85ms (Views: 84.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:44:23 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:44:23 -0700 + + +Started GET "/assets/application.self-c888624b5b62a8422d9f2a02c1717cdec3c2de34e14b6420cf62dd81b0d672cc.css?body=1" for ::1 at 2016-10-22 19:44:23 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 19:44:23 -0700 + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 19:44:23 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:44:23 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:44:23 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 19:44:23 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 19:44:23 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 19:44:23 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 19:44:23 -0700 + + +Started GET "/" for ::1 at 2016-10-22 19:45:56 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 60ms (Views: 59.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 19:45:56 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:45:56 -0700 + + +Started GET "/assets/application.self-fe6c5dc6d0b4a2f206f6b3dc398a30fec3ba5cb2f7fc3beaee60de58b3088abf.css?body=1" for ::1 at 2016-10-22 19:45:56 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 19:45:56 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 19:45:56 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:45:56 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 19:45:56 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:45:56 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:45:56 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 19:45:56 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 19:45:56 -0700 + + +Started GET "/" for ::1 at 2016-10-22 19:46:56 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 94ms (Views: 92.6ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 19:46:56 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 19:46:56 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 19:46:56 -0700 + + +Started GET "/assets/application.self-7423dafae0c00b8777768d6dc868657eadca7eac9d2935343ff97cf4b7ad5e27.css?body=1" for ::1 at 2016-10-22 19:46:56 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:46:56 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:46:56 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 19:46:56 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:46:56 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:46:56 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 19:46:56 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 19:46:56 -0700 + + +Started GET "/" for ::1 at 2016-10-22 19:47:28 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 76ms (Views: 73.8ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 19:47:28 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:47:28 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 19:47:28 -0700 + + +Started GET "/assets/application.self-f6be7d782e3e43bfe870e44e0e7f34357d69b11e68e8e796ef2fbb83487bb3ee.css?body=1" for ::1 at 2016-10-22 19:47:28 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 19:47:28 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 19:47:28 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:47:28 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:47:28 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:47:28 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 19:47:28 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 19:47:28 -0700 + + +Started GET "/" for ::1 at 2016-10-22 19:47:53 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 43ms (Views: 42.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 19:47:53 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:47:53 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 19:47:53 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:47:53 -0700 + + +Started GET "/assets/application.self-ce3e4035c2ccd9d96732d3de8d65ed5a7e24f7ab8277269c3b7c2484c3620698.css?body=1" for ::1 at 2016-10-22 19:47:53 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 19:47:53 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 19:47:53 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:47:53 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:47:53 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 19:47:53 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 19:47:53 -0700 + + +Started GET "/" for ::1 at 2016-10-22 19:48:19 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 42ms (Views: 41.0ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:48:20 -0700 + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 19:48:20 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 19:48:20 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 19:48:20 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:48:20 -0700 + + +Started GET "/assets/application.self-8fccf7d168f67b200857eea82a114c9b6fef4ce0cf59b62d0b7a984bdc1108e5.css?body=1" for ::1 at 2016-10-22 19:48:20 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 19:48:20 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:48:20 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:48:20 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 19:48:20 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 19:48:20 -0700 + + +Started GET "/" for ::1 at 2016-10-22 19:48:52 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 70ms (Views: 68.1ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 19:48:52 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:48:52 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:48:52 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 19:48:52 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 19:48:52 -0700 + + +Started GET "/assets/application.self-06bb9b0e145a5a6709b70dabb11cb2f56da28b46e9e829d3e302d3cf1bc2de28.css?body=1" for ::1 at 2016-10-22 19:48:52 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:48:52 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 19:48:52 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:48:52 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 19:48:52 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 19:48:52 -0700 + + +Started GET "/" for ::1 at 2016-10-22 19:49:57 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 61ms (Views: 60.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 19:49:57 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:49:57 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 19:49:57 -0700 + + +Started GET "/assets/application.self-1c66c97ed637a1542583bff51842b21b147c96ce1dc335e751a9fa4615322980.css?body=1" for ::1 at 2016-10-22 19:49:57 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:49:57 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 19:49:57 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:49:57 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:49:57 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 19:49:57 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 19:49:57 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 19:49:57 -0700 + + +Started GET "/" for ::1 at 2016-10-22 19:51:24 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 43ms (Views: 42.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 19:51:24 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:51:24 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 19:51:24 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 19:51:24 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 19:51:24 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:51:24 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:51:24 -0700 + + +Started GET "/assets/application.self-33fc52d23dfc26bc42a0f15e461e9833b9fe579ed3ff53b9e14fc2e6e17911c6.css?body=1" for ::1 at 2016-10-22 19:51:24 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:51:24 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 19:51:24 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 19:51:24 -0700 + + +Started GET "/" for ::1 at 2016-10-22 19:51:41 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 61ms (Views: 59.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 19:51:41 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:51:41 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:51:41 -0700 + + +Started GET "/assets/application.self-a0caa13be34a7aa97db342d4db63c48f35e47816cb8b6a4708ae9ab8e4e0b3a8.css?body=1" for ::1 at 2016-10-22 19:51:41 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:51:41 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:51:41 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 19:51:41 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 19:51:41 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 19:51:41 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 19:51:41 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 19:51:41 -0700 + + +Started GET "/" for ::1 at 2016-10-22 19:52:52 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 42ms (Views: 41.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 19:52:52 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:52:52 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:52:52 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 19:52:52 -0700 + + +Started GET "/assets/application.self-e2790411a4f230464d7d17ba4b9d84e778a2e55f810cdfd4135bd5d0177ba4d5.css?body=1" for ::1 at 2016-10-22 19:52:52 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 19:52:52 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:52:52 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 19:52:52 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:52:52 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 19:52:52 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 19:52:52 -0700 + + +Started GET "/" for ::1 at 2016-10-22 19:53:02 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 20ms (Views: 19.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 19:53:02 -0700 + + +Started GET "/assets/application.self-e2790411a4f230464d7d17ba4b9d84e778a2e55f810cdfd4135bd5d0177ba4d5.css?body=1" for ::1 at 2016-10-22 19:53:02 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:53:02 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 19:53:02 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:53:02 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 19:53:02 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:53:02 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 19:53:02 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:53:02 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 19:53:02 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 19:53:02 -0700 + + +Started GET "/" for ::1 at 2016-10-22 19:54:01 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 70ms (Views: 69.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 19:54:01 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 19:54:01 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:54:01 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:54:01 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:54:01 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 19:54:01 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 19:54:01 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 19:54:01 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:54:01 -0700 + + +Started GET "/assets/application.self-66be890edf088d036953f3c368805d63d2203e8a82aa302f3b46a4d4874b353a.css?body=1" for ::1 at 2016-10-22 19:54:01 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 19:54:01 -0700 + + +Started GET "/" for ::1 at 2016-10-22 19:58:15 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 74ms (Views: 73.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 19:58:15 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 19:58:15 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:58:15 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:58:15 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 19:58:15 -0700 + + +Started GET "/assets/application.self-9461613a8fcb990f3169a30933388b848829b98ac270a45a1090a585a347aa29.css?body=1" for ::1 at 2016-10-22 19:58:15 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 19:58:15 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:58:15 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:58:15 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 19:58:15 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 19:58:15 -0700 + + +Started GET "/" for ::1 at 2016-10-22 19:58:54 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 41ms (Views: 40.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 19:58:54 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:58:54 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 19:58:54 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 19:58:54 -0700 + + +Started GET "/assets/application.self-34ed835b491f81c1bc7c4306e36751aa816e43b60b3888c15cd9c3e22cc95312.css?body=1" for ::1 at 2016-10-22 19:58:54 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:58:54 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:58:54 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:58:54 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 19:58:54 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 19:58:54 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 19:58:54 -0700 + + +Started GET "/" for ::1 at 2016-10-22 19:59:16 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 60ms (Views: 59.6ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 19:59:16 -0700 + + +Started GET "/assets/application.self-c6a64f1727a8779fe2c4498ec31a2d29d87e74e39d140857e742d6079fc2c338.css?body=1" for ::1 at 2016-10-22 19:59:16 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:59:16 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 19:59:16 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 19:59:16 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:59:16 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 19:59:16 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:59:16 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:59:17 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 19:59:17 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 19:59:17 -0700 + + +Started GET "/" for ::1 at 2016-10-22 19:59:36 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 38ms (Views: 36.6ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 19:59:36 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:59:36 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:59:36 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 19:59:36 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:59:36 -0700 + + +Started GET "/assets/application.self-1d4d288911f4700cd06827b96995944aa4072fa6076d10428a149dce81c222d0.css?body=1" for ::1 at 2016-10-22 19:59:36 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:59:36 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 19:59:36 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 19:59:36 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 19:59:36 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 19:59:36 -0700 + + +Started GET "/" for ::1 at 2016-10-22 19:59:56 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 79ms (Views: 78.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 19:59:57 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:59:57 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 19:59:57 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 19:59:57 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 19:59:57 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 19:59:57 -0700 + + +Started GET "/assets/application.self-46709ac4195b35d905e53e430d0ff14814343a517c2a11230342121931a09406.css?body=1" for ::1 at 2016-10-22 19:59:57 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:59:57 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 19:59:57 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 19:59:57 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 19:59:57 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:01:10 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 32ms (Views: 30.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:01:10 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:01:10 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:01:10 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:01:10 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:01:10 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:01:10 -0700 + + +Started GET "/assets/application.self-93b687aeb3cc9f60c6cdf064f8d06ecceb6d978b674f60d16a68094f756ec7eb.css?body=1" for ::1 at 2016-10-22 20:01:10 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:01:10 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:01:10 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:01:10 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:01:10 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:01:24 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 25ms (Views: 24.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:01:24 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:01:24 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:01:24 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:01:24 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:01:24 -0700 + + +Started GET "/assets/application.self-1d4d288911f4700cd06827b96995944aa4072fa6076d10428a149dce81c222d0.css?body=1" for ::1 at 2016-10-22 20:01:24 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:01:24 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:01:24 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:01:24 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:01:24 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:01:24 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:02:59 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 50ms (Views: 49.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:03:00 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:03:00 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:03:00 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:03:00 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:03:00 -0700 + + +Started GET "/assets/application.self-509743b7da60f631e9ccf766bded3812adbaacf7224d01731517a7a69850e1c8.css?body=1" for ::1 at 2016-10-22 20:03:00 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:03:00 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:03:00 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:03:00 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:03:00 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:03:00 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:04:37 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 20ms (Views: 18.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:04:37 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:04:37 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:04:37 -0700 + + +Started GET "/assets/application.self-509743b7da60f631e9ccf766bded3812adbaacf7224d01731517a7a69850e1c8.css?body=1" for ::1 at 2016-10-22 20:04:37 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:04:37 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:04:37 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:04:37 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:04:37 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:04:37 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:04:37 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:04:37 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:07:10 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 75ms (Views: 74.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:07:10 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:07:10 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:07:10 -0700 + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:07:10 -0700 + + +Started GET "/assets/application.self-e8be6e0dd67d1ade1772f9c7606087f68ba855dccef7a75f029fcec02846a997.css?body=1" for ::1 at 2016-10-22 20:07:10 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:07:10 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:07:10 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:07:10 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:07:10 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:07:10 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:07:10 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:08:24 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 104ms (Views: 99.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:08:24 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:08:24 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:08:24 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:08:24 -0700 + + +Started GET "/assets/application.self-008d769d3c667234ff7a1cbb27f560cd8b3868fa0298900979d29260c5401c2f.css?body=1" for ::1 at 2016-10-22 20:08:24 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:08:24 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:08:24 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:08:24 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:08:24 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:08:24 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:08:24 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:09:56 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 63ms (Views: 60.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:09:56 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:09:56 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:09:56 -0700 + + +Started GET "/assets/application.self-a127b56a8d7675ab1d7e102f0b18c1290e4d5648e47976931df6850490388e24.css?body=1" for ::1 at 2016-10-22 20:09:56 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:09:56 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:09:56 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:09:56 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:09:56 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:09:56 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:09:56 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:09:56 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:10:48 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (6.3ms) +Completed 200 OK in 74ms (Views: 71.9ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:10:48 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:10:48 -0700 + + +Started GET "/assets/application.self-180b424f28858654f9cf5c3d18e63c0a240c91bdfdde2d1d9b9ed59921d15af4.css?body=1" for ::1 at 2016-10-22 20:10:48 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:10:48 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:10:48 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:10:48 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:10:48 -0700 + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:10:48 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:10:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:10:48 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:10:48 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:11:07 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 72ms (Views: 71.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:11:07 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:11:07 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:11:07 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:11:07 -0700 + + +Started GET "/assets/application.self-c68dda77b9d6062efb442bef54b648e47c8d7178f630c26ebbb11b719eec30f3.css?body=1" for ::1 at 2016-10-22 20:11:07 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:11:07 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:11:07 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:11:07 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:11:07 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:11:07 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:11:07 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:12:04 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 66ms (Views: 65.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:12:04 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:12:04 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:12:04 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:12:04 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:12:04 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:12:04 -0700 + + +Started GET "/assets/application.self-c9186aae5b8b8b3a1ebfd25d11dd6045f73dd2d8b53974daa49e660294e65587.css?body=1" for ::1 at 2016-10-22 20:12:04 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:12:04 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:12:04 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:12:04 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:12:04 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:12:42 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 91ms (Views: 89.8ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:12:42 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:12:42 -0700 + + +Started GET "/assets/application.self-ab76b35e94a9e9150c86c002cf33749cb3a06f84c93141ea5f8445fc052e6f2f.css?body=1" for ::1 at 2016-10-22 20:12:42 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:12:42 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:12:42 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:12:42 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:12:42 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:12:42 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:12:42 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:12:42 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:12:42 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:12:51 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 26ms (Views: 25.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:12:51 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:12:51 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:12:51 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:12:51 -0700 + + +Started GET "/assets/application.self-ab76b35e94a9e9150c86c002cf33749cb3a06f84c93141ea5f8445fc052e6f2f.css?body=1" for ::1 at 2016-10-22 20:12:51 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:12:51 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:12:51 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:12:51 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:12:51 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:12:51 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:12:51 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:13:37 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 62ms (Views: 60.9ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:13:37 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:13:37 -0700 + + +Started GET "/assets/application.self-ab76b35e94a9e9150c86c002cf33749cb3a06f84c93141ea5f8445fc052e6f2f.css?body=1" for ::1 at 2016-10-22 20:13:37 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:13:37 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:13:37 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:13:37 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:13:37 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:13:37 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:13:37 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:13:37 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:13:37 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:13:47 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 19ms (Views: 18.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:13:47 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:13:47 -0700 + + +Started GET "/assets/application.self-ab76b35e94a9e9150c86c002cf33749cb3a06f84c93141ea5f8445fc052e6f2f.css?body=1" for ::1 at 2016-10-22 20:13:47 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:13:47 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:13:47 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:13:47 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:13:47 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:13:47 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:13:47 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:13:47 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:13:47 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:13:59 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 62ms (Views: 60.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:14:00 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:14:00 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:14:00 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:14:00 -0700 + + +Started GET "/assets/application.self-04e6c7ec8d5287cde0c404208efd9bcc7a14aa2f591833f5ce8d9dce86cc5e17.css?body=1" for ::1 at 2016-10-22 20:14:00 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:14:00 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:14:00 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:14:00 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:14:00 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:14:00 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:14:00 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:15:02 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 86ms (Views: 84.9ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:15:02 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:15:02 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:15:02 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:15:02 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:15:02 -0700 + + +Started GET "/assets/application.self-a11d667634602e2da16ff9c2f46985d2ce89d65306a7372b8d287a0749d91848.css?body=1" for ::1 at 2016-10-22 20:15:02 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:15:02 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:15:02 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:15:02 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:15:02 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:15:02 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:16:13 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 86ms (Views: 85.1ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:16:13 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:16:13 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:16:13 -0700 + + +Started GET "/assets/application.self-6c597a99b97eaac6f8452c3afe38d02d1a8cdd81f9321bf3364fa54a77366cb9.css?body=1" for ::1 at 2016-10-22 20:16:13 -0700 + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:16:13 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:16:13 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:16:13 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:16:13 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:16:13 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:16:13 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:16:13 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-10-22 20:16:55 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (2.7ms) +Completed 200 OK in 29ms (Views: 28.5ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-10-22 20:17:11 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"/Z08IVHW+f556+l9ZQ04Y9CJyv7F0HPk/yuJS7WsWUTcV+Frhad68gcL3EOWiKU/NLVNtTZh2JPi86sn995CHw==", "task"=>{"name"=>"Sweep things", "description"=>"for the floor is a mess", "completed_at"=>""}, "commit"=>"Submit your task"} +  (0.1ms) begin transaction + SQL (0.7ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Sweep things"], ["description", "for the floor is a mess"], ["created_at", "2016-10-23 03:17:11.577909"], ["updated_at", "2016-10-23 03:17:11.577909"]] +  (2.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "user_id" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["user_id", 17463068], ["updated_at", "2016-10-23 03:17:11.583652"], ["id", 5]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/tasks/5 +Completed 302 Found in 13ms (ActiveRecord: 6.4ms) + + +Started GET "/tasks/5" for ::1 at 2016-10-22 20:17:11 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 18ms (Views: 17.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:17:11 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:17:16 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 26ms (Views: 24.9ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-10-22 20:18:00 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 94ms (Views: 93.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:18:00 -0700 + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:18:01 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:18:01 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:18:01 -0700 + + +Started GET "/assets/application.self-4183563551315d11a1f8b7fda78e1cb104f945a34674ea28d7d128515905257d.css?body=1" for ::1 at 2016-10-22 20:18:01 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:18:01 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:18:01 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:18:01 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:18:01 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:18:01 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:18:01 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:18:38 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 95ms (Views: 94.1ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:18:38 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:18:38 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:18:38 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:18:38 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:18:38 -0700 + + +Started GET "/assets/application.self-d9c4449fbf54926d77231dbb317b2a2ba7b0adcc31b82f53a2b87c21d91051e9.css?body=1" for ::1 at 2016-10-22 20:18:38 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:18:38 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:18:38 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:18:38 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:18:38 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:18:38 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:19:38 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 47ms (Views: 46.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:19:38 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:19:38 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:19:38 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:19:38 -0700 + + +Started GET "/assets/application.self-1fe829fd33246f7caaf47f843f98ec85b4d99fc1c6079b0db7024cb474545ad5.css?body=1" for ::1 at 2016-10-22 20:19:38 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:19:38 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:19:38 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:19:38 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:19:38 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:19:38 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:19:38 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:19:53 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 79ms (Views: 77.1ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:19:53 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:19:53 -0700 + + +Started GET "/assets/application.self-6e307d91a1834e1bc1187aaf80a2a7aedb6b3dbdb31a69c48c5257aa1e9a3f61.css?body=1" for ::1 at 2016-10-22 20:19:53 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:19:53 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:19:53 -0700 + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:19:53 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:19:53 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:19:53 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:19:53 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:19:53 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:19:53 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:20:07 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:20:07 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:20:07 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:20:07 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:20:07 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:20:07 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:20:07 -0700 + + +Started GET "/assets/application.self-6e307d91a1834e1bc1187aaf80a2a7aedb6b3dbdb31a69c48c5257aa1e9a3f61.css?body=1" for ::1 at 2016-10-22 20:20:07 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:20:07 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:20:07 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:20:07 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:20:07 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:20:54 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `name' for nil:NilClass): + 4: <% end %> + 5: + 6: + 7:

                    Welcome, <%= @current_user.name %>

                    + 8: + 9:
                    + 10: + app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb__102251811041191314_70178567938180' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (12.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (68.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (51.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (117.5ms) + + +Started GET "/" for ::1 at 2016-10-22 20:21:33 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `email' for nil:NilClass): + 4: <% end %> + 5: + 6: + 7:

                    Welcome, <%= @current_user.email %>

                    + 8: + 9:
                    + 10:
                    + app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb__102251811041191314_70178521668480' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (60.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (51.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (119.0ms) + User Load (4.2ms) SELECT "users".* FROM "users" + + +Started GET "/" for ::1 at 2016-10-22 20:22:24 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 65ms (Views: 63.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:22:24 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:22:24 -0700 + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:22:24 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:22:24 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:22:24 -0700 + + +Started GET "/assets/application.self-6e307d91a1834e1bc1187aaf80a2a7aedb6b3dbdb31a69c48c5257aa1e9a3f61.css?body=1" for ::1 at 2016-10-22 20:22:24 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:22:24 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:22:24 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:22:24 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:22:24 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:22:24 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:23:32 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (5.5ms) +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `uid' for nil:NilClass): + 4: <% end %> + 5: + 6: + 7:

                    Welcome, <%= @current_user.uid %>

                    + 8: + 9:
                    + 10:
                    + app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb__102251811041191314_70178530121460' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (61.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (49.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (117.8ms) + + +Started GET "/" for ::1 at 2016-10-22 20:24:17 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 65ms (Views: 63.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:24:17 -0700 + + +Started GET "/assets/application.self-6e307d91a1834e1bc1187aaf80a2a7aedb6b3dbdb31a69c48c5257aa1e9a3f61.css?body=1" for ::1 at 2016-10-22 20:24:17 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:24:17 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:24:17 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:24:17 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:24:17 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:24:17 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:24:18 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:24:18 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:24:18 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:24:18 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:24:41 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 56ms (Views: 55.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:24:41 -0700 + + +Started GET "/assets/application.self-6e307d91a1834e1bc1187aaf80a2a7aedb6b3dbdb31a69c48c5257aa1e9a3f61.css?body=1" for ::1 at 2016-10-22 20:24:41 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:24:41 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:24:41 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:24:41 -0700 + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:24:41 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:24:41 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:24:41 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:24:41 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:24:41 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:24:41 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:25:04 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 56ms (Views: 54.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:25:04 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:25:04 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:25:04 -0700 + + +Started GET "/assets/application.self-6e307d91a1834e1bc1187aaf80a2a7aedb6b3dbdb31a69c48c5257aa1e9a3f61.css?body=1" for ::1 at 2016-10-22 20:25:04 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:25:04 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:25:04 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:25:04 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:25:04 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:25:04 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:25:04 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:25:04 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:27:31 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 58ms (Views: 57.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:27:31 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:27:31 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:27:31 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:27:31 -0700 + + +Started GET "/assets/application.self-6e307d91a1834e1bc1187aaf80a2a7aedb6b3dbdb31a69c48c5257aa1e9a3f61.css?body=1" for ::1 at 2016-10-22 20:27:31 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:27:31 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:27:31 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:27:31 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:27:31 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:27:31 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:27:31 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:27:45 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 23ms (Views: 22.1ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:27:45 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:27:45 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:27:45 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:27:45 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:27:45 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:27:45 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:27:45 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:27:45 -0700 + + +Started GET "/assets/application.self-6e307d91a1834e1bc1187aaf80a2a7aedb6b3dbdb31a69c48c5257aa1e9a3f61.css?body=1" for ::1 at 2016-10-22 20:27:45 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:27:45 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:27:45 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:29:14 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 25ms (Views: 24.1ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:29:14 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:29:14 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:29:14 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:29:14 -0700 + + +Started GET "/assets/application.self-6e307d91a1834e1bc1187aaf80a2a7aedb6b3dbdb31a69c48c5257aa1e9a3f61.css?body=1" for ::1 at 2016-10-22 20:29:14 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:29:14 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:29:14 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:29:14 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:29:14 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:29:14 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:29:14 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:29:17 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (4.8ms) +Completed 200 OK in 24ms (Views: 22.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:29:17 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:29:17 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:29:17 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:29:17 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:29:17 -0700 + + +Started GET "/assets/application.self-6e307d91a1834e1bc1187aaf80a2a7aedb6b3dbdb31a69c48c5257aa1e9a3f61.css?body=1" for ::1 at 2016-10-22 20:29:17 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:29:17 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:29:17 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:29:17 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:29:17 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:29:17 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:30:05 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (15.6ms) +Completed 200 OK in 60ms (Views: 58.9ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:30:05 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:30:05 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:30:05 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:30:05 -0700 + + +Started GET "/assets/application.self-8d35de6befb96b35a9ba2c3bf64f64c8a1d1f71a0a475a918e1e0cd941d9f996.css?body=1" for ::1 at 2016-10-22 20:30:05 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:30:05 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:30:05 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:30:05 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:30:05 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:30:05 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:30:05 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:31:19 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 85ms (Views: 84.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:31:19 -0700 + + +Started GET "/assets/application.self-2fade5050473dd7b62e75ef59234f7b532730bc553f72f049d854c5f7756bea9.css?body=1" for ::1 at 2016-10-22 20:31:19 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:31:19 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:31:19 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:31:19 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:31:19 -0700 + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:31:19 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:31:19 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:31:19 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:31:19 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:31:19 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:31:57 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 68ms (Views: 67.1ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:31:57 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:31:57 -0700 + + +Started GET "/assets/application.self-2fade5050473dd7b62e75ef59234f7b532730bc553f72f049d854c5f7756bea9.css?body=1" for ::1 at 2016-10-22 20:31:57 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:31:57 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:31:57 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:31:57 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:31:57 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:31:57 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:31:57 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:31:57 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:31:57 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:32:48 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 66ms (Views: 64.9ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:32:48 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:32:48 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:32:48 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:32:48 -0700 + + +Started GET "/assets/application.self-2fade5050473dd7b62e75ef59234f7b532730bc553f72f049d854c5f7756bea9.css?body=1" for ::1 at 2016-10-22 20:32:48 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:32:48 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:32:48 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:32:48 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:32:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:32:48 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:32:48 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:33:07 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 71ms (Views: 70.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:33:07 -0700 + + +Started GET "/assets/application.self-0fe2a7b32776e4ff36f30b225bf11c64630140e2e729b62258f5a0c5ab02df02.css?body=1" for ::1 at 2016-10-22 20:33:07 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:33:07 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:33:07 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:33:07 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:33:07 -0700 + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:33:07 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:33:07 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:33:07 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:33:07 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:33:07 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:33:58 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 58ms (Views: 56.5ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:33:58 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:33:58 -0700 + + +Started GET "/assets/application.self-0fe2a7b32776e4ff36f30b225bf11c64630140e2e729b62258f5a0c5ab02df02.css?body=1" for ::1 at 2016-10-22 20:33:58 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:33:58 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:33:58 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:33:58 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:33:58 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:33:58 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:33:58 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:33:58 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:33:58 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:34:26 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 74ms (Views: 72.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:34:26 -0700 + + +Started GET "/assets/application.self-9197547d7d5012828d05567bf26ac03976808e4e0dc7762ba727a152b436bbbe.css?body=1" for ::1 at 2016-10-22 20:34:26 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:34:26 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:34:26 -0700 + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:34:26 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:34:26 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:34:26 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:34:27 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:34:27 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:34:27 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:34:27 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:34:46 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 61ms (Views: 59.7ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:34:47 -0700 + + +Started GET "/assets/application.self-ca17a945adbdb8a79565cc3988151bded2ae2f7430c888d18cc3f2f65dc058d8.css?body=1" for ::1 at 2016-10-22 20:34:47 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:34:47 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:34:47 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:34:47 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:34:47 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:34:47 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:34:47 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:34:47 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:34:47 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:34:47 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:34:56 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 35ms (Views: 33.4ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:34:56 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:34:56 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:34:56 -0700 + + +Started GET "/assets/application.self-353f8b1046d255482940af31fa14fafd91b3d3415d500b9bd8a9436e7d1806d1.css?body=1" for ::1 at 2016-10-22 20:34:56 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:34:56 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:34:56 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:34:56 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:34:56 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:34:56 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:34:56 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:34:56 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:35:39 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 89ms (Views: 88.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:35:40 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:35:40 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:35:40 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:35:40 -0700 + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:35:40 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:35:40 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:35:40 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:35:40 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:35:40 -0700 + + +Started GET "/assets/application.self-14b8268a3839929e0a5119fa16e16ce7bd36a6b44329e8ef7c3873facad6b0e5.css?body=1" for ::1 at 2016-10-22 20:35:40 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:35:40 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:36:23 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 67ms (Views: 65.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:36:23 -0700 + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:36:23 -0700 + + +Started GET "/assets/application.self-bd5a59b2c14b9df3b18b2e36d82ce91e2ec49bb3cdb08bc330546034493eb184.css?body=1" for ::1 at 2016-10-22 20:36:23 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:36:23 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:36:23 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:36:23 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:36:23 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:36:23 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:36:23 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:36:23 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:36:23 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:36:50 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 78ms (Views: 76.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:36:50 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:36:50 -0700 + + +Started GET "/assets/application.self-9f9031075f57340dee0b350804026a27524dd559826b64c69a01d3fecab76b11.css?body=1" for ::1 at 2016-10-22 20:36:50 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:36:50 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:36:51 -0700 + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:36:51 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:36:51 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:36:51 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:36:51 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:36:51 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:36:51 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:37:13 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 37ms (Views: 35.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:37:13 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:37:13 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:37:13 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:37:13 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:37:13 -0700 + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:37:13 -0700 + + +Started GET "/assets/application.self-e6eaf687927803582f620c3a9ac192ff837dca4f475dc64939be49dd9751884f.css?body=1" for ::1 at 2016-10-22 20:37:13 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:37:13 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:37:13 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:37:13 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:37:13 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:37:44 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 54ms (Views: 53.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:37:44 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:37:44 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:37:44 -0700 + + +Started GET "/assets/application.self-e6eaf687927803582f620c3a9ac192ff837dca4f475dc64939be49dd9751884f.css?body=1" for ::1 at 2016-10-22 20:37:44 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:37:44 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:37:44 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:37:44 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:37:44 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:37:44 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:37:44 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:37:44 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:38:03 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 47ms (Views: 45.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:38:03 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:38:03 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:38:03 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:38:03 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:38:03 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:38:03 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:38:03 -0700 + + +Started GET "/assets/application.self-6ba895b242142f2e7346a21525519b8466be275bf8a5d36c9d7fa0cce9366a42.css?body=1" for ::1 at 2016-10-22 20:38:03 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:38:03 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:38:03 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:38:03 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:38:11 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 34ms (Views: 33.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:38:12 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:38:12 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:38:12 -0700 + + +Started GET "/assets/application.self-5d52673bd53a299fcbd554895f3ffdfb8bb2fd08e91e2bf4d0915b4c6b71122c.css?body=1" for ::1 at 2016-10-22 20:38:12 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:38:12 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:38:12 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:38:12 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:38:12 -0700 + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:38:12 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:38:12 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:38:12 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:40:16 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 72ms (Views: 71.6ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:40:16 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:40:16 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:40:16 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:40:16 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:40:16 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:40:16 -0700 + + +Started GET "/assets/application.self-6ba895b242142f2e7346a21525519b8466be275bf8a5d36c9d7fa0cce9366a42.css?body=1" for ::1 at 2016-10-22 20:40:16 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:40:16 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:40:16 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:40:16 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:40:16 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:40:55 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 44ms (Views: 42.7ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:40:55 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:40:55 -0700 + + +Started GET "/assets/application.self-15fdbd5e47703b5f3fd0beba4ca605ded8c4e206b0fdfbe2bdcd0f7a6acff03c.css?body=1" for ::1 at 2016-10-22 20:40:55 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:40:55 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:40:55 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:40:55 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:40:55 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:40:55 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:40:55 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:40:55 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:40:55 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:41:17 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 36ms (Views: 35.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:41:17 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:41:17 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:41:17 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:41:17 -0700 + + +Started GET "/assets/application.self-623287bebe72758989ac88c1d3ce5f1aba2c4511d120c89dc1c0b32f04a41b8f.css?body=1" for ::1 at 2016-10-22 20:41:17 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:41:17 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:41:17 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:41:17 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:41:17 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:41:17 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:41:17 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:41:25 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 38ms (Views: 37.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:41:25 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:41:25 -0700 + + +Started GET "/assets/application.self-31c6b1e64f6dde3c18feb4ee5abfdc6fcb0d98ce7d65b81a99daad96d7af8da7.css?body=1" for ::1 at 2016-10-22 20:41:25 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:41:25 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:41:25 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:41:25 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:41:25 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:41:25 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:41:25 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:41:25 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:41:25 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:42:00 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 73ms (Views: 71.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:42:00 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:42:00 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:42:00 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:42:00 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:42:00 -0700 + + +Started GET "/assets/application.self-d888ed3dee59a5da44f0fb138ef9c8466d565f29238ede78b321821936ad9e12.css?body=1" for ::1 at 2016-10-22 20:42:00 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:42:00 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:42:00 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:42:00 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:42:00 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:42:00 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:42:25 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 69ms (Views: 68.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:42:25 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:42:25 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:42:25 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:42:25 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:42:25 -0700 + + +Started GET "/assets/application.self-1887ba4df06cb2cb93a83c5e227f9305037128acd62281a9eea20bb35afff66d.css?body=1" for ::1 at 2016-10-22 20:42:25 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:42:25 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:42:25 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:42:25 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:42:25 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:42:25 -0700 + + +Started GET "/session" for ::1 at 2016-10-22 20:42:49 -0700 + +ActionController::RoutingError (No route matches [GET] "/session"): + 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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (64.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (52.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (118.1ms) + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:43:55 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:43:57 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (5.5ms) +Completed 200 OK in 71ms (Views: 66.3ms | ActiveRecord: 0.9ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:43:57 -0700 + + +Started GET "/assets/application.self-1887ba4df06cb2cb93a83c5e227f9305037128acd62281a9eea20bb35afff66d.css?body=1" for ::1 at 2016-10-22 20:43:57 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:43:57 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:43:57 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:43:57 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:43:57 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:43:57 -0700 + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:43:57 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:43:57 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:43:57 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:43:57 -0700 + + +Started GET "/session" for ::1 at 2016-10-22 20:43:58 -0700 +Processing by SessionsController#index as HTML +Redirected to http://localhost:3000/ +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-10-22 20:43:58 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 22ms (Views: 20.8ms | ActiveRecord: 0.2ms) + + +Started GET "/session" for ::1 at 2016-10-22 20:44:02 -0700 +Processing by SessionsController#index as HTML +Redirected to http://localhost:3000/ +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-10-22 20:44:02 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 22ms (Views: 20.9ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-10-22 20:45:59 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (6.9ms) +Completed 200 OK in 67ms (Views: 63.1ms | ActiveRecord: 0.9ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:46:00 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:46:00 -0700 + + +Started GET "/assets/application.self-1887ba4df06cb2cb93a83c5e227f9305037128acd62281a9eea20bb35afff66d.css?body=1" for ::1 at 2016-10-22 20:46:00 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:46:00 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:46:00 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:46:00 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:46:00 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:46:00 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:46:00 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:46:00 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:46:00 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:47:10 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (6.6ms) +Completed 200 OK in 29ms (Views: 24.4ms | ActiveRecord: 1.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:47:10 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:47:10 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:47:10 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:47:10 -0700 + + +Started GET "/assets/application.self-1887ba4df06cb2cb93a83c5e227f9305037128acd62281a9eea20bb35afff66d.css?body=1" for ::1 at 2016-10-22 20:47:10 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:47:10 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:47:10 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:47:10 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:47:10 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:47:10 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:47:10 -0700 + + +Started GET "/session" for ::1 at 2016-10-22 20:47:11 -0700 + +ActionController::RoutingError (No route matches [GET] "/session"): + 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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (73.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (60.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (129.0ms) + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:47:18 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:47:19 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (5.2ms) +Completed 200 OK in 26ms (Views: 22.9ms | ActiveRecord: 0.7ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:47:19 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:47:19 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:47:19 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:47:19 -0700 + + +Started GET "/assets/application.self-1887ba4df06cb2cb93a83c5e227f9305037128acd62281a9eea20bb35afff66d.css?body=1" for ::1 at 2016-10-22 20:47:19 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:47:19 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:47:19 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:47:19 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:47:19 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:47:19 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:47:19 -0700 + + +Started GET "/sessions" for ::1 at 2016-10-22 20:47:20 -0700 +Processing by SessionsController#index as HTML +Redirected to http://localhost:3000/ +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-10-22 20:47:20 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 25ms (Views: 23.6ms | ActiveRecord: 0.2ms) + + +Started GET "/sessions" for ::1 at 2016-10-22 20:47:21 -0700 +Processing by SessionsController#index as HTML +Redirected to http://localhost:3000/ +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-10-22 20:47:21 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 25ms (Views: 23.8ms | ActiveRecord: 0.2ms) + + +Started GET "/sessions" for ::1 at 2016-10-22 20:47:22 -0700 +Processing by SessionsController#index as HTML +Redirected to http://localhost:3000/ +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-10-22 20:47:22 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 32ms (Views: 31.2ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-10-22 20:50:08 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 54ms (Views: 53.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:50:08 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:50:08 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:50:08 -0700 + + +Started GET "/assets/application.self-b488e9dfc2a0f254b3596d9a2b9178d0b34a81ef4f03055298d55b3516796209.css?body=1" for ::1 at 2016-10-22 20:50:08 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:50:08 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:50:08 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:50:08 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:50:08 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:50:08 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:50:08 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:50:08 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:50:19 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 33ms (Views: 31.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:50:19 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:50:19 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:50:19 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:50:19 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:50:19 -0700 + + +Started GET "/assets/application.self-8fef22868a89e874eac98e9f76897ac8c5d80466c5676a324b9d3957be002a80.css?body=1" for ::1 at 2016-10-22 20:50:19 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:50:19 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:50:19 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:50:19 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:50:19 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:50:19 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:50:32 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 40ms (Views: 39.1ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:50:32 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:50:32 -0700 + + +Started GET "/assets/application.self-db5cddc5b38a013fb2e0af80d2e01a121b02e1022e78ee0fe3b264fdcd815f12.css?body=1" for ::1 at 2016-10-22 20:50:32 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:50:32 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:50:32 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:50:32 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:50:32 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:50:32 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:50:32 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:50:32 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:50:32 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:50:38 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (7.5ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (10.7ms) +Completed 200 OK in 48ms (Views: 39.7ms | ActiveRecord: 7.7ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:50:39 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:50:39 -0700 + + +Started GET "/assets/application.self-63665f28e1229d798e73c78ae0b4b5e6bc9f7ef2235f1316516899f0d7e64dee.css?body=1" for ::1 at 2016-10-22 20:50:39 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:50:39 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:50:39 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:50:39 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:50:39 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:50:39 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:50:39 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:50:39 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:50:39 -0700 + + +Started GET "/" for ::1 at 2016-10-22 20:53:48 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (5.5ms) +Completed 200 OK in 105ms (Views: 101.2ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-22 20:53:48 -0700 + + +Started GET "/assets/application.self-9b58e3acaf13612bccac14a3175b7427070df07ac680561066e6c290cf898e4b.css?body=1" for ::1 at 2016-10-22 20:53:48 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:53:48 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-22 20:53:48 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-22 20:53:48 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-22 20:53:48 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:53:48 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-22 20:53:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-22 20:53:48 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-22 20:53:48 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:53:48 -0700 + + +Started GET "/logout" for ::1 at 2016-10-22 20:53:50 -0700 + +ActionController::RoutingError (No route matches [GET] "/logout"): + 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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (67.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (52.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (118.5ms) + + +Started GET "/logout" for ::1 at 2016-10-22 20:55:45 -0700 + +ActionController::RoutingError (No route matches [GET] "/logout"): + 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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (77.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.8ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (58.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (130.2ms) + + +Started GET "/" for ::1 at 2016-10-22 20:55:52 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (5.2ms) +Completed 200 OK in 62ms (Views: 59.3ms | ActiveRecord: 0.7ms) + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-22 20:55:52 -0700 + + +Started GET "/sessions/destroy" for ::1 at 2016-10-22 20:55:54 -0700 + +ActionController::RoutingError (No route matches [GET] "/sessions/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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (59.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.7ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (80.6ms) + + +Started GET "/" for ::1 at 2016-10-23 13:19:48 -0700 + ActiveRecord::SchemaMigration Load (2.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML +Redirected to http://localhost:3000/sessions/login +Filter chain halted as :logged_in? rendered or redirected +Completed 302 Found in 11ms (ActiveRecord: 0.0ms) + + +Started GET "/sessions/login" for ::1 at 2016-10-23 13:19:49 -0700 +Processing by SessionsController#login as HTML + Rendered sessions/login.html.erb within layouts/application (3.1ms) +Completed 200 OK in 514ms (Views: 514.0ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 13:19:49 -0700 + + +Started GET "/assets/application.self-9b58e3acaf13612bccac14a3175b7427070df07ac680561066e6c290cf898e4b.css?body=1" for ::1 at 2016-10-23 13:19:49 -0700 + + +Started GET "/assets/foundation.self-3e90c2b85f33f5573363284db9215e23ea733d4621ae4fa5aed17ba251608f4e.css?body=1" for ::1 at 2016-10-23 13:19:49 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-23 13:19:49 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-23 13:19:49 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-23 13:19:49 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-23 13:19:49 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 13:19:49 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-23 13:19:50 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-23 13:19:50 -0700 + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-23 13:19:50 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-23 13:20:00 -0700 + + +Started GET "/auth/github" for ::1 at 2016-10-23 13:20:00 -0700 + + +Started GET "/auth/github/callback?code=543d1db76cc3b360d80b&state=bc675db67ab8b280ab1384657b4e462254eed74f41ce2184" for ::1 at 2016-10-23 13:20:04 -0700 +Processing by SessionsController#create as HTML + Parameters: {"code"=>"543d1db76cc3b360d80b", "state"=>"bc675db67ab8b280ab1384657b4e462254eed74f41ce2184", "provider"=>"github"} + User Load (2.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", 17463068], ["provider", "github"]] +Redirected to http://localhost:3000/ +Completed 302 Found in 53ms (ActiveRecord: 2.9ms) + + +Started GET "/" for ::1 at 2016-10-23 13:20:06 -0700 +Processing by TasksController#index as HTML + Task Load (2.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (12.5ms) +Completed 200 OK in 40ms (Views: 27.4ms | ActiveRecord: 2.7ms) + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-23 13:20:06 -0700 + + +Started GET "/sessions/logout" for ::1 at 2016-10-23 13:20:11 -0700 + +ActionController::RoutingError (No route matches [GET] "/sessions/logout"): + 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/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nurl/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (22.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (104.0ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (83.3ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/nurl/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (153.9ms) + + +Started GET "/assets/foundation.css" for ::1 at 2016-10-23 13:20:47 -0700 + + +Started GET "/" for ::1 at 2016-10-23 13:20:49 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND "tasks"."completed_at" IS NULL [["user_id", 17463068]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."user_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["user_id", 17463068]] + Rendered tasks/index.html.erb within layouts/application (5.7ms) +Completed 500 Internal Server Error in 65ms (ActiveRecord: 0.7ms) + +ActionView::Template::Error (undefined local variable or method `session_destroy_path' for #<#:0x007fd024ccacd0>): + 12:

                    Task List

                    + 13: