From 5d116746c68554224d5bc81ded7d4b8efe449728 Mon Sep 17 00:00:00 2001 From: Nadine Curry Date: Thu, 21 Apr 2016 09:13:29 -0700 Subject: [PATCH 01/12] Wave 1 90% done. No CSS yet. --- Gemfile | 51 + Gemfile.lock | 167 + README.rdoc | 28 + Rakefile | 6 + app/assets/images/.keep | 0 app/assets/images/post-it-1.png | Bin 0 -> 21817 bytes app/assets/javascripts/application.js | 16 + app/assets/javascripts/home.coffee | 3 + app/assets/stylesheets/application.css | 15 + app/assets/stylesheets/home.scss | 3 + app/controllers/application_controller.rb | 5 + app/controllers/concerns/.keep | 0 app/controllers/home_controller.rb | 9 + app/helpers/application_helper.rb | 2 + app/helpers/home_helper.rb | 2 + app/mailers/.keep | 0 app/models/.keep | 0 app/models/concerns/.keep | 0 app/models/task.rb | 2 + app/views/home/index.html.erb | 10 + app/views/home/show.html.erb | 10 + app/views/layouts/application.html.erb | 14 + bin/bundle | 3 + bin/rails | 9 + bin/rake | 9 + bin/setup | 29 + bin/spring | 15 + config.ru | 4 + config/application.rb | 26 + config/boot.rb | 3 + config/database.yml | 25 + config/environment.rb | 5 + config/environments/development.rb | 41 + config/environments/production.rb | 79 + config/environments/test.rb | 42 + config/initializers/assets.rb | 11 + config/initializers/backtrace_silencers.rb | 7 + config/initializers/cookies_serializer.rb | 3 + .../initializers/filter_parameter_logging.rb | 4 + config/initializers/inflections.rb | 16 + config/initializers/mime_types.rb | 4 + config/initializers/session_store.rb | 3 + config/initializers/wrap_parameters.rb | 14 + config/locales/en.yml | 23 + config/routes.rb | 60 + config/secrets.yml | 22 + db/development.sqlite3 | Bin 0 -> 20480 bytes db/migrate/20160419210846_create_tasks.rb | 11 + db/schema.rb | 24 + db/seeds.rb | 27 + lib/assets/.keep | 0 lib/tasks/.keep | 0 log/.keep | 0 log/development.log | 3700 +++++++++++++++++ public/404.html | 67 + public/422.html | 67 + public/500.html | 66 + public/favicon.ico | 0 public/robots.txt | 5 + test/controllers/.keep | 0 test/controllers/home_controller_test.rb | 9 + test/fixtures/.keep | 0 test/fixtures/tasks.yml | 11 + test/helpers/.keep | 0 test/integration/.keep | 0 test/mailers/.keep | 0 test/models/.keep | 0 test/models/task_test.rb | 7 + test/test_helper.rb | 10 + vendor/assets/javascripts/.keep | 0 vendor/assets/stylesheets/.keep | 0 71 files changed, 4804 insertions(+) create mode 100644 Gemfile create mode 100644 Gemfile.lock create mode 100644 README.rdoc create mode 100644 Rakefile create mode 100644 app/assets/images/.keep create mode 100644 app/assets/images/post-it-1.png create mode 100644 app/assets/javascripts/application.js create mode 100644 app/assets/javascripts/home.coffee create mode 100644 app/assets/stylesheets/application.css create mode 100644 app/assets/stylesheets/home.scss create mode 100644 app/controllers/application_controller.rb create mode 100644 app/controllers/concerns/.keep create mode 100644 app/controllers/home_controller.rb create mode 100644 app/helpers/application_helper.rb create mode 100644 app/helpers/home_helper.rb create mode 100644 app/mailers/.keep create mode 100644 app/models/.keep create mode 100644 app/models/concerns/.keep create mode 100644 app/models/task.rb create mode 100644 app/views/home/index.html.erb create mode 100644 app/views/home/show.html.erb create mode 100644 app/views/layouts/application.html.erb create mode 100755 bin/bundle create mode 100755 bin/rails create mode 100755 bin/rake create mode 100755 bin/setup create mode 100755 bin/spring create mode 100644 config.ru create mode 100644 config/application.rb create mode 100644 config/boot.rb create mode 100644 config/database.yml create mode 100644 config/environment.rb create mode 100644 config/environments/development.rb create mode 100644 config/environments/production.rb create mode 100644 config/environments/test.rb create mode 100644 config/initializers/assets.rb create mode 100644 config/initializers/backtrace_silencers.rb create mode 100644 config/initializers/cookies_serializer.rb create mode 100644 config/initializers/filter_parameter_logging.rb create mode 100644 config/initializers/inflections.rb create mode 100644 config/initializers/mime_types.rb create mode 100644 config/initializers/session_store.rb create mode 100644 config/initializers/wrap_parameters.rb create mode 100644 config/locales/en.yml create mode 100644 config/routes.rb create mode 100644 config/secrets.yml create mode 100644 db/development.sqlite3 create mode 100644 db/migrate/20160419210846_create_tasks.rb create mode 100644 db/schema.rb create mode 100644 db/seeds.rb create mode 100644 lib/assets/.keep create mode 100644 lib/tasks/.keep create mode 100644 log/.keep create mode 100644 log/development.log create mode 100644 public/404.html create mode 100644 public/422.html create mode 100644 public/500.html create mode 100644 public/favicon.ico create mode 100644 public/robots.txt create mode 100644 test/controllers/.keep create mode 100644 test/controllers/home_controller_test.rb create mode 100644 test/fixtures/.keep create mode 100644 test/fixtures/tasks.yml create mode 100644 test/helpers/.keep create mode 100644 test/integration/.keep create mode 100644 test/mailers/.keep create mode 100644 test/models/.keep create mode 100644 test/models/task_test.rb create mode 100644 test/test_helper.rb create mode 100644 vendor/assets/javascripts/.keep create mode 100644 vendor/assets/stylesheets/.keep diff --git a/Gemfile b/Gemfile new file mode 100644 index 000000000..14759c360 --- /dev/null +++ b/Gemfile @@ -0,0 +1,51 @@ +source 'https://rubygems.org' + + +# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' +gem 'rails', '4.2.6' +# Use sqlite3 as the database for Active Record +gem 'sqlite3' +# Use SCSS for stylesheets +gem 'sass-rails', '~> 5.0' +# Use Uglifier as compressor for JavaScript assets +gem 'uglifier', '>= 1.3.0' +# Use CoffeeScript for .coffee assets and views +gem 'coffee-rails', '~> 4.1.0' +# See https://github.com/rails/execjs#readme for more supported runtimes +# gem 'therubyracer', platforms: :ruby + +# Use jquery as the JavaScript library +gem 'jquery-rails' +# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks +gem 'turbolinks' +# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder +gem 'jbuilder', '~> 2.0' +# bundle exec rake doc:rails generates the API under doc/api. +gem 'sdoc', '~> 0.4.0', group: :doc + +# Use ActiveModel has_secure_password +# gem 'bcrypt', '~> 3.1.7' + +# Use Unicorn as the app server +# gem 'unicorn' + +# Use Capistrano for deployment +# gem 'capistrano-rails', group: :development + +group :development, :test do + # Call 'byebug' anywhere in the code to stop execution and get a debugger console + gem 'byebug' +end + +group :development do + # Access an IRB console on exception pages or by using <%= console %> in views + gem 'web-console', '~> 2.0' + + # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring + gem 'spring' +end + +group :development do + gem "better_errors" + gem "binding_of_caller" +end \ No newline at end of file diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 000000000..abfecdc5c --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,167 @@ +GEM + remote: https://rubygems.org/ + specs: + actionmailer (4.2.6) + actionpack (= 4.2.6) + actionview (= 4.2.6) + activejob (= 4.2.6) + mail (~> 2.5, >= 2.5.4) + rails-dom-testing (~> 1.0, >= 1.0.5) + actionpack (4.2.6) + actionview (= 4.2.6) + activesupport (= 4.2.6) + 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.6) + activesupport (= 4.2.6) + 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.6) + activesupport (= 4.2.6) + globalid (>= 0.3.0) + activemodel (4.2.6) + activesupport (= 4.2.6) + builder (~> 3.1) + activerecord (4.2.6) + activemodel (= 4.2.6) + activesupport (= 4.2.6) + arel (~> 6.0) + activesupport (4.2.6) + 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 (8.2.4) + 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.1) + debug_inspector (0.0.2) + erubis (2.7.0) + execjs (2.6.0) + globalid (0.3.6) + activesupport (>= 4.1.0) + i18n (0.7.0) + jbuilder (2.4.1) + activesupport (>= 3.0.0, < 5.1) + multi_json (~> 1.2) + jquery-rails (4.1.1) + rails-dom-testing (>= 1, < 3) + railties (>= 4.2.0) + thor (>= 0.14, < 2.0) + json (1.8.3) + loofah (2.0.3) + nokogiri (>= 1.5.9) + mail (2.6.4) + mime-types (>= 1.16, < 4) + mime-types (3.0) + mime-types-data (~> 3.2015) + mime-types-data (3.2016.0221) + mini_portile2 (2.0.0) + minitest (5.8.4) + multi_json (1.11.2) + nokogiri (1.6.7.2) + mini_portile2 (~> 2.0.0.rc2) + rack (1.6.4) + rack-test (0.6.3) + rack (>= 1.0) + rails (4.2.6) + actionmailer (= 4.2.6) + actionpack (= 4.2.6) + actionview (= 4.2.6) + activejob (= 4.2.6) + activemodel (= 4.2.6) + activerecord (= 4.2.6) + activesupport (= 4.2.6) + bundler (>= 1.3.0, < 2.0) + railties (= 4.2.6) + sprockets-rails + rails-deprecated_sanitizer (1.0.3) + activesupport (>= 4.2.0.alpha) + rails-dom-testing (1.0.7) + activesupport (>= 4.2.0.beta, < 5.0) + nokogiri (~> 1.6.0) + rails-deprecated_sanitizer (>= 1.0.1) + rails-html-sanitizer (1.0.3) + loofah (~> 2.0) + railties (4.2.6) + actionpack (= 4.2.6) + activesupport (= 4.2.6) + rake (>= 0.8.7) + thor (>= 0.18.1, < 2.0) + rake (11.1.2) + rdoc (4.2.2) + json (~> 1.4) + sass (3.4.22) + sass-rails (5.0.4) + railties (>= 4.0.0, < 5.0) + 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.1) + sprockets (3.6.0) + concurrent-ruby (~> 1.0) + rack (> 1, < 3) + sprockets-rails (3.0.4) + 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.2) + turbolinks (2.5.3) + coffee-rails + tzinfo (1.2.2) + thread_safe (~> 0.1) + uglifier (3.0.0) + 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) + jbuilder (~> 2.0) + jquery-rails + rails (= 4.2.6) + sass-rails (~> 5.0) + sdoc (~> 0.4.0) + spring + sqlite3 + turbolinks + uglifier (>= 1.3.0) + web-console (~> 2.0) + +BUNDLED WITH + 1.11.2 diff --git a/README.rdoc b/README.rdoc new file mode 100644 index 000000000..dd4e97e22 --- /dev/null +++ b/README.rdoc @@ -0,0 +1,28 @@ +== README + +This README would normally document whatever steps are necessary to get the +application up and running. + +Things you may want to cover: + +* Ruby version + +* System dependencies + +* Configuration + +* Database creation + +* Database initialization + +* How to run the test suite + +* Services (job queues, cache servers, search engines, etc.) + +* Deployment instructions + +* ... + + +Please feel free to use a different markup language if you do not plan to run +rake doc:app. 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/images/post-it-1.png b/app/assets/images/post-it-1.png new file mode 100644 index 0000000000000000000000000000000000000000..5e6192126a3d4d6ce86f2dd833516bfd74227aa8 GIT binary patch literal 21817 zcmY&=bzD^66ZYL@fu)!3S`bhgl$K50i^^*Tw0{1L6Ao2P626< zuJZb#ot)}pu4NT);~gL^pe*= ziuf|m8r3~rEHHYT z#ea$yhY$qFNJ$x65nNFef(jg(^VH&dLfWKP(Co9~t>5GHL)K=4kM(Mx3H->q~T3 z5f9I)^M7BeW-|k!Jb4O=+Rv9K&rWOds7xO|@CzxS;<((w(RuQtR^`HDT!)~DvTV!5h=3f61yrNUqq%denSF8Z8mja2*1Jgo z9tOPmguz!k_o6F80{TmfXsXx_ePzCNY1g zn?)6Be$&(K{olXY4GDgkrnfJ0;~x zsjcH_7#(yN4)8hZcwL`x4Nv<4IhVlvSP&r!bOLRXz|h<7y_wqP{uJ>%0dA^t*ra?>%d~K?Kzo8MMVZ> z0=tk)rEXIU+TUF?9MLIIK5>}c%_AVVa0eH!D87VzE43g770>I*wM${^#$MbS zFDrN+)}8*!4~s~mVdg<1B?{jc8O~kHESe+oj_oNhv8#UfPHVwvp9|$0X)R?g=@t2P zhy8Jt*!l0nt}ad!a`Jbz#a@0K-2xcDO4M0Z6pb2WwpI)N`b&Jc_Sq`Y8l-SevbAs9NiIy^lzHF0X9 zQ{X{qTgT5J^taXrg0y6P9wwzyJ9wP^`TnQ$Aue>RV1uz2%hnG~5P1q!t@Mh8G3^{( zPk}ReY&7~rAZHrBQOS2-*)0tLGG!Kfnr z8XKkM`LSoXp9~eps@?&{@AC346nx!wt9~SM$`~=zRt*xw6cvMJwBT*}+dC+-p{n-D z=vu7`9HK)Zw{R$peHa}9PDOx)GA{MbV>q({{19@8Q8_t=w#a!J9g0SA&))vpKbvW8;Gan7=2;0Nr8Q`MS@YLIMNkZA zDO~BweAcY$4f`_9vGwzAjN`XI`@NGrV#T{wyBQ`;DpxVy`bm24`e|q25&w3MXsz1R z&YOxzbjM^a`l~Uo_sRG)U;X)NeXLaPY-&g(OX$3)Ojx3<={cQTP^O=Ss-pYCc_4Lz z&0{<6YVV_u8J=ZgxOO?xTey%c9D?rnCEgcvOB`D1hiS*{BR)sN{re5(fdM?H`_6$B z7jtH(%sXqPW|Ijv8(Zf+fd?X+7kPnufnzckOBcR-9W#ZZ^nE~kf_EJTl>H@c>vLty zi3sJ)m#Csc=0_VN#O6?#%y0iRo&B*k{gxzc zeC+W*EorJTL3gB*j0mXcCL7Zo)%uUfU-pi#Dd zY0>QihPo4eKhdcRhkB=F4`(;FTP*Hvq#E_8F*a%+?;yxl?v~(;(8OtAded*_TH1cX z=(GB$$Yri;#Hz7fbp+xZtnJAcI6?S4H1g?eKlKLw;=@c(EwcVFv26jAkGJVYFRwT- zeLypn2hm@904PPrJ)x`&VBD&Z+*FaRBYb`~%-pmlb6jF-O7rvqj%`~afYNkAN@G{1 zz}l^ts6h(V0$ENDt3DQhDnWZ97=YH-&p1fs!;QMPjR*eXSXKasgrhN{5CVQl=a`O% zO-xSo_`D;X(kiLQXxkuFr`NpLoOJ!cS5*)UrLG~6!eYgcwb1A?0 zvSZZ)p)JO}L#agcE|k38k&vi1y0Y#b>{*Pf3w_j~wc}SB&ygZ_#xM52) zpA}JT$~&n#Yt6?up0qeYvL=Q8V6Rzx5~M@3R6ZndK59z{ zi|A}icJP@diN%1vU!vp(k)jj!W3e!vuGiaft7nX5EbYdJgLMzU7%L&)n3>D~4E(+J zb;2#urZn}mF?wtH_K>8*Y)d_{EfGcM8I6JrCIB%q>n)C>RH>gGJh?f6Eh|q8qs5Ok zMNAZiji0+(&$3eN$vDhPT41XyDyoRVsXkSyz9Fr8Hq@jd1$P>5+HH5FdsYkO%;WMv zMKzGlJYj%<=U{~@+j7MV0v8)bZpSs|;|zhO1a5Ba+czqw>KK$4__zoh4ANp_=TUXW zVvF-c`VE-xgUwz4xIHE3tqAAoVk6=-Bw+5x>}g*N3cCL`T^)k9W2Es0eSTP+3;dsg zb^jEFNrE3JA*^{HT#88;4F0Kym@p#HdS7S|_mH=X6vOwKhML;0!9ba}Oa4VxA5&9; z3UG~W7B49W3ycJc6-2?U*Y9;2ixKU%H$@4N6;nyu%N5sC^*q5ZGv)QW86u;CiOCyi zW5w#+Fh+-2HhO5D@d%Ida6MI2Ad$Kyg-OR~LWep=4an-eq~WF>+xT#ASY8sF3SqDc zHyj5}W-SsWm7&~CDA?jGb4{H^Xn;iGk_n`Tn3q*-X()oy`yq6#QQ|+gxW?#z#pQkI zAJI*f`*0^(fgWlEAtxoBtVk;>Zs!HHcoPQIR>H}BXIN9Rl_<*h(8pkGeaM&O>!@~4 zz-3Z!QeFzG-1&XuXp_oqxJQ=HlkVV)!jGLvfgaB+W{V8r%X*CpRIp2?VXB9C4zxrr za2Ri_=B^;uk~f8Y6`38vXj#6{4cZ%dy6vtLQ1hKG4E_0&f@JH^=4HAxim&`0y;Qcm zez0HCfLOBki!2+xG*c7fW0jaBzFOgR4+oko zUW(^mu&!Ie0uL#)N&Q1^*zU&f-;y21UQ7+L!~Qsv0zvRu+14fO6C-t#{{GT*70q#>#N zM+x0)9A=%rP)U#Zl)1oX`7u1Ll$(GcP*AGjpT;tSSsZ4q$e|Su78#CC=Y1jnpo>EW zew<}MQ1gY#6ijb78QlN5n|M$v;j_}Pdb^dK#f*nl9_##XM}r2gG>F9vGa_JqhZq5O z_T;Q@t~KVOb7*YrI&fl4Abd&hh(P@-f@Zd@0kIvXqQ2PfPBQgT8CwxsyZ>*2n@;x$ zR<8lz)_ylXQR012RAlq`xK_02!BJINYpdwngQDuI-O+Wh7!Ec0U==Jog|~GF5dr7xTY?_IkX2q`U{<+A2vQDRKLs|4m>I(&2aDkpxzH4m1UB|9;JV z;rPUL`vp~#|KQbzR5;+E`Z&kzJHOPs@BSIgFnRdkG~FfXACOdWS(Uy_A&8$H5oxuYJ-z$+EJb6!f7iM8UUGO2#xb87!&Eosxmny^Glgeugjz`;< zImbPZ3oIS7_s`y}0n;{2sdc#>_=RQ{Mf9YS8 zlu*wZKUpGV7RF6zz{ESnYY=cCsr;i*sknhE`ZDGDPH>R(&9?7_d4GCv%aRfIUXb~q z*f81MS5P+=?EzHs+_Ce{&ojh#t#$K0`r`SYU6x9giRD~8d8Oibx{9foP`GWVc2xe* zBi*P67PgDVffYplXO+ZY{34xf?J=%wRQiBBC#N$wU^nV*xOo^cCEx3NCC`EOVAC_P zs<50B9J*u66p6~nzpUE8=Ys&`io5d3%VU3kEHGYX-NtEzqZB^GJW?`K(Qtn1Jljml za__EW+OJE6{{=u9LT?r#rL}&QUVW0egA1CP6TU$L&x(7`E9OfrBYjYETOMUDMEPMP zujFqLO!eBT{UiwcH^+KmSp5&P754IwIO4oD~S`PxAU%K8$8O2lq#S!D`ieGEW zZkgdU-CmNw92-&sg$aP*DM+omGx5m~UQXpcvJK#(x_RN!*@n~%`OVwoF!#Z-0E4V?E14h%?GpGQb#;28~dyj*yHf`=lF;{-K-+mOE~ ztW+T4W@_+zVx{lo^$>%>FNzKnYamC7C0a@u|#Z#t46xTQvK_X+2;rZ9V-l1xTvQ9p1`6BTQlDfe(#oA{%a>fxAVXgyY4QS zS+9!(X_@D6p=VG2^jxVLU^p=r3q>fWxlO0~AI@@S`_#I%HE@!3VA=W)!=|V;p{yVv zAoshdV)rDJvzBmd%eUk%I$1*>SwG#0aV<3pleu1WkvOHn1)a{TyMCoIl*dq$q#Z#g z7D+J4jM@FZ0XBmq$2}WwR%iOc#jWx#-cD2WCqXxEx-NGYt8+V3D8$k#($>qqBldd{F>6VIo{{8Z76+kCexMx4R&^XxizM2TvZAo$P)8vN3 z$;GY9DY9yYnr;#9Y9i5N-H8hcJZfl3AM?kFmu4J3uwm@AIAcE>()$`eVL*{XlAb<} z`XXng@yrUeL`4ORcUZ^D3u~6sf(eG8bJ9Fc_$fTsUl(k*T`t}x8_4_36;==ZI-jW5=_GKm^vY#ECxqw$bCL#9Rjmv)xUcNh6J4<-x`^aW0PYN&6gtnjn=*Ur}nL}SaM3#ni&OwzcUjO zf^6j>*W)&CZ(r5 zbyY?%mU0A=+pfS6&P8rZY~I=BR4EovvKf9ECP{0nS!l4}k$ZHO59P?1jReuM;NdD@2nu?LMJW`)aZgr_)Ul(k67w{A=UVD*S}kL+$N2icX(zw1{8UQ%Khx z;A?qdd)|sdQS4Ho<^@l03jFo=Km}qq{^(+lp63_&{#}3e>}}q#!D_)!PFTFMtKXx8 z^vg4i^~SJtlMQie3oyOt{Q$q2 zn5)VU>E4%Q;1Qsz6uqKN9ax`I5HEe;D_#JbWX9ICy@kgXO}z{9W&6^#+xL7s2SUu=XlPDWn_ps9@q@41uHx<6G=k7G=^N<#fi}bxLh?7oo3q;Yl z;{bm$j@RtWpJ_#F#$zPddP)_?U!(M`pD(MtDLHcvt zb9T3--ato7+uvv2=|!MVZS8chAW0A#9g`5{I*Pg4Q*8d}Etbxm$<>Nv%GF~Fcc0^( zQwP)Cm_7Z~A77}_TlU`uWTETaR)?$>hr^od3@$y8q9+@mj(8fUoIO&vo?@2{0lYTz z)VZ>vSA^~A+~*Qh&I`~11^Hp`0Chdd#uF94bmvcZu7qr)?8=K_$l>?|$QtPD13-Cg z{#}0f5Z#N7iKAWSwB!`;z+8Ka1cW>d7!VT|shR#fLtU+TV2L8ZS&ClP%^Td&Y<1N+zmEP23V^V15UnvAFHmfk?rqCY=@iJD+Ee@c7BfTI+hg}Jr(xogb45Q@ zFcFK~_|WdH!vKLlDl>)xt_;%#0X+2y8mUr8rz{iPm_!*Q2yAtD6ev~=VW6+OTLVD3 zZ3M{Acw}M9VPMO~5DM7J0VEkq(1vuMKcA7RpZ9xVbr~#|sg2^zzU$h0C{#lKP(r25 zKRr`sB5}CPLv&_^E~jVof`tN1MkR?6(1yj%B*;tvxA~P`-$&lncU3a1y5OVK-I*LFh4(?q=UPXm#4S+)WQhN*?Owb`4?1eW1M- zb*ZXG`4VzfI1`En@ZP9eBIM!-Nv2f{|3vy5e(A#}|1L^whI}<<15nhaUKWowFMANA z{k3d~5K=|OX#b#y)2S`UHBf8SxCFtL*OKjNX&@+SGry9G|^8Qh4c^6)E^+zx&EyC{Z&HCbI#6AGldDR>876358> zS1B;GW>>Io4eH+{523O=$vDCv9^U{Kgfor^QR|bkS7XCXN&mE%qtpZx(iiXL4FZ7L zOTxw4%jOBPIs&*4kSS>bi9WT`12sWclTGTB5k9A3F+L4iqdDUC#JQ|FD7wFbg#bBI zxOj~*DQemM2*7LS2PcGZ_`h9y>c04s0?6s=DJf=gHMO+BfOdf%*i}QMnr+3m?Q?Xb zo8}juMEjPwD?O@SR|a@xA*%3JO%~gsaiWDzvvZ-Vo%gf)tMxH-!4TV1o$c*#U?#@w zbgr)({%<-1LS0he2J&8BtEKHDk#|6}Qf7okOT;S-YueyR2C}m7H-#ZAgH9}~tE)JK z!)2(;as{%w;wdf7W|#W6gL?%h2Y-KQQNO?Q?9mYP%2KMcpOQtUWKNKXMI#}o{{H^= zlm8w06bvQtZ1Ch|&f`t~h$o`|f%CUC(8`XmBlDpwJ}|W}8`IvvX}Sy!?)>lDHKuTr zQ<76!T%T`myPCs2v1WP9L1bk~-ncPoo&)GcM>WtXC3tNrmC@X#F9+H&HJr53b7a15tmDTNn`EHw9T3F#bbSC zw6$0hq#G#R{`d{3%}A%a$5RPhnU&|g;-dcp$oh4>w>K2^^g019*3kFggs%iUXus1K zT`&WUR%4m+{pO6IIU=lY7a{y$RZfAqo zX06xeN4levz6j}?H-&?*$kYbe8PFhq3koM{grQnoc>n=%aXfP`svw+7#7)pc^*?+y z4B*2M)aLg#aG%RZl zG%h!15Lb)50A)}vIuzkCLaue!q!;^Y79?Z6xk zARu!cz;db^nNot-l7OHf1jrqu=)acW6~IPP$x>dFdVQx9B%nP0ZO#PWJpP|0bw^Cil`I|dwYBUq10T`&|yA( zM>r^Q+eiiE)e+ZU5y*14q+nyud`+h1VTH*F>Wba02_oEpXVM-wWo&)E9Q7`R9e?o_ zs@9wage^~}5YUjQC5>n93oh1BOAd@YFb(MLD07%LXq8JAgn>b=-{Lp9K>-$ARsqfz z3Id8ZDM+r0V@BY^XyZ2x?>A|6W!1+U@4)L56+1lK%2+WWU`tEU9S-TEfEw6Raw5sv zN?zBK49X6&;Gh9u>SU#I^g+kZzZ!S>>kdh3Dx7YykTpmog9sTudjdkhi zVpn_l$4$Gg7ynS27FbYwdaqmPnUj(prX_zY{EnM@sox|%LJm_mU^0{-mCZur(?N8F z-4^Lk0;N+Ddf@GrlKX=7 zat>|z>*c}1TpfD4U4-|dvvMowBi)>4HhW}E@7pyzPtkkLul>M1MRD)ger)BN&1_Q` zvsTSy^3}7dB7&p(yGg3^Caw*l?h+{C48Ec07$1qS`;nXe99-cDoYSNvl^OXm= z^oH-@@e0^37B;^I7P=L2`9SE)cXqu;-s8n$vkiZGTh?!uz>MZlT_~OnCEcr)*Pa&b zMww8SYwAf4mi9{g7CX!en#2__fs`?R5?lfiTnbhjcBk%^(YG7a?Ys`E7Y27t1nzq2 zgT&G%*)ju)9X&k!OLJ*G1}v)9@@T{qE%^k2i+}AMg$)V`EI-7`MM6ozj-I_Oa`Eeo z#R##}3^X$ZVhb|*1NAwjYktDXwE-)w)PX(@Po9)d+*WMp$2iHcPx-oq%X1X>x&eJs zSL9p=U8OP1SYKa1T8nAM0fKuS&=*FnPMzq0J!ey=4D_G3ZiQ7IU}?;#%4g5F<7>~= zEWN37nJ%m#2HvLV&-VIGcQRyLoG#^|go+&?#1pqrzt4D35?wnd)y&9AuGor~9w(c8 zrj=U?MlW3sFphJq4d9{+7T1d^p1f&Kp#+sxR#pzToq0T?3`nl;tC8wBdTt!-?#ay` z+6ws2gLTGZ&dKiX?YcM!?48(j_94N@9fF@Lzt zB*xYCo+;^ZCKWwA`9v@3Bo%}vvxS3{F3TYOeyW74EtLgmKFKMsB!gAO=^}gmH{1Xm zPtkZed=wMl_cmR3a7{1#R+y?JdiYoO;2?7qrY^X{gB86BHNpdH?ETz$sA$xbX#>|j zq;QHo)(XQiP>xPcP@o7haUa?xlsrm-ax`P&D!qvwHYjEH{`E74|GfF@_>;eSO`!aW zzLtw{bCftmXaDtRe3~Bds4UfQ2ZMJ6BIms_H+wT-4e0YU_>?H?%gtX;xIIXs=52It zm$|R}>~$>6PsQ~l!Binm2yWD_o_AE?pApF4h0ExMNIs8^g#zbmz2}agNR2oRmW*{b%xM+T6@9)~P*l9T#KurZ$AL=EHC&1g1{4pt zQ4p}a;Kib?`NtLX2lAQQKQzFpJ=vG@0#2ZrZ)$=J;c{=gIZ%z$L<{E54@|t z_G%T9bT2>P4U$Ga59Og(lSsqq(){??=etq@c|rjeVb0(NYp1P;)5_0}8R^OIPG0nX z{+u`Xo9y$t2qlH0J*c{?=`CnX9kB3P6-Ut=fIZWm7k8iG14`YO1@bO z>YTV$_UAc{EEp!9IZgfqFJWA0)Q(QvEOp|ap(K~VS#Jzg?tcm&ofqYsJPji6-f-`x zMKvT~j2jBTWPt+Pv+6I$dVr>4Dn-1_sP;t0S?y5ax7fld$8gXTyLik`f`0@_6QehB z?4`$hdb%RE1W@WRN7uVBI2fqG(bg*qq$H;#{ksXDOQk=YlqF_Q{_KVr)b4>2E9^8# zGzd}Nt(j$YKXcGlM+B6;dkIzz`ul|82qbSIWTJ$|9p0$d*#O8^Q9PfhewKIm6EZ=x zz@qXyTu}UTL#Ar{IQ!VSYw|4!yE(=pC5AdkW&d)ZGQYjjRBRFF>=BQQ99Vq@gh*l? zW@4GgHWmeV+Md+4874sW6~^nCyv20FWee#+V7dG4p{MOBv`cD*Ba>4Wyur%`*Z|lh zkFx>(Dx9-mwX<$5hwrL3AMNlh5@Pn&76-^dex2KxcO10(ZhkwMt4*?Jo{95YV8f!P zA+ClFy${T{&~{Gi4+G{q8Y z??0f7XaGC$>|Lze(?OO{1h)m~1+u%2_n{s=dSF-)0?;W{Phkj_gA$ z$?-8phenF;5~Tg3(VL$~Ng5OtE>8ky)T$#SuSTR{4V*Mwa$MA5@jmrV51}d+Cq{#8{mL@ z%_NeA=o$96G_ROqPD=!y&7YuNp|7H%b|U)vOn1lD@Ap)(O}(IcUCg3D*2A(L_d4QL zO#}!a#>T`tEFUbhGhtNO7(Pf_(9uy*ctHI0N$oV2fY*4V(t+pjN6%G-^z88!^`*x? z5|1mE6w-T7q%s6c`z_@hhr?B=73wLv(q9TvJhT>pY%;6d=a;i)lzoAr9Lw!6+4T&( z2{SB7VK!9>6+pjc00fHUPE{`B1-obJieN%qhsOz zI#zz$iuZd}Af|7>NI|0rIkdXS>M^s20hL0Rd8>TiJ?y$EViw@*+k+d(x!TQjoG-=2 z0`ZpOe^&>a#b*w8?_Rk5bP5dII%i!!@+J z5DThJ&8nvkoilA1_&sXB9{qPX@XQS3lHI0!la{JN5k8z})2H3jujFcl587{90yDa$ zx%wu9T*mr?CjJ&hqD04D;dSHn>RdNwuYWz87jOu^+X||f=;#L{8Zth7wpaf;QHnhp ziN|UV64Qp64Vr(QZ=%fT z$oqP(J$h^?tXld=roN?ndk^Grf>cCPRp@%MlLfjb6+n6y9zR}2*cD4P(1nnXM+Dm# zmFP}nZs0tXd9T@!LRcgKqk8Q^XWPFWmz~Vmb+t>)P*V7($7WjTBcwP=mNo>2sIW+9-~#vJD`b}eOo zzK)rnNeE8(u?vy>fA7f=1zEN90=~ zQR|o;MB)gX?rmbPIr>h{!?~0XKTs%Trq!85bDuHe#qKEMD#bzVasG@PlWdk`RC(B}r)b)F2ny z0LX>2r^?MSb2C$IFv)|rkIgyP7)wzlZe)?saCtbKHS(aYf~~#i{7(__1m5l76xk1O zU!|E{z?_w3-JJuZVGqVuQun50=29I(66J{3%EGb;oXH=ZwCN1rb@>u&`GW>W4)iI_ z8iDu18W`CE{5u;S!Qay{;6w1@WJME6X7KC%X+``N1Yue``TiRilo3|{^q{q27*2xPV98r@p4YIB^izo*L3 zMg}J2f;oA)nN;~2H!yw90(`xn>H zE$s(+Pn65XH1r;-2wtNcNuQM`ISdQWis{Pf+mCC`$K#_^0AotzbwqVG^n2k)^9~zx zpJ71X?4&L5w5`=3kGRViHAcr=FLD&3)KH%8bFF1@c^+ed_`Na-G($)6@HG_wO_RHKJ;C zWB}|=iMt$P8K7~6GI2Lk`I+f1Pxx;p4U23%kZ2k{c0>h1q4kF^ST*hw{`q0tsm218 z1ux0@1^5J<`?H3 s!*tdz7H`l@YWI@Gv;X_dxaut-C)T;3P3LoI)1d1X;5vd2J zU=fEGdUjHOaRT7ji6SP6%LS4jTe-VCY)n*{#jfu0hw;3V>wn_*yAdU|6g{axH`2kZ zQcUZ($<)LGYTdn|M9tlo6VbS@KEqfO5*e9`21_+Rey9QQ9yJePg>qFmE_QYCfb7j^ zfs=MNEfHm9>6e^pShl>yWK5aVOti4@@<58mVli37wwRR4y{`km(vyhAqZ_6_IOX9o z<(ptxVAJ9%WvH_+5;&9>`sw#ly~wlUzx>BMCZeU+!yDxAgZ?vFm7@u(%Slk%TG|`w zL6TiCWkGx{R@jeShC#=fPZKr+WQyRNI;0IY*Spg`!41bTUjUSU)e1NO#^C}hQGehtK>%8~N z=kgyQ4ZBeS@Q#m`fcvRcdy@j!A9Ipe954-E-&ONm@^C36M2%4cdWwj)k}$-F{zm|S z{=w2r1_ag7;@sce4HWSQ_hs{V>{jXZ9x|p6OI9f4ztBkX6Y2{qykv*UI!#nU%w0UNMprF+^*(WRZ*R9I#!2m%0@EF(j^+7HqvFJ&_6PBJ zUP-iMseQP&&7iXfw)v-LayQBcrdTvcipnB8yh z&!P2FEpnjoj+c3QQtJjQY4!QD_GYPQu$OCre1>Nh;^R8U+TKq@!nR$cB#7UB$*=~O$MLKW zJX~tylv>1>6cyvyf5=Y78I(^um-xcXIkJEK;_s$5JmVui;yL>z2|WACq^Yfm8KWXQk^+Ki}^Jvf!<$PWQE!5W^q!f zz-1y;?W_;u^d428sZ(Pi1&CNHcia^91cij4z|R%;Xy==u!@!gv>`hI?>3Mrg3$Fhg zB>{R|Zg4XtFXd+XiIx(=RXY88E<@kG2gmD4&Y>GB>r=$U_uL!iQiXwgMZ*xn9>SS3 zJd_@sCvjupM`Ev5Z*M(+XtAMw6JZb*IW*>u7*Xl+VVi|M)+MK_C1{m3*TYg75yv0N z3#~oq=^F5j!_eEphczB8Q1kaAw_DWdv$IXymU_;fJ}3&jZaqrqNkW^?lB;SyBs(q> zJ7IfCUmq1Uu9Sm5h@#l99%PpXrf7du;A%y{U7V$WHDAy~Gtr?Lj?bU_v1`4==`zNs zhqX92l<49A8$Fk$HFJX3ZOo57v0af!SB97ri>FV?FrhFD_piV2>#c#))8QP=jB}+7 zn^jwpR)m;p?>NX)Z+5+(ug7Xt6}jBgI2@3#0%<|P%(3*w6Kqaotxf|^r*)rZp$}?$ zyhHTKi@2hm+sDiNk?p0dy>>=;Bvk*GuvYrQ!RQeydkRb&L|>41%KbGaviGZI5j}xb%oi#ci+(Pw;bAs2#yFTdWLAW?jgwWex1FJ@E!vqrhS5}g8 zmX@aJQJsq$thMcF3lRJrf|dFG(s^CbeY_I6P?M;E-P4 zm6C_ggTR*M_Yi_hRi8`!bgAoFx&%OMjJYR%U}g6$6!0MxZvw2U4;7eTxoWwiV(py| z;Eooqwi`nT%$4@)< z@rnWmdS4F%60b~}AhK||ZwFww$HV?$+nw01HX(D)aDsJKN7|Mts zKNNRag*AjFbDddJl%XDVM-X7x zdZq#A#F-6NFw!e3nD6=Cf>v5_#(%-tc!JA`?CIjs_;usvK1Xmdw5|e>%@X^L=`1@u zf8j5s^-?GDX2VBI9K|YKLR4WOp^+C{iE*tFQ-qYbu~hx==y4mDxe?Yu9DemvZn0a! zkHL->i`MNu3RLqXkz&Mh?tv|hdYZ(Z9XY4g`Ae-|P6F?46w!VNI&6d^tW}$6+0RRM zu7Ah4?q${Vzi0+Z3tvWAgS5Y0gh(X%h7JYThs-}*faHceYbW+_K1%~jPpzXWOx{J& ze%!rZj5e5r3`r6(6dFW-_GNikg>83lD&Zk(ap3I+xGX!e_MDLVhExs?@lKC9Fzr%DHDc!57v!plCnr_UkUk5GO5~j0+?6tfUxr%zp#N;zm?9g6 zf$Ad~EqgTA4V9Hnoxzs^g@l2H69>HbtYX6COR34UIiEg32){eANKBA~QCQ{L3Q64B z`#G@kYZKc=eBp?YdluweO4m}uK7S!|x=bkh1+JGv@Q90VNKQJPRQx$>@A|rs#q|=? zT*I*yMcgKfyCY6F!oaAZm45pqD7XJmAtUELU;#!Vnh2`_9WX=Ol~w1eAEL4`JmunZY4S!h}3L zJPgNa(Xk^T1N547GOlw+#(8^nWnp2S5eO#zr8gEFzIW+bt#DvDFR{G4Ni$W!vXGa< z`}fo=Ke79`j_0NnS`eCwxGq@&SY7eHB!Uf&MOLu!PcR*Cqd*JKBbmFV9)G+k*V~wS zEl7dxm-fRqt@B{7<%8wb%Aslw6m%N(nfQUNkf zuf6E+`u^hYJ^!`Mm%a<>pK>Srw+CN%k8q!kok^|V2wzNH+1TBk@4^xaPl)n?Jt9I> ztoH2RFni?yd6OM@Zv%Gk;Yq|zjoH*h1eEVVB?=UHuJ6XoGW;SF7sx`3U|dyRObmbd z@NghkG%}=psMG9K?)5Jv?5QW+6rWUx-U@|D6?4&u?1~OKRJ%X6^jQ0K&w*T`}iA=EmQfIWm*KrlpJiB!Eim;lA4TN{RSgt;Md!=8Tqp&r6YMoMJc1H67J zAB-)QTWOvHS9Py-- zC%EcrT5?6-s+Ll)v9YO^5+b1)zFwOajaZEbi?6hQhcUz(lj^`w(M|6f)JT7JQD{=s zo!(C77Bc7etC}0T=_>1jcqSkQM;f{y|Ky(<0(P=IKWm(L$$~;yp$G-`V52gWtD`L` zx|dhp#=6)L1xFZs<0rOkT}QP5$RKgqPMs3OYc^Y*3ohCZ-zK49wSFSJXzVxG_X5%z zSZd>R0<0yOENkwH-Gt|_tq`G#moqh5FRS=eDu zj5Cjv^NZi-4nG8MmWag)N=wITe%ieg;dHQRXNl0y4$y8^2jtt`cxwOtlvGHs*O~WP zUwmEsc-t?t86huiA?^4=qxbZ9WbH>MN<7&hawk|8gt056wHBX=fGLYO@bK@F%ifsY zgKu7>%om5w**Zm?%>L&o<2IdBZB|wqK=5{npw6erc|-aa9ANB7uqAl>COSI$z*H#X zolzf8w^GLk3jtTn)}_W)*HCkgXiF`;3|~D?GAM;D`o>(yXSX?d0qhTi+Br8CA2It_ zbV6M4E6rWvryixRV%H+`tLB8bt_Sc-i^^};T1G0`<{%?2A_-NU1b_e1*B4Nk)V!chNV|n-jwj5`Q)L-M(*)LP#_>(cy zU-N>MWk>0?33f9@tBAoWFa+>GDv4+4P!6``T*$k?P?saQtgodd@}a3|Ptuz=O`E4Z zo1qo;XY1`>2qQ{(x?J(WSL#^v`FQ-Cef`fEb!yWa@?V_P^Pq^sar@d!zZp4*NW0C= zM%3$`w(r;Su_4FeE*!sYt`BIZ5p+6~&rGCg;XQtvrJpxTay~=ive-fSpw5rB{^(u( z^_7pkv@R-c7X%xWv%jJ0wAZ+R&G*?arpF&cft=#5Fbou%!|MQ@$7a28t* z9SXJdCGgVESGvb!q|atX+M$pAhHQLIaSn!kh{Ux(lW&x3kHV$kEmMb=B|X zyrTG!U{g;;=kMUk(NSE>o`g9^Z7cYCAMuXN`<;p9+G#hje9eWxE!;qD-41HL8S;$7 zP_U_jX;W9O=CT3<_P4~AtidGi@!O7t1?wXF{6YJdIiGXUU>60`uwYla_t1(1`0&;o zbf^TZ4X;H-LT7aKI)A`xN6~}#uGPrD&dd#JjlN^(5mq*7(KpF4vwn?Gy4{7VW@?%d zK3RC+8CX!$ZLS0bTR7Q--l71{8&;S1eiu2B`6;8k!mH})>L0kdxsP7Zi#AD4Z4;j? zaLW7uybR?8?vi0T%_>hfGa~1_KAx&AY5$Uyk|zs3NTg~SYl$MS7ZDQoCV#*d4whUQ z(0|fZh&D-yJ#kxV!kc|+iGi0(RgsY&9!E>{Zc-87inXdz5L*k&@C|EzSTED=QhDNV zAjvSb(mPqWt5xR!b17heJXj_O6jihq4=uidT$k#V{PpYC%FfOgGh^eOz!T?-Cw_C} z8Rmf0hYZW0$P`+AYO1M$(Gf2P-Mq3+#ojw!vhpnQkA8cbI=qMtcxoSTUjG-@i-`qE zw_skGbVpo`45Ri9w~Xe&yw<&N=Cfs$kE4zo*BQRMK2Jy>eOzYTzWV@VUj6GH;OF?j zt62niBzf=%UnX(C*Rxxi7Mrg_n`^LJ#={gUR?jD#*j+qSxS1w#rhYrp{G^M;JbO`#4_jGad!*!o0%`RnVAj6bO)#E%1(5+H_?gN z4_O^#nr3UIHv^hx*Mqb6i3s;_8=Po?;m$2j^49ig4dEI*^M{He^6>SW8i`j5GKs8=w>U#nHC5Uq*OUQRfv1y#=$gKL-BW#ndF_ zDSPFSR)EyE4EdnQFhnu<^0dhp&82R>SW%q^%RjD;m*z*QdRtD8v_!zpg4-D+9XB$P zhS<~8&Fk#=*@J3#Jm!;;Hn6Za1755Zk9RTDP?r<8s^Vw318kfKv&ZdI@p5X>X zR%!vmq_Y@B!c-6a;&fY)0K*h7`@X!nc=co3H%SlyUaT3a=xWb`(^~w%3gGLno9mjI znzjZ-rrnZhn&tpQU!)Fp6z1O=VD8T+x%J3dlY@#2i%`9-^|GXL^t5U1^wjR_h>EM% zKG@u&n{yd)6tS_khE1KAin;fw73eF7o6ve!vE8}6D)7*mMjq^EUh8#hab4?>iE!&# z^bSa#-Ev|rxj1gHhZW-onJk*x-K)-;Op^I**?~@X zTGuM@TOTVkEqG8gd_X~*H`+l?PTu~-vF)Bnx9xq2v{kd6vkomXnk7WpD3UeR1&&WW+)X zumHYQoKGqQuq+%MJZ31W_d7sHC^mL|mrq}^5*B8reV0--a*#oqF`=l4MMezC?0?ig zFhKEzr@5siR8c3?se(H@I~(+i$+YtDT9;&-6o|_pa>PdLl~}A!_!rP5bL}bQQE26& zxwp+X4%e9=ivOpEE02e=Ys1eVrjoH0WmlH3)GJGdEQ1-#r^0KEvKH9~g|Q7;#yh1f zZ$g$g3Jp?rvWzuiOtvITSu$m3vJBxn!~4x&e&hVkbLO1;-1q%l*LB~x@RiT6BMX&b zmt|98f5sUk-M)V6z3(T_OLST`zTwN!<&Sgr>|_nm+_MHn7cMkBuW#7ZHRV5vt|b3A z$Rr3_Q}1ebr_7j@AvAu~ta1>6TImNYwgq6=r+^)_y)=5dY}>eIs{pP8^E<<&(f`0KZ&ZQcy^U&mtzxP}$FV@I%O9LSW6z@{`z>-Ap|aWF5~k1O3Tk*ewT3h%-pP zef_ND@ceucej-L7G(Aru+F=Pt4Otf3o5HIPY(0f7@9KaP4fOYSzwJ0NHamLQ^d@-2 zjiT?JfB@5@Jw4Lz+VfklzPE!(Fo<{~iyGJ=&EFGCBr8_w}O^UZXkL51c5+=sQa*In|t0c_HMLYZ{hp~(ybE0N4x{}UxqR(VM zdqy8Bu}2sg89i4w9v&>T@(K?Zy$uJ7O6i0T!0pP(T+2ZIz{*PLzI}1bq}&+# zhG`WD{7S=RZCe(8f8XBTyf!zq^Wg*Wc$awk4qoyenox19@k-+_? zwtBN3^Z^P)uLa+C%0mEnky8|P&}gcZb?R_r=1iD7$Ul&)gX_ct_=G#!47qmxr})ri--P=?>~ zxGg^>g;ujeM*N1dLRUK@RXHv~4b4-reoAgY+2y^{9xwJpHr-@U*|Ir`j^{$3p_cxX zB{rxjYwac400bS#&UzvC)@>1ux|_%%>6dj$SXs$>?B|7m=cFVWt|I!_2a{^L&|j$} zn|eDH3+1Kyu{xY$QE{=wQ9U83Zo$i^C0}djr*8IU6I6|-+C;{IHXY}zN_Gtvclb<& zORxaXB+mXDpf{NTS`7qfCcgILb975g%%L0ASQyhqt_w47IxY*?NY~~jva+)B)`nN% zpnD2U75we#@6R{pJ+#$xo*iOJxfkAt&%c*9n0O4sis}B7<_HRsuYxVF(yOo$YBR?I zh>(|sM@NxLxAD09D><1?-@{bmKQdTR=(`V_9hJ8$j}U+mi3Mz#VGWKh-N2yuj4KL{ zFXqjM?{%jsZl+~3PHr=@_ZT8ofhNsB`=?1jLDu#*!9gBg3;O02AXI+)^CBxX zO*zuJce`1l8M8Kx?%npSa;v!TKG)&3G=k_B*5A_;Cd_P!kt_Nq$YXE34Kc`?0#&+N z39iE%HAp+!q69*I{&-2ZaJMAn+d&sZ@pt?2xE0QpKA1Ak+@6_!WrkOa6PN=;+C_+K z!dFixpScCEyX~1u!a8dQ-v0z11_5 zL9Z-Je8#`4Y4xxHa-JQfCcp1*F4%{=X3_rjHw|zJs{Z?H8JkafJ3BoB8R{J5trLVv zX6G@Hck((2MYxAYWgYd;rOI^SkU!d|`!i zUyRj~lyrh#aOA>8BuS~7_hzZmw3+Zu*Xt_L@=e^Eq*Rt4o}O2{Y1(XYZ0s5!w6l{V z;pf^)q)#U&Kadf{O^3~nR_SC>Q_3t)TH6h4E1PD1OB83$DSShcUGcBEHSFpHLFN>(1n2Q#lZP#^7N0o_JYsSaE(;DLs9h7wgJgs^J>!D zRp&=J2Zs;@m-{LN2DrI|@76;XK!K8@RH&Fv2khZ~@dKC#bPZceOuP$NWW+!^h00LM zyl()|{E#3$kBH&aLtGgL6FI^G^_p+P$0yd&uXKMHX?^(X4nuCze`(Gw-%PzK@WLL@ zHlR5pqQqEW9n+(uM-}PxrLKDWa&DIojn4JBkz5z;2skMhGWi7fLUb#HG?(}Y-2qwS z+%E>bv8X4km&Q;+3+sOKIs_?0x$6A;)3u1YqjTXh)XeR%Pn(+rx{?>_1+bz&5ERM2 z;n5-%aRRe_gCImee)hC#w$Dz>-fNRH{6z6QBFPyU_Tsa*&qMwDOk-Luh$fSG?J_S1 zE()NhsdTw#G2mszqWO6!ya@-6I`%PA=Gx;Kg!V=6=r1~P{`{O5IVy;N2xWlyZA zw)6359lEr?0q@1(E`~Yhz~w!6YgkC>k(G&hwLmU zzcKZx@Vl@A&Y>0R;Ffio(Xf1Nk2mY{ZX9g$6+&@fywp4gLP}&r!#BUSu5FD4poZkM!eY4_b8dqoXAKl%6i$ys0>ZCTU=k!G}>i9b;+lRCB2D5!X`~f7Itm0$(@S*_3 zu-Xn#e*E9KM#-_LM7h+8+Ofr-lXh5crY0ShuxJGV!Ojt0 zbarB`hEBt4qj%M*rD=YDdtqxW2hU71LUAJB0{2U0xh|crMY7?zWq8zK1RFX2IW4{;EQ)Q zD|znV7PyIlq`spAaF-xlE=6^y0JR-g^P&XlRNpn%hTjQ8u>H&2r^%uHs>;T3@izl8 zWK(Rst(3`T@_yH%c~|o*ONJ4psEt4X8nQjKI$QZ=HewtlLzNx_#Pm-uJ$;HtTgYJU z?N~H8V4Jotrdsf+1{nWHxVdx`$|lJ347m$1J_7%=Aa>Et+Bh)C8+!9%>=9^hw%ZW1 zT%cA(w7Mi@Md=>W*Kf4BHVyx7`{;7~Z&*#-bbMl>EOE*M^z$mLy&8H4?4%&{GlH2! zfVLM^n@VA2dcD#SY!UAsFHMD}F!)@lyCcbz(^>4sy}*w!4Prnj7m|?Q44n6KfMt{O<^L^8Pd3+pF9sDBEcYY~vwtRW?MT z?84nVl2#2>h06?x#xFvB647LkKPDy?_dnL$>ar;e>!dL_iDx&n%Aya!ap_sp&kt;K zg4ble_W@J7a0{4G3os*xOT-ZK=A2WjXHGin72^=~Gh=%3OQu5RzXxahf9=8`2PxkExV{C4de>f7=uupXtfo z!xj&2-Oak449!AU&^pTvM-HmZ!1c`KXTh*3y7q)Rh6b$fXi}qMHere's a list of tasks! +
    + <% @tasks.each do |task| %> +
  • + <%= link_to task.name, "/#{task.id}" %> +
  • + <%end%> +
+ +<%= link_to "Home", root_path%> diff --git a/app/views/home/show.html.erb b/app/views/home/show.html.erb new file mode 100644 index 000000000..d03947d72 --- /dev/null +++ b/app/views/home/show.html.erb @@ -0,0 +1,10 @@ +

Here's your task!

+
    +
  • <%= "Name: " + @task[0].name %>
  • +
  • <%= "Description: " + @task[0].description%> +
  • +
  • <%= "Status: " + @task[0].description%>
  • +
  • Completed at: <%= @task[0].completed_at%>
  • +
+ +<%= link_to "Home", root_path%> \ No newline at end of file diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb new file mode 100644 index 000000000..46eeb110b --- /dev/null +++ b/app/views/layouts/application.html.erb @@ -0,0 +1,14 @@ + + + + TaskListRails + <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %> + <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %> + <%= csrf_meta_tags %> + + + +<%= yield %> + + + diff --git a/bin/bundle b/bin/bundle new file mode 100755 index 000000000..66e9889e8 --- /dev/null +++ b/bin/bundle @@ -0,0 +1,3 @@ +#!/usr/bin/env ruby +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) +load Gem.bin_path('bundler', 'bundle') diff --git a/bin/rails b/bin/rails new file mode 100755 index 000000000..0138d79b7 --- /dev/null +++ b/bin/rails @@ -0,0 +1,9 @@ +#!/usr/bin/env ruby +begin + load File.expand_path('../spring', __FILE__) +rescue LoadError => e + raise unless e.message.include?('spring') +end +APP_PATH = File.expand_path('../../config/application', __FILE__) +require_relative '../config/boot' +require 'rails/commands' diff --git a/bin/rake b/bin/rake new file mode 100755 index 000000000..d87d5f578 --- /dev/null +++ b/bin/rake @@ -0,0 +1,9 @@ +#!/usr/bin/env ruby +begin + load File.expand_path('../spring', __FILE__) +rescue LoadError => e + raise unless e.message.include?('spring') +end +require_relative '../config/boot' +require 'rake' +Rake.application.run diff --git a/bin/setup b/bin/setup new file mode 100755 index 000000000..acdb2c138 --- /dev/null +++ b/bin/setup @@ -0,0 +1,29 @@ +#!/usr/bin/env ruby +require 'pathname' + +# path to your application root. +APP_ROOT = Pathname.new File.expand_path('../../', __FILE__) + +Dir.chdir APP_ROOT do + # This script is a starting point to setup your application. + # Add necessary setup steps to this file: + + puts "== Installing dependencies ==" + system "gem install bundler --conservative" + system "bundle check || bundle install" + + # puts "\n== Copying sample files ==" + # unless File.exist?("config/database.yml") + # system "cp config/database.yml.sample config/database.yml" + # end + + puts "\n== Preparing database ==" + system "bin/rake db:setup" + + puts "\n== Removing old logs and tempfiles ==" + system "rm -f log/*" + system "rm -rf tmp/cache" + + puts "\n== Restarting application server ==" + system "touch tmp/restart.txt" +end diff --git a/bin/spring b/bin/spring new file mode 100755 index 000000000..7fe232c3a --- /dev/null +++ b/bin/spring @@ -0,0 +1,15 @@ +#!/usr/bin/env ruby + +# This file loads spring without using Bundler, in order to be fast. +# It gets overwritten when you run the `spring binstub` command. + +unless defined?(Spring) + require 'rubygems' + require 'bundler' + + if (match = Bundler.default_lockfile.read.match(/^GEM$.*?^ (?: )*spring \((.*?)\)$.*?^$/m)) + Gem.paths = { 'GEM_PATH' => [Bundler.bundle_path.to_s, *Gem.path].uniq.join(Gem.path_separator) } + gem 'spring', match[1] + require 'spring/binstub' + end +end diff --git a/config.ru b/config.ru new file mode 100644 index 000000000..bd83b2541 --- /dev/null +++ b/config.ru @@ -0,0 +1,4 @@ +# This file is used by Rack-based servers to start the application. + +require ::File.expand_path('../config/environment', __FILE__) +run Rails.application diff --git a/config/application.rb b/config/application.rb new file mode 100644 index 000000000..902432bad --- /dev/null +++ b/config/application.rb @@ -0,0 +1,26 @@ +require File.expand_path('../boot', __FILE__) + +require 'rails/all' + +# Require the gems listed in Gemfile, including any gems +# you've limited to :test, :development, or :production. +Bundler.require(*Rails.groups) + +module TaskListRails + class Application < Rails::Application + # Settings in config/environments/* take precedence over those specified here. + # Application configuration should go into files in config/initializers + # -- all .rb files in that directory are automatically loaded. + + # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone. + # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC. + # config.time_zone = 'Central Time (US & Canada)' + + # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded. + # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s] + # config.i18n.default_locale = :de + + # Do not swallow errors in after_commit/after_rollback callbacks. + config.active_record.raise_in_transactional_callbacks = true + end +end diff --git a/config/boot.rb b/config/boot.rb new file mode 100644 index 000000000..6b750f00b --- /dev/null +++ b/config/boot.rb @@ -0,0 +1,3 @@ +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) + +require 'bundler/setup' # Set up gems listed in the Gemfile. diff --git a/config/database.yml b/config/database.yml new file mode 100644 index 000000000..1c1a37ca8 --- /dev/null +++ b/config/database.yml @@ -0,0 +1,25 @@ +# SQLite version 3.x +# gem install sqlite3 +# +# Ensure the SQLite 3 gem is defined in your Gemfile +# gem 'sqlite3' +# +default: &default + adapter: sqlite3 + pool: 5 + timeout: 5000 + +development: + <<: *default + database: db/development.sqlite3 + +# Warning: The database defined as "test" will be erased and +# re-generated from your development database when you run "rake". +# Do not set this db to the same as development or production. +test: + <<: *default + database: db/test.sqlite3 + +production: + <<: *default + database: db/production.sqlite3 diff --git a/config/environment.rb b/config/environment.rb new file mode 100644 index 000000000..ee8d90dc6 --- /dev/null +++ b/config/environment.rb @@ -0,0 +1,5 @@ +# Load the Rails application. +require File.expand_path('../application', __FILE__) + +# Initialize the Rails application. +Rails.application.initialize! diff --git a/config/environments/development.rb b/config/environments/development.rb new file mode 100644 index 000000000..b55e2144b --- /dev/null +++ b/config/environments/development.rb @@ -0,0 +1,41 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # In the development environment your application's code is reloaded on + # every request. This slows down response time but is perfect for development + # since you don't have to restart the web server when you make code changes. + config.cache_classes = false + + # Do not eager load code on boot. + config.eager_load = false + + # Show full error reports and disable caching. + config.consider_all_requests_local = true + config.action_controller.perform_caching = false + + # Don't care if the mailer can't send. + config.action_mailer.raise_delivery_errors = false + + # Print deprecation notices to the Rails logger. + config.active_support.deprecation = :log + + # Raise an error on page load if there are pending migrations. + config.active_record.migration_error = :page_load + + # Debug mode disables concatenation and preprocessing of assets. + # This option may cause significant delays in view rendering with a large + # number of complex assets. + config.assets.debug = true + + # Asset digests allow you to set far-future HTTP expiration dates on all assets, + # yet still be able to expire them through the digest params. + config.assets.digest = true + + # Adds additional error checking when serving assets at runtime. + # Checks for improperly declared sprockets dependencies. + # Raises helpful error messages. + config.assets.raise_runtime_errors = true + + # Raises error for missing translations + # config.action_view.raise_on_missing_translations = true +end diff --git a/config/environments/production.rb b/config/environments/production.rb new file mode 100644 index 000000000..5c1b32e48 --- /dev/null +++ b/config/environments/production.rb @@ -0,0 +1,79 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # Code is not reloaded between requests. + config.cache_classes = true + + # Eager load code on boot. This eager loads most of Rails and + # your application in memory, allowing both threaded web servers + # and those relying on copy on write to perform better. + # Rake tasks automatically ignore this option for performance. + config.eager_load = true + + # Full error reports are disabled and caching is turned on. + config.consider_all_requests_local = false + config.action_controller.perform_caching = true + + # Enable Rack::Cache to put a simple HTTP cache in front of your application + # Add `rack-cache` to your Gemfile before enabling this. + # For large-scale production use, consider using a caching reverse proxy like + # NGINX, varnish or squid. + # config.action_dispatch.rack_cache = true + + # Disable serving static files from the `/public` folder by default since + # Apache or NGINX already handles this. + config.serve_static_files = ENV['RAILS_SERVE_STATIC_FILES'].present? + + # Compress JavaScripts and CSS. + config.assets.js_compressor = :uglifier + # config.assets.css_compressor = :sass + + # Do not fallback to assets pipeline if a precompiled asset is missed. + config.assets.compile = false + + # Asset digests allow you to set far-future HTTP expiration dates on all assets, + # yet still be able to expire them through the digest params. + config.assets.digest = true + + # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb + + # Specifies the header that your server uses for sending files. + # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache + # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX + + # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies. + # config.force_ssl = true + + # Use the lowest log level to ensure availability of diagnostic information + # when problems arise. + config.log_level = :debug + + # Prepend all log lines with the following tags. + # config.log_tags = [ :subdomain, :uuid ] + + # Use a different logger for distributed setups. + # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new) + + # Use a different cache store in production. + # config.cache_store = :mem_cache_store + + # Enable serving of images, stylesheets, and JavaScripts from an asset server. + # config.action_controller.asset_host = 'http://assets.example.com' + + # Ignore bad email addresses and do not raise email delivery errors. + # Set this to true and configure the email server for immediate delivery to raise delivery errors. + # config.action_mailer.raise_delivery_errors = false + + # Enable locale fallbacks for I18n (makes lookups for any locale fall back to + # the I18n.default_locale when a translation cannot be found). + config.i18n.fallbacks = true + + # Send deprecation notices to registered listeners. + config.active_support.deprecation = :notify + + # Use default logging formatter so that PID and timestamp are not suppressed. + config.log_formatter = ::Logger::Formatter.new + + # Do not dump schema after migrations. + config.active_record.dump_schema_after_migration = false +end diff --git a/config/environments/test.rb b/config/environments/test.rb new file mode 100644 index 000000000..1c19f08b2 --- /dev/null +++ b/config/environments/test.rb @@ -0,0 +1,42 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # The test environment is used exclusively to run your application's + # test suite. You never need to work with it otherwise. Remember that + # your test database is "scratch space" for the test suite and is wiped + # and recreated between test runs. Don't rely on the data there! + config.cache_classes = true + + # Do not eager load code on boot. This avoids loading your whole application + # just for the purpose of running a single test. If you are using a tool that + # preloads Rails for running tests, you may have to set it to true. + config.eager_load = false + + # Configure static file server for tests with Cache-Control for performance. + config.serve_static_files = true + config.static_cache_control = 'public, max-age=3600' + + # Show full error reports and disable caching. + config.consider_all_requests_local = true + config.action_controller.perform_caching = false + + # Raise exceptions instead of rendering exception templates. + config.action_dispatch.show_exceptions = false + + # Disable request forgery protection in test environment. + config.action_controller.allow_forgery_protection = false + + # Tell Action Mailer not to deliver emails to the real world. + # The :test delivery method accumulates sent emails in the + # ActionMailer::Base.deliveries array. + config.action_mailer.delivery_method = :test + + # Randomize the order test cases are executed. + config.active_support.test_order = :random + + # Print deprecation notices to the stderr. + config.active_support.deprecation = :stderr + + # Raises error for missing translations + # config.action_view.raise_on_missing_translations = true +end diff --git a/config/initializers/assets.rb b/config/initializers/assets.rb new file mode 100644 index 000000000..01ef3e663 --- /dev/null +++ b/config/initializers/assets.rb @@ -0,0 +1,11 @@ +# Be sure to restart your server when you modify this file. + +# Version of your assets, change this if you want to expire all your assets. +Rails.application.config.assets.version = '1.0' + +# Add additional assets to the asset load path +# Rails.application.config.assets.paths << Emoji.images_path + +# Precompile additional assets. +# application.js, application.css, and all non-JS/CSS in app/assets folder are already added. +# Rails.application.config.assets.precompile += %w( search.js ) diff --git a/config/initializers/backtrace_silencers.rb b/config/initializers/backtrace_silencers.rb new file mode 100644 index 000000000..59385cdf3 --- /dev/null +++ b/config/initializers/backtrace_silencers.rb @@ -0,0 +1,7 @@ +# Be sure to restart your server when you modify this file. + +# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces. +# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ } + +# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code. +# Rails.backtrace_cleaner.remove_silencers! diff --git a/config/initializers/cookies_serializer.rb b/config/initializers/cookies_serializer.rb new file mode 100644 index 000000000..7f70458de --- /dev/null +++ b/config/initializers/cookies_serializer.rb @@ -0,0 +1,3 @@ +# Be sure to restart your server when you modify this file. + +Rails.application.config.action_dispatch.cookies_serializer = :json diff --git a/config/initializers/filter_parameter_logging.rb b/config/initializers/filter_parameter_logging.rb new file mode 100644 index 000000000..4a994e1e7 --- /dev/null +++ b/config/initializers/filter_parameter_logging.rb @@ -0,0 +1,4 @@ +# Be sure to restart your server when you modify this file. + +# Configure sensitive parameters which will be filtered from the log file. +Rails.application.config.filter_parameters += [:password] diff --git a/config/initializers/inflections.rb b/config/initializers/inflections.rb new file mode 100644 index 000000000..ac033bf9d --- /dev/null +++ b/config/initializers/inflections.rb @@ -0,0 +1,16 @@ +# Be sure to restart your server when you modify this file. + +# Add new inflection rules using the following format. Inflections +# are locale specific, and you may define rules for as many different +# locales as you wish. All of these examples are active by default: +# ActiveSupport::Inflector.inflections(:en) do |inflect| +# inflect.plural /^(ox)$/i, '\1en' +# inflect.singular /^(ox)en/i, '\1' +# inflect.irregular 'person', 'people' +# inflect.uncountable %w( fish sheep ) +# end + +# These inflection rules are supported but not enabled by default: +# ActiveSupport::Inflector.inflections(:en) do |inflect| +# inflect.acronym 'RESTful' +# end diff --git a/config/initializers/mime_types.rb b/config/initializers/mime_types.rb new file mode 100644 index 000000000..dc1899682 --- /dev/null +++ b/config/initializers/mime_types.rb @@ -0,0 +1,4 @@ +# Be sure to restart your server when you modify this file. + +# Add new mime types for use in respond_to blocks: +# Mime::Type.register "text/richtext", :rtf diff --git a/config/initializers/session_store.rb b/config/initializers/session_store.rb new file mode 100644 index 000000000..15d065a84 --- /dev/null +++ b/config/initializers/session_store.rb @@ -0,0 +1,3 @@ +# Be sure to restart your server when you modify this file. + +Rails.application.config.session_store :cookie_store, key: '_TaskListRails_session' diff --git a/config/initializers/wrap_parameters.rb b/config/initializers/wrap_parameters.rb new file mode 100644 index 000000000..33725e95f --- /dev/null +++ b/config/initializers/wrap_parameters.rb @@ -0,0 +1,14 @@ +# Be sure to restart your server when you modify this file. + +# This file contains settings for ActionController::ParamsWrapper which +# is enabled by default. + +# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array. +ActiveSupport.on_load(:action_controller) do + wrap_parameters format: [:json] if respond_to?(:wrap_parameters) +end + +# To enable root element in JSON for ActiveRecord objects. +# ActiveSupport.on_load(:active_record) do +# self.include_root_in_json = true +# end diff --git a/config/locales/en.yml b/config/locales/en.yml new file mode 100644 index 000000000..065395716 --- /dev/null +++ b/config/locales/en.yml @@ -0,0 +1,23 @@ +# Files in the config/locales directory are used for internationalization +# and are automatically loaded by Rails. If you want to use locales other +# than English, add the necessary files in this directory. +# +# To use the locales, use `I18n.t`: +# +# I18n.t 'hello' +# +# In views, this is aliased to just `t`: +# +# <%= t('hello') %> +# +# To use a different locale, set it with `I18n.locale`: +# +# I18n.locale = :es +# +# This would use the information in config/locales/es.yml. +# +# To learn more, please read the Rails Internationalization guide +# available at http://guides.rubyonrails.org/i18n.html. + +en: + hello: "Hello world" diff --git a/config/routes.rb b/config/routes.rb new file mode 100644 index 000000000..e2800776c --- /dev/null +++ b/config/routes.rb @@ -0,0 +1,60 @@ +Rails.application.routes.draw do + root 'home#index' + + get "/:id" => "home#by_task" + + # The priority is based upon order of creation: first created -> highest priority. + # See how all your routes lay out with "rake routes". + + # You can have the root of your site routed with "root" + # root 'welcome#index' + + # Example of regular route: + # get 'products/:id' => 'catalog#view' + + # Example of named route that can be invoked with purchase_url(id: product.id) + # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase + + # Example resource route (maps HTTP verbs to controller actions automatically): + # resources :products + + # Example resource route with options: + # resources :products do + # member do + # get 'short' + # post 'toggle' + # end + # + # collection do + # get 'sold' + # end + # end + + # Example resource route with sub-resources: + # resources :products do + # resources :comments, :sales + # resource :seller + # end + + # Example resource route with more complex sub-resources: + # resources :products do + # resources :comments + # resources :sales do + # get 'recent', on: :collection + # end + # end + + # Example resource route with concerns: + # concern :toggleable do + # post 'toggle' + # end + # resources :posts, concerns: :toggleable + # resources :photos, concerns: :toggleable + + # Example resource route within a namespace: + # namespace :admin do + # # Directs /admin/products/* to Admin::ProductsController + # # (app/controllers/admin/products_controller.rb) + # resources :products + # end +end diff --git a/config/secrets.yml b/config/secrets.yml new file mode 100644 index 000000000..9b4856834 --- /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: a02ff743411beb77c30b599c7fbc205bc7bc5e5d45adece8d0db772cbfd548161c6f3548af7f96d920bcf713dbebea158636e0a29d2eb5e0d8063429f4e51322 + +test: + secret_key_base: 4e7a5bffd19fb638b89ab5e57d875b2ad788abb4c920f3110a73c5d768b291bb170781c4763fc96a48dbb07e71e19a08467d6138a776a90e4f170c31d53a2fed + +# 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 0000000000000000000000000000000000000000..7f324861c5a41cfc82a164b761978c6736c2cd8a GIT binary patch literal 20480 zcmeI)PjBNy6aesXldiW>lk6T)vC%y^?J^~+sBjU1m-lQ!g-53t+sXQxgZ9n_Xyx-W7Mzwml-wskizm4Lt zpV9_-L==U5PAMUz1nV-aw@VH-^0zziTbbF;+ANXUZ-pX6^Tl6D`G@ku(i&{wf&wUj z0w{n2D1ZVefC4Ch0x0l-1orX|D$kxNz0^M$iRA4Frg+DRcsmhc|L*Sc=0U63ZP9M? zdAmjLoVynKW3dibR`3z7f!s~`N1g5cqZU;BqV*NkvM$%?Zii~`C6Qj|B2Hwf)sdoBHlQQw z_2B($50>T!;2)FU^8V#gm2-2Y{5ydUE+~KkD1ZVefC4Ch0w{n2D1ZVefCBeI;E}Ra z)fu;#!Cjp*$FK@e7ta6h#o%HQD1ZVefC4Ch0w{n2D1ZVefC4CRBk(v^U74T%7t24A z!m2`6mGVL9kJ3*iulRHEb@9pSFRQ1>h5{&n0w{n2D1ZVefC4CR&jf~wN~)D+v)LUA z`Z9=3e?qL9n&X`qWjT&<)W1hi0)2%aR+su)Zh#E6$+@-qi>88i6x@&Uylj3~D zbUbF(9mmxzr&mzPM@49<{_xo28++vE+d&nLJ^ZNuqzQqM;AS5)E_ zNwawfMO;L29EfC{UPcpo8b%k;*n-|#j>&j-Wb>g)K9(sr{n3c-MB~M$T2NVbw>Ie(y%UD?JL!J8qB;JKiO z(O8^BgG<^2ffrHuG^MY=fx8Zv!$+sQ;Wcbe=XJy3FvyFuH&|9}G9s2$QoE_`l71Ns zL`1jX9sUG{7H$kChn7Jb(2`YWwq@Av;%0b5Up(lRjO^r9!sR$@MKq1*q3B29fVL-L zf4DH6=^D=BJ7pUACa025WUsH&P4jTqX0pTFq}=r2er}j`ZaB7`k;k?ywzzE>*;-P` zr+;_&d7Rx-GEp?@0OGJ^Nn6a!>#TPyhu`00mG0 Z1yBG5Pyhu`;QubLqU0*d^glHe{se!ox2OOB literal 0 HcmV?d00001 diff --git a/db/migrate/20160419210846_create_tasks.rb b/db/migrate/20160419210846_create_tasks.rb new file mode 100644 index 000000000..2e7416c4d --- /dev/null +++ b/db/migrate/20160419210846_create_tasks.rb @@ -0,0 +1,11 @@ +class CreateTasks < ActiveRecord::Migration + def change + create_table :tasks do |t| + t.string :name + t.string :description + t.datetime :completed_at + + t.timestamps null: false + end + end +end diff --git a/db/schema.rb b/db/schema.rb new file mode 100644 index 000000000..00c8380d6 --- /dev/null +++ b/db/schema.rb @@ -0,0 +1,24 @@ +# encoding: UTF-8 +# This file is auto-generated from the current state of the database. Instead +# of editing this file, please use the migrations feature of Active Record to +# incrementally modify your database, and then regenerate this schema definition. +# +# Note that this schema.rb definition is the authoritative source for your +# database schema. If you need to create the application database on another +# system, you should be using db:schema:load, not running all the migrations +# from scratch. The latter is a flawed and unsustainable approach (the more migrations +# you'll amass, the slower it'll run and the greater likelihood for issues). +# +# It's strongly recommended that you check this file into your version control system. + +ActiveRecord::Schema.define(version: 20160419210846) do + + create_table "tasks", force: :cascade do |t| + t.string "name" + t.string "description" + t.datetime "completed_at" + 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..f0a5626e7 --- /dev/null +++ b/db/seeds.rb @@ -0,0 +1,27 @@ +# 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) +def random_time + Time.at(rand * Time.now.to_i) +end + +tasks = [ + { name: "The First Task", description: "", completed_at: random_time }, + { name: "Go to Brunch", description: "" }, + { name: "Go to Lunch", description: "", completed_at: random_time }, + { name: "Go to Second Lunch", description: "" }, + { name: "Play Video Games", description: "", completed_at: random_time }, + { name: "High Five Somebody You Don't Know", description: "", completed_at: random_time }, + { name: "Plant Flowers", description: "", completed_at: random_time }, + { name: "Call Mom", description: "" }, + { name: "She worries, you know.", description: "" }, + { name: "Nap.", description: "", completed_at: random_time } +] + +tasks.each do |task| + Task.create task +end \ No newline at end of file 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..3415f94b5 --- /dev/null +++ b/log/development.log @@ -0,0 +1,3700 @@ + + +Started GET "/" for ::1 at 2016-04-19 13:53:42 -0700 +Processing by Rails::WelcomeController#index as HTML + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/railties-4.2.6/lib/rails/templates/rails/welcome/index.html.erb (1.4ms) +Completed 200 OK in 16ms (Views: 8.9ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-19 13:53:47 -0700 +Processing by Rails::WelcomeController#index as HTML + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/railties-4.2.6/lib/rails/templates/rails/welcome/index.html.erb (0.0ms) +Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-19 13:53:48 -0700 +Processing by Rails::WelcomeController#index as HTML + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/railties-4.2.6/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-04-19 13:53:49 -0700 +Processing by Rails::WelcomeController#index as HTML + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/railties-4.2.6/lib/rails/templates/rails/welcome/index.html.erb (0.0ms) +Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-19 13:53:55 -0700 +Processing by Rails::WelcomeController#index as HTML + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/railties-4.2.6/lib/rails/templates/rails/welcome/index.html.erb (0.0ms) +Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-19 13:53:56 -0700 +Processing by Rails::WelcomeController#index as HTML + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/railties-4.2.6/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-04-19 14:02:52 -0700 +Processing by Rails::WelcomeController#index as HTML + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/railties-4.2.6/lib/rails/templates/rails/welcome/index.html.erb (0.0ms) +Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-19 14:02:54 -0700 +Processing by Rails::WelcomeController#index as HTML + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/railties-4.2.6/lib/rails/templates/rails/welcome/index.html.erb (0.0ms) +Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms) +  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)  +  (0.5ms) select sqlite_version(*) +  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateTasks (20160419210846) +  (0.1ms) begin transaction +  (0.0ms) rollback transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateTasks (20160419210846) +  (0.1ms) begin transaction +  (0.4ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" varchar, "completion" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  + SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160419210846"]] +  (1.4ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.1ms) begin transaction + SQL (0.5ms) INSERT INTO "tasks" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Shower"], ["created_at", "2016-04-19 21:29:12.493325"], ["updated_at", "2016-04-19 21:29:12.493325"]] +  (1.4ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.1ms) SELECT COUNT(*) FROM "tasks" + 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.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" +  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)  +  (0.1ms) select sqlite_version(*) +  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateTasks (20160419210846) +  (0.0ms) begin transaction +  (0.3ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" varchar, "completed_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) + SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160419210846"]] +  (0.8ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.1ms) SELECT COUNT(*) FROM "tasks" +  (0.1ms) begin transaction + SQL (0.5ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Shower"], ["description", "At home"], ["created_at", "2016-04-19 22:12:18.941861"], ["updated_at", "2016-04-19 22:12:18.941861"]] +  (1.9ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.0ms) begin transaction + SQL (0.6ms) INSERT INTO "tasks" ("name", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "The First Task"], ["description", ""], ["completed_at", "1970-06-19 16:20:01.763423"], ["created_at", "2016-04-19 22:13:36.780091"], ["updated_at", "2016-04-19 22:13:36.780091"]] +  (1.4ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Go to Brunch"], ["description", ""], ["created_at", "2016-04-19 22:13:36.784791"], ["updated_at", "2016-04-19 22:13:36.784791"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Go to Lunch"], ["description", ""], ["completed_at", "2007-04-10 03:11:08.887104"], ["created_at", "2016-04-19 22:13:36.786630"], ["updated_at", "2016-04-19 22:13:36.786630"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Go to Second Lunch"], ["description", ""], ["created_at", "2016-04-19 22:13:36.788367"], ["updated_at", "2016-04-19 22:13:36.788367"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Play Video Games"], ["description", ""], ["completed_at", "1981-03-26 10:29:25.609795"], ["created_at", "2016-04-19 22:13:36.790037"], ["updated_at", "2016-04-19 22:13:36.790037"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "High Five Somebody You Don't Know"], ["description", ""], ["completed_at", "2009-03-11 23:43:59.339500"], ["created_at", "2016-04-19 22:13:36.791693"], ["updated_at", "2016-04-19 22:13:36.791693"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Plant Flowers"], ["description", ""], ["completed_at", "1996-02-13 06:32:12.906489"], ["created_at", "2016-04-19 22:13:36.793594"], ["updated_at", "2016-04-19 22:13:36.793594"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Call Mom"], ["description", ""], ["created_at", "2016-04-19 22:13:36.795516"], ["updated_at", "2016-04-19 22:13:36.795516"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "She worries, you know."], ["description", ""], ["created_at", "2016-04-19 22:13:36.797213"], ["updated_at", "2016-04-19 22:13:36.797213"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Nap."], ["description", ""], ["completed_at", "1981-04-22 04:22:45.710405"], ["created_at", "2016-04-19 22:13:36.798947"], ["updated_at", "2016-04-19 22:13:36.798947"]] +  (0.6ms) commit transaction + + +Started GET "/" for ::1 at 2016-04-19 15:17:40 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by HomeController#index as HTML + Rendered home/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 1385ms (Views: 1376.3ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-19 15:17:42 -0700 +Processing by HomeController#index as HTML + Rendered home/index.html.erb within layouts/application (0.0ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/home.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:17:42 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:17:42 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:17:42 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:17:42 -0700 +  (0.2ms) SELECT COUNT(*) FROM "tasks" +  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)  +  (0.1ms) select sqlite_version(*) +  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateTasks (20160419210846) +  (0.0ms) begin transaction +  (0.3ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" varchar, "completed_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) + SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160419210846"]] +  (0.7ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.1ms) SELECT COUNT(*) FROM "tasks" + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.0ms) begin transaction + SQL (0.5ms) INSERT INTO "tasks" ("name", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "The First Task"], ["description", ""], ["completed_at", "2006-03-09 00:40:59.007708"], ["created_at", "2016-04-19 22:25:16.951108"], ["updated_at", "2016-04-19 22:25:16.951108"]] +  (1.4ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Go to Brunch"], ["description", ""], ["created_at", "2016-04-19 22:25:16.955828"], ["updated_at", "2016-04-19 22:25:16.955828"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Go to Lunch"], ["description", ""], ["completed_at", "1970-10-15 15:22:35.148778"], ["created_at", "2016-04-19 22:25:16.957660"], ["updated_at", "2016-04-19 22:25:16.957660"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Go to Second Lunch"], ["description", ""], ["created_at", "2016-04-19 22:25:16.959488"], ["updated_at", "2016-04-19 22:25:16.959488"]] +  (0.7ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Play Video Games"], ["description", ""], ["completed_at", "2004-10-20 07:23:36.076479"], ["created_at", "2016-04-19 22:25:16.961322"], ["updated_at", "2016-04-19 22:25:16.961322"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "High Five Somebody You Don't Know"], ["description", ""], ["completed_at", "1985-05-02 13:37:21.481006"], ["created_at", "2016-04-19 22:25:16.963026"], ["updated_at", "2016-04-19 22:25:16.963026"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Plant Flowers"], ["description", ""], ["completed_at", "1998-06-01 10:40:25.756097"], ["created_at", "2016-04-19 22:25:16.964984"], ["updated_at", "2016-04-19 22:25:16.964984"]] +  (0.7ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Call Mom"], ["description", ""], ["created_at", "2016-04-19 22:25:16.966926"], ["updated_at", "2016-04-19 22:25:16.966926"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "She worries, you know."], ["description", ""], ["created_at", "2016-04-19 22:25:16.968501"], ["updated_at", "2016-04-19 22:25:16.968501"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Nap."], ["description", ""], ["completed_at", "2005-04-20 18:51:56.751312"], ["created_at", "2016-04-19 22:25:16.970058"], ["updated_at", "2016-04-19 22:25:16.970058"]] +  (0.6ms) commit transaction +  (0.1ms) SELECT COUNT(*) FROM "tasks" + + +Started GET "/" for ::1 at 2016-04-19 15:29:11 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by HomeController#index as HTML + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 197ms (Views: 189.2ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-19 15:35:39 -0700 +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered home/index.html.erb within layouts/application (5.3ms) +Completed 200 OK in 23ms (Views: 20.4ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-04-19 15:36:11 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered home/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 15ms (Views: 13.8ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-19 15:36:12 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered home/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 22ms (Views: 21.4ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-19 15:36:24 -0700 +Processing by HomeController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered home/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 26ms (Views: 25.2ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-04-19 15:38:40 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered home/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 27ms (Views: 26.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:44:01 -0700 +Processing by HomeController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered home/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 21ms (Views: 19.5ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-04-19 15:51:20 -0700 +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (5.2ms) +Completed 200 OK in 23ms (Views: 21.1ms | ActiveRecord: 0.6ms) + + +Started GET "/1" for ::1 at 2016-04-19 15:51:23 -0700 + +ActionController::RoutingError (No route matches [GET] "/1"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (67.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.7ms) + + +Started GET "/1" for ::1 at 2016-04-19 15:51:23 -0700 + +ActionController::RoutingError (No route matches [GET] "/1"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (57.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.5ms) + + +Started GET "/1" for ::1 at 2016-04-19 15:51:26 -0700 + +ActionController::RoutingError (No route matches [GET] "/1"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (60.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.4ms) + + +Started GET "/1" for ::1 at 2016-04-19 15:51:27 -0700 + +ActionController::RoutingError (No route matches [GET] "/1"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (53.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.7ms) + + +Started GET "/" for ::1 at 2016-04-19 15:51:42 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-19 15:51:42 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-19 15:51:43 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:51:43 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-19 15:51:43 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-19 15:51:44 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:52:07 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started GET "/1" for ::1 at 2016-04-19 15:52:28 -0700 + +ActionController::RoutingError (No route matches [GET] "/1"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (62.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.6ms) + + +Started GET "/1" for ::1 at 2016-04-19 15:52:28 -0700 + +ActionController::RoutingError (No route matches [GET] "/1"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (56.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (49.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (98.8ms) + + +Started GET "/" for ::1 at 2016-04-19 15:52:56 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 18ms (Views: 17.8ms | ActiveRecord: 0.2ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:52:58 -0700 + +ActionController::RoutingError (No route matches [GET] "/The%20First%20Task"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (7.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (67.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.3ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:52:58 -0700 + +ActionController::RoutingError (No route matches [GET] "/The%20First%20Task"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (58.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (98.7ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:53:02 -0700 + +ActionController::RoutingError (No route matches [GET] "/The%20First%20Task"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (62.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.5ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:53:03 -0700 + +ActionController::RoutingError (No route matches [GET] "/The%20First%20Task"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (57.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (98.7ms) + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", "hiiii"], ["updated_at", "2016-04-19 22:58:05.889268"], ["id", 1]] +  (1.2ms) commit transaction + + +Started GET "/" for ::1 at 2016-04-19 15:58:39 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (5.3ms) +Completed 200 OK in 209ms (Views: 200.4ms | ActiveRecord: 0.4ms) + + +Started GET "/She%20worries,%20you%20know." for ::1 at 2016-04-19 16:00:03 -0700 + +ActionController::RoutingError (No route matches [GET] "/She%20worries,%20you%20know."): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (62.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.8ms) + + +Started GET "/She%20worries,%20you%20know." for ::1 at 2016-04-19 16:00:03 -0700 + +ActionController::RoutingError (No route matches [GET] "/She%20worries,%20you%20know."): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (62.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.8ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-19 16:01:02 -0700 + +ActionController::RoutingError (No route matches [GET] "/Go%20to%20Second%20Lunch"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (60.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.6ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-19 16:01:02 -0700 + +ActionController::RoutingError (No route matches [GET] "/Go%20to%20Second%20Lunch"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (54.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:07:51 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 21ms (Views: 19.9ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-19 16:07:52 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:07:55 -0700 + +ActionController::RoutingError (No route matches [GET] "/The%20First%20Task"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (54.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.9ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:07:55 -0700 + +ActionController::RoutingError (No route matches [GET] "/The%20First%20Task"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (56.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.2ms) + + +Started GET "/" for ::1 at 2016-04-19 16:15:20 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (8.5ms) +Completed 200 OK in 205ms (Views: 196.4ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-04-19 16:15:21 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:15:23 -0700 + +ActionController::RoutingError (No route matches [GET] "/The%20First%20Task"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (10.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (79.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (48.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (102.5ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:15:23 -0700 + +ActionController::RoutingError (No route matches [GET] "/The%20First%20Task"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (67.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.5ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:15:26 -0700 + +ActionController::RoutingError (No route matches [GET] "/The%20First%20Task"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (64.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (99.5ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:15:27 -0700 + +ActionController::RoutingError (No route matches [GET] "/The%20First%20Task"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (61.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (1.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (96.2ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:18:25 -0700 + +ActionController::RoutingError (uninitialized constant TaskController): + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `const_get' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `block in constantize' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `each' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `inject' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `constantize' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:60:in `controller' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:39:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (54.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (83.8ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:18:26 -0700 + +ActionController::RoutingError (uninitialized constant TaskController): + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `const_get' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `block in constantize' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `each' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `inject' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `constantize' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:60:in `controller' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:39:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (61.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.2ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:18:33 -0700 + +ActionController::RoutingError (uninitialized constant TaskController): + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `const_get' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `block in constantize' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `each' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `inject' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `constantize' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:60:in `controller' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:39:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (59.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (103.7ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:18:33 -0700 + +ActionController::RoutingError (uninitialized constant TaskController): + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `const_get' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `block in constantize' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `each' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `inject' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `constantize' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:60:in `controller' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:39:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (59.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (100.4ms) + + +Started GET "/1" for ::1 at 2016-04-19 16:19:38 -0700 + +ActionController::RoutingError (uninitialized constant TaskController): + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `const_get' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `block in constantize' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `each' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `inject' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `constantize' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:60:in `controller' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:39:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (54.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.3ms) + + +Started GET "/1" for ::1 at 2016-04-19 16:19:41 -0700 + +ActionController::RoutingError (uninitialized constant TaskController): + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `const_get' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `block in constantize' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `each' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `inject' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `constantize' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:60:in `controller' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:39:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (56.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (36.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (83.6ms) + + +Started GET "/" for ::1 at 2016-04-19 16:22:23 -0700 +Processing by HomeController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (4.8ms) +Completed 200 OK in 23ms (Views: 19.9ms | ActiveRecord: 0.7ms) + + +Started GET "/" for ::1 at 2016-04-19 16:22:24 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 18ms (Views: 17.4ms | ActiveRecord: 0.2ms) + + +Started GET "/6" for ::1 at 2016-04-19 16:22:25 -0700 + +ActionController::RoutingError (uninitialized constant TaskController): + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `const_get' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `block in constantize' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `each' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `inject' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `constantize' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:60:in `controller' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:39:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (53.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (36.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (79.9ms) + + +Started GET "/6" for ::1 at 2016-04-19 16:22:25 -0700 + +ActionController::RoutingError (uninitialized constant TaskController): + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `const_get' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `block in constantize' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `each' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `inject' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `constantize' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:60:in `controller' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:39:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (54.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (98.3ms) + + +Started GET "/" for ::1 at 2016-04-19 16:22:28 -0700 +Processing by HomeController#index as HTML + Task Load (0.7ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.7ms) + + +Started GET "/" for ::1 at 2016-04-19 16:22:29 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.2ms) + + +Started GET "/4" for ::1 at 2016-04-19 16:22:31 -0700 + +ActionController::RoutingError (uninitialized constant TaskController): + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `const_get' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `block in constantize' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `each' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `inject' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `constantize' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:60:in `controller' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:39:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (61.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.4ms) + + +Started GET "/4" for ::1 at 2016-04-19 16:22:31 -0700 + +ActionController::RoutingError (uninitialized constant TaskController): + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `const_get' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `block in constantize' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `each' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `inject' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `constantize' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:60:in `controller' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:39:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (58.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (96.0ms) + + +Started GET "/3" for ::1 at 2016-04-19 16:22:35 -0700 + +ActionController::RoutingError (uninitialized constant TaskController): + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `const_get' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `block in constantize' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `each' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `inject' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `constantize' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:60:in `controller' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:39:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (59.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.6ms) + + +Started GET "/3" for ::1 at 2016-04-19 16:22:35 -0700 + +ActionController::RoutingError (uninitialized constant TaskController): + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `const_get' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `block in constantize' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `each' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `inject' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `constantize' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:60:in `controller' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:39:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (59.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (49.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (100.8ms) + + +Started GET "/1" for ::1 at 2016-04-19 16:22:37 -0700 + +ActionController::RoutingError (uninitialized constant TaskController): + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `const_get' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `block in constantize' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `each' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `inject' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `constantize' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:60:in `controller' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:39:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (59.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.7ms) + + +Started GET "/1" for ::1 at 2016-04-19 16:22:38 -0700 + +ActionController::RoutingError (uninitialized constant TaskController): + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `const_get' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `block in constantize' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `each' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `inject' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `constantize' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:60:in `controller' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:39:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (58.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.0ms) + + +Started GET "/1" for ::1 at 2016-04-19 16:23:40 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? ORDER BY "tasks"."name" ASC [["id", 1]] + Rendered home/index.html.erb within layouts/application (5.4ms) +Completed 200 OK in 24ms (Views: 18.5ms | ActiveRecord: 0.6ms) + + +Started GET "/1" for ::1 at 2016-04-20 09:12:33 -0700 + ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"1"} + Rendered home/show.html.erb within layouts/application (1.8ms) +Completed 500 Internal Server Error in 32ms (ActiveRecord: 0.2ms) + +SyntaxError (/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:5: syntax error, unexpected ')', expecting '=' +...=( task.name, task.description);@output_buffer.safe_append=' +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:7: syntax error, unexpected keyword_end, expecting ')' +/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:11: syntax error, unexpected keyword_ensure, expecting ')' +/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:13: syntax error, unexpected keyword_end, expecting ')'): + app/views/home/show.html.erb:5: syntax error, unexpected ')', expecting '=' + app/views/home/show.html.erb:7: syntax error, unexpected keyword_end, expecting ')' + app/views/home/show.html.erb:11: syntax error, unexpected keyword_ensure, expecting ')' + app/views/home/show.html.erb:13: syntax error, unexpected keyword_end, expecting ')' + app/controllers/home_controller.rb:7:in `by_task' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (50.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (53.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (117.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:12:36 -0700 +Processing by HomeController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (6.3ms) +Completed 200 OK in 251ms (Views: 250.0ms | ActiveRecord: 0.6ms) + + +Started GET "/2" for ::1 at 2016-04-20 09:12:38 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"2"} + Rendered home/show.html.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:5: syntax error, unexpected ')', expecting '=' +...=( task.name, task.description);@output_buffer.safe_append=' +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:7: syntax error, unexpected keyword_end, expecting ')' +/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:11: syntax error, unexpected keyword_ensure, expecting ')' +/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:13: syntax error, unexpected keyword_end, expecting ')'): + app/views/home/show.html.erb:5: syntax error, unexpected ')', expecting '=' + app/views/home/show.html.erb:7: syntax error, unexpected keyword_end, expecting ')' + app/views/home/show.html.erb:11: syntax error, unexpected keyword_ensure, expecting ')' + app/views/home/show.html.erb:13: syntax error, unexpected keyword_end, expecting ')' + app/controllers/home_controller.rb:7:in `by_task' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (45.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.2ms) + + +Started GET "/2" for ::1 at 2016-04-20 09:12:38 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"2"} + Rendered home/show.html.erb within layouts/application (0.7ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:5: syntax error, unexpected ')', expecting '=' +...=( task.name, task.description);@output_buffer.safe_append=' +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:7: syntax error, unexpected keyword_end, expecting ')' +/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:11: syntax error, unexpected keyword_ensure, expecting ')' +/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:13: syntax error, unexpected keyword_end, expecting ')'): + app/views/home/show.html.erb:5: syntax error, unexpected ')', expecting '=' + app/views/home/show.html.erb:7: syntax error, unexpected keyword_end, expecting ')' + app/views/home/show.html.erb:11: syntax error, unexpected keyword_ensure, expecting ')' + app/views/home/show.html.erb:13: syntax error, unexpected keyword_end, expecting ')' + app/controllers/home_controller.rb:7:in `by_task' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (46.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.2ms) + + +Started GET "/2" for ::1 at 2016-04-20 09:13:32 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"2"} + Rendered home/show.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:10: syntax error, unexpected keyword_ensure, expecting end-of-input): + app/views/home/show.html.erb:10: syntax error, unexpected keyword_ensure, expecting end-of-input + app/controllers/home_controller.rb:7:in `by_task' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (45.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.9ms) + + +Started GET "/2" for ::1 at 2016-04-20 09:13:35 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"2"} + Rendered home/show.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:10: syntax error, unexpected keyword_ensure, expecting end-of-input): + app/views/home/show.html.erb:10: syntax error, unexpected keyword_ensure, expecting end-of-input + app/controllers/home_controller.rb:7:in `by_task' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (47.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (46.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (94.5ms) + + +Started GET "/2" for ::1 at 2016-04-20 09:13:55 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"2"} + Rendered home/show.html.erb within layouts/application (3.0ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `name' for nil:NilClass): + 1:

Here's your task!

+ 2:
    + 3:
  • + 4: <%= @task.name%> + 5:
  • + 6: + 7:
+ app/views/home/show.html.erb:4:in `_app_views_home_show_html_erb__3010337776228872185_70320756297080' + app/controllers/home_controller.rb:7:in `by_task' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (47.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (106.1ms) + + +Started GET "/2" for ::1 at 2016-04-20 09:13:56 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"2"} + Rendered home/show.html.erb within layouts/application (2.3ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `name' for nil:NilClass): + 1:

Here's your task!

+ 2:
    + 3:
  • + 4: <%= @task.name%> + 5:
  • + 6: + 7:
+ app/views/home/show.html.erb:4:in `_app_views_home_show_html_erb__3010337776228872185_70320756297080' + app/controllers/home_controller.rb:7:in `by_task' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (49.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.6ms) + + +Started GET "/" for ::1 at 2016-04-20 09:14:48 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 19ms (Views: 18.7ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-20 09:14:49 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:14:50 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 15ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:14:51 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 14ms (Views: 13.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:14:52 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 13ms (Views: 12.1ms | ActiveRecord: 0.2ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 09:14:53 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"The First Task"} + Rendered home/show.html.erb within layouts/application (2.8ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `name' for nil:NilClass): + 1:

Here's your task!

+ 2:
    + 3:
  • + 4: <%= @task.name%> + 5:
  • + 6: + 7:
+ app/views/home/show.html.erb:4:in `_app_views_home_show_html_erb__3010337776228872185_70320783163000' + app/controllers/home_controller.rb:7:in `by_task' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (47.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.0ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 09:14:54 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"The First Task"} + Rendered home/show.html.erb within layouts/application (2.9ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `name' for nil:NilClass): + 1:

Here's your task!

+ 2:
    + 3:
  • + 4: <%= @task.name%> + 5:
  • + 6: + 7:
+ app/views/home/show.html.erb:4:in `_app_views_home_show_html_erb__3010337776228872185_70320756297080' + app/controllers/home_controller.rb:7:in `by_task' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (49.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.8ms) + + +Started GET "/" for ::1 at 2016-04-20 09:14:56 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 13ms (Views: 12.8ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-20 09:14:57 -0700 +Processing by HomeController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-04-20 09:14:58 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 11ms (Views: 10.3ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 09:15:52 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"The First Task"} + Rendered home/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 21ms (Views: 20.2ms | ActiveRecord: 0.0ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 09:15:52 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"The First Task"} + Rendered home/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 20ms (Views: 19.2ms | ActiveRecord: 0.0ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 09:15:55 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"The First Task"} + Rendered home/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.0ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 09:17:14 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"The First Task"} + Rendered home/show.html.erb within layouts/application (2.0ms) +Completed 200 OK in 18ms (Views: 16.0ms | ActiveRecord: 0.2ms) + + +Started GET "/1" for ::1 at 2016-04-20 09:17:18 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"1"} + Rendered home/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 12ms (Views: 11.7ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-20 09:17:49 -0700 +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (6.3ms) +Completed 200 OK in 25ms (Views: 23.3ms | ActiveRecord: 1.0ms) + + +Started GET "/3" for ::1 at 2016-04-20 09:17:50 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"3"} + Rendered home/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.0ms) + + +Started GET "/3" for ::1 at 2016-04-20 09:18:27 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"3"} + Rendered home/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.0ms) + + +Started GET "/3" for ::1 at 2016-04-20 09:18:29 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"3"} + Rendered home/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 11ms (Views: 10.8ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-20 09:18:33 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.2ms) + + +Started GET "/4" for ::1 at 2016-04-20 09:18:34 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"4"} + Rendered home/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.0ms) + + +Started GET "/3" for ::1 at 2016-04-20 09:18:37 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"3"} + Rendered home/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 13ms (Views: 12.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-20 09:19:15 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-20 09:19:15 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:19:16 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-20 09:19:29 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.2ms) + + +Started GET "/1" for ::1 at 2016-04-20 09:19:31 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? [["id", 1]] + Rendered home/show.html.erb within layouts/application (6.8ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.2ms) + +ActionView::Template::Error (no implicit conversion of Symbol into Integer): + 1:

Here's your task!

+ 2:
    + 3:
  • + 4: <%= "Name:" + @task[:name]%> + 5:
  • + 6: + 7:
+ app/views/home/show.html.erb:4:in `_app_views_home_show_html_erb__3010337776228872185_70320768537500' + app/controllers/home_controller.rb:7:in `by_task' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (47.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.4ms) + + +Started GET "/1" for ::1 at 2016-04-20 09:19:31 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? [["id", 1]] + Rendered home/show.html.erb within layouts/application (2.2ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (no implicit conversion of Symbol into Integer): + 1:

Here's your task!

+ 2:
    + 3:
  • + 4: <%= "Name:" + @task[:name]%> + 5:
  • + 6: + 7:
+ app/views/home/show.html.erb:4:in `_app_views_home_show_html_erb__3010337776228872185_70320768467620' + app/controllers/home_controller.rb:7:in `by_task' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (48.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.4ms) + + +Started GET "/1" for ::1 at 2016-04-20 09:19:42 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? [["id", 1]] + Rendered home/show.html.erb within layouts/application (2.4ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (no implicit conversion of Symbol into Integer): + 1:

Here's your task!

+ 2:
    + 3:
  • + 4: <%= @task[:name]%> + 5:
  • + 6: + 7:
+ app/views/home/show.html.erb:4:in `_app_views_home_show_html_erb__3010337776228872185_70320782841840' + app/controllers/home_controller.rb:7:in `by_task' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (46.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.0ms) + + +Started GET "/1" for ::1 at 2016-04-20 09:19:42 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? [["id", 1]] + Rendered home/show.html.erb within layouts/application (2.4ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (no implicit conversion of Symbol into Integer): + 1:

Here's your task!

+ 2:
    + 3:
  • + 4: <%= @task[:name]%> + 5:
  • + 6: + 7:
+ app/views/home/show.html.erb:4:in `_app_views_home_show_html_erb__3010337776228872185_70320782841840' + app/controllers/home_controller.rb:7:in `by_task' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (47.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (103.9ms) + + +Started GET "/1" for ::1 at 2016-04-20 09:19:43 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? [["id", 1]] + Rendered home/show.html.erb within layouts/application (2.7ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (no implicit conversion of Symbol into Integer): + 1:

Here's your task!

+ 2:
    + 3:
  • + 4: <%= @task[:name]%> + 5:
  • + 6: + 7:
+ app/views/home/show.html.erb:4:in `_app_views_home_show_html_erb__3010337776228872185_70320782841840' + app/controllers/home_controller.rb:7:in `by_task' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (49.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (94.8ms) + + +Started GET "/1" for ::1 at 2016-04-20 09:19:45 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? [["id", 1]] + Rendered home/show.html.erb within layouts/application (2.4ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (no implicit conversion of Symbol into Integer): + 1:

Here's your task!

+ 2:
    + 3:
  • + 4: <%= @task[:name]%> + 5:
  • + 6: + 7:
+ app/views/home/show.html.erb:4:in `_app_views_home_show_html_erb__3010337776228872185_70320782841840' + app/controllers/home_controller.rb:7:in `by_task' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (47.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (94.1ms) + + +Started GET "/1" for ::1 at 2016-04-20 09:19:56 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"1"} + Rendered home/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 12ms (Views: 11.4ms | ActiveRecord: 0.0ms) + + +Started GET "/1" for ::1 at 2016-04-20 09:21:05 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"1"} + Rendered home/show.html.erb within layouts/application (2.7ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `each' for nil:NilClass): + 1:

Here's your task!

+ 2:
    + 3: <% @tasks.each do |task| %> + 4:
  • + 5: <%= task.name %> + 6:
  • + app/views/home/show.html.erb:3:in `_app_views_home_show_html_erb__3010337776228872185_70320782428420' + app/controllers/home_controller.rb:7:in `by_task' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (47.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.4ms) + + +Started GET "/1" for ::1 at 2016-04-20 09:21:07 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"1"} + Rendered home/show.html.erb within layouts/application (2.1ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `each' for nil:NilClass): + 1:

    Here's your task!

    + 2:
      + 3: <% @tasks.each do |task| %> + 4:
    • + 5: <%= task.name %> + 6:
    • + app/views/home/show.html.erb:3:in `_app_views_home_show_html_erb__3010337776228872185_70320782428420' + app/controllers/home_controller.rb:7:in `by_task' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (46.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.4ms) + + +Started GET "/1" for ::1 at 2016-04-20 09:21:13 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? [["id", 1]] + Rendered home/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 18ms (Views: 16.6ms | ActiveRecord: 0.1ms) + + +Started GET "/1" for ::1 at 2016-04-20 09:21:14 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? [["id", 1]] + Rendered home/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 13ms (Views: 12.6ms | ActiveRecord: 0.1ms) + + +Started GET "/3" for ::1 at 2016-04-20 09:21:17 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? [["id", 3]] + Rendered home/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.1ms) + + +Started GET "/1" for ::1 at 2016-04-20 09:21:36 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"1"} + Task Load (0.8ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? [["id", 1]] + Rendered home/show.html.erb within layouts/application (4.2ms) +Completed 200 OK in 30ms (Views: 28.3ms | ActiveRecord: 0.8ms) + + +Started GET "/1" for ::1 at 2016-04-20 09:21:36 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? [["id", 1]] + Rendered home/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 19ms (Views: 17.4ms | ActiveRecord: 0.1ms) + + +Started GET "/1" for ::1 at 2016-04-20 09:22:19 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"1"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? [["id", 1]] + Rendered home/show.html.erb within layouts/application (3.5ms) +Completed 200 OK in 23ms (Views: 21.7ms | ActiveRecord: 0.3ms) + + +Started GET "/1" for ::1 at 2016-04-20 09:22:19 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? [["id", 1]] + Rendered home/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 12ms (Views: 11.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:27:26 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 67ms (Views: 65.9ms | ActiveRecord: 0.2ms) + + +Started GET "/1" for ::1 at 2016-04-20 09:27:28 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? [["id", 1]] + Rendered home/show.html.erb within layouts/application (5.1ms) +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (no implicit conversion of ActiveSupport::TimeWithZone into String): + 5:
    • <%= "Description: " + task.description%> + 6:
    • + 7:
    • <%= "Status: " + task.description%> + 8:
    • <%= "Completed at: " + task.completed_at%> + 9: <%end%> + 10:
    + 11: + app/views/home/show.html.erb:8:in `+' + app/views/home/show.html.erb:8:in `block in _app_views_home_show_html_erb__3010337776228872185_70320735839200' + app/views/home/show.html.erb:3:in `_app_views_home_show_html_erb__3010337776228872185_70320735839200' + app/controllers/home_controller.rb:7:in `by_task' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (46.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.5ms) + + +Started GET "/1" for ::1 at 2016-04-20 09:27:28 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? [["id", 1]] + Rendered home/show.html.erb within layouts/application (2.7ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (no implicit conversion of ActiveSupport::TimeWithZone into String): + 5:
  • <%= "Description: " + task.description%> + 6:
  • + 7:
  • <%= "Status: " + task.description%> + 8:
  • <%= "Completed at: " + task.completed_at%> + 9: <%end%> + 10:
+ 11: + app/views/home/show.html.erb:8:in `+' + app/views/home/show.html.erb:8:in `block in _app_views_home_show_html_erb__3010337776228872185_70320766910320' + app/views/home/show.html.erb:3:in `_app_views_home_show_html_erb__3010337776228872185_70320766910320' + app/controllers/home_controller.rb:7:in `by_task' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (47.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.7ms) + + +Started GET "/1" for ::1 at 2016-04-20 09:28:00 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? [["id", 1]] + Rendered home/show.html.erb within layouts/application (3.8ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (no implicit conversion of ActiveSupport::TimeWithZone into String): + 5: + 10: + 11: + app/views/home/show.html.erb:8:in `+' + app/views/home/show.html.erb:8:in `block in _app_views_home_show_html_erb__3010337776228872185_70320784538640' + app/views/home/show.html.erb:3:in `_app_views_home_show_html_erb__3010337776228872185_70320784538640' + app/controllers/home_controller.rb:7:in `by_task' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (51.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (94.5ms) + + +Started GET "/1" for ::1 at 2016-04-20 09:28:31 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"1"} + Rendered home/show.html.erb within layouts/application (1.8ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:6: syntax error, unexpected '<' + + ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:10: unknown regexp option - l +/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:12: unterminated string meets end of file +/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:12: syntax error, unexpected end-of-input, expecting ')'): + app/views/home/show.html.erb:6: syntax error, unexpected '<' + app/views/home/show.html.erb:10: unknown regexp option - l + app/views/home/show.html.erb:12: unterminated string meets end of file + app/views/home/show.html.erb:12: syntax error, unexpected end-of-input, expecting ')' + app/controllers/home_controller.rb:7:in `by_task' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (22.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (67.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.2ms) + + +Started GET "/1" for ::1 at 2016-04-20 09:28:32 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"1"} + Rendered home/show.html.erb within layouts/application (0.8ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:6: syntax error, unexpected '<' + + ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:10: unknown regexp option - l +/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:12: unterminated string meets end of file +/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:12: syntax error, unexpected end-of-input, expecting ')'): + app/views/home/show.html.erb:6: syntax error, unexpected '<' + app/views/home/show.html.erb:10: unknown regexp option - l + app/views/home/show.html.erb:12: unterminated string meets end of file + app/views/home/show.html.erb:12: syntax error, unexpected end-of-input, expecting ')' + app/controllers/home_controller.rb:7:in `by_task' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (48.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (48.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (103.2ms) + + +Started GET "/1" for ::1 at 2016-04-20 09:29:11 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"1"} + Rendered home/show.html.erb within layouts/application (0.9ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:6: syntax error, unexpected '<' + + ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:10: unknown regexp option - l +/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:12: unterminated string meets end of file +/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:12: syntax error, unexpected end-of-input, expecting ')'): + app/views/home/show.html.erb:6: syntax error, unexpected '<' + app/views/home/show.html.erb:10: unknown regexp option - l + app/views/home/show.html.erb:12: unterminated string meets end of file + app/views/home/show.html.erb:12: syntax error, unexpected end-of-input, expecting ')' + app/controllers/home_controller.rb:7:in `by_task' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (51.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.6ms) + + +Started GET "/1" for ::1 at 2016-04-20 09:29:12 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"1"} + Rendered home/show.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:6: syntax error, unexpected '<' + + ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:10: unknown regexp option - l +/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:12: unterminated string meets end of file +/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:12: syntax error, unexpected end-of-input, expecting ')'): + app/views/home/show.html.erb:6: syntax error, unexpected '<' + app/views/home/show.html.erb:10: unknown regexp option - l + app/views/home/show.html.erb:12: unterminated string meets end of file + app/views/home/show.html.erb:12: syntax error, unexpected end-of-input, expecting ')' + app/controllers/home_controller.rb:7:in `by_task' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (48.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.4ms) + + +Started GET "/1" for ::1 at 2016-04-20 09:29:13 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"1"} + Rendered home/show.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:6: syntax error, unexpected '<' + + ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:10: unknown regexp option - l +/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:12: unterminated string meets end of file +/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:12: syntax error, unexpected end-of-input, expecting ')'): + app/views/home/show.html.erb:6: syntax error, unexpected '<' + app/views/home/show.html.erb:10: unknown regexp option - l + app/views/home/show.html.erb:12: unterminated string meets end of file + app/views/home/show.html.erb:12: syntax error, unexpected end-of-input, expecting ')' + app/controllers/home_controller.rb:7:in `by_task' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (51.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.1ms) + + +Started GET "/1" for ::1 at 2016-04-20 09:29:25 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"1"} + Rendered home/show.html.erb within layouts/application (1.3ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:6: syntax error, unexpected '<' + + ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:10: unknown regexp option - l +/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:12: unterminated string meets end of file +/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:12: syntax error, unexpected end-of-input, expecting ')'): + app/views/home/show.html.erb:6: syntax error, unexpected '<' + app/views/home/show.html.erb:10: unknown regexp option - l + app/views/home/show.html.erb:12: unterminated string meets end of file + app/views/home/show.html.erb:12: syntax error, unexpected end-of-input, expecting ')' + app/controllers/home_controller.rb:7:in `by_task' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (47.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.7ms) + + +Started GET "/1" for ::1 at 2016-04-20 09:29:26 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"1"} + Rendered home/show.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:6: syntax error, unexpected '<' + + ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:10: unknown regexp option - l +/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:12: unterminated string meets end of file +/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:12: syntax error, unexpected end-of-input, expecting ')'): + app/views/home/show.html.erb:6: syntax error, unexpected '<' + app/views/home/show.html.erb:10: unknown regexp option - l + app/views/home/show.html.erb:12: unterminated string meets end of file + app/views/home/show.html.erb:12: syntax error, unexpected end-of-input, expecting ')' + app/controllers/home_controller.rb:7:in `by_task' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (48.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (47.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (105.8ms) + + +Started GET "/1" for ::1 at 2016-04-20 09:29:27 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"1"} + Rendered home/show.html.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:6: syntax error, unexpected '<' + + ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:10: unknown regexp option - l +/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:12: unterminated string meets end of file +/Users/Nadine/C5/projects/TaskListRails/app/views/home/show.html.erb:12: syntax error, unexpected end-of-input, expecting ')'): + app/views/home/show.html.erb:6: syntax error, unexpected '<' + app/views/home/show.html.erb:10: unknown regexp option - l + app/views/home/show.html.erb:12: unterminated string meets end of file + app/views/home/show.html.erb:12: syntax error, unexpected end-of-input, expecting ')' + app/controllers/home_controller.rb:7:in `by_task' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (47.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.4ms) + + +Started GET "/1" for ::1 at 2016-04-20 09:30:02 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? [["id", 1]] + Rendered home/show.html.erb within layouts/application (5.5ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (no implicit conversion of ActiveSupport::TimeWithZone into String): + 5:
  • <%= "Description: " + task.description%> + 6:
  • + 7:
  • <%= "Status: " + task.description%> + 8:
  • <%= "Completed at: " + task.completed_at%> + 9: <%end%> + 10: + 11: + app/views/home/show.html.erb:8:in `+' + app/views/home/show.html.erb:8:in `block in _app_views_home_show_html_erb__3010337776228872185_70320765773020' + app/views/home/show.html.erb:3:in `_app_views_home_show_html_erb__3010337776228872185_70320765773020' + app/controllers/home_controller.rb:7:in `by_task' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (47.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.3ms) + + +Started GET "/1" for ::1 at 2016-04-20 09:30:03 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? [["id", 1]] + Rendered home/show.html.erb within layouts/application (2.0ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (no implicit conversion of ActiveSupport::TimeWithZone into String): + 5:
  • <%= "Description: " + task.description%> + 6:
  • + 7:
  • <%= "Status: " + task.description%> + 8:
  • <%= "Completed at: " + task.completed_at%> + 9: <%end%> + 10: + 11: + app/views/home/show.html.erb:8:in `+' + app/views/home/show.html.erb:8:in `block in _app_views_home_show_html_erb__3010337776228872185_70320765773020' + app/views/home/show.html.erb:3:in `_app_views_home_show_html_erb__3010337776228872185_70320765773020' + app/controllers/home_controller.rb:7:in `by_task' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (47.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (94.7ms) + + +Started GET "/1" for ::1 at 2016-04-20 09:30:13 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? [["id", 1]] + Rendered home/show.html.erb within layouts/application (3.0ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (no implicit conversion of ActiveSupport::TimeWithZone into String): + 5:
  • <%= "Description: " + task.description%> + 6:
  • + 7:
  • <%= "Status: " + task.description%>
  • + 8:
  • <%= "Completed at: " + task.completed_at%>
  • + 9: <%end%> + 10: + 11: + app/views/home/show.html.erb:8:in `+' + app/views/home/show.html.erb:8:in `block in _app_views_home_show_html_erb__3010337776228872185_70320785862220' + app/views/home/show.html.erb:3:in `_app_views_home_show_html_erb__3010337776228872185_70320785862220' + app/controllers/home_controller.rb:7:in `by_task' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (46.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (49.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (101.4ms) + + +Started GET "/1" for ::1 at 2016-04-20 09:30:30 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? [["id", 1]] + Rendered home/show.html.erb within layouts/application (2.6ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/1" for ::1 at 2016-04-20 09:31:22 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? [["id", 1]] + Rendered home/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:31:34 -0700 +Processing by HomeController#index as HTML + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.6ms) + + +Started GET "/8" for ::1 at 2016-04-20 09:31:35 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? [["id", 8]] + Rendered home/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:31:37 -0700 +Processing by HomeController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 19ms (Views: 18.2ms | ActiveRecord: 0.4ms) + + +Started GET "/4" for ::1 at 2016-04-20 09:31:37 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? [["id", 4]] + Rendered home/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 13ms (Views: 11.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:31:38 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 14ms (Views: 13.8ms | ActiveRecord: 0.2ms) + + +Started GET "/9" for ::1 at 2016-04-20 10:32:02 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? [["id", 9]] + Rendered home/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 10:32:04 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.1ms) + + +Started GET "/9" for ::1 at 2016-04-20 10:32:16 -0700 +Processing by HomeController#by_task as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? [["id", 9]] + Rendered home/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 10:32:17 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.2ms) diff --git a/public/404.html b/public/404.html new file mode 100644 index 000000000..b612547fc --- /dev/null +++ b/public/404.html @@ -0,0 +1,67 @@ + + + + The page you were looking for doesn't exist (404) + + + + + + +
    +
    +

    The page you were looking for doesn't exist.

    +

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

    +
    +

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

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

    The change you wanted was rejected.

    +

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

    +
    +

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

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

    We're sorry, but something went wrong.

    +
    +

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

    +
    + + diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 000000000..e69de29bb diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 000000000..3c9c7c01f --- /dev/null +++ b/public/robots.txt @@ -0,0 +1,5 @@ +# See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file +# +# To ban all spiders from the entire site uncomment the next two lines: +# User-agent: * +# Disallow: / diff --git a/test/controllers/.keep b/test/controllers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/controllers/home_controller_test.rb b/test/controllers/home_controller_test.rb new file mode 100644 index 000000000..0d9bb47c3 --- /dev/null +++ b/test/controllers/home_controller_test.rb @@ -0,0 +1,9 @@ +require 'test_helper' + +class HomeControllerTest < ActionController::TestCase + test "should get index" do + get :index + assert_response :success + end + +end diff --git a/test/fixtures/.keep b/test/fixtures/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/fixtures/tasks.yml b/test/fixtures/tasks.yml new file mode 100644 index 000000000..876e8d95c --- /dev/null +++ b/test/fixtures/tasks.yml @@ -0,0 +1,11 @@ +# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + name: MyString + description: MyString + completed_at: 2016-04-19 14:47:44 + +two: + name: MyString + description: MyString + completed_at: 2016-04-19 14:47:44 diff --git a/test/helpers/.keep b/test/helpers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/integration/.keep b/test/integration/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/mailers/.keep b/test/mailers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/models/.keep b/test/models/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/models/task_test.rb b/test/models/task_test.rb new file mode 100644 index 000000000..3ca215970 --- /dev/null +++ b/test/models/task_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class TaskTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end diff --git a/test/test_helper.rb b/test/test_helper.rb new file mode 100644 index 000000000..92e39b2d7 --- /dev/null +++ b/test/test_helper.rb @@ -0,0 +1,10 @@ +ENV['RAILS_ENV'] ||= 'test' +require File.expand_path('../../config/environment', __FILE__) +require 'rails/test_help' + +class ActiveSupport::TestCase + # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order. + fixtures :all + + # Add more helper methods to be used by all tests here... +end diff --git a/vendor/assets/javascripts/.keep b/vendor/assets/javascripts/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/vendor/assets/stylesheets/.keep b/vendor/assets/stylesheets/.keep new file mode 100644 index 000000000..e69de29bb From 80c9e9c87accd50693b1cdfe1500b10644ccd1de Mon Sep 17 00:00:00 2001 From: Nadine Curry Date: Thu, 21 Apr 2016 12:56:55 -0700 Subject: [PATCH 02/12] Added new task button and capability --- app/controllers/home_controller.rb | 24 +- app/views/home/index.html.erb | 1 - app/views/home/new.html.erb | 11 + app/views/home/show.html.erb | 12 +- app/views/layouts/application.html.erb | 2 + config/routes.rb | 4 +- db/development.sqlite3 | Bin 20480 -> 20480 bytes log/development.log | 1230 ++++++++++++++++++++++++ 8 files changed, 1273 insertions(+), 11 deletions(-) create mode 100644 app/views/home/new.html.erb diff --git a/app/controllers/home_controller.rb b/app/controllers/home_controller.rb index 88ce5eee8..2a641d589 100644 --- a/app/controllers/home_controller.rb +++ b/app/controllers/home_controller.rb @@ -2,8 +2,30 @@ class HomeController < ApplicationController def index @tasks = Task.order(id: :asc) end + def by_task @task = Task.where(id: params[:id]) render :show - end + end + + def new + @task = Task.new + end + + def create + @task = Task.new(task_create_params[:task]) + if (@task.save) + redirect_to task_path(@task.id) + else + render :new + end + end + + def task_create_params + params.permit(task: [:name, :description]) + end + + def show + @task = Task.find(params[:id]) + end end diff --git a/app/views/home/index.html.erb b/app/views/home/index.html.erb index 95c9d3def..57bac2800 100644 --- a/app/views/home/index.html.erb +++ b/app/views/home/index.html.erb @@ -7,4 +7,3 @@ <%end%> -<%= link_to "Home", root_path%> diff --git a/app/views/home/new.html.erb b/app/views/home/new.html.erb new file mode 100644 index 000000000..9b37dc781 --- /dev/null +++ b/app/views/home/new.html.erb @@ -0,0 +1,11 @@ +

    Let's make a new task!

    + +
    <%=params%>
    + +<%= form_for @task do |f| %> + <%= f.label :name %> + <%= f.text_field :name%> + <%= f.label :description %> + <%= f.text_field :description%> + <%= f.submit %> +<%end%> \ No newline at end of file diff --git a/app/views/home/show.html.erb b/app/views/home/show.html.erb index d03947d72..554baffdd 100644 --- a/app/views/home/show.html.erb +++ b/app/views/home/show.html.erb @@ -1,10 +1,6 @@ -

    Here's your task!

    +

    <%= @task.name %>

      -
    • <%= "Name: " + @task[0].name %>
    • -
    • <%= "Description: " + @task[0].description%> -
    • -
    • <%= "Status: " + @task[0].description%>
    • -
    • Completed at: <%= @task[0].completed_at%>
    • +
    • Description: <%= @task.description %>
    • +
    • Status: <%= @task.completed_at %>
    • +
    • Completed on: <%= @task.completed_at %>
    - -<%= link_to "Home", root_path%> \ No newline at end of file diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index 46eeb110b..cea176f9e 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -10,5 +10,7 @@ <%= yield %> +<%= link_to "Home", root_path %> +<%= link_to "New Task", tasks_new_path %> diff --git a/config/routes.rb b/config/routes.rb index e2800776c..f05240df0 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,7 +1,9 @@ Rails.application.routes.draw do root 'home#index' - get "/:id" => "home#by_task" + get"/tasks/new" => "home#new" + post "/tasks" => "home#create", as: "tasks" + get "/tasks/:id" => "home#show", as: "task" # The priority is based upon order of creation: first created -> highest priority. # See how all your routes lay out with "rake routes". diff --git a/db/development.sqlite3 b/db/development.sqlite3 index 7f324861c5a41cfc82a164b761978c6736c2cd8a..f310456885288ccba2ecae345411febf043291ef 100644 GIT binary patch delta 143 zcmZozz}T>Wae_1>|3n#QM*fWnOZ26n_pCvUv6YzXr^mmqHAQRU}#}w YVr*q%s%LI&ZfR_cTV|8Pe||=80K>&3%K!iX delta 78 zcmV-U0I~mopaFoO0gxL34v`!~0S>WXq%Rl>3;_TP0S{6R@D8C4It{`NUJV%x#tdt* kf#nOc0X&@p0cDe)KNgc9JU^3rT`3RW!^DgXcg diff --git a/log/development.log b/log/development.log index 3415f94b5..5bed162da 100644 --- a/log/development.log +++ b/log/development.log @@ -3698,3 +3698,1233 @@ Processing by HomeController#index as HTML Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC Rendered home/index.html.erb within layouts/application (1.2ms) Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 11:37:16 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (10.2ms) +Completed 500 Internal Server Error in 31ms (ActiveRecord: 0.7ms) + +SyntaxError - syntax error, unexpected '<' + + ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/layouts/application.html.erb:16: unknown regexp options - htl +/Users/Nadine/C5/projects/TaskListRails/app/views/layouts/application.html.erb:17: unterminated string meets end of file +/Users/Nadine/C5/projects/TaskListRails/app/views/layouts/application.html.erb:17: syntax error, unexpected end-of-input, expecting ')': + app/views/layouts/application.html.erb:15:in `' + actionview (4.2.6) lib/action_view/template.rb:296:in `compile' + actionview (4.2.6) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.6) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.6) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/47b30bec195071ed/variables" for ::1 at 2016-04-21 11:37:16 -0700 + + +Started GET "/" for ::1 at 2016-04-21 11:37:18 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (1.7ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.2ms) + +SyntaxError - syntax error, unexpected '<' + + ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/layouts/application.html.erb:16: unknown regexp options - htl +/Users/Nadine/C5/projects/TaskListRails/app/views/layouts/application.html.erb:17: unterminated string meets end of file +/Users/Nadine/C5/projects/TaskListRails/app/views/layouts/application.html.erb:17: syntax error, unexpected end-of-input, expecting ')': + app/views/layouts/application.html.erb:15:in `' + actionview (4.2.6) lib/action_view/template.rb:296:in `compile' + actionview (4.2.6) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.6) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.6) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/b7aaef4b6e024cc1/variables" for ::1 at 2016-04-21 11:37:18 -0700 + + +Started GET "/" for ::1 at 2016-04-21 11:37:50 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 341ms (ActiveRecord: 0.2ms) + +NameError - undefined local variable or method `task_new_path' for #<#:0x007f9d3d1f8308> +Did you mean? task_path + tasks_path: + app/views/layouts/application.html.erb:14:in `_app_views_layouts_application_html_erb__3507534745976830430_70156656009060' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/4c46f610b4f026da/variables" for ::1 at 2016-04-21 11:37:51 -0700 + + +Started GET "/" for ::1 at 2016-04-21 11:37:53 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.3ms) +Completed 500 Internal Server Error in 77ms (ActiveRecord: 0.2ms) + +NameError - undefined local variable or method `task_new_path' for #<#:0x007f9d3da98120> +Did you mean? task_path + tasks_path: + app/views/layouts/application.html.erb:14:in `_app_views_layouts_application_html_erb__3507534745976830430_70156656009060' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/32bdc060ec6f9ec2/variables" for ::1 at 2016-04-21 11:37:53 -0700 + + +Started GET "/" for ::1 at 2016-04-21 11:39:51 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (9.2ms) +Completed 500 Internal Server Error in 297ms (ActiveRecord: 0.4ms) + +NameError - undefined local variable or method `task_new_path' for #<#:0x007fbd8c64dd58> +Did you mean? tasks_new_path + task_path + tasks_path: + app/views/layouts/application.html.erb:14:in `_app_views_layouts_application_html_erb__4518915355133730487_70226049410680' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f1f0c5a3ef61a58f/variables" for ::1 at 2016-04-21 11:39:51 -0700 + + +Started GET "/" for ::1 at 2016-04-21 11:39:52 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 500 Internal Server Error in 49ms (ActiveRecord: 0.2ms) + +NameError - undefined local variable or method `task_new_path' for #<#:0x007fbd8cbe2a20> +Did you mean? tasks_new_path + task_path + tasks_path: + app/views/layouts/application.html.erb:14:in `_app_views_layouts_application_html_erb__4518915355133730487_70226049410680' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/1f533e972e4567e4/variables" for ::1 at 2016-04-21 11:39:53 -0700 + + +Started GET "/" for ::1 at 2016-04-21 11:39:53 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (1.3ms) +Completed 500 Internal Server Error in 44ms (ActiveRecord: 0.2ms) + +NameError - undefined local variable or method `task_new_path' for #<#:0x007fbd8cdb91c8> +Did you mean? tasks_new_path + task_path + tasks_path: + app/views/layouts/application.html.erb:14:in `_app_views_layouts_application_html_erb__4518915355133730487_70226049410680' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/24544c4e6926f50c/variables" for ::1 at 2016-04-21 11:39:53 -0700 + + +Started GET "/" for ::1 at 2016-04-21 11:41:45 -0700 + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (6.4ms) +Completed 200 OK in 255ms (Views: 243.0ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-04-21 11:41:45 -0700 +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-21 11:41:46 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 12ms (Views: 11.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-21 11:41:47 -0700 + +ActionController::RoutingError - uninitialized constant TasksController: + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:63:in `rescue in controller' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:58:in `controller' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:39:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasks/new" for ::1 at 2016-04-21 11:41:47 -0700 + +ActionController::RoutingError - uninitialized constant TasksController: + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:63:in `rescue in controller' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:58:in `controller' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:39:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/3bd8ed6c2918603e/variables" for ::1 at 2016-04-21 11:41:47 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-04-21 11:43:36 -0700 +Processing by HomeController#new as HTML + Rendered home/new.html.erb within layouts/application (21.3ms) +Completed 200 OK in 42ms (Views: 36.6ms | ActiveRecord: 0.4ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 11:43:45 -0700 +Processing by HomeController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"2O7wuXWHC3KmIhmgXdFyFuOyYhPI04svaImAEu4+I696OXBgGmMIwpISpmcTBMxvQyvAQTGWcYkgFKQqVtdrgQ==", "task"=>{"name"=>"Shower", "description"=>"Tomorrow"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Shower"], ["description", "Tomorrow"], ["created_at", "2016-04-21 18:43:45.737933"], ["updated_at", "2016-04-21 18:43:45.737933"]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks/11 +Completed 302 Found in 6ms (ActiveRecord: 1.3ms) + + +Started GET "/tasks/11" for ::1 at 2016-04-21 11:43:45 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"11"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 11]] + Rendered home/show.html.erb within layouts/application (4.9ms) +Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/home/show.html.erb:3:in `_app_views_home_show_html_erb__2916462307003522799_70220116085200' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/6f47ca45bd6085c3/variables" for ::1 at 2016-04-21 11:43:45 -0700 + + +Started GET "/tasks/11" for ::1 at 2016-04-21 11:45:40 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 11]] + Rendered home/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/11" for ::1 at 2016-04-21 11:45:50 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"11"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 11]] + Rendered home/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 11:45:52 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 17ms (Views: 15.6ms | ActiveRecord: 0.2ms) + + +Started GET "/1" for ::1 at 2016-04-21 11:45:57 -0700 + +ActionController::RoutingError (No route matches [GET] "/1"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (72.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (104.5ms) + + +Started GET "/1" for ::1 at 2016-04-21 11:45:57 -0700 + +ActionController::RoutingError (No route matches [GET] "/1"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (7.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (69.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.5ms) From 5feeb2079ff455d1ecae0c43216b5239e4e09e42 Mon Sep 17 00:00:00 2001 From: Nadine Curry Date: Fri, 22 Apr 2016 09:43:42 -0700 Subject: [PATCH 03/12] Using bootstrap and added delete button for every task --- Gemfile | 2 + Gemfile.lock | 6 + app/assets/javascripts/application.js | 1 + app/assets/javascripts/home.js.coffee | 28 + app/assets/stylesheets/application.css | 15 - app/assets/stylesheets/application.css.scss | 2 + app/controllers/home_controller.rb | 9 +- app/views/home/index.html.erb | 27 +- app/views/home/show.html.erb | 2 +- app/views/layouts/application.html.erb | 6 +- config/routes.rb | 11 +- db/development.sqlite3 | Bin 20480 -> 20480 bytes log/development.log | 10270 ++++++++++++++++++ 13 files changed, 10355 insertions(+), 24 deletions(-) create mode 100644 app/assets/javascripts/home.js.coffee delete mode 100644 app/assets/stylesheets/application.css create mode 100644 app/assets/stylesheets/application.css.scss diff --git a/Gemfile b/Gemfile index 14759c360..bf6da4427 100644 --- a/Gemfile +++ b/Gemfile @@ -32,6 +32,8 @@ gem 'sdoc', '~> 0.4.0', group: :doc # Use Capistrano for deployment # gem 'capistrano-rails', group: :development +gem 'bootstrap-sass', '~> 3.3.6' + group :development, :test do # Call 'byebug' anywhere in the code to stop execution and get a debugger console gem 'byebug' diff --git a/Gemfile.lock b/Gemfile.lock index abfecdc5c..88436569f 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -37,12 +37,17 @@ GEM thread_safe (~> 0.3, >= 0.3.4) tzinfo (~> 1.1) arel (6.0.3) + autoprefixer-rails (6.3.6) + execjs 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) + bootstrap-sass (3.3.6) + autoprefixer-rails (>= 5.2.1) + sass (>= 3.3.4) builder (3.2.2) byebug (8.2.4) coderay (1.1.1) @@ -150,6 +155,7 @@ PLATFORMS DEPENDENCIES better_errors binding_of_caller + bootstrap-sass (~> 3.3.6) byebug coffee-rails (~> 4.1.0) jbuilder (~> 2.0) diff --git a/app/assets/javascripts/application.js b/app/assets/javascripts/application.js index e07c5a830..746585672 100644 --- a/app/assets/javascripts/application.js +++ b/app/assets/javascripts/application.js @@ -13,4 +13,5 @@ //= require jquery //= require jquery_ujs //= require turbolinks +//= require bootstrap-sprockets //= require_tree . diff --git a/app/assets/javascripts/home.js.coffee b/app/assets/javascripts/home.js.coffee new file mode 100644 index 000000000..19b0b58bf --- /dev/null +++ b/app/assets/javascripts/home.js.coffee @@ -0,0 +1,28 @@ +$.rails.allowAction = (link) -> + return true unless link.attr('data-confirm') + $.rails.showConfirmDialog(link) # look bellow for implementations + false # always stops the action since code runs asynchronously + +$.rails.confirmed = (link) -> + link.removeAttr('data-confirm') + link.trigger('click.rails') + +$.rails.showConfirmDialog = (link) -> + message = link.attr 'data-confirm' + html = """ + + """ + $(html).modal() + $('#confirmationDialog .confirm').on 'click', -> $.rails.confirmed(link) \ No newline at end of file diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css deleted file mode 100644 index f9cd5b348..000000000 --- a/app/assets/stylesheets/application.css +++ /dev/null @@ -1,15 +0,0 @@ -/* - * This is a manifest file that'll be compiled into application.css, which will include all the files - * listed below. - * - * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets, - * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path. - * - * You're free to add application-wide styles to this file and they'll appear at the bottom of the - * compiled file so the styles you add here take precedence over styles defined in any styles - * defined in the other CSS/SCSS files in this directory. It is generally better to create a new - * file per style scope. - * - *= require_tree . - *= require_self - */ diff --git a/app/assets/stylesheets/application.css.scss b/app/assets/stylesheets/application.css.scss new file mode 100644 index 000000000..abccfca87 --- /dev/null +++ b/app/assets/stylesheets/application.css.scss @@ -0,0 +1,2 @@ +@import "bootstrap-sprockets"; +@import "bootstrap"; \ No newline at end of file diff --git a/app/controllers/home_controller.rb b/app/controllers/home_controller.rb index 2a641d589..0daee1799 100644 --- a/app/controllers/home_controller.rb +++ b/app/controllers/home_controller.rb @@ -15,7 +15,7 @@ def new def create @task = Task.new(task_create_params[:task]) if (@task.save) - redirect_to task_path(@task.id) + redirect_to root_path else render :new end @@ -28,4 +28,11 @@ def task_create_params def show @task = Task.find(params[:id]) end + + def destroy + @task = Task.find(params[:id]) + @task.destroy + @tasks = Task.order(id: :asc) + render :index + end end diff --git a/app/views/home/index.html.erb b/app/views/home/index.html.erb index 57bac2800..4994136b9 100644 --- a/app/views/home/index.html.erb +++ b/app/views/home/index.html.erb @@ -1,9 +1,28 @@

    Here's a list of tasks!

    -
      + + +
      <%=params%>
      + + + + + + + + + + <% @tasks.each do |task| %> -
    • - <%= link_to task.name, "/#{task.id}" %> -
    • + + + + <%end%> + +
      Task NameRemoveEdit
      + <%= link_to task.name, "/tasks/#{task.id}" %> + + <%= link_to "", {:controller => :home, :action => 'destroy', :id => task.id}, method: :delete, data: {confirm: "Are you sure?"}, class:"glyphicon glyphicon-trash"%> +
      diff --git a/app/views/home/show.html.erb b/app/views/home/show.html.erb index 554baffdd..e89ca4785 100644 --- a/app/views/home/show.html.erb +++ b/app/views/home/show.html.erb @@ -1,6 +1,6 @@

      <%= @task.name %>

      • Description: <%= @task.description %>
      • -
      • Status: <%= @task.completed_at %>
      • +
      • Status: <%= "Completed" if @task.completed_at != nil%>
      • Completed on: <%= @task.completed_at %>
      diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index cea176f9e..425c4f961 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -1,7 +1,11 @@ - TaskListRails + + + + Bootstrap Template + <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %> <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %> <%= csrf_meta_tags %> diff --git a/config/routes.rb b/config/routes.rb index f05240df0..f91e7909d 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,9 +1,16 @@ Rails.application.routes.draw do root 'home#index' - get"/tasks/new" => "home#new" - post "/tasks" => "home#create", as: "tasks" + get "/tasks" => "home#index", as: "tasks" + post "/tasks" => "home#create" + + get "/tasks/new" => "home#new" + get "/tasks/:id" => "home#show", as: "task" + patch "/tasks/:id" => "home#update" + delete "/tasks/:id" => "home#destroy" + + get "tasks/:id/edit" => "albums#edit" # The priority is based upon order of creation: first created -> highest priority. # See how all your routes lay out with "rake routes". diff --git a/db/development.sqlite3 b/db/development.sqlite3 index f310456885288ccba2ecae345411febf043291ef..8a005d80afa69c6d490c01d8e248c7706790030a 100644 GIT binary patch delta 421 zcmZozz}T>Wae_3X@kAMCM&peMi}dA!7&v*3G4OrhTgYd{dx$rVSCZ!#|7!k3o?8AC z?zI~md$~h`c-a}Gbr~ETok}Yek`qhP@{1HoG7|H$i_63>AzF ztc;AUj4kynEKMye%y7$0X0*wQ;tyho7Ugwxbo5Is@D*fd5Lb7X0g}={tBP|{QwtJv zauiY$E0IkxwlXxcGBMLLu`sYOw!kT~`KV1VQ#}I%1HURS&@}gag_3*)4{3G=MPVS< ztF*X8AthfSvm`IS9K#G_3q4bF3rizo+%myZ>Wae_1>|3n#QM*fWni}Yn?GjQ`TGVn0+2l0L2TgYd{dx$rVSCZ!#Pd5M7 zjg61FCo|e)sYi0LGl=p!Iy(9#7U&rn7?|oBnCKcAC>UB;nHpM|n(3LF8X6lKO;)fI zWirWQtE)mdN`0|SGU zCdi_Yj8p};%%b8Fg^"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered home/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 21ms (Views: 14.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/3" for ::1 at 2016-04-21 13:00:08 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered home/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 15ms (Views: 13.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3" for ::1 at 2016-04-21 13:00:10 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered home/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 20ms (Views: 19.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3" for ::1 at 2016-04-21 13:00:24 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered home/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 13:00:26 -0700 +Processing by HomeController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 28ms (Views: 26.6ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/2" for ::1 at 2016-04-21 13:00:28 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]] + Rendered home/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 14ms (Views: 12.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/11" for ::1 at 2016-04-21 13:00:33 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"11"} + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 11]] + Rendered home/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 13.3ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-21 13:00:44 -0700 +Processing by HomeController#new as HTML + Rendered home/new.html.erb within layouts/application (8.2ms) +Completed 200 OK in 22ms (Views: 21.9ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-21 13:15:45 -0700 +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (3.3ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.2ms) + +ActionController::UrlGenerationError - No route matches {:action=>"destroy", :controller=>"home", :id=>1}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:287:in `button_to' + app/views/home/index.html.erb:6:in `block in _app_views_home_index_html_erb___2019707135268639162_70230655550220' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:3:in `_app_views_home_index_html_erb___2019707135268639162_70230655550220' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/1e8dc0b12e00afbc/variables" for ::1 at 2016-04-21 13:15:45 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:18:11 -0700 +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (6.4ms) +Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.5ms) + +ActionController::UrlGenerationError - No route matches {:action=>"destroy", :controller=>"home", :id=>1}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:287:in `button_to' + app/views/home/index.html.erb:6:in `block in _app_views_home_index_html_erb___2019707135268639162_70230655550220' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:3:in `_app_views_home_index_html_erb___2019707135268639162_70230655550220' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/ac0ed1bc116d7324/variables" for ::1 at 2016-04-21 13:18:11 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:18:12 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.5ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.1ms) + +ActionController::UrlGenerationError - No route matches {:action=>"destroy", :controller=>"home", :id=>1}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:287:in `button_to' + app/views/home/index.html.erb:6:in `block in _app_views_home_index_html_erb___2019707135268639162_70230655550220' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:3:in `_app_views_home_index_html_erb___2019707135268639162_70230655550220' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/af2cb45caf2c853a/variables" for ::1 at 2016-04-21 13:18:12 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:18:12 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (3.3ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.2ms) + +ActionController::UrlGenerationError - No route matches {:action=>"destroy", :controller=>"home", :id=>1}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:287:in `button_to' + app/views/home/index.html.erb:6:in `block in _app_views_home_index_html_erb___2019707135268639162_70230655550220' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:3:in `_app_views_home_index_html_erb___2019707135268639162_70230655550220' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/307df87dd9c9c8c7/variables" for ::1 at 2016-04-21 13:18:12 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:18:13 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.9ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +ActionController::UrlGenerationError - No route matches {:action=>"destroy", :controller=>"home", :id=>1}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:287:in `button_to' + app/views/home/index.html.erb:6:in `block in _app_views_home_index_html_erb___2019707135268639162_70230655550220' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:3:in `_app_views_home_index_html_erb___2019707135268639162_70230655550220' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/59b6d22c83debb42/variables" for ::1 at 2016-04-21 13:18:13 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:18:14 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (3.0ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +ActionController::UrlGenerationError - No route matches {:action=>"destroy", :controller=>"home", :id=>1}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:287:in `button_to' + app/views/home/index.html.erb:6:in `block in _app_views_home_index_html_erb___2019707135268639162_70230655550220' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:3:in `_app_views_home_index_html_erb___2019707135268639162_70230655550220' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/0d7f0e480a614545/variables" for ::1 at 2016-04-21 13:18:14 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:18:15 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.5ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.1ms) + +ActionController::UrlGenerationError - No route matches {:action=>"destroy", :controller=>"home", :id=>1}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:287:in `button_to' + app/views/home/index.html.erb:6:in `block in _app_views_home_index_html_erb___2019707135268639162_70230655550220' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:3:in `_app_views_home_index_html_erb___2019707135268639162_70230655550220' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/622e652ec02b14ab/variables" for ::1 at 2016-04-21 13:18:15 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:18:26 -0700 +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (3.0ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.3ms) + +ActionController::UrlGenerationError - No route matches {:action=>"destroy", :controller=>"home", :id=>1}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:287:in `button_to' + app/views/home/index.html.erb:6:in `block in _app_views_home_index_html_erb___2019707135268639162_70230655550220' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:3:in `_app_views_home_index_html_erb___2019707135268639162_70230655550220' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/703e99e26f9a2038/variables" for ::1 at 2016-04-21 13:18:26 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:18:27 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.7ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.1ms) + +ActionController::UrlGenerationError - No route matches {:action=>"destroy", :controller=>"home", :id=>1}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:287:in `button_to' + app/views/home/index.html.erb:6:in `block in _app_views_home_index_html_erb___2019707135268639162_70230655550220' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:3:in `_app_views_home_index_html_erb___2019707135268639162_70230655550220' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/8ffa673162ee5e51/variables" for ::1 at 2016-04-21 13:18:27 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:18:29 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.8ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +ActionController::UrlGenerationError - No route matches {:action=>"destroy", :controller=>"home", :id=>1}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:287:in `button_to' + app/views/home/index.html.erb:6:in `block in _app_views_home_index_html_erb___2019707135268639162_70230655550220' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:3:in `_app_views_home_index_html_erb___2019707135268639162_70230655550220' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/6183ce0bd991a7c6/variables" for ::1 at 2016-04-21 13:18:29 -0700 + + +Started POST "/__better_errors/6183ce0bd991a7c6/variables" for ::1 at 2016-04-21 13:18:32 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:22:34 -0700 +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (6.6ms) +Completed 200 OK in 23ms (Views: 19.6ms | ActiveRecord: 0.5ms) + + +Started DELETE "/tasks/11" for ::1 at 2016-04-21 13:22:37 -0700 +Processing by HomeController#destroy as HTML + Parameters: {"authenticity_token"=>"xWTGtZpobJDUTmiZmLooNLtORHBxEU0irAFIWbx5b/Vns0Zs9YxvIOB+117Wb5ZNG9fmIohUt4TknGxhBJAn2w==", "id"=>"11"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 11]] +  (0.1ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 11]] +  (1.4ms) commit transaction + Rendered home/index.html.erb within layouts/application (3.8ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 2.0ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/home/index.html.erb:3:in `_app_views_home_index_html_erb___2019707135268639162_70230655550220' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + app/controllers/home_controller.rb:35:in `destroy' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/b60d4e72931239cc/variables" for ::1 at 2016-04-21 13:22:38 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:23:08 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-21 13:23:18 -0700 +Processing by HomeController#new as HTML + Rendered home/new.html.erb within layouts/application (2.0ms) +Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 13:23:27 -0700 +Processing by HomeController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"r9myc+9liBvPAhgbgKK0xrheHgT7+Tbf+rnkdtSJqXUNDjKqgIGLq/syp9zOdwq/GMe8VgK8zHmyJMBObGDhWw==", "task"=>{"name"=>"Buy dog", "description"=>"for christmas"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.5ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Buy dog"], ["description", "for christmas"], ["created_at", "2016-04-21 20:23:27.717498"], ["updated_at", "2016-04-21 20:23:27.717498"]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/tasks/12 +Completed 302 Found in 4ms (ActiveRecord: 1.3ms) + + +Started GET "/tasks/12" for ::1 at 2016-04-21 13:23:27 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] + Rendered home/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 13ms (Views: 12.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-21 13:23:31 -0700 +Processing by HomeController#new as HTML + Rendered home/new.html.erb within layouts/application (1.5ms) +Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 13:23:39 -0700 +Processing by HomeController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"Qcr7SD/BOKhFk5BZ1/TLhRAqbVqpeGcwjDVJx7nI7mLjHXuRUCU7GHGjL56ZIXX8sLPPCFA9nZbEqG3/ASGmTA==", "task"=>{"name"=>"Buy cat", "description"=>"for thanksgiving"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Buy cat"], ["description", "for thanksgiving"], ["created_at", "2016-04-21 20:23:39.895886"], ["updated_at", "2016-04-21 20:23:39.895886"]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks/13 +Completed 302 Found in 3ms (ActiveRecord: 1.1ms) + + +Started GET "/tasks/13" for ::1 at 2016-04-21 13:23:39 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 13]] + Rendered home/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 14ms (Views: 12.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 13:23:41 -0700 +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (6.2ms) +Completed 200 OK in 28ms (Views: 27.5ms | ActiveRecord: 0.3ms) + + +Started DELETE "/tasks/12" for ::1 at 2016-04-21 13:23:43 -0700 +Processing by HomeController#destroy as HTML + Parameters: {"authenticity_token"=>"xLi9A5rPhIZREGvvdNMsnVltiV9JR9XY4vFI3MbwX0Nmbz3a9SuHNmUg1Cg6BpLk+fQrDbACL36qbGzkfhkXbQ==", "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] +  (0.0ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 12]] +  (1.4ms) commit transaction + Rendered home/index.html.erb within layouts/application (2.8ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 1.8ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/home/index.html.erb:3:in `_app_views_home_index_html_erb___2019707135268639162_70230655550220' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + app/controllers/home_controller.rb:35:in `destroy' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/74054895370466b9/variables" for ::1 at 2016-04-21 13:23:43 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:50:03 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (8.9ms) +Completed 200 OK in 279ms (Views: 270.5ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-04-21 13:50:03 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (6.3ms) +Completed 200 OK in 20ms (Views: 19.3ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/2" for ::1 at 2016-04-21 13:50:05 -0700 +Processing by HomeController#destroy as HTML + Parameters: {"authenticity_token"=>"q2urAleGn8+pch12VW5N3nkEQRV7fsvPW+EYSyMhFqkJvCvbOGKcf51CorEbu/On2Z3jR4I7MWkTfDxzm8hehw==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 2]] +  (1.4ms) commit transaction + Rendered home/index.html.erb within layouts/application (3.7ms) +Completed 500 Internal Server Error in 14ms (ActiveRecord: 2.0ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/home/index.html.erb:5:in `_app_views_home_index_html_erb__3799235957769227479_70183365067060' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + app/controllers/home_controller.rb:35:in `destroy' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/8954ca0c05a9bd51/variables" for ::1 at 2016-04-21 13:50:05 -0700 + + +Started DELETE "/tasks/13" for ::1 at 2016-04-21 13:50:34 -0700 + +ActionController::RoutingError (No route matches [DELETE] "/tasks/13"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (9.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (73.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (103.1ms) + + +Started GET "/" for ::1 at 2016-04-21 13:51:28 -0700 +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (6.4ms) +Completed 200 OK in 23ms (Views: 21.2ms | ActiveRecord: 0.5ms) + + +Started DELETE "/?id=13" for ::1 at 2016-04-21 13:51:30 -0700 +Processing by HomeController#destroy as HTML + Parameters: {"authenticity_token"=>"/SFzKdFyOT7TVIG3SWmAh5OEENO1RL98o6AnqgDByMFf9vPwvpY6judkPnAHvD7+Mx2ygUwBRdrrPQOSuCiA7w==", "id"=>"13"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 13]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 13]] +  (1.5ms) commit transaction + Rendered home/index.html.erb within layouts/application (2.4ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 2.0ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/home/index.html.erb:5:in `_app_views_home_index_html_erb__3799235957769227479_70183365067060' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + app/controllers/home_controller.rb:35:in `destroy' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/1cde590a8243c96d/variables" for ::1 at 2016-04-21 13:51:31 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:51:38 -0700 +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-21 13:51:40 -0700 +Processing by HomeController#new as HTML + Rendered home/new.html.erb within layouts/application (6.1ms) +Completed 200 OK in 19ms (Views: 18.2ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 13:51:44 -0700 +Processing by HomeController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"M4RSuw8OGeJhUlwWWv69XhsckU8zwX6xi09JT8125f2RU9JiYOoaUlVi49EUKwMnu4UzHcqEhBfD0m13dZ+t0w==", "task"=>{"name"=>"dfudsf", "description"=>"oihewogijsdf"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "dfudsf"], ["description", "oihewogijsdf"], ["created_at", "2016-04-21 20:51:44.509560"], ["updated_at", "2016-04-21 20:51:44.509560"]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/tasks/14 +Completed 302 Found in 4ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks/14" for ::1 at 2016-04-21 13:51:44 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + Rendered home/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 13ms (Views: 11.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-21 13:51:47 -0700 +Processing by HomeController#new as HTML + Rendered home/new.html.erb within layouts/application (1.2ms) +Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 13:51:50 -0700 +Processing by HomeController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"E8rQftyPdt+upt8Pph/eZsZ7VEsxRvQRPsI4kKwR8TOxHVCns2t1b5qWYMjoymAfZuL2GcgDDrd2XxyoFPi5HQ==", "task"=>{"name"=>"sdv", "description"=>"sfvsfbsrwrbvw"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sdv"], ["description", "sfvsfbsrwrbvw"], ["created_at", "2016-04-21 20:51:50.451807"], ["updated_at", "2016-04-21 20:51:50.451807"]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks/15 +Completed 302 Found in 3ms (ActiveRecord: 1.1ms) + + +Started GET "/tasks/15" for ::1 at 2016-04-21 13:51:50 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] + Rendered home/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 24ms (Views: 22.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 13:51:51 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (4.8ms) +Completed 200 OK in 20ms (Views: 18.9ms | ActiveRecord: 0.2ms) + + +Started DELETE "/?id=14" for ::1 at 2016-04-21 13:51:54 -0700 +Processing by HomeController#destroy as HTML + Parameters: {"authenticity_token"=>"btPBulRm0zcM9xs9hRmG4IWQGO2O26B5dDO7ACUwLRfMBEFjO4LQhzjHpPrLzDiZJQm6v3eeWt88rp84ndllOQ==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] +  (0.0ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 14]] +  (1.3ms) commit transaction + Rendered home/index.html.erb within layouts/application (2.5ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 1.7ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/home/index.html.erb:5:in `_app_views_home_index_html_erb__3799235957769227479_70183365067060' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + app/controllers/home_controller.rb:35:in `destroy' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/4b239f22367f0bee/variables" for ::1 at 2016-04-21 13:51:54 -0700 + + +Started POST "/__better_errors/4b239f22367f0bee/eval" for ::1 at 2016-04-21 13:52:02 -0700 + + +Started POST "/__better_errors/4b239f22367f0bee/eval" for ::1 at 2016-04-21 13:52:06 -0700 + + +Started GET "/?id=14" for ::1 at 2016-04-21 13:53:06 -0700 +Processing by HomeController#index as HTML + Parameters: {"id"=>"14"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (6.9ms) +Completed 200 OK in 22ms (Views: 19.5ms | ActiveRecord: 0.5ms) + + +Started DELETE "/?id=15" for ::1 at 2016-04-21 13:53:09 -0700 +Processing by HomeController#destroy as HTML + Parameters: {"authenticity_token"=>"4zz6QH8xAwdwObcabojTCrtXnmsYOVEes9DaBEXU08xB63qZENUAt0QJCN0gXW1zG848OeF8q7j7Tf48/T2b4g==", "id"=>"15"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 15]] +  (1.3ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 21ms (Views: 15.2ms | ActiveRecord: 2.1ms) + + +Started DELETE "/?id=10" for ::1 at 2016-04-21 13:53:11 -0700 +Processing by HomeController#destroy as HTML + Parameters: {"authenticity_token"=>"EhBrNleyPVnSvNKQc+QLcy2w3HqSIt9hmKlXfZdgU1Kwx+vvOFY+6eaMbVc9MbUKjSl+KGtnJcfQNHNFL4kbfA==", "id"=>"10"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 10]] +  (0.0ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 10]] +  (1.4ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 18ms (Views: 14.9ms | ActiveRecord: 2.0ms) + + +Started GET "/tasks/9" for ::1 at 2016-04-21 13:53:17 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered home/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-21 13:55:03 -0700 +Processing by HomeController#new as HTML + Rendered home/new.html.erb within layouts/application (2.3ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 13:55:07 -0700 +Processing by HomeController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"WdDOYjUZrIQYX3CI2Nni9k7JThyjEpSCzCgRcd0eXuv7B067Wv2vNCxvz0+WDFyP7lDsTlpXbiSEtTVJZfcWxQ==", "task"=>{"name"=>"fef", "description"=>"wevwvwvv"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.0ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "fef"], ["description", "wevwvwvv"], ["created_at", "2016-04-21 20:55:07.902388"], ["updated_at", "2016-04-21 20:55:07.902388"]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks/16 +Completed 302 Found in 3ms (ActiveRecord: 1.0ms) + + +Started GET "/tasks/16" for ::1 at 2016-04-21 13:55:07 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] + Rendered home/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 13:55:09 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.2ms) + + +Started DELETE "/?id=16" for ::1 at 2016-04-21 13:55:12 -0700 +Processing by HomeController#destroy as HTML + Parameters: {"authenticity_token"=>"Sl1ZKGQY7e7cBklW46FP78U6yJjL+aCGyeA7ltNunS3oitnxC/zuXug29pGtdPGWZaNqyjK8WiCBfR+ua4fVAw==", "id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 16]] +  (1.4ms) commit transaction + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (5.9ms) +Completed 200 OK in 23ms (Views: 19.6ms | ActiveRecord: 2.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-21 13:57:21 -0700 +Processing by HomeController#new as HTML + Rendered home/new.html.erb within layouts/application (2.2ms) +Completed 200 OK in 23ms (Views: 17.4ms | ActiveRecord: 0.4ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 13:57:24 -0700 +Processing by HomeController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"21F6/R9AItkw/XzEvUsjfg2fn5DlHywX7RPGxAmzAHF5hvokcKQhaQTNwwPznp0HrQY9whxa1rGljuL8sVpIXw==", "task"=>{"name"=>"wvwvw", "description"=>"wefwewgwrgwrg"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "wvwvw"], ["description", "wefwewgwrgwrg"], ["created_at", "2016-04-21 20:57:24.701891"], ["updated_at", "2016-04-21 20:57:24.701891"]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 1.1ms) + + +Started GET "/" for ::1 at 2016-04-21 13:57:24 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/17" for ::1 at 2016-04-21 13:57:27 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"17"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 17]] + Rendered home/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 18ms (Views: 16.0ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-04-21 14:36:27 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (15.0ms) +Completed 200 OK in 3453ms (Views: 3442.7ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/bootstrap/affix.self-d2b642d8fbfc1d7041e2edefd66683ada567a980789dcd6f94fddda0b33408b5.js?body=1" for ::1 at 2016-04-21 14:36:31 -0700 + + +Started GET "/assets/bootstrap/carousel.self-57eb8422043cf0a85b7a9dc6843916eb0a3e35b419c7798a5eb254b918997631.js?body=1" for ::1 at 2016-04-21 14:36:31 -0700 + + +Started GET "/assets/application.self-3e52058eb7bbe8e22ce56a183b659383779c27235d5a5d99d1a66caf55aa09b6.css?body=1" for ::1 at 2016-04-21 14:36:31 -0700 + + +Started GET "/assets/bootstrap/alert.self-a29e91e8cd3ddaba9bbc466901d53ec2127e9256b9b941905d525a3a716bd1a5.js?body=1" for ::1 at 2016-04-21 14:36:31 -0700 + + +Started GET "/assets/bootstrap/dropdown.self-9314126777c6be5443e37ea7f7967d7914d72b3e60449ba50edc967446373059.js?body=1" for ::1 at 2016-04-21 14:36:31 -0700 + + +Started GET "/assets/bootstrap/button.self-a6cb16785434acb365ae426aef9f1fce05ed553cae7a965e4471c3da71509175.js?body=1" for ::1 at 2016-04-21 14:36:31 -0700 + + +Started GET "/assets/bootstrap/collapse.self-7dc8bfbc2fbfabd2bad62c58ff8ffeaf8f20fb87c7ca6cd35f06d4dc19632587.js?body=1" for ::1 at 2016-04-21 14:36:31 -0700 + + +Started GET "/assets/bootstrap/tab.self-122235057fbd4c6c7da377d59dc58f47b44cb1088a2e38e6ee6ce9d8ac29a26a.js?body=1" for ::1 at 2016-04-21 14:36:31 -0700 + + +Started GET "/assets/bootstrap/transition.self-09ff30b1e8a93d1f7728b9855f55d9c9d8d5734c8861e0d8139994e50944572a.js?body=1" for ::1 at 2016-04-21 14:36:31 -0700 + + +Started GET "/assets/bootstrap/modal.self-72f95ffa1071297725a9ac91989693d56d1abf23f441a47455073b0da2857a5b.js?body=1" for ::1 at 2016-04-21 14:36:31 -0700 + + +Started GET "/assets/bootstrap/scrollspy.self-a155b9d4b2f978905f0326c0f6635e1134fe91c6bfbfcbad079fa24a9fef2b0e.js?body=1" for ::1 at 2016-04-21 14:36:31 -0700 + + +Started GET "/assets/bootstrap/tooltip.self-11cf547be953f25f511cec668f6690473fd97b2f65502e4032f4030999a3f0c3.js?body=1" for ::1 at 2016-04-21 14:36:31 -0700 + + +Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for ::1 at 2016-04-21 14:36:31 -0700 + + +Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2016-04-21 14:36:31 -0700 + + +Started GET "/assets/bootstrap/popover.self-77d8e3a2499c1104ef146396a68b82469ee2bdb365199b874694698d10405e9a.js?body=1" for ::1 at 2016-04-21 14:36:31 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:36:33 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (5.3ms) +Completed 200 OK in 50ms (Views: 49.4ms | ActiveRecord: 0.2ms) + + +Started DELETE "/?id=17" for ::1 at 2016-04-21 14:36:41 -0700 +Processing by HomeController#destroy as HTML + Parameters: {"authenticity_token"=>"zHbx+1wMjzIdruQd7953Z04bthpBkruxnOJdLnDMBmduoXEiM+iMgimeW9qhC8ke7oIUSLjXQRfUf3kWyCVOSQ==", "id"=>"17"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 17]] +  (0.1ms) begin transaction + SQL (0.5ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 17]] +  (0.7ms) commit transaction + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (10.1ms) +Completed 200 OK in 136ms (Views: 114.4ms | ActiveRecord: 1.9ms) + + +Started GET "/?id=17" for ::1 at 2016-04-21 15:40:28 -0700 +Processing by HomeController#index as HTML + Parameters: {"id"=>"17"} + Rendered home/index.html.erb within layouts/application (1.4ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected tIDENTIFIER, expecting ')' +..._to raw(""), ... +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/index.html.erb:8: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' +...ass="glyphicon glyphicon-trash">"), {:controller => :... +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/index.html.erb:8: syntax error, unexpected tLABEL +...troy', :id => task.id}, method: :delete, data: {confirm: "Ar... +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/index.html.erb:8: syntax error, unexpected ')', expecting keyword_end +... want to delete this task?"} );@output_buffer.safe_append=' +... ^: + app/views/home/index.html.erb:8:in `' + actionview (4.2.6) lib/action_view/template.rb:296:in `compile' + actionview (4.2.6) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.6) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.6) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/4ec2d0082806193d/variables" for ::1 at 2016-04-21 15:40:28 -0700 + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + + +Started GET "/?id=17" for ::1 at 2016-04-21 15:40:29 -0700 +Processing by HomeController#index as HTML + Parameters: {"id"=>"17"} + Rendered home/index.html.erb within layouts/application (1.2ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected tIDENTIFIER, expecting ')' +..._to raw(""), ... +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/index.html.erb:8: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' +...ass="glyphicon glyphicon-trash">"), {:controller => :... +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/index.html.erb:8: syntax error, unexpected tLABEL +...troy', :id => task.id}, method: :delete, data: {confirm: "Ar... +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/index.html.erb:8: syntax error, unexpected ')', expecting keyword_end +... want to delete this task?"} );@output_buffer.safe_append=' +... ^: + app/views/home/index.html.erb:8:in `' + actionview (4.2.6) lib/action_view/template.rb:296:in `compile' + actionview (4.2.6) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.6) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.6) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/1c668d35268b2a17/variables" for ::1 at 2016-04-21 15:40:29 -0700 + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + + +Started GET "/?id=17" for ::1 at 2016-04-21 15:41:40 -0700 +Processing by HomeController#index as HTML + Parameters: {"id"=>"17"} + Rendered home/index.html.erb within layouts/application (1.9ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected tIDENTIFIER, expecting ')' +..._to raw(""), ... +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/index.html.erb:8: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' +...ass="glyphicon glyphicon-trash">"), {:controller => :... +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/index.html.erb:8: syntax error, unexpected tLABEL +...troy', :id => task.id}, method: :delete, data: {confirm: "Ar... +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/index.html.erb:8: syntax error, unexpected ')', expecting keyword_end +... want to delete this task?"} );@output_buffer.safe_append=' +... ^: + app/views/home/index.html.erb:8:in `' + actionview (4.2.6) lib/action_view/template.rb:296:in `compile' + actionview (4.2.6) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.6) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.6) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/bfd9e03f112198b2/variables" for ::1 at 2016-04-21 15:41:40 -0700 + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + + +Started GET "/" for ::1 at 2016-04-21 15:41:43 -0700 +Processing by HomeController#index as HTML + Rendered home/index.html.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected tIDENTIFIER, expecting ')' +..._to raw(""), ... +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/index.html.erb:8: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' +...ass="glyphicon glyphicon-trash">"), {:controller => :... +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/index.html.erb:8: syntax error, unexpected tLABEL +...troy', :id => task.id}, method: :delete, data: {confirm: "Ar... +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/index.html.erb:8: syntax error, unexpected ')', expecting keyword_end +... want to delete this task?"} );@output_buffer.safe_append=' +... ^: + app/views/home/index.html.erb:8:in `' + actionview (4.2.6) lib/action_view/template.rb:296:in `compile' + actionview (4.2.6) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.6) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.6) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/6c1cc9dada4793f3/variables" for ::1 at 2016-04-21 15:41:43 -0700 + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + + +Started GET "/" for ::1 at 2016-04-21 15:41:44 -0700 +Processing by HomeController#index as HTML + Rendered home/index.html.erb within layouts/application (8.1ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected tIDENTIFIER, expecting ')' +..._to raw(""), ... +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/index.html.erb:8: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' +...ass="glyphicon glyphicon-trash">"), {:controller => :... +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/index.html.erb:8: syntax error, unexpected tLABEL +...troy', :id => task.id}, method: :delete, data: {confirm: "Ar... +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/index.html.erb:8: syntax error, unexpected ')', expecting keyword_end +... want to delete this task?"} );@output_buffer.safe_append=' +... ^: + app/views/home/index.html.erb:8:in `' + actionview (4.2.6) lib/action_view/template.rb:296:in `compile' + actionview (4.2.6) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.6) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.6) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/33755c8e16b954a2/variables" for ::1 at 2016-04-21 15:41:44 -0700 + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + + +Started GET "/" for ::1 at 2016-04-21 15:45:02 -0700 +Processing by HomeController#index as HTML + Rendered home/index.html.erb within layouts/application (1.6ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected =>, expecting '}' +...end= button_to {:controller => :home, :action => 'destroy',... +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/index.html.erb:8: syntax error, unexpected ',', expecting '}' +...=> :home, :action => 'destroy', :id => task.id}, method: :de... +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/index.html.erb:8: syntax error, unexpected tLABEL +...troy', :id => task.id}, method: :delete, data: {confirm: "Ar... +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/index.html.erb:8: syntax error, unexpected keyword_do_block, expecting keyword_end +...want to delete this task?"} do@output_buffer.safe_append=' +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/index.html.erb:16: syntax error, unexpected keyword_ensure, expecting end-of-input: + app/views/home/index.html.erb:8:in `' + actionview (4.2.6) lib/action_view/template.rb:296:in `compile' + actionview (4.2.6) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.6) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.6) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f9c7f3a5d2013af1/variables" for ::1 at 2016-04-21 15:45:02 -0700 + Task Load (0.7ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + + +Started GET "/" for ::1 at 2016-04-21 15:45:03 -0700 +Processing by HomeController#index as HTML + Rendered home/index.html.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected =>, expecting '}' +...end= button_to {:controller => :home, :action => 'destroy',... +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/index.html.erb:8: syntax error, unexpected ',', expecting '}' +...=> :home, :action => 'destroy', :id => task.id}, method: :de... +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/index.html.erb:8: syntax error, unexpected tLABEL +...troy', :id => task.id}, method: :delete, data: {confirm: "Ar... +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/index.html.erb:8: syntax error, unexpected keyword_do_block, expecting keyword_end +...want to delete this task?"} do@output_buffer.safe_append=' +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/index.html.erb:16: syntax error, unexpected keyword_ensure, expecting end-of-input: + app/views/home/index.html.erb:8:in `' + actionview (4.2.6) lib/action_view/template.rb:296:in `compile' + actionview (4.2.6) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.6) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.6) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/301f8ec734b31973/variables" for ::1 at 2016-04-21 15:45:03 -0700 + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + + +Started GET "/" for ::1 at 2016-04-21 15:45:05 -0700 +Processing by HomeController#index as HTML + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected =>, expecting '}' +...end= button_to {:controller => :home, :action => 'destroy',... +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/index.html.erb:8: syntax error, unexpected ',', expecting '}' +...=> :home, :action => 'destroy', :id => task.id}, method: :de... +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/index.html.erb:8: syntax error, unexpected tLABEL +...troy', :id => task.id}, method: :delete, data: {confirm: "Ar... +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/index.html.erb:8: syntax error, unexpected keyword_do_block, expecting keyword_end +...want to delete this task?"} do@output_buffer.safe_append=' +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/index.html.erb:16: syntax error, unexpected keyword_ensure, expecting end-of-input: + app/views/home/index.html.erb:8:in `' + actionview (4.2.6) lib/action_view/template.rb:296:in `compile' + actionview (4.2.6) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.6) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.6) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/4d3418cfbecb0507/variables" for ::1 at 2016-04-21 15:45:05 -0700 + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + + +Started GET "/" for ::1 at 2016-04-21 15:46:03 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 43ms (Views: 41.9ms | ActiveRecord: 0.2ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-21 15:46:03 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (65.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.4ms) + + +Started GET "/assets/bootstrap/glyphicons-halflings-regular-fc969dc1c6ff531abcf368089dcbaf5775133b0626ff56b52301a059fc0f9e1e.woff" for ::1 at 2016-04-21 15:46:03 -0700 + + +Started POST "/" for ::1 at 2016-04-21 15:46:05 -0700 + +ActionController::RoutingError (No route matches [POST] "/"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (55.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (81.6ms) + + +Started GET "/tasks/1" for ::1 at 2016-04-21 15:46:47 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered home/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 45ms (Views: 44.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-21 15:46:53 -0700 +Processing by HomeController#new as HTML + Rendered home/new.html.erb within layouts/application (7.5ms) +Completed 200 OK in 51ms (Views: 50.9ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 15:46:57 -0700 +Processing by HomeController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qfKxMRK1ZRMqeh5+fapblL9zm6rW8TtNGrc+3InQPZoLJTHofVFmox5Kobkzf+XtH+o5+C+0wetSKhrkMTl1tA==", "task"=>{"name"=>"sdsd", "description"=>"dvsdvdv"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sdsd"], ["description", "dvsdvdv"], ["created_at", "2016-04-21 22:46:57.191470"], ["updated_at", "2016-04-21 22:46:57.191470"]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 1.7ms) + + +Started GET "/" for ::1 at 2016-04-21 15:46:57 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 41ms (Views: 40.4ms | ActiveRecord: 0.2ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-21 15:46:57 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (55.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.1ms) + + +Started POST "/" for ::1 at 2016-04-21 15:46:59 -0700 + +ActionController::RoutingError (No route matches [POST] "/"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (63.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.5ms) + + +Started GET "/" for ::1 at 2016-04-21 15:48:19 -0700 +Processing by HomeController#index as HTML + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected ',', expecting => +... => 'destroy', :id => task.id}, data: {confirm: "Are you sur... +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/index.html.erb:8: syntax error, unexpected keyword_do_block, expecting keyword_end +...want to delete this task?"} do@output_buffer.safe_append=' +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/index.html.erb:16: syntax error, unexpected keyword_ensure, expecting end-of-input: + app/views/home/index.html.erb:8:in `' + actionview (4.2.6) lib/action_view/template.rb:296:in `compile' + actionview (4.2.6) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.6) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.6) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/83fbe9c7304e217a/variables" for ::1 at 2016-04-21 15:48:19 -0700 + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + + +Started GET "/" for ::1 at 2016-04-21 15:48:20 -0700 +Processing by HomeController#index as HTML + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected ',', expecting => +... => 'destroy', :id => task.id}, data: {confirm: "Are you sur... +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/index.html.erb:8: syntax error, unexpected keyword_do_block, expecting keyword_end +...want to delete this task?"} do@output_buffer.safe_append=' +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/index.html.erb:16: syntax error, unexpected keyword_ensure, expecting end-of-input: + app/views/home/index.html.erb:8:in `' + actionview (4.2.6) lib/action_view/template.rb:296:in `compile' + actionview (4.2.6) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.6) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.6) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/9cf7494d6cab0d7c/variables" for ::1 at 2016-04-21 15:48:20 -0700 + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + + +Started GET "/" for ::1 at 2016-04-21 15:48:21 -0700 +Processing by HomeController#index as HTML + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected ',', expecting => +... => 'destroy', :id => task.id}, data: {confirm: "Are you sur... +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/index.html.erb:8: syntax error, unexpected keyword_do_block, expecting keyword_end +...want to delete this task?"} do@output_buffer.safe_append=' +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/home/index.html.erb:16: syntax error, unexpected keyword_ensure, expecting end-of-input: + app/views/home/index.html.erb:8:in `' + actionview (4.2.6) lib/action_view/template.rb:296:in `compile' + actionview (4.2.6) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.6) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.6) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/0748b8227cf24c73/variables" for ::1 at 2016-04-21 15:48:21 -0700 + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + + +Started GET "/" for ::1 at 2016-04-21 15:48:39 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 36ms (Views: 35.1ms | ActiveRecord: 0.1ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-21 15:48:39 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (58.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (48.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (98.8ms) + + +Started DELETE "/?id=18" for ::1 at 2016-04-21 15:48:42 -0700 +Processing by HomeController#destroy as HTML + Parameters: {"authenticity_token"=>"7soliiO+doKM+uhbpfQOUaMubvJDFlUA0BqJHS7NIfpMHaVTTFp1MrjKV5zrIbAoA7fMoLpTr6aYh60lliRp1A==", "id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 18]] +  (0.1ms) begin transaction + SQL (0.9ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 18]] +  (2.1ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (15.2ms) +Completed 200 OK in 66ms (Views: 59.0ms | ActiveRecord: 3.4ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-21 15:48:42 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (59.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.4ms) + + +Started GET "/?id=18" for ::1 at 2016-04-21 15:52:48 -0700 +Processing by HomeController#index as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (29.7ms) +Completed 500 Internal Server Error in 33ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `delete' for #<#:0x007f7ffa4a87c0>: + app/views/home/index.html.erb:9:in `block in _app_views_home_index_html_erb__2947712061104667398_70093811292620' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:5:in `_app_views_home_index_html_erb__2947712061104667398_70093811292620' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/fb678a70984b6c93/variables" for ::1 at 2016-04-21 15:52:48 -0700 + + +Started GET "/?id=18" for ::1 at 2016-04-21 15:52:49 -0700 +Processing by HomeController#index as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (28.4ms) +Completed 500 Internal Server Error in 31ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `delete' for #<#:0x007f7ffb2d5d20>: + app/views/home/index.html.erb:9:in `block in _app_views_home_index_html_erb__2947712061104667398_70093811292620' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:5:in `_app_views_home_index_html_erb__2947712061104667398_70093811292620' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/d0a5d1fb53b2a4c5/variables" for ::1 at 2016-04-21 15:52:49 -0700 + + +Started GET "/?id=18" for ::1 at 2016-04-21 15:52:50 -0700 +Processing by HomeController#index as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (30.9ms) +Completed 500 Internal Server Error in 34ms (ActiveRecord: 0.2ms) + +NameError - undefined local variable or method `delete' for #<#:0x007f7ff45d9ac8>: + app/views/home/index.html.erb:9:in `block in _app_views_home_index_html_erb__2947712061104667398_70093811292620' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:5:in `_app_views_home_index_html_erb__2947712061104667398_70093811292620' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/74fac8bc4a0eb1fa/variables" for ::1 at 2016-04-21 15:52:50 -0700 + + +Started GET "/?id=18" for ::1 at 2016-04-21 15:52:58 -0700 +Processing by HomeController#index as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (33.6ms) +Completed 500 Internal Server Error in 37ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `delete' for #<#:0x007f7ffb195c08>: + app/views/home/index.html.erb:9:in `block in _app_views_home_index_html_erb__2947712061104667398_70093825156160' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:5:in `_app_views_home_index_html_erb__2947712061104667398_70093825156160' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/4c29ec9232b83f36/variables" for ::1 at 2016-04-21 15:52:58 -0700 + + +Started POST "/__better_errors/4c29ec9232b83f36/eval" for ::1 at 2016-04-21 15:52:59 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:53:08 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (27.5ms) +Completed 500 Internal Server Error in 31ms (ActiveRecord: 0.2ms) + +NameError - undefined local variable or method `delete' for #<#:0x007f7ff9496f08>: + app/views/home/index.html.erb:9:in `block in _app_views_home_index_html_erb__2947712061104667398_70093825156160' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:5:in `_app_views_home_index_html_erb__2947712061104667398_70093825156160' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/dea75ac0ed28b9e8/variables" for ::1 at 2016-04-21 15:53:08 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:53:09 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (29.0ms) +Completed 500 Internal Server Error in 32ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `delete' for #<#:0x007f7ff91c3358>: + app/views/home/index.html.erb:9:in `block in _app_views_home_index_html_erb__2947712061104667398_70093825156160' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:5:in `_app_views_home_index_html_erb__2947712061104667398_70093825156160' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/6245115441efcc21/variables" for ::1 at 2016-04-21 15:53:09 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:53:10 -0700 +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (50.7ms) +Completed 500 Internal Server Error in 55ms (ActiveRecord: 0.3ms) + +NameError - undefined local variable or method `delete' for #<#:0x007f7ff7b7db48>: + app/views/home/index.html.erb:9:in `block in _app_views_home_index_html_erb__2947712061104667398_70093825156160' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:5:in `_app_views_home_index_html_erb__2947712061104667398_70093825156160' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/18ebbf72e04c5598/variables" for ::1 at 2016-04-21 15:53:10 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:54:27 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (28.2ms) +Completed 500 Internal Server Error in 32ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `delete' for #<#:0x007f7ffa284070>: + app/views/home/index.html.erb:9:in `block in _app_views_home_index_html_erb__2947712061104667398_70093810013700' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:5:in `_app_views_home_index_html_erb__2947712061104667398_70093810013700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/561ae8715d258982/variables" for ::1 at 2016-04-21 15:54:27 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:54:28 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (29.8ms) +Completed 500 Internal Server Error in 33ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `delete' for #<#:0x007f7ffb30fd68>: + app/views/home/index.html.erb:9:in `block in _app_views_home_index_html_erb__2947712061104667398_70093810013700' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:5:in `_app_views_home_index_html_erb__2947712061104667398_70093810013700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/3b41f10dcdfff847/variables" for ::1 at 2016-04-21 15:54:28 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:54:29 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (25.5ms) +Completed 500 Internal Server Error in 29ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `delete' for #<#:0x007f7ff4b7a630>: + app/views/home/index.html.erb:9:in `block in _app_views_home_index_html_erb__2947712061104667398_70093810013700' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:5:in `_app_views_home_index_html_erb__2947712061104667398_70093810013700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/d17f940009efe3cf/variables" for ::1 at 2016-04-21 15:54:29 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:54:30 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (28.8ms) +Completed 500 Internal Server Error in 32ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `delete' for #<#:0x007f7ff6cbb7e0>: + app/views/home/index.html.erb:9:in `block in _app_views_home_index_html_erb__2947712061104667398_70093810013700' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:5:in `_app_views_home_index_html_erb__2947712061104667398_70093810013700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/1c5f4cd4d120eceb/variables" for ::1 at 2016-04-21 15:54:30 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:54:35 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (25.1ms) +Completed 500 Internal Server Error in 29ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `delete' for #<#:0x007f7ff9199d50>: + app/views/home/index.html.erb:9:in `block in _app_views_home_index_html_erb__2947712061104667398_70093810013700' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:5:in `_app_views_home_index_html_erb__2947712061104667398_70093810013700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/28f093f831443863/variables" for ::1 at 2016-04-21 15:54:35 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:54:37 -0700 +Processing by HomeController#index as HTML + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (25.5ms) +Completed 500 Internal Server Error in 30ms (ActiveRecord: 0.5ms) + +NameError - undefined local variable or method `delete' for #<#:0x007f7ff450d068>: + app/views/home/index.html.erb:9:in `block in _app_views_home_index_html_erb__2947712061104667398_70093810013700' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:5:in `_app_views_home_index_html_erb__2947712061104667398_70093810013700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/e9ef90696da29d4d/variables" for ::1 at 2016-04-21 15:54:37 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:54:38 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (26.4ms) +Completed 500 Internal Server Error in 30ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `delete' for #<#:0x007f7ffa442d08>: + app/views/home/index.html.erb:9:in `block in _app_views_home_index_html_erb__2947712061104667398_70093810013700' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:5:in `_app_views_home_index_html_erb__2947712061104667398_70093810013700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/248e76a5b4af2abf/variables" for ::1 at 2016-04-21 15:54:38 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:54:48 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (27.2ms) +Completed 500 Internal Server Error in 30ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `delete' for #<#:0x007f7ff4308560>: + app/views/home/index.html.erb:9:in `block in _app_views_home_index_html_erb__2947712061104667398_70093834655980' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:5:in `_app_views_home_index_html_erb__2947712061104667398_70093834655980' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/d55fe3995f948bdb/variables" for ::1 at 2016-04-21 15:54:48 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:54:49 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (23.7ms) +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.2ms) + +NameError - undefined local variable or method `delete' for #<#:0x007f7ff9668f20>: + app/views/home/index.html.erb:9:in `block in _app_views_home_index_html_erb__2947712061104667398_70093834655980' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:5:in `_app_views_home_index_html_erb__2947712061104667398_70093834655980' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/1afeecd8b3a36874/variables" for ::1 at 2016-04-21 15:54:49 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:54:50 -0700 +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (22.9ms) +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.3ms) + +NameError - undefined local variable or method `delete' for #<#:0x007f7ffb3161e0>: + app/views/home/index.html.erb:9:in `block in _app_views_home_index_html_erb__2947712061104667398_70093834655980' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:5:in `_app_views_home_index_html_erb__2947712061104667398_70093834655980' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/71fc394fe8b40f9f/variables" for ::1 at 2016-04-21 15:54:50 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:55:09 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (25.9ms) +Completed 500 Internal Server Error in 31ms (ActiveRecord: 0.2ms) + +NameError - undefined local variable or method `delete' for #<#:0x007f7ffba39be8>: + app/views/home/index.html.erb:9:in `block in _app_views_home_index_html_erb__2947712061104667398_70093829686380' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:5:in `_app_views_home_index_html_erb__2947712061104667398_70093829686380' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/61e7198e4da953ec/variables" for ::1 at 2016-04-21 15:55:09 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:55:10 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (35.4ms) +Completed 500 Internal Server Error in 39ms (ActiveRecord: 0.2ms) + +NameError - undefined local variable or method `delete' for #<#:0x007f7ffb4de900>: + app/views/home/index.html.erb:9:in `block in _app_views_home_index_html_erb__2947712061104667398_70093829686380' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:5:in `_app_views_home_index_html_erb__2947712061104667398_70093829686380' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/0e9613865b1f8832/variables" for ::1 at 2016-04-21 15:55:10 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:55:11 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (28.3ms) +Completed 500 Internal Server Error in 32ms (ActiveRecord: 0.2ms) + +NameError - undefined local variable or method `delete' for #<#:0x007f7ffa099d78>: + app/views/home/index.html.erb:9:in `block in _app_views_home_index_html_erb__2947712061104667398_70093829686380' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:5:in `_app_views_home_index_html_erb__2947712061104667398_70093829686380' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/afa264d507b61522/variables" for ::1 at 2016-04-21 15:55:11 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:55:12 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (24.2ms) +Completed 500 Internal Server Error in 28ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `delete' for #<#:0x007f7ffb08c9d8>: + app/views/home/index.html.erb:9:in `block in _app_views_home_index_html_erb__2947712061104667398_70093829686380' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:5:in `_app_views_home_index_html_erb__2947712061104667398_70093829686380' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/0a6f3ab45954ff81/variables" for ::1 at 2016-04-21 15:55:12 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:55:21 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (27.4ms) +Completed 500 Internal Server Error in 32ms (ActiveRecord: 0.2ms) + +NameError - undefined local variable or method `delete' for #<#:0x007f7ff7a45ed8>: + app/views/home/index.html.erb:9:in `block in _app_views_home_index_html_erb__2947712061104667398_70093796128660' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:5:in `_app_views_home_index_html_erb__2947712061104667398_70093796128660' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/fd03131132580867/variables" for ::1 at 2016-04-21 15:55:21 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:55:21 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (27.3ms) +Completed 500 Internal Server Error in 31ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `delete' for #<#:0x007f7ff9111978>: + app/views/home/index.html.erb:9:in `block in _app_views_home_index_html_erb__2947712061104667398_70093796128660' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:5:in `_app_views_home_index_html_erb__2947712061104667398_70093796128660' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/4cfbc0001ad89bb2/variables" for ::1 at 2016-04-21 15:55:21 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:55:22 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (32.3ms) +Completed 500 Internal Server Error in 37ms (ActiveRecord: 0.2ms) + +NameError - undefined local variable or method `delete' for #<#:0x007f7ffb24ca48>: + app/views/home/index.html.erb:9:in `block in _app_views_home_index_html_erb__2947712061104667398_70093796128660' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:5:in `_app_views_home_index_html_erb__2947712061104667398_70093796128660' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/2cfb3e29edd7e8ad/variables" for ::1 at 2016-04-21 15:55:22 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:56:18 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (4.8ms) +Completed 200 OK in 45ms (Views: 44.3ms | ActiveRecord: 0.1ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-21 15:56:18 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (55.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.3ms) + + +Started DELETE "/?id=1" for ::1 at 2016-04-21 15:56:20 -0700 +Processing by HomeController#destroy as HTML + Parameters: {"authenticity_token"=>"mmC3E9yr1L3hM9Zqtb/a9k+FGzhRoPz7+N9qrrhBZzA4tzfKs0/XDdUDaa37amSP7xy5aqjlBl2wQk6WAKgvHg==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +  (0.0ms) begin transaction + SQL (0.5ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 1]] +  (1.5ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (6.4ms) +Completed 200 OK in 50ms (Views: 46.0ms | ActiveRecord: 2.3ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-21 15:56:21 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (55.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.4ms) + + +Started GET "/?id=1" for ::1 at 2016-04-21 15:56:32 -0700 +Processing by HomeController#index as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 40ms (Views: 39.2ms | ActiveRecord: 0.2ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-21 15:56:32 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (58.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (49.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (98.8ms) + + +Started GET "/tasks/3" for ::1 at 2016-04-21 15:56:35 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered home/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 36ms (Views: 34.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 15:56:37 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 42ms (Views: 40.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-21 15:56:39 -0700 +Processing by HomeController#new as HTML + Rendered home/new.html.erb within layouts/application (1.2ms) +Completed 200 OK in 38ms (Views: 37.8ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 15:56:42 -0700 +Processing by HomeController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"SF7oA3zhDTd55HwtqX/xWZu8Wi6qyxcPWKn4QlEPry3qiWjaEwUOh03Uw+rnqk8gOyX4fFOO7akQNNx66ebnAw==", "task"=>{"name"=>"dvwv", "description"=>"wdevwvwv"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "dvwv"], ["description", "wdevwvwv"], ["created_at", "2016-04-21 22:56:42.354006"], ["updated_at", "2016-04-21 22:56:42.354006"]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 1.0ms) + + +Started GET "/" for ::1 at 2016-04-21 15:56:42 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 41ms (Views: 40.4ms | ActiveRecord: 0.2ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-21 15:56:42 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (56.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (99.3ms) + + +Started DELETE "/?id=19" for ::1 at 2016-04-21 15:56:44 -0700 +Processing by HomeController#destroy as HTML + Parameters: {"authenticity_token"=>"u9lEp+fqGNCXk3E8IC3b6WmsbUj21uYY07N7Y6Vw+/cZDsR+iA4bYKOjzvtu+GWQyTXPGg+THL6bLl9bHZmz2Q==", "id"=>"19"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 19]] +  (0.0ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 19]] +  (1.4ms) commit transaction + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 47ms (Views: 43.4ms | ActiveRecord: 2.2ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-21 15:56:44 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (58.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (94.8ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-21 15:57:58 -0700 +Processing by HomeController#new as HTML + Rendered home/new.html.erb within layouts/application (2.6ms) +Completed 200 OK in 36ms (Views: 35.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/css/bootstrap.min.css" for ::1 at 2016-04-21 15:57:58 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (54.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.5ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 15:58:01 -0700 +Processing by HomeController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"44X6YoC5r3JCHC+ZoQK7Yu1TfDmO3yW6G/8nuZdn6NpBUnq7712swnYskF7v1wUbTcrea3ea3xxTYgOBL46g9A==", "task"=>{"name"=>"efve", "description"=>"efbetbrtn"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "efve"], ["description", "efbetbrtn"], ["created_at", "2016-04-21 22:58:01.804712"], ["updated_at", "2016-04-21 22:58:01.804712"]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.2ms) + + +Started GET "/" for ::1 at 2016-04-21 15:58:01 -0700 +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 37ms (Views: 36.4ms | ActiveRecord: 0.3ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-21 15:58:01 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (54.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.3ms) + + +Started DELETE "/?id=20" for ::1 at 2016-04-21 15:58:03 -0700 +Processing by HomeController#destroy as HTML + Parameters: {"authenticity_token"=>"97479nRkT8ky6FriGq3RNY1jF8P1KQI9Tso7JnKSRqpVabsvG4BMeQbY5SVUeG9MLfq1kQxs+JsGVx8eynsOhA==", "id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 20]] +  (0.1ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 20]] +  (1.4ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 43ms (Views: 39.5ms | ActiveRecord: 1.9ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-21 15:58:03 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (59.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (104.6ms) + + +Started GET "/?id=20" for ::1 at 2016-04-21 16:01:31 -0700 +Processing by HomeController#index as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 212ms (Views: 211.1ms | ActiveRecord: 0.1ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-21 16:01:31 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (56.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.8ms) + + +Started GET "/assets/home.self-ce000f2fd014d09c9a8d4d9311b6bbb3675cd62c03dcb4361d195fbc5ddd339c.js?body=1" for ::1 at 2016-04-21 16:01:31 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-04-21 16:01:33 -0700 +Processing by HomeController#new as HTML + Rendered home/new.html.erb within layouts/application (1.7ms) +Completed 200 OK in 42ms (Views: 41.9ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 16:01:36 -0700 +Processing by HomeController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"9WC4H2zLU4GhNNBOa5PRxbGt0WJp2W5NB0s5GTg9iL9XtzjGAy9QMZUEb4klRm+8ETRzMJCclOtP1h0hgNTAkQ==", "task"=>{"name"=>"qed", "description"=>"eqfwevwevd"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "qed"], ["description", "eqfwevwevd"], ["created_at", "2016-04-21 23:01:36.744220"], ["updated_at", "2016-04-21 23:01:36.744220"]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 1.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:01:36 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 41ms (Views: 40.3ms | ActiveRecord: 0.2ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-21 16:01:36 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (66.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.3ms) + + +Started DELETE "/?id=21" for ::1 at 2016-04-21 16:01:38 -0700 +Processing by HomeController#destroy as HTML + Parameters: {"authenticity_token"=>"PR/GAjzc7xSjn2p4IHLBEtItnpciiudi5Cr/yDJwIDOfyEbbUzjspJev1b9up39rcrQ8xdvPHcSst9vwiploHQ==", "id"=>"21"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 21]] +  (0.0ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 21]] +  (1.5ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 49ms (Views: 45.0ms | ActiveRecord: 2.2ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-21 16:01:38 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (57.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.9ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-21 16:01:41 -0700 +Processing by HomeController#new as HTML + Rendered home/new.html.erb within layouts/application (1.5ms) +Completed 200 OK in 43ms (Views: 42.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/css/bootstrap.min.css" for ::1 at 2016-04-21 16:01:41 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (59.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (96.8ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 16:01:45 -0700 +Processing by HomeController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"h7cdrDP5zVEBwH7183EXl3LAwXFjHhf/CXoG/nM4+uclYJ11XB3O4TXwwTK9pKnu0lljI5pb7VlB5yLGy9GyyQ==", "task"=>{"name"=>"edvwef", "description"=>"wevwvwvwd"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "edvwef"], ["description", "wevwvwvwd"], ["created_at", "2016-04-21 23:01:45.746498"], ["updated_at", "2016-04-21 23:01:45.746498"]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:01:45 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 46ms (Views: 45.6ms | ActiveRecord: 0.2ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-21 16:01:45 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (60.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (1.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (96.3ms) + + +Started DELETE "/?id=22" for ::1 at 2016-04-21 16:01:48 -0700 +Processing by HomeController#destroy as HTML + Parameters: {"authenticity_token"=>"Z8di4biHBhk57ij0IarMTj46vwtOXt2sU2tqasW2hjrFEOI412MFqQ3elzNvf3I3nqMdWbcbJwob9k5SfV/OFA==", "id"=>"22"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 22]] +  (0.0ms) begin transaction + SQL (0.9ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 22]] +  (1.4ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 39ms (Views: 34.1ms | ActiveRecord: 2.6ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-21 16:01:48 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (57.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (46.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.6ms) + + +Started GET "/?id=22" for ::1 at 2016-04-21 16:02:24 -0700 +Processing by HomeController#index as HTML + Parameters: {"id"=>"22"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 170ms (Views: 168.9ms | ActiveRecord: 0.2ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-21 16:02:25 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (11.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (66.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.8ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-21 16:02:26 -0700 +Processing by HomeController#new as HTML + Rendered home/new.html.erb within layouts/application (2.2ms) +Completed 200 OK in 47ms (Views: 46.7ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 16:02:30 -0700 +Processing by HomeController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"8xDgMVSi3L8PyPFMwaIUE5vXw8nYz6DtygxjBsrpuntRx2DoO0bfDzv4TouPd6pqO05hmyGKWkuCkUc+cgDyVQ==", "task"=>{"name"=>"qewfqwd", "description"=>"qefefef"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "qewfqwd"], ["description", "qefefef"], ["created_at", "2016-04-21 23:02:30.257502"], ["updated_at", "2016-04-21 23:02:30.257502"]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 1.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:02:30 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 42ms (Views: 41.6ms | ActiveRecord: 0.2ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-21 16:02:30 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (61.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.8ms) + + +Started DELETE "/?id=23" for ::1 at 2016-04-21 16:02:31 -0700 +Processing by HomeController#destroy as HTML + Parameters: {"authenticity_token"=>"USxSjd+oa7Zx2e53rckYZYyvUDUiFm+XpSn9pbCd/PLz+9JUsExoBkXpUbDjHKYcLDbyZ9tTlTHttNmdCHS03A==", "id"=>"23"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 23]] +  (0.0ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 23]] +  (1.6ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 47ms (Views: 42.6ms | ActiveRecord: 2.2ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-21 16:02:32 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (54.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.5ms) + + +Started GET "/?id=23" for ::1 at 2016-04-21 16:03:48 -0700 +Processing by HomeController#index as HTML + Parameters: {"id"=>"23"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 40ms (Views: 39.2ms | ActiveRecord: 0.2ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-21 16:03:48 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (55.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.6ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-21 16:03:50 -0700 +Processing by HomeController#new as HTML + Rendered home/new.html.erb within layouts/application (1.3ms) +Completed 200 OK in 39ms (Views: 37.7ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 16:03:54 -0700 +Processing by HomeController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"HGUFNw0J60NgZB5kNMhk6DdcINXoLJpI6VaPF4WzaQi+soXuYu3o81RUoaN6HdqRl8WChxFpYO6hy6svPVohJg==", "task"=>{"name"=>"cwefq", "description"=>"qefqwhjrbwkbj"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "cwefq"], ["description", "qefqwhjrbwkbj"], ["created_at", "2016-04-21 23:03:54.393254"], ["updated_at", "2016-04-21 23:03:54.393254"]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 1.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:03:54 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 41ms (Views: 40.1ms | ActiveRecord: 0.2ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-21 16:03:54 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (57.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.5ms) + + +Started DELETE "/?id=24" for ::1 at 2016-04-21 16:03:59 -0700 +Processing by HomeController#destroy as HTML + Parameters: {"authenticity_token"=>"4qibqDXAn6TnkXDmzgJTIuSGqsX8F8f+S+9J3YtgLs1AfxtxWiScFNOhzyGA1+1bRB8IlwVSPVgDcm3lM4lm4w==", "id"=>"24"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 24]] +  (0.0ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 24]] +  (1.5ms) commit transaction + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 53ms (Views: 49.3ms | ActiveRecord: 2.2ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-21 16:03:59 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (60.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.0ms) + + +Started GET "/?id=24" for ::1 at 2016-04-21 16:04:44 -0700 +Processing by HomeController#index as HTML + Parameters: {"id"=>"24"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 45ms (Views: 44.4ms | ActiveRecord: 0.1ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-21 16:04:44 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (57.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (99.1ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-21 16:04:45 -0700 +Processing by HomeController#new as HTML + Rendered home/new.html.erb within layouts/application (1.5ms) +Completed 200 OK in 60ms (Views: 59.2ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 16:04:48 -0700 +Processing by HomeController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"mmXsYUe2cPJ6IGhWIuqU9sO0FUPMYqn46MuckgA9nF84smy4KFJzQk4Q15FsPyqPYy23ETUnU16gVriquNTUcQ==", "task"=>{"name"=>"wd", "description"=>"ewevwdv"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "wd"], ["description", "ewevwdv"], ["created_at", "2016-04-21 23:04:48.505296"], ["updated_at", "2016-04-21 23:04:48.505296"]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 1.2ms) + + +Started GET "/" for ::1 at 2016-04-21 16:04:48 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 47ms (Views: 46.2ms | ActiveRecord: 0.2ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-21 16:04:48 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (64.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.7ms) + + +Started DELETE "/?id=25" for ::1 at 2016-04-21 16:04:50 -0700 +Processing by HomeController#destroy as HTML + Parameters: {"authenticity_token"=>"jkp5ZEFDsUX9AthjhftzUkfnb1nX5nPytEB/Bd+Zk+Ysnfm9Lqey9ckyZ6TLLs0r537NCy6jiVT83Vs9Z3DbyA==", "id"=>"25"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 25]] +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 25]] +  (1.5ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 51ms (Views: 47.3ms | ActiveRecord: 2.1ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-21 16:04:50 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (58.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.7ms) + + +Started GET "/?id=25" for ::1 at 2016-04-21 16:13:22 -0700 +Processing by HomeController#index as HTML + Parameters: {"id"=>"25"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 41ms (Views: 40.0ms | ActiveRecord: 0.2ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-21 16:13:22 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (63.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.7ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-21 16:13:44 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (87.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (3.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (99.1ms) + + +Started GET "/?id=25" for ::1 at 2016-04-21 16:15:49 -0700 +Processing by HomeController#index as HTML + Parameters: {"id"=>"25"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 39ms (Views: 38.4ms | ActiveRecord: 0.2ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-21 16:15:49 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (61.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.6ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-21 16:16:18 -0700 +Processing by HomeController#new as HTML + Rendered home/new.html.erb within layouts/application (2.1ms) +Completed 200 OK in 50ms (Views: 49.3ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 16:16:29 -0700 +Processing by HomeController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"84z/eiwcnKV2bNOGetwugkpiLWo3GBG7uM0TtwCG60FRW3+jQ/ifFUJcbEE0CZD76vuPOM5d6x3wUDePuG+jbw==", "task"=>{"name"=>"Get present", "description"=>"at home depot"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.5ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Get present"], ["description", "at home depot"], ["created_at", "2016-04-21 23:16:29.373792"], ["updated_at", "2016-04-21 23:16:29.373792"]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.2ms) + + +Started GET "/" for ::1 at 2016-04-21 16:16:29 -0700 +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 46ms (Views: 45.3ms | ActiveRecord: 0.3ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-21 16:16:29 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (64.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (94.4ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-21 16:16:32 -0700 +Processing by HomeController#new as HTML + Rendered home/new.html.erb within layouts/application (1.5ms) +Completed 200 OK in 50ms (Views: 48.9ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 16:16:38 -0700 +Processing by HomeController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"rxd94mHl+YfcT3Y+qUb+Ow5C/517C/w/fGdsu8UcmC8NwP07DgH6N+h/yfnnk0BCrttdz4JOBpk0+kiDffXQAQ==", "task"=>{"name"=>"Just do it", "description"=>"now"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.5ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Just do it"], ["description", "now"], ["created_at", "2016-04-21 23:16:38.578923"], ["updated_at", "2016-04-21 23:16:38.578923"]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.2ms) + + +Started GET "/" for ::1 at 2016-04-21 16:16:38 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 39ms (Views: 38.5ms | ActiveRecord: 0.2ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-21 16:16:38 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (68.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (104.9ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-21 16:16:40 -0700 +Processing by HomeController#new as HTML + Rendered home/new.html.erb within layouts/application (1.3ms) +Completed 200 OK in 44ms (Views: 43.2ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 16:16:46 -0700 +Processing by HomeController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"BquUb9lfkJF6f7GO71FFtk5sl8YPaKp/fsbGQpaDolmkfBS2truTIU5PDkmhhPvP7vU1lPYtUNk2W+J6Lmrqdw==", "task"=>{"name"=>"sleep", "description"=>"all day"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (1.6ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sleep"], ["description", "all day"], ["created_at", "2016-04-21 23:16:46.480838"], ["updated_at", "2016-04-21 23:16:46.480838"]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.3ms) + + +Started GET "/" for ::1 at 2016-04-21 16:16:46 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 46ms (Views: 45.6ms | ActiveRecord: 0.2ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-21 16:16:46 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (75.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.9ms) + + +Started GET "/tasks/28" for ::1 at 2016-04-21 16:16:48 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 28]] + Rendered home/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 53ms (Views: 52.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/9" for ::1 at 2016-04-21 16:16:51 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered home/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 48ms (Views: 46.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:17:56 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 45ms (Views: 44.5ms | ActiveRecord: 0.1ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-21 16:17:56 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (59.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.9ms) + + +Started GET "/tasks/9" for ::1 at 2016-04-21 16:18:15 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered home/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 40ms (Views: 39.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:18:55 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 39ms (Views: 38.7ms | ActiveRecord: 0.1ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-21 16:18:55 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (57.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.2ms) + + +Started GET "/" for ::1 at 2016-04-21 16:21:29 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 39ms (Views: 38.5ms | ActiveRecord: 0.1ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-21 16:21:30 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (61.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.5ms) + + +Started GET "/" for ::1 at 2016-04-22 09:39:28 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (16.6ms) +Completed 200 OK in 2964ms (Views: 2953.8ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/bootstrap/affix.self-3555752f8a930795ee9e56751a52e6871104ae85d01b3ab8363da3802a5ecc78.js?body=1" for ::1 at 2016-04-22 09:39:31 -0700 + + +Started GET "/assets/bootstrap/alert.self-d8b7bd612b3dcfdefb7b5539b9d5848d66ccbd3e7af8bb8d48bfb3288aaa7be8.js?body=1" for ::1 at 2016-04-22 09:39:31 -0700 + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-22 09:39:31 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (73.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (141.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (51.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (109.5ms) + + +Started GET "/assets/bootstrap/button.self-e74d33ba39500940a78d6fa4d2d64f6ca7fd86d60a2149641f7fde7ba711d8a1.js?body=1" for ::1 at 2016-04-22 09:39:32 -0700 + + +Started GET "/assets/bootstrap/collapse.self-056c40532d9f0f126ec17e839f60c942f573fbd61a086e7f156306e3fc5e8c1f.js?body=1" for ::1 at 2016-04-22 09:39:32 -0700 + + +Started GET "/assets/application.self-f54b48c53ae08c07c2753646d591223071cac1c2c02e8aa1f3e09d23f5deb8f7.css?body=1" for ::1 at 2016-04-22 09:39:32 -0700 + + +Started GET "/assets/bootstrap/carousel.self-35d204878d906298e55bc24553e11fd89b980fc4ffe5792fe36af8c0da289c54.js?body=1" for ::1 at 2016-04-22 09:39:32 -0700 + + +Started GET "/assets/bootstrap/dropdown.self-e56c2ffee4618411d43ecf15c89273f6223847ad756e1cd17545d04afa732ed4.js?body=1" for ::1 at 2016-04-22 09:39:32 -0700 + + +Started GET "/assets/bootstrap/scrollspy.self-52afd90e8ba97d9f08617a13986e8869d6c4a45751c0bff59a6f91241e722aca.js?body=1" for ::1 at 2016-04-22 09:39:32 -0700 + + +Started GET "/assets/bootstrap/tab.self-dad0d5c377f9fae26394484535ebb23ccf68afae084f896af6ea4cdf8c9f6ae0.js?body=1" for ::1 at 2016-04-22 09:39:32 -0700 + + +Started GET "/assets/bootstrap/modal.self-62463080dba6b9d024ff0a3192da0e76eacbc683194f3395047c6f5cfa0acb59.js?body=1" for ::1 at 2016-04-22 09:39:32 -0700 + + +Started GET "/assets/bootstrap/transition.self-3b268d4cd8c79e46ded7392885f72f64ffb5b0d49948a12b8cf9779f6163e13a.js?body=1" for ::1 at 2016-04-22 09:39:32 -0700 + + +Started GET "/assets/bootstrap/tooltip.self-facdc69246a072acb927ded77ff655f7c27a518b9357fddd45d119fbc8a0ab9f.js?body=1" for ::1 at 2016-04-22 09:39:32 -0700 + + +Started GET "/assets/bootstrap/popover.self-210cff1fb4b72b71a29b5122180cb5937c8145cd13a934dc838280f1d9607a3e.js?body=1" for ::1 at 2016-04-22 09:39:32 -0700 + + +Started GET "/assets/bootstrap/glyphicons-halflings-regular-fe185d11a49676890d47bb783312a0cda5a44c4039214094e7957b4c040ef11c.woff2" for ::1 at 2016-04-22 09:39:32 -0700 + + +Started DELETE "/tasks/28" for ::1 at 2016-04-22 09:39:37 -0700 +Processing by HomeController#destroy as HTML + Parameters: {"authenticity_token"=>"kF35gwBURO0/5oB+Nma6NadaVsh4f6mfHO2LzvTJmtgyinlab7BHXQvWP7l4swRMB8P0moE6UzlUcK/2TCDS9g==", "id"=>"28"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 28]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 28]] +  (0.7ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 88ms (Views: 71.7ms | ActiveRecord: 1.4ms) + + +Started GET "/tasks/css/bootstrap.min.css" for ::1 at 2016-04-22 09:39:37 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (62.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (100.1ms) From 6cf916a6c7dfa3f5bf417b8bc138b71bb8a8fe03 Mon Sep 17 00:00:00 2001 From: Nadine Curry Date: Fri, 22 Apr 2016 14:59:15 -0700 Subject: [PATCH 04/12] done with wave 3: added complete and edit button --- Gemfile | 2 +- Gemfile.lock | 2 + app/controllers/home_controller.rb | 21 + app/models/person.rb | 2 + app/views/home/edit.html.erb | 11 + app/views/home/index.html.erb | 11 +- app/views/home/show.html.erb | 4 +- app/views/layouts/application.html.erb | 4 +- config/routes.rb | 4 +- db/development.sqlite3 | Bin 20480 -> 20480 bytes db/seeds.rb | 57 +- log/development.log | 4911 ++++++++++++++++++++++++ test/fixtures/people.yml | 11 + test/models/person_test.rb | 8 + test/models/task_test.rb | 1 + 15 files changed, 5024 insertions(+), 25 deletions(-) create mode 100644 app/models/person.rb create mode 100644 app/views/home/edit.html.erb create mode 100644 test/fixtures/people.yml create mode 100644 test/models/person_test.rb diff --git a/Gemfile b/Gemfile index bf6da4427..e87c93c32 100644 --- a/Gemfile +++ b/Gemfile @@ -33,7 +33,7 @@ gem 'sdoc', '~> 0.4.0', group: :doc # gem 'capistrano-rails', group: :development gem 'bootstrap-sass', '~> 3.3.6' - +gem 'chronic' group :development, :test do # Call 'byebug' anywhere in the code to stop execution and get a debugger console gem 'byebug' diff --git a/Gemfile.lock b/Gemfile.lock index 88436569f..69ec87f8c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -50,6 +50,7 @@ GEM sass (>= 3.3.4) builder (3.2.2) byebug (8.2.4) + chronic (0.10.2) coderay (1.1.1) coffee-rails (4.1.1) coffee-script (>= 2.2.0) @@ -157,6 +158,7 @@ DEPENDENCIES binding_of_caller bootstrap-sass (~> 3.3.6) byebug + chronic coffee-rails (~> 4.1.0) jbuilder (~> 2.0) jquery-rails diff --git a/app/controllers/home_controller.rb b/app/controllers/home_controller.rb index 0daee1799..74ae3fd1b 100644 --- a/app/controllers/home_controller.rb +++ b/app/controllers/home_controller.rb @@ -25,6 +25,10 @@ def task_create_params params.permit(task: [:name, :description]) end + def task_edit_params + params.permit(task: [:name, :description]) + end + def show @task = Task.find(params[:id]) end @@ -35,4 +39,21 @@ def destroy @tasks = Task.order(id: :asc) render :index end + + def edit + @task = Task.find(params[:id]) + end + + def update + @task = Task.find(params[:id]) + @task.update(task_edit_params[:task]) + render :show + end + + def complete + @task = Task.find(params[:id]) + @task.completed_at = Time.now + @task.save + redirect_to root_path + end end diff --git a/app/models/person.rb b/app/models/person.rb new file mode 100644 index 000000000..2f2e286c0 --- /dev/null +++ b/app/models/person.rb @@ -0,0 +1,2 @@ +class Person < ActiveRecord::Base +end diff --git a/app/views/home/edit.html.erb b/app/views/home/edit.html.erb new file mode 100644 index 000000000..67d6d1329 --- /dev/null +++ b/app/views/home/edit.html.erb @@ -0,0 +1,11 @@ +

      Let's edit your task!

      + +
      <%=params%>
      + +<%= form_for @task do |f| %> + <%= f.label :name %> + <%= f.text_field :name%> + <%= f.label :description %> + <%= f.text_field :description%> + <%= f.submit %> +<%end%> \ No newline at end of file diff --git a/app/views/home/index.html.erb b/app/views/home/index.html.erb index 4994136b9..0c739cca6 100644 --- a/app/views/home/index.html.erb +++ b/app/views/home/index.html.erb @@ -1,4 +1,4 @@ -

      Here's a list of tasks!

      +

      Here's are your tasks!

      <%=params%>
      @@ -8,6 +8,7 @@ + @@ -18,7 +19,13 @@ <%= link_to task.name, "/tasks/#{task.id}" %> + + <%end%> diff --git a/app/views/home/show.html.erb b/app/views/home/show.html.erb index e89ca4785..89ccbd99c 100644 --- a/app/views/home/show.html.erb +++ b/app/views/home/show.html.erb @@ -1,6 +1,8 @@

      <%= @task.name %>

      • Description: <%= @task.description %>
      • -
      • Status: <%= "Completed" if @task.completed_at != nil%>
      • +
      • Status: <%= @task.completed_at != nil ? "Completed" : "Not done"%>
      • Completed on: <%= @task.completed_at %>
      + +<%= link_to "Edit Task", "/tasks/#{@task.id}/edit" %> diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index 425c4f961..1ea61164c 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -11,10 +11,10 @@ <%= csrf_meta_tags %> +<%= link_to "Home", root_path %> +<%= link_to "New Task", tasks_new_path %> <%= yield %> -<%= link_to "Home", root_path %> -<%= link_to "New Task", tasks_new_path %> diff --git a/config/routes.rb b/config/routes.rb index f91e7909d..ff8ced0ee 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -10,7 +10,9 @@ patch "/tasks/:id" => "home#update" delete "/tasks/:id" => "home#destroy" - get "tasks/:id/edit" => "albums#edit" + get "tasks/:id/edit" => "home#edit" + + post "/tasks/:id/complete" => "home#complete" # The priority is based upon order of creation: first created -> highest priority. # See how all your routes lay out with "rake routes". diff --git a/db/development.sqlite3 b/db/development.sqlite3 index 8a005d80afa69c6d490c01d8e248c7706790030a..2e84c3c404d3a08d0ce22fd34c2c8397daaa4bd2 100644 GIT binary patch delta 390 zcmZozz}T>Wae_3X?L--8M%#@E3-#rBk{LL;7clVs;#)WAGRnw>#W7-))DX>o}{O1?s7NnU?rtGNUqoA_JE)C?MQZnb{eX#X+om xg_3*)pVGYKjKmTJL!-$o_BLV=&l?z7nVRbvnHpM{nlLahcx_I#pC!O32LL&8U9bQE delta 402 zcmZozz}T>Wae_3X@kAMCM&peM3-#ssgBUn@jxq3k;9JON#e0Z1j#rZB82@ViM4npy z6z;Vf8+*CygLv5)q;(k_9i2)m6_OK6((;QGN-`4jvWwF*%QExQjSLLUbPY^&jSLlx z46KZdt&A=8EG$heEX;7rWH7QbXo@>JI)-GVD!6496_+T4Bo=39WCDSafdSAwV_gGF z1p@;s6K(@5Q%gMq19Ni&i^&RhqV=YRh6WZeqYW(;jEt;IEvyVo^(-tbjm#{7UWyjw z1sd&_Sl}zj&LFPtE(0W`fgUK%Nlh(C%*jzmNvwn!0CKglm7$rHiJ6{>g@J`J+-OXh zKu&fB%gLv0{8*eh*cmp<+FoW9NnmDYPzG7&p07}nui#Ufmz*(K*xqKch8?ejskxb% Z0RsaAzbY@#dWZ@SX`t3r`&j~vG5{17V1WPt diff --git a/db/seeds.rb b/db/seeds.rb index f0a5626e7..2686ce72c 100644 --- a/db/seeds.rb +++ b/db/seeds.rb @@ -1,27 +1,48 @@ -# 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) def random_time Time.at(rand * Time.now.to_i) end +people = [ + {name: "Jack", email: "something@google.com"}, + {name: "Pandora", email: "pandora@mybox.com"}, + {name: "Marley", email: "bob@rasta.com"}, + {name: "Rosa", email: "chihuahua@kickassdogs.com"} +] + +people.each do |person| + Person.create person +end + tasks = [ - { name: "The First Task", description: "", completed_at: random_time }, - { name: "Go to Brunch", description: "" }, - { name: "Go to Lunch", description: "", completed_at: random_time }, - { name: "Go to Second Lunch", description: "" }, - { name: "Play Video Games", description: "", completed_at: random_time }, - { name: "High Five Somebody You Don't Know", description: "", completed_at: random_time }, - { name: "Plant Flowers", description: "", completed_at: random_time }, - { name: "Call Mom", description: "" }, - { name: "She worries, you know.", description: "" }, - { name: "Nap.", description: "", completed_at: random_time } + { name: "The First Task", description: "", completed_at: random_time, person_id: 2 }, + { name: "Go to Brunch", description: "", person_id: 4 }, + { name: "Go to Lunch", description: "", completed_at: random_time, person_id: 4 }, + { name: "Go to Second Lunch", description: "", person_id: 3 }, + { name: "Play Video Games", description: "", completed_at: random_time, person_id: 1 }, + { name: "High Five Somebody You Don't Know", description: "", completed_at: random_time, person_id: 1 }, + { name: "Plant Flowers", description: "", completed_at: random_time, person_id: 1 }, + { name: "Call Mom", description: "", person_id: 1 }, + { name: "She worries, you know.", description: "", person_id: 2 }, + { name: "Nap.", description: "", completed_at: random_time, person_id: 3} ] tasks.each do |task| Task.create task -end \ No newline at end of file +end + +# require 'csv' +# FILE_PATH = 'db/seed_data/task-collection.csv' + +# CSV.foreach(FILE_PATH, headers: true) do |row| +# row_hash = row.to_h +# person_name = row_hash.delete("person") + +# person = Person.find_or_create_by(name: person_name) +# person.task <"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered home/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 356ms (Views: 338.5ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/css/bootstrap.min.css" for ::1 at 2016-04-22 09:52:06 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (9.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (121.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (1.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (99.1ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-22 09:52:13 -0700 +Processing by HomeController#new as HTML + Rendered home/new.html.erb within layouts/application (7.3ms) +Completed 200 OK in 46ms (Views: 44.9ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-22 09:52:23 -0700 +Processing by HomeController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"Zl928MadBrnw85K9UxcNkuC7MDZjA5jpz7L76Ead4zzEiPYpqXkFCcTDLXodwrPrQCKSZJpGYk+HL9/Q/nSrEg==", "task"=>{"name"=>"Shower", "description"=>"Sunday"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Shower"], ["description", "Sunday"], ["created_at", "2016-04-22 16:52:23.181266"], ["updated_at", "2016-04-22 16:52:23.181266"]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.2ms) + + +Started GET "/" for ::1 at 2016-04-22 09:52:23 -0700 +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 45ms (Views: 44.0ms | ActiveRecord: 0.3ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-22 09:52:23 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (63.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.7ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-22 09:52:25 -0700 +Processing by HomeController#new as HTML + Rendered home/new.html.erb within layouts/application (1.6ms) +Completed 200 OK in 44ms (Views: 43.6ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-22 09:52:54 -0700 +Processing by HomeController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"A6hByLarpoJY6lI5GFxj+g8ib4PUXXv1xqNJ3EWyGnKhf8ER2U+lMmza7f5Wid2Dr7vN0S0YgVOOPm3k/VtSXA==", "task"=>{"name"=>"Procrastinate", "description"=>"now"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Procrastinate"], ["description", "now"], ["created_at", "2016-04-22 16:52:54.682891"], ["updated_at", "2016-04-22 16:52:54.682891"]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 1.2ms) + + +Started GET "/" for ::1 at 2016-04-22 09:52:54 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 45ms (Views: 44.7ms | ActiveRecord: 0.2ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-22 09:52:54 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (59.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (58.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (109.5ms) + + +Started GET "/" for ::1 at 2016-04-22 13:17:58 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + +ActiveRecord::PendingMigrationError - + +Migrations are pending. To resolve this issue, run: + + bin/rake db:migrate RAILS_ENV=development + +: + activerecord (4.2.6) lib/active_record/migration.rb:392:in `check_pending!' + activerecord (4.2.6) lib/active_record/migration.rb:373:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/4697bd2ac83617b6/variables" for ::1 at 2016-04-22 13:17:58 -0700 + + +Started GET "/" for ::1 at 2016-04-22 13:17:59 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + +ActiveRecord::PendingMigrationError - + +Migrations are pending. To resolve this issue, run: + + bin/rake db:migrate RAILS_ENV=development + +: + activerecord (4.2.6) lib/active_record/migration.rb:392:in `check_pending!' + activerecord (4.2.6) lib/active_record/migration.rb:373:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/2d088887b547a814/variables" for ::1 at 2016-04-22 13:17:59 -0700 + + +Started GET "/" for ::1 at 2016-04-22 13:35:48 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + +ActiveRecord::PendingMigrationError - + +Migrations are pending. To resolve this issue, run: + + bin/rake db:migrate RAILS_ENV=development + +: + activerecord (4.2.6) lib/active_record/migration.rb:392:in `check_pending!' + activerecord (4.2.6) lib/active_record/migration.rb:373:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/bf7b608111c74aa9/variables" for ::1 at 2016-04-22 13:35:48 -0700 + + +Started GET "/" for ::1 at 2016-04-22 13:40:39 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (9.0ms) +Completed 200 OK in 445ms (Views: 435.0ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/application.self-f54b48c53ae08c07c2753646d591223071cac1c2c02e8aa1f3e09d23f5deb8f7.css?body=1" for ::1 at 2016-04-22 13:40:40 -0700 + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-22 13:40:40 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (8.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (84.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (4.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (115.8ms) + + +Started GET "/assets/bootstrap/glyphicons-halflings-regular-fe185d11a49676890d47bb783312a0cda5a44c4039214094e7957b4c040ef11c.woff2" for ::1 at 2016-04-22 13:40:40 -0700 + + +Started DELETE "/tasks/30" for ::1 at 2016-04-22 13:40:45 -0700 +Processing by HomeController#destroy as HTML + Parameters: {"authenticity_token"=>"yZVwBJCXJ5AIsg+dpZT0yQWg9E/J1K7e6j7CZ3RFwYVrQvDd/3MkIDyCsFrrQUqwpTlWHTCRVHiio+ZfzKyJqw==", "id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 30]] +  (0.1ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 30]] +  (0.7ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 77ms (Views: 57.3ms | ActiveRecord: 1.5ms) + + +Started GET "/tasks/css/bootstrap.min.css" for ::1 at 2016-04-22 13:40:45 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (96.4ms) + + +Started GET "/tasks/3" for ::1 at 2016-04-22 13:41:18 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered home/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 42ms (Views: 40.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/css/bootstrap.min.css" for ::1 at 2016-04-22 13:41:19 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (62.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (2.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (111.6ms) + + +Started GET "/" for ::1 at 2016-04-22 13:41:50 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 76ms (Views: 75.6ms | ActiveRecord: 0.2ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-22 13:41:50 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (64.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.9ms) + + +Started GET "/" for ::1 at 2016-04-22 13:49:18 -0700 +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (7.3ms) +Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.5ms) + +ActionController::UrlGenerationError - No route matches {:action=>"edit", :controller=>"home", :id=>3}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:181:in `link_to' + app/views/home/index.html.erb:24:in `block in _app_views_home_index_html_erb__3653329756760157397_70346016771000' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:15:in `_app_views_home_index_html_erb__3653329756760157397_70346016771000' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/81f1b9ab2ecae324/variables" for ::1 at 2016-04-22 13:49:18 -0700 + + +Started GET "/" for ::1 at 2016-04-22 13:49:20 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.9ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +ActionController::UrlGenerationError - No route matches {:action=>"edit", :controller=>"home", :id=>3}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:181:in `link_to' + app/views/home/index.html.erb:24:in `block in _app_views_home_index_html_erb__3653329756760157397_70346016771000' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:15:in `_app_views_home_index_html_erb__3653329756760157397_70346016771000' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/e18ef0906dda2bff/variables" for ::1 at 2016-04-22 13:49:20 -0700 + + +Started GET "/" for ::1 at 2016-04-22 13:50:16 -0700 +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (5.0ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.3ms) + +ActionController::UrlGenerationError - No route matches {:action=>"edit", :controller=>"home", :id=>3}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:181:in `link_to' + app/views/home/index.html.erb:24:in `block in _app_views_home_index_html_erb__3653329756760157397_70346051249700' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:15:in `_app_views_home_index_html_erb__3653329756760157397_70346051249700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/426cd9e1da3ef495/variables" for ::1 at 2016-04-22 13:50:16 -0700 + + +Started GET "/" for ::1 at 2016-04-22 13:50:16 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (3.1ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.2ms) + +ActionController::UrlGenerationError - No route matches {:action=>"edit", :controller=>"home", :id=>3}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:181:in `link_to' + app/views/home/index.html.erb:24:in `block in _app_views_home_index_html_erb__3653329756760157397_70346051249700' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:15:in `_app_views_home_index_html_erb__3653329756760157397_70346051249700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/3684f525aca1f972/variables" for ::1 at 2016-04-22 13:50:16 -0700 + + +Started GET "/" for ::1 at 2016-04-22 13:50:17 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (3.1ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.2ms) + +ActionController::UrlGenerationError - No route matches {:action=>"edit", :controller=>"home", :id=>3}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:181:in `link_to' + app/views/home/index.html.erb:24:in `block in _app_views_home_index_html_erb__3653329756760157397_70346051249700' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:15:in `_app_views_home_index_html_erb__3653329756760157397_70346051249700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/76455e7b5e60a816/variables" for ::1 at 2016-04-22 13:50:17 -0700 + + +Started GET "/" for ::1 at 2016-04-22 13:50:19 -0700 +Processing by HomeController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (4.5ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.4ms) + +ActionController::UrlGenerationError - No route matches {:action=>"edit", :controller=>"home", :id=>3}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:181:in `link_to' + app/views/home/index.html.erb:24:in `block in _app_views_home_index_html_erb__3653329756760157397_70346051249700' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:15:in `_app_views_home_index_html_erb__3653329756760157397_70346051249700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/df45e6a7c18f4b8b/variables" for ::1 at 2016-04-22 13:50:19 -0700 + + +Started GET "/" for ::1 at 2016-04-22 13:50:20 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (3.1ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.2ms) + +ActionController::UrlGenerationError - No route matches {:action=>"edit", :controller=>"home", :id=>3}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:181:in `link_to' + app/views/home/index.html.erb:24:in `block in _app_views_home_index_html_erb__3653329756760157397_70346051249700' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:15:in `_app_views_home_index_html_erb__3653329756760157397_70346051249700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/cc5d6437f1ae4bc0/variables" for ::1 at 2016-04-22 13:50:20 -0700 + + +Started GET "/" for ::1 at 2016-04-22 13:50:21 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (3.1ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.2ms) + +ActionController::UrlGenerationError - No route matches {:action=>"edit", :controller=>"home", :id=>3}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:181:in `link_to' + app/views/home/index.html.erb:24:in `block in _app_views_home_index_html_erb__3653329756760157397_70346051249700' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:15:in `_app_views_home_index_html_erb__3653329756760157397_70346051249700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/1d8c9a6adc9ebdc3/variables" for ::1 at 2016-04-22 13:50:21 -0700 + + +Started GET "/" for ::1 at 2016-04-22 13:50:22 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (3.1ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.2ms) + +ActionController::UrlGenerationError - No route matches {:action=>"edit", :controller=>"home", :id=>3}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:181:in `link_to' + app/views/home/index.html.erb:24:in `block in _app_views_home_index_html_erb__3653329756760157397_70346051249700' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:15:in `_app_views_home_index_html_erb__3653329756760157397_70346051249700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/122189733c69e03c/variables" for ::1 at 2016-04-22 13:50:22 -0700 + + +Started GET "/" for ::1 at 2016-04-22 13:52:49 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (18.7ms) +Completed 200 OK in 388ms (Views: 377.3ms | ActiveRecord: 2.5ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-22 13:52:49 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (9.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (88.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (46.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (113.0ms) + + +Started GET "/" for ::1 at 2016-04-22 13:52:50 -0700 +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (6.4ms) +Completed 200 OK in 73ms (Views: 71.9ms | ActiveRecord: 0.3ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-22 13:52:50 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (71.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.1ms) + + +Started GET "/tasks/3/edit" for ::1 at 2016-04-22 13:52:53 -0700 +Processing by HomeController#edit as HTML + Parameters: {"id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered home/edit.html.erb within layouts/application (9.0ms) +Completed 200 OK in 83ms (Views: 72.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/3" for ::1 at 2016-04-22 13:52:57 -0700 +Processing by HomeController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"RZWw7wmjjH4Mq9aGJQdBB85ZkwfcxxHzIyX5I3lMZ2jnQjA2ZkePzjibaUFr0v9+bsAxVSWC61VruN0bwaUvRg==", "task"=>{"name"=>"Go to Lunch", "description"=>"tomorrow"}, "commit"=>"Update Task", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.1ms) + +ArgumentError - wrong number of arguments (given 0, expected 1): + activerecord (4.2.6) lib/active_record/persistence.rb:247:in `update' + app/controllers/home_controller.rb:45:in `update' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/48e9f35816a44e2d/variables" for ::1 at 2016-04-22 13:52:57 -0700 + + +Started GET "/tasks/3" for ::1 at 2016-04-22 13:56:13 -0700 + +SyntaxError - syntax error, unexpected keyword_end, expecting end-of-input: + app/controllers/home_controller.rb:51:in `' + activesupport (4.2.6) lib/active_support/dependencies.rb:457:in `block in load_file' + activesupport (4.2.6) lib/active_support/dependencies.rb:647:in `new_constants_in' + activesupport (4.2.6) lib/active_support/dependencies.rb:456:in `load_file' + activesupport (4.2.6) lib/active_support/dependencies.rb:354:in `require_or_load' + activesupport (4.2.6) lib/active_support/dependencies.rb:494:in `load_missing_constant' + activesupport (4.2.6) lib/active_support/dependencies.rb:184:in `const_missing' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `block in constantize' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `constantize' + activesupport (4.2.6) lib/active_support/dependencies.rb:566:in `get' + activesupport (4.2.6) lib/active_support/dependencies.rb:597:in `constantize' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:60:in `controller' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:39:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/32b4186ab8382c5f/variables" for ::1 at 2016-04-22 13:56:13 -0700 + + +Started GET "/tasks/3" for ::1 at 2016-04-22 13:56:14 -0700 + +SyntaxError - syntax error, unexpected keyword_end, expecting end-of-input: + app/controllers/home_controller.rb:51:in `' + activesupport (4.2.6) lib/active_support/dependencies.rb:457:in `block in load_file' + activesupport (4.2.6) lib/active_support/dependencies.rb:647:in `new_constants_in' + activesupport (4.2.6) lib/active_support/dependencies.rb:456:in `load_file' + activesupport (4.2.6) lib/active_support/dependencies.rb:354:in `require_or_load' + activesupport (4.2.6) lib/active_support/dependencies.rb:494:in `load_missing_constant' + activesupport (4.2.6) lib/active_support/dependencies.rb:184:in `const_missing' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `block in constantize' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `constantize' + activesupport (4.2.6) lib/active_support/dependencies.rb:566:in `get' + activesupport (4.2.6) lib/active_support/dependencies.rb:597:in `constantize' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:60:in `controller' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:39:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/9858b28bc8703a9b/variables" for ::1 at 2016-04-22 13:56:14 -0700 + + +Started GET "/" for ::1 at 2016-04-22 13:56:20 -0700 + +SyntaxError - syntax error, unexpected keyword_end, expecting end-of-input: + app/controllers/home_controller.rb:51:in `' + activesupport (4.2.6) lib/active_support/dependencies.rb:457:in `block in load_file' + activesupport (4.2.6) lib/active_support/dependencies.rb:647:in `new_constants_in' + activesupport (4.2.6) lib/active_support/dependencies.rb:456:in `load_file' + activesupport (4.2.6) lib/active_support/dependencies.rb:354:in `require_or_load' + activesupport (4.2.6) lib/active_support/dependencies.rb:494:in `load_missing_constant' + activesupport (4.2.6) lib/active_support/dependencies.rb:184:in `const_missing' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `block in constantize' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `constantize' + activesupport (4.2.6) lib/active_support/dependencies.rb:566:in `get' + activesupport (4.2.6) lib/active_support/dependencies.rb:597:in `constantize' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:60:in `controller' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:39:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/cd382a9ab5493d84/variables" for ::1 at 2016-04-22 13:56:20 -0700 + + +Started GET "/" for ::1 at 2016-04-22 13:56:22 -0700 + +SyntaxError - syntax error, unexpected keyword_end, expecting end-of-input: + app/controllers/home_controller.rb:51:in `' + activesupport (4.2.6) lib/active_support/dependencies.rb:457:in `block in load_file' + activesupport (4.2.6) lib/active_support/dependencies.rb:647:in `new_constants_in' + activesupport (4.2.6) lib/active_support/dependencies.rb:456:in `load_file' + activesupport (4.2.6) lib/active_support/dependencies.rb:354:in `require_or_load' + activesupport (4.2.6) lib/active_support/dependencies.rb:494:in `load_missing_constant' + activesupport (4.2.6) lib/active_support/dependencies.rb:184:in `const_missing' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `block in constantize' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `constantize' + activesupport (4.2.6) lib/active_support/dependencies.rb:566:in `get' + activesupport (4.2.6) lib/active_support/dependencies.rb:597:in `constantize' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:60:in `controller' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:39:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/093a53bdedf0d81c/variables" for ::1 at 2016-04-22 13:56:22 -0700 + + +Started GET "/" for ::1 at 2016-04-22 13:56:30 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (5.5ms) +Completed 200 OK in 57ms (Views: 55.1ms | ActiveRecord: 0.5ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-22 13:56:30 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (110.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (102.1ms) + + +Started GET "/tasks/29/edit" for ::1 at 2016-04-22 13:56:33 -0700 +Processing by HomeController#edit as HTML + Parameters: {"id"=>"29"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 29]] + Rendered home/edit.html.erb within layouts/application (1.6ms) +Completed 200 OK in 48ms (Views: 46.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/29" for ::1 at 2016-04-22 13:56:37 -0700 +Processing by HomeController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"xsfCeBdu6YTYjaJ8viSfqrWxAtuity3pRVDH6hlp/wRkEEKheIrqNOy9Hbvw8SHTFSigiVvy108NzePSoYC3Kg==", "task"=>{"name"=>"Shower", "description"=>"Monday"}, "commit"=>"Update Task", "id"=>"29"} +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) + +ArgumentError - wrong number of arguments (given 1, expected 2): + activerecord (4.2.6) lib/active_record/relation.rb:364:in `update' + activerecord (4.2.6) lib/active_record/querying.rb:8:in `update' + app/controllers/home_controller.rb:48:in `update' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/cdf5797eecd467fc/variables" for ::1 at 2016-04-22 13:56:37 -0700 + + +Started GET "/tasks/29" for ::1 at 2016-04-22 13:57:43 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"29"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 29]] + Rendered home/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 65ms (Views: 57.4ms | ActiveRecord: 0.7ms) + + +Started GET "/tasks/css/bootstrap.min.css" for ::1 at 2016-04-22 13:57:43 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (70.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.1ms) + + +Started GET "/" for ::1 at 2016-04-22 13:57:46 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (5.0ms) +Completed 200 OK in 43ms (Views: 42.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/29" for ::1 at 2016-04-22 13:57:49 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"29"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 29]] + Rendered home/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 39ms (Views: 37.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 13:57:50 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 49ms (Views: 48.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/29/edit" for ::1 at 2016-04-22 13:57:53 -0700 +Processing by HomeController#edit as HTML + Parameters: {"id"=>"29"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 29]] + Rendered home/edit.html.erb within layouts/application (1.5ms) +Completed 200 OK in 43ms (Views: 42.5ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/29" for ::1 at 2016-04-22 13:57:57 -0700 +Processing by HomeController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"/s76Py9FR1ClqyXpcdW/kjDBc5AxoVREZj8QJLbMG2NcGXrmQKFE4JGbmi4/AAHrkFjRwsjkruIuojQcDiVTTQ==", "task"=>{"name"=>"Shower", "description"=>"Monday"}, "commit"=>"Update Task", "id"=>"29"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 29]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", "Monday"], ["updated_at", "2016-04-22 20:57:57.366731"], ["id", 29]] +  (0.7ms) commit transaction +Completed 500 Internal Server Error in 11ms (ActiveRecord: 1.6ms) + +ActionView::MissingTemplate - Missing template home/update, application/update with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/Nadine/C5/projects/TaskListRails/app/views" +: + actionview (4.2.6) lib/action_view/path_set.rb:46:in `find' + actionview (4.2.6) lib/action_view/lookup_context.rb:121:in `find' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:40:in `determine_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:8:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/2de5d8328aecc253/variables" for ::1 at 2016-04-22 13:57:57 -0700 + + +Started GET "/" for ::1 at 2016-04-22 13:59:35 -0700 +Processing by HomeController#index as HTML + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (14.5ms) +Completed 200 OK in 91ms (Views: 86.6ms | ActiveRecord: 1.0ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-22 13:59:35 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (70.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.0ms) + + +Started GET "/tasks/29/edit" for ::1 at 2016-04-22 13:59:37 -0700 +Processing by HomeController#edit as HTML + Parameters: {"id"=>"29"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 29]] + Rendered home/edit.html.erb within layouts/application (2.0ms) +Completed 200 OK in 38ms (Views: 37.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/29" for ::1 at 2016-04-22 13:59:40 -0700 +Processing by HomeController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"wPhlSxN65Zx2E2Of9yCGvRuThcfZdOZ0ZQubK8ol8ttiL+WSfJ7mLEIj3Fi59TjEuwonlSAxHNItlr8Tcsy69Q==", "task"=>{"name"=>"Shower", "description"=>"Monday"}, "commit"=>"Update Task", "id"=>"29"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 29]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Rendered home/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 52ms (Views: 49.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/css/bootstrap.min.css" for ::1 at 2016-04-22 13:59:40 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (59.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.8ms) + + +Started GET "/" for ::1 at 2016-04-22 13:59:43 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 59ms (Views: 57.8ms | ActiveRecord: 0.2ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-22 13:59:43 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (62.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (100.4ms) + + +Started GET "/tasks/6" for ::1 at 2016-04-22 13:59:45 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] + Rendered home/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 43ms (Views: 42.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 14:02:11 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (11.4ms) +Completed 200 OK in 344ms (Views: 334.7ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/29/edit" for ::1 at 2016-04-22 14:02:14 -0700 +Processing by HomeController#edit as HTML + Parameters: {"id"=>"29"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 29]] + Rendered home/edit.html.erb within layouts/application (11.1ms) +Completed 200 OK in 60ms (Views: 51.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/29" for ::1 at 2016-04-22 14:02:20 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"29"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 29]] + Rendered home/show.html.erb within layouts/application (22.6ms) +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `task' for #<#:0x007f93c0549ee8> +Did you mean? @task: + app/views/home/show.html.erb:8:in `_app_views_home_show_html_erb___3094418712694730508_70136281843080' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasks/29" for ::1 at 2016-04-22 14:02:20 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"29"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 29]] + Rendered home/show.html.erb within layouts/application (24.3ms) +Completed 500 Internal Server Error in 29ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `task' for #<#:0x007f93bdd13528> +Did you mean? @task: + app/views/home/show.html.erb:8:in `_app_views_home_show_html_erb___3094418712694730508_70136260759780' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/0c9476e5951245f0/variables" for ::1 at 2016-04-22 14:02:20 -0700 + + +Started GET "/tasks/29" for ::1 at 2016-04-22 14:02:39 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"29"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 29]] + Rendered home/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 53ms (Views: 51.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/css/bootstrap.min.css" for ::1 at 2016-04-22 14:02:39 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (11.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (47.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (113.8ms) + + +Started GET "/tasks/29/edit" for ::1 at 2016-04-22 14:02:41 -0700 +Processing by HomeController#edit as HTML + Parameters: {"id"=>"29"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 29]] + Rendered home/edit.html.erb within layouts/application (1.8ms) +Completed 200 OK in 76ms (Views: 74.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/3" for ::1 at 2016-04-22 14:02:48 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered home/show.html.erb within layouts/application (2.5ms) +Completed 200 OK in 54ms (Views: 53.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3/edit" for ::1 at 2016-04-22 14:02:50 -0700 +Processing by HomeController#edit as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered home/edit.html.erb within layouts/application (3.8ms) +Completed 200 OK in 69ms (Views: 67.5ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/3" for ::1 at 2016-04-22 14:02:57 -0700 +Processing by HomeController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"yJY2uSTnv5t4rAQh5rqAE62sBkGSziLtJ3PDA4Knjr1qQbZgSwO8K0ycu+aobz5qDTWkE2uL2Etv7uc7Ok7Gkw==", "task"=>{"name"=>"Go to Lunch", "description"=>"at 12"}, "commit"=>"Update Task", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", "at 12"], ["updated_at", "2016-04-22 21:02:57.251854"], ["id", 3]] +  (0.8ms) commit transaction + Rendered home/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 59ms (Views: 54.3ms | ActiveRecord: 1.3ms) + + +Started GET "/tasks/css/bootstrap.min.css" for ::1 at 2016-04-22 14:02:57 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (75.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (49.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (108.6ms) + + +Started GET "/tasks/3/edit" for ::1 at 2016-04-22 14:02:59 -0700 +Processing by HomeController#edit as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered home/edit.html.erb within layouts/application (2.1ms) +Completed 200 OK in 48ms (Views: 47.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3/css/bootstrap.min.css" for ::1 at 2016-04-22 14:02:59 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/3/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (60.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (98.0ms) + + +Started PATCH "/tasks/3" for ::1 at 2016-04-22 14:03:02 -0700 +Processing by HomeController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"cqBi4eb30aQggI3zYmtov9Kb1YCcmhnUvHMhtrdZZ4PQd+I4iRPSFBSwMjQsvtbGcgJ30mXf43L07gWOD7AvrQ==", "task"=>{"name"=>"Go to Lunch", "description"=>"at 12"}, "commit"=>"Update Task", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.1ms) begin transaction +  (0.0ms) commit transaction + Rendered home/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 45ms (Views: 42.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/css/bootstrap.min.css" for ::1 at 2016-04-22 14:03:02 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (106.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.2ms) + + +Started GET "/" for ::1 at 2016-04-22 14:03:05 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 48ms (Views: 47.0ms | ActiveRecord: 0.1ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-22 14:03:05 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (64.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (103.8ms) + + +Started GET "/" for ::1 at 2016-04-22 14:05:00 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 50ms (Views: 49.5ms | ActiveRecord: 0.1ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-22 14:05:00 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (57.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.2ms) + + +Started GET "/" for ::1 at 2016-04-22 14:05:01 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 50ms (Views: 48.7ms | ActiveRecord: 0.2ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-22 14:05:01 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (56.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.2ms) + + +Started GET "/tasks/3" for ::1 at 2016-04-22 14:05:03 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered home/show.html.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.1ms) + +SyntaxError - syntax error, unexpected ',', expecting ')': + app/views/home/show.html.erb:4:in `' + actionview (4.2.6) lib/action_view/template.rb:296:in `compile' + actionview (4.2.6) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.6) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.6) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasks/3" for ::1 at 2016-04-22 14:05:03 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered home/show.html.erb within layouts/application (1.3ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.1ms) + +SyntaxError - syntax error, unexpected ',', expecting ')': + app/views/home/show.html.erb:4:in `' + actionview (4.2.6) lib/action_view/template.rb:296:in `compile' + actionview (4.2.6) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.6) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.6) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/82e20ae08afbcafa/variables" for ::1 at 2016-04-22 14:05:03 -0700 + + +Started GET "/tasks/3" for ::1 at 2016-04-22 14:06:03 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered home/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 40ms (Views: 39.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/css/bootstrap.min.css" for ::1 at 2016-04-22 14:06:03 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (54.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (101.3ms) + + +Started GET "/" for ::1 at 2016-04-22 14:06:05 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 52ms (Views: 51.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/27" for ::1 at 2016-04-22 14:06:07 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 27]] + Rendered home/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 38ms (Views: 37.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/27" for ::1 at 2016-04-22 14:12:39 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 27]] + Rendered home/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 42ms (Views: 36.6ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/css/bootstrap.min.css" for ::1 at 2016-04-22 14:12:39 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (59.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.7ms) + + +Started GET "/" for ::1 at 2016-04-22 14:12:41 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (5.3ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.2ms) + +ActionController::UrlGenerationError - No route matches {:action=>"complete", :controller=>"home", :id=>3}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:181:in `link_to' + app/views/home/index.html.erb:28:in `block in _app_views_home_index_html_erb___2204310482062122130_70136248048400' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:16:in `_app_views_home_index_html_erb___2204310482062122130_70136248048400' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/" for ::1 at 2016-04-22 14:12:41 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (4.3ms) +Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.2ms) + +ActionController::UrlGenerationError - No route matches {:action=>"complete", :controller=>"home", :id=>3}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:181:in `link_to' + app/views/home/index.html.erb:28:in `block in _app_views_home_index_html_erb___2204310482062122130_70136278714200' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/home/index.html.erb:16:in `_app_views_home_index_html_erb___2204310482062122130_70136278714200' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/779e62d2abab24ff/variables" for ::1 at 2016-04-22 14:12:41 -0700 + + +Started GET "/" for ::1 at 2016-04-22 14:14:11 -0700 +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (7.1ms) +Completed 200 OK in 48ms (Views: 46.3ms | ActiveRecord: 0.5ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-22 14:14:11 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (57.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.9ms) + + +Started GET "/tasks/29/edit" for ::1 at 2016-04-22 14:14:16 -0700 +Processing by HomeController#edit as HTML + Parameters: {"id"=>"29"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 29]] + Rendered home/edit.html.erb within layouts/application (1.8ms) +Completed 200 OK in 47ms (Views: 46.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/29" for ::1 at 2016-04-22 14:14:19 -0700 +Processing by HomeController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"uDBoG5bKvTYCfOpMrtyHqJwrQr4Bgzog+QfBsDHVBJca5+jC+S6+hjZMVYvgCTnRPLLg7PjGwIaxmuWIiTxMuQ==", "task"=>{"name"=>"Shower", "description"=>"Monday"}, "commit"=>"Update Task", "id"=>"29"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 29]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.1ms) begin transaction +  (0.0ms) commit transaction + Rendered home/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 41ms (Views: 38.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/css/bootstrap.min.css" for ::1 at 2016-04-22 14:14:19 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (59.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.1ms) + + +Started GET "/" for ::1 at 2016-04-22 14:14:23 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 47ms (Views: 45.3ms | ActiveRecord: 0.2ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-22 14:14:23 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (69.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (47.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (116.4ms) + + +Started POST "/tasks/29/complete" for ::1 at 2016-04-22 14:14:26 -0700 +Processing by HomeController#complete as HTML + Parameters: {"authenticity_token"=>"Y2EEZG2wvpGn5fc5KJslFWwuftnZEoZ9/Ug+6WBx2WDBtoS9AlS9IZPVSP5mTptszLfciyBXfNu11RrR2JiRTg==", "id"=>"29"} + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 29]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-04-22 21:14:27.005477"], ["updated_at", "2016-04-22 21:14:27.006237"], ["id", 29]] +  (1.2ms) commit transaction + Rendered home/index.html.erb within layouts/application (3.7ms) +Completed 500 Internal Server Error in 16ms (ActiveRecord: 2.5ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/home/index.html.erb:16:in `_app_views_home_index_html_erb___2204310482062122130_70136278714200' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + app/controllers/home_controller.rb:57:in `complete' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/6adedbcd743559c2/variables" for ::1 at 2016-04-22 14:14:27 -0700 + + +Started POST "/__better_errors/6adedbcd743559c2/eval" for ::1 at 2016-04-22 14:14:42 -0700 + + +Started POST "/__better_errors/6adedbcd743559c2/eval" for ::1 at 2016-04-22 14:15:05 -0700 + + +Started GET "/" for ::1 at 2016-04-22 14:15:50 -0700 +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (7.4ms) +Completed 200 OK in 56ms (Views: 53.7ms | ActiveRecord: 0.5ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-22 14:15:50 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (89.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (55.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (116.4ms) + + +Started GET "/tasks/29" for ::1 at 2016-04-22 14:15:54 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"29"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 29]] + Rendered home/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 57ms (Views: 55.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 14:15:56 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 68ms (Views: 67.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/27" for ::1 at 2016-04-22 14:15:57 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 27]] + Rendered home/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 72ms (Views: 71.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 14:15:59 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (5.4ms) +Completed 200 OK in 65ms (Views: 63.6ms | ActiveRecord: 0.2ms) + + +Started POST "/tasks/27/complete" for ::1 at 2016-04-22 14:16:01 -0700 +Processing by HomeController#complete as HTML + Parameters: {"authenticity_token"=>"V7DFDuzPASH/E/GCcBa28D/HXhGfPKwCkkRLzXMwrif1Z0XXgysCkcsjTkU+wwiJn178Q2Z5VqTa2W/1y9nmCQ==", "id"=>"27"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 27]] +  (0.3ms) begin transaction + SQL (0.9ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-04-22 21:16:01.979180"], ["updated_at", "2016-04-22 21:16:01.980593"], ["id", 27]] +  (1.9ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 14ms (ActiveRecord: 3.4ms) + + +Started GET "/" for ::1 at 2016-04-22 14:16:01 -0700 +Processing by HomeController#index as HTML + Task Load (2.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (7.7ms) +Completed 200 OK in 57ms (Views: 53.7ms | ActiveRecord: 2.2ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-22 14:16:02 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (61.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.4ms) + + +Started GET "/tasks/27" for ::1 at 2016-04-22 14:16:03 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 27]] + Rendered home/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 47ms (Views: 45.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 14:16:10 -0700 +Processing by HomeController#index as HTML + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (11.4ms) +Completed 200 OK in 59ms (Views: 57.6ms | ActiveRecord: 0.5ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-22 14:16:19 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (134.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (112.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (236.3ms) + + +Started GET "/" for ::1 at 2016-04-22 14:17:23 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 45ms (Views: 43.7ms | ActiveRecord: 0.2ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-22 14:17:23 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (89.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (102.3ms) + + +Started POST "/tasks/29/complete" for ::1 at 2016-04-22 14:17:28 -0700 +Processing by HomeController#complete as HTML + Parameters: {"authenticity_token"=>"g20hdmsCKuKPzJfyu3QD1vnsK8Zz4q2+/ntYgobdnkohuqGvBOYpUrv8KDX1ob2vWXWJlIqnVxi25ny6PjTWZA==", "id"=>"29"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 29]] +  (0.3ms) begin transaction + SQL (4.5ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-04-22 21:17:28.190357"], ["updated_at", "2016-04-22 21:17:28.192390"], ["id", 29]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 15ms (ActiveRecord: 6.0ms) + + +Started GET "/" for ::1 at 2016-04-22 14:17:28 -0700 +Processing by HomeController#index as HTML + Task Load (0.8ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (6.3ms) +Completed 200 OK in 74ms (Views: 72.1ms | ActiveRecord: 0.8ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-22 14:17:28 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (124.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (48.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (109.1ms) + + +Started GET "/tasks/6" for ::1 at 2016-04-22 14:17:30 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] + Rendered home/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 40ms (Views: 39.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 14:17:33 -0700 +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (7.5ms) +Completed 200 OK in 77ms (Views: 76.1ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/3" for ::1 at 2016-04-22 14:17:35 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered home/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 47ms (Views: 46.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 14:17:36 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 65ms (Views: 62.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/5" for ::1 at 2016-04-22 14:17:38 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 5]] + Rendered home/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 56ms (Views: 54.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 14:17:40 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (5.8ms) +Completed 200 OK in 70ms (Views: 69.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/8" for ::1 at 2016-04-22 14:17:41 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered home/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 67ms (Views: 66.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 14:17:43 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 48ms (Views: 46.9ms | ActiveRecord: 0.2ms) + + +Started POST "/tasks/8/complete" for ::1 at 2016-04-22 14:17:48 -0700 +Processing by HomeController#complete as HTML + Parameters: {"authenticity_token"=>"Vp7seM63S388/t/hLHOuOxuyEXsQjrht6aYiAGkjXyn0SWyhoVNIzwjOYCZiphBCuyuzKenLQsuhOwY40coXBw==", "id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] +  (0.1ms) begin transaction + SQL (1.4ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-04-22 21:17:48.125919"], ["updated_at", "2016-04-22 21:17:48.126507"], ["id", 8]] +  (2.2ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 10ms (ActiveRecord: 3.9ms) + + +Started GET "/" for ::1 at 2016-04-22 14:17:48 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (5.5ms) +Completed 200 OK in 87ms (Views: 86.4ms | ActiveRecord: 0.2ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-22 14:17:48 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (111.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (61.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (124.4ms) + + +Started GET "/tasks/8" for ::1 at 2016-04-22 14:17:50 -0700 +Processing by HomeController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered home/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 43ms (Views: 41.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 14:17:52 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 56ms (Views: 55.3ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/29" for ::1 at 2016-04-22 14:17:57 -0700 +Processing by HomeController#destroy as HTML + Parameters: {"authenticity_token"=>"ly1Jn45o8x1ICAOePStrJ9evButgvUc3Vp4NeDpFuTo1+slG4YzwrXw4vFlz/tVedzakuZn4vZEeAylAgqzxFA==", "id"=>"29"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 29]] +  (0.1ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 29]] +  (4.1ms) commit transaction + Task Load (18.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered home/index.html.erb within layouts/application (37.7ms) +Completed 200 OK in 139ms (Views: 112.1ms | ActiveRecord: 22.8ms) + + +Started GET "/tasks/css/bootstrap.min.css" for ::1 at 2016-04-22 14:17:58 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (83.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (1.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (116.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (237.7ms) diff --git a/test/fixtures/people.yml b/test/fixtures/people.yml new file mode 100644 index 000000000..937a0c002 --- /dev/null +++ b/test/fixtures/people.yml @@ -0,0 +1,11 @@ +# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +# This model initially had no columns defined. If you add columns to the +# model remove the '{}' from the fixture names and add the columns immediately +# below each fixture, per the syntax in the comments below +# +one: {} +# column: value +# +two: {} +# column: value diff --git a/test/models/person_test.rb b/test/models/person_test.rb new file mode 100644 index 000000000..1d7281dad --- /dev/null +++ b/test/models/person_test.rb @@ -0,0 +1,8 @@ +require 'test_helper' + +class PersonTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end + has_many :tasks +end diff --git a/test/models/task_test.rb b/test/models/task_test.rb index 3ca215970..4b1fbe089 100644 --- a/test/models/task_test.rb +++ b/test/models/task_test.rb @@ -4,4 +4,5 @@ class TaskTest < ActiveSupport::TestCase # test "the truth" do # assert true # end + belongs_to :person end From 14c55948bd59527e8fd4fd3e6da3aa05d687006b Mon Sep 17 00:00:00 2001 From: Nadine Curry Date: Mon, 25 Apr 2016 10:10:28 -0700 Subject: [PATCH 05/12] Added task and people association. Halfway done with wave 4 --- .DS_Store | Bin 0 -> 8196 bytes app/.DS_Store | Bin 0 -> 6148 bytes app/assets/javascripts/people.coffee | 3 + app/assets/javascripts/tasks.coffee | 3 + app/assets/stylesheets/people.scss | 3 + app/assets/stylesheets/tasks.scss | 3 + app/controllers/home_controller.rb | 56 - app/controllers/people_controller.rb | 2 + app/controllers/tasks_controller.rb | 59 + app/helpers/people_helper.rb | 2 + app/helpers/tasks_helper.rb | 2 + app/models/task.rb | 1 + app/views/.DS_Store | Bin 0 -> 6148 bytes app/views/home/.DS_Store | Bin 0 -> 6148 bytes app/views/tasks/.DS_Store | Bin 0 -> 6148 bytes app/views/{home => tasks}/edit.html.erb | 0 app/views/{home => tasks}/index.html.erb | 7 +- app/views/{home => tasks}/new.html.erb | 0 app/views/{home => tasks}/show.html.erb | 0 config/routes.rb | 18 +- db/development.sqlite3 | Bin 20480 -> 24576 bytes db/migrate/20160422215930_create_people.rb | 10 + .../20160422215946_person_task_association.rb | 5 + db/schema.rb | 10 +- db/test.sqlite3 | Bin 0 -> 24576 bytes log/development.log | 2066 +++++++++++++++++ test/controllers/people_controller_test.rb | 7 + test/controllers/tasks_controller_test.rb | 7 + test/models/person_test.rb | 1 - 29 files changed, 2196 insertions(+), 69 deletions(-) create mode 100644 .DS_Store create mode 100644 app/.DS_Store create mode 100644 app/assets/javascripts/people.coffee create mode 100644 app/assets/javascripts/tasks.coffee create mode 100644 app/assets/stylesheets/people.scss create mode 100644 app/assets/stylesheets/tasks.scss create mode 100644 app/controllers/people_controller.rb create mode 100644 app/controllers/tasks_controller.rb create mode 100644 app/helpers/people_helper.rb create mode 100644 app/helpers/tasks_helper.rb create mode 100644 app/views/.DS_Store create mode 100644 app/views/home/.DS_Store create mode 100644 app/views/tasks/.DS_Store rename app/views/{home => tasks}/edit.html.erb (100%) rename app/views/{home => tasks}/index.html.erb (55%) rename app/views/{home => tasks}/new.html.erb (100%) rename app/views/{home => tasks}/show.html.erb (100%) create mode 100644 db/migrate/20160422215930_create_people.rb create mode 100644 db/migrate/20160422215946_person_task_association.rb create mode 100644 db/test.sqlite3 create mode 100644 test/controllers/people_controller_test.rb create mode 100644 test/controllers/tasks_controller_test.rb diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..b71b773a372ea572ca149f1876a71a20b00cdde8 GIT binary patch literal 8196 zcmeHM-EPw`82!AKE@em*0n)h39lMyO4iFVrl(K;kLYh{zT>u(M8@6a!QYGmMswVXv z_#5v5Z@~lX2@r2F&S#q`PPYqg5EK3?`#ARblH-#st~(+Uone2OXr7216voCJs#Ai; zxlF~3?zsvS$fu;|M~RQ4#uV3fSO=^F)&c8)b-+6CZ#aN8o5ML{-B+WwwhmYa{!0h= z{otZ7wlz)^%2x*}xdi}L(JcdQ`Q;zzatE-jaiS1C2%%DeDplw$hR}Nlq0%wl*8GV= zl}%g=FymzmVM*|u>iH!aGBaAGdh~s0Krdj?d z8|YpB4}TDaS>9|OiJ40ELT%QmU*yl_`m63vGV11DKFm5^`a&Ls{lM4lH80=!-F}`V z(Mj9$H^N}F)wuRBiE}TEgS3$Pax;wk$*7YI<9@c)xW1MK`(Uqmaj+3)p&v$J{?4iM zXR9$k9xu1~I}^!f11S2;Tp`o%(5 z)bUCE4J|$Q{cajZNxY37W>?6kkm8bW-!ZaqECVf~8ucilnBIW9ZF0qWiCZsnX^B!A zmNJe?88g%;-{cVAxx<2jS$a$X?MVd@1tm7?EwV3}Y^aE!zel@fp448+@b=1otx|K5 zRik~JEtX1C^NdpI&w^6iqEmyPaTkTLt#P7|ySQJj!a%$JvmrLD1Lw$riqbmI`~TIm zfB!#6GqO^x1J;2*bwE^Cx+@)I$yNQ7Y+mJEl-DR6%$q2bDX5Gu0ysYThauW7sGQT* UI8lfmg#95v+F&c|z+ZLX7oUF?bXi2jiKr|{h)YG$?g3CqHW9UyjjJSWgsMt; zhvlcd2fPIjuus5ilo{Ja=?_N`i#*o&o7gkX_={}E0Kht<@Cd*K00)(@wujXQp?=ae z*)lEE$g+O^R^9^0n5O@#sIC|I{1)biC}sC(x&hf_3m7WN_`*BK|+F_ zDPoKzLaVy!DeC)5)GiFrFNWbJZ}wu%`vNl(o5yBXE8cauz)V6l{%RhS{j8Gx4vcZ! z2#Spv&(NFA=U4+&JcA+|njP&&FpNc(w^~#tD*$2*o0XtVKL8ZN4SEJkjo5?2bSR<@W#)>(bU3zi_+1}p>13~cL1m(KquzrX)42iYgffMwvnVu007dM6#6k~v$~ yCP!y2M}3P*LVl%26@ryHj+H@2@gb@b?Bir0dIn34*n(nz1QZRnvJCuH27Ur!Pp2~g literal 0 HcmV?d00001 diff --git a/app/assets/javascripts/people.coffee b/app/assets/javascripts/people.coffee new file mode 100644 index 000000000..24f83d18b --- /dev/null +++ b/app/assets/javascripts/people.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/people.scss b/app/assets/stylesheets/people.scss new file mode 100644 index 000000000..e6ee13d8f --- /dev/null +++ b/app/assets/stylesheets/people.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the people 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..b57862ec7 --- /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/home_controller.rb b/app/controllers/home_controller.rb index 74ae3fd1b..ea2095f32 100644 --- a/app/controllers/home_controller.rb +++ b/app/controllers/home_controller.rb @@ -1,59 +1,3 @@ class HomeController < ApplicationController - def index - @tasks = Task.order(id: :asc) - end - def by_task - @task = Task.where(id: params[:id]) - render :show - end - - def new - @task = Task.new - end - - def create - @task = Task.new(task_create_params[:task]) - if (@task.save) - redirect_to root_path - else - render :new - end - end - - def task_create_params - params.permit(task: [:name, :description]) - end - - def task_edit_params - params.permit(task: [:name, :description]) - end - - def show - @task = Task.find(params[:id]) - end - - def destroy - @task = Task.find(params[:id]) - @task.destroy - @tasks = Task.order(id: :asc) - render :index - end - - def edit - @task = Task.find(params[:id]) - end - - def update - @task = Task.find(params[:id]) - @task.update(task_edit_params[:task]) - render :show - end - - def complete - @task = Task.find(params[:id]) - @task.completed_at = Time.now - @task.save - redirect_to root_path - end end diff --git a/app/controllers/people_controller.rb b/app/controllers/people_controller.rb new file mode 100644 index 000000000..2cdd7e442 --- /dev/null +++ b/app/controllers/people_controller.rb @@ -0,0 +1,2 @@ +class PeopleController < ApplicationController +end diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb new file mode 100644 index 000000000..278ad9eb4 --- /dev/null +++ b/app/controllers/tasks_controller.rb @@ -0,0 +1,59 @@ +class TasksController < ApplicationController + def index + @tasks = Task.order(id: :asc) + end + + def by_task + @task = Task.where(id: params[:id]) + render :show + end + + def new + @task = Task.new + end + + def create + @task = Task.new(task_create_params[:task]) + if (@task.save) + redirect_to root_path + else + render :new + end + end + + def task_create_params + params.permit(task: [:name, :description]) + end + + def task_edit_params + params.permit(task: [:name, :description]) + end + + def show + @task = Task.find(params[:id]) + end + + def destroy + @task = Task.find(params[:id]) + @task.destroy + @tasks = Task.order(id: :asc) + render :index + end + + def edit + @task = Task.find(params[:id]) + end + + def update + @task = Task.find(params[:id]) + @task.update(task_edit_params[:task]) + render :show + end + + def complete + @task = Task.find(params[:id]) + @task.completed_at = Time.now + @task.save + redirect_to root_path + end +end diff --git a/app/helpers/people_helper.rb b/app/helpers/people_helper.rb new file mode 100644 index 000000000..b682fbf12 --- /dev/null +++ b/app/helpers/people_helper.rb @@ -0,0 +1,2 @@ +module PeopleHelper +end diff --git a/app/helpers/tasks_helper.rb b/app/helpers/tasks_helper.rb new file mode 100644 index 000000000..ce894d00c --- /dev/null +++ b/app/helpers/tasks_helper.rb @@ -0,0 +1,2 @@ +module TasksHelper +end diff --git a/app/models/task.rb b/app/models/task.rb index 935f76e12..c3c534741 100644 --- a/app/models/task.rb +++ b/app/models/task.rb @@ -1,2 +1,3 @@ class Task < ActiveRecord::Base + belongs_to :person end diff --git a/app/views/.DS_Store b/app/views/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..ae6a7c1eaa97337c8f97bea095baf4bbada9c523 GIT binary patch literal 6148 zcmeHK!EVz)5S?vZ;*J&pcN?WCoGKwycC48t!I}SDsci1Y$-Yd- zz2Mekm6x&1)8Rtu%LAGB)wr!jdB5ldw>!i12+^H5PxoaZ6Pd~K*st@`3pOT`&DNtv zc)!)0Ho{4()og?hwjNHWzJKTL*7nnbeDdMr$?2!hU%r|jNnjV#a?|1&e1kKe{ZV(A zXDWY-K8~+ZMll_O!4Z{IEOGc95sMtIAtt7R-YrLpXB^2jXERu$g~4Xd0Yx4E$9FegUgD$;ki! literal 0 HcmV?d00001 diff --git a/app/views/home/.DS_Store b/app/views/home/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..17b03f6025f306134acc562fbe70fdcabda456fe GIT binary patch literal 6148 zcmeHK%Sr?>5UkccEbNZ#(PNID7W{*-tb$kl0U38dVRXO;dYljR1N@t{I^Bwc1M5jd zx}j5fbS0UBNzwph^|Uz#767JnMbXNLY4_;Ro(E5eQs!9V8jrX|i{;2ff3ZvVUZKGT zH{AKx{WrKreb#nYb=%d9Qi)FKNA!d3mL-v_J8~Pm?Bu>OUb&TX=VUf`-o=x1=gpm0 z;ejf5KVZH&bLLDo!$N^jAQT7%LIJ(A)uuDUC_{lzAQbpiK+lInSImyRVL3WjloWud z&*);T>qA*N$uT?jh8&@ZQHe$sPcg*k>`xw-9eYEgLp=EqU-=_>k+M4HPbD0Z4WkSN zLV=+I`_^3O{eQw=W;DqkQlb?KgaZFe0hz2X)+>IL->u(1Pw(19zoe^aT(1=x>w`xC i8+wi$mO&d&T4!8#>!Zd literal 0 HcmV?d00001 diff --git a/app/views/tasks/.DS_Store b/app/views/tasks/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..1a390bb7e97b2423ffb28ac22080384d98997e39 GIT binary patch literal 6148 zcmeHK%Sr?>5UkccEa=J}J?7|X!9NJgDtOf&kZ}hTW*zW>9_Iu70RKj-)2%q;z=r^l%K8NK2OiuM8Bk~X4l8ho#f{ blg7-;j-8>7qV0uFjEg`KB#Kbr7Zi90;Oa;$ literal 0 HcmV?d00001 diff --git a/app/views/home/edit.html.erb b/app/views/tasks/edit.html.erb similarity index 100% rename from app/views/home/edit.html.erb rename to app/views/tasks/edit.html.erb diff --git a/app/views/home/index.html.erb b/app/views/tasks/index.html.erb similarity index 55% rename from app/views/home/index.html.erb rename to app/views/tasks/index.html.erb index 0c739cca6..19b14c944 100644 --- a/app/views/home/index.html.erb +++ b/app/views/tasks/index.html.erb @@ -19,13 +19,16 @@ <%= link_to task.name, "/tasks/#{task.id}" %> + <%end%> diff --git a/app/views/home/new.html.erb b/app/views/tasks/new.html.erb similarity index 100% rename from app/views/home/new.html.erb rename to app/views/tasks/new.html.erb diff --git a/app/views/home/show.html.erb b/app/views/tasks/show.html.erb similarity index 100% rename from app/views/home/show.html.erb rename to app/views/tasks/show.html.erb diff --git a/config/routes.rb b/config/routes.rb index ff8ced0ee..10ffb2523 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,18 +1,18 @@ Rails.application.routes.draw do - root 'home#index' + root 'tasks#index' - get "/tasks" => "home#index", as: "tasks" - post "/tasks" => "home#create" + get "/tasks" => "tasks#index", as: "tasks" + post "/tasks" => "tasks#create" - get "/tasks/new" => "home#new" + get "/tasks/new" => "tasks#new" - get "/tasks/:id" => "home#show", as: "task" - patch "/tasks/:id" => "home#update" - delete "/tasks/:id" => "home#destroy" + get "/tasks/:id" => "tasks#show", as: "task" + patch "/tasks/:id" => "tasks#update" + delete "/tasks/:id" => "tasks#destroy" - get "tasks/:id/edit" => "home#edit" + get "/tasks/:id/edit" => "tasks#edit" - post "/tasks/:id/complete" => "home#complete" + post "/tasks/:id/complete" => "tasks#complete" # The priority is based upon order of creation: first created -> highest priority. # See how all your routes lay out with "rake routes". diff --git a/db/development.sqlite3 b/db/development.sqlite3 index 2e84c3c404d3a08d0ce22fd34c2c8397daaa4bd2..3c3f7b26d3a4b29183cc6aafc69a31d651b9c977 100644 GIT binary patch literal 24576 zcmeI3&2HO95P+AWEXj^#x&;EkC<-i86p0W^=JKCHi<(K~)Qv6MvfRc93WJt55@Cr{ zNZO8%ZV!Eiyh9H?<`IIvLVGUI9D*F$V}ULy3$@%f00e*l5C8%|00{iI1kSTF*}|tQ-1&;*w&}BD*LiwO4}w;g_U(hd z)A8-l@!a5wAak!#vzj%$S6|=RtKs$f{n{g3oYuUEx9Yff#Yhp~E}l?7U_BH|y>zy) z!W_wl_F<1+se45*bKybLy1P+(i*bBn`>n3+j~~|dv9;ISTCcN4o3%Q#ePMqY7hStgi=&R& zbDPEFJA(-4WpT^v4|+7D?E^b3;q(CJfFzvWZ*FfP7q|9B8po~|D-u%3Gm`R%wN z?NGn8oyrvM+~M|zgrD}f@NN^BP4NXT-q0~O$MH+ta7#iuzwjK* z-FSn9=R$qq)r~g`B>y76o6pa`n1B3k2Mpc=0U!VbfB+Bx0zd!=00AK2q;rVmEz9B_ zcsTU%E^T>k8*d!Dt?qc1P!_AAUXct%F_P1!h9r{-&8Uqk5uJZLmqRz>uIl!nGHzTl zs)||>Wlb@~2~C`>RYXxY$%N*jjbZ8rzdM^lEP2V|*zHn$>iNDygJpc?9pfX{JDu!q zm;yF6Rg@--UecuQ=W^)7$mr}nyVt{;Q!>e>B1y?9)mYQY=FqJu?%D00?S^=*=bf_c z=!Cgl7S%E_u&7i;v#RJ7#gH^zP4-CCv?;zun$t`UZN;5@?sU3%%{ifXm*s>Hz4jU2 zXB6&x?yV3%WGq<6W?9suj)@Xy!%0OYk~}3FZWxN0>{6_GGLu8)QFLecOQ%ge{D5tV zj{;;_cdabxSQMjvh|IF?nnCo$0NJdPCr5ZV7_o-Esyiee;I~cGi~N4VbiAzL5BVJW zD4vc(gYlFf4vNCY1&dl$G9#ZgO%|`ry`g8iM&x8Ru_nEq%At=hIepi^`d(c)rL)Zg zMk1J4lcrn_m11|BY=W;jeh}g&`=f>=igKC#2=myiigHyY6-iPRIeA9vMAech$C^}> z|L27tk?>mhnO&d&0U!VbfB+Bx0zd!=00AHX1b_e#00P&Vz#^Y2Mc)%d_H{}ksws<$ zsgZ=35)lnWTjWNPVI4)AV=?ij1$yAOHk_01yBIKmZ5;0U!VbfB+Bx d0{?pg@AD;YeD%-&B^oXNQ}6Mm*~_&Q?N5t3XixwE literal 20480 zcmeI)&r;h)7y$4UhA8|oPA3Ns?WD7D4&VtEyQ}}2VWw{4P!cfzJLQlvLf*!j*cOpw zC`YDm&?iXGoxVg5eS|(jkDXp}>81T-Fu@q7mkx)_r?EiNr~P)n-%1`d7%GpxbX~^%p zoe;DRlAtNu{y{r@75mvhlA!~+i}LsCt6O_DsQ78^8(JFGyhJzZv^10?^E#Gsl9gI+ zDQa;E2BMx%-hYl@Y;XcTn7q$>=~B*~&6UER1YWqH01BW03ZMWApa2S>01BW03ZMWA zd=vurl(Dj4++qfI1!s<7O+j7w{Qpr*E*60TD1ZVefC4Ch0w{n2D1ZVefC3i+pXADu zgU|o@nSe}Aza_JO&;B&)<$uk8JN(0Te(16hHwKKmioE zJ%N{ZRq`NTtyZ7-trlI6+S!lq6=qa~pn`kc_6$ek!gS#mdKVGyQXxEHdfd`n%W{R) zj|{f4OlBW`rjm#EA^r1ilF~**!?Y8fTszjLImyz>v zowsqA>FW7863op(A3M$HM8@k;r{SMoJKgpKl;JYnw68=UzX_G-8h5y`hRf)+5xUE^ zCRO6*N!Ep=Cs7=SGFhajQJ21ka8nXchDqay{MOg+j*y&`iec~s1{dWm}(;ZNYX;I7TG@pF@M(}P<{H#KfJ zwml-PZCUT{i{91GglF2CFu7wI@K*8s;e8nY&3D-7`)DY#^C=8?K9i6sJ&I)_J1Gpf z36o75@+eCCRf~R8;cB|AgZt>n`RD)Nk;1#%dr!ljPyhu`00mG01yBG5Pyhu`00mG0 R1#UrLQppvS-hXQN{9n=n)9?TQ diff --git a/db/migrate/20160422215930_create_people.rb b/db/migrate/20160422215930_create_people.rb new file mode 100644 index 000000000..02260b89b --- /dev/null +++ b/db/migrate/20160422215930_create_people.rb @@ -0,0 +1,10 @@ +class CreatePeople < ActiveRecord::Migration + def change + create_table :people do |t| + t.string :name + t.string :email + + t.timestamps null: false + end + end +end diff --git a/db/migrate/20160422215946_person_task_association.rb b/db/migrate/20160422215946_person_task_association.rb new file mode 100644 index 000000000..b44a79916 --- /dev/null +++ b/db/migrate/20160422215946_person_task_association.rb @@ -0,0 +1,5 @@ +class PersonTaskAssociation < ActiveRecord::Migration + def change + add_column :tasks, :person_id, :integer + end +end diff --git a/db/schema.rb b/db/schema.rb index 00c8380d6..2c56b2112 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -11,7 +11,14 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20160419210846) do +ActiveRecord::Schema.define(version: 20160422215946) do + + create_table "people", force: :cascade do |t| + t.string "name" + t.string "email" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end create_table "tasks", force: :cascade do |t| t.string "name" @@ -19,6 +26,7 @@ t.datetime "completed_at" t.datetime "created_at", null: false t.datetime "updated_at", null: false + t.integer "person_id" end end diff --git a/db/test.sqlite3 b/db/test.sqlite3 new file mode 100644 index 0000000000000000000000000000000000000000..a0eb6e4407cf8af2fd3c3e5f13e7f9a9ab127aa0 GIT binary patch literal 24576 zcmeI#&u`LT7zgl{0*#AU^wRA1<~^<13_pg%C7Ot{F+^52ghUR8RCu>F(!$!ZctsEX zYm5Jao;`Tj&7+A=fkrBs9yDgb@0;}3)3;CG=hI%E=SK}E6zq89yLQNSrMx7|(j&$s zNm6Oc(iV?2okUwa|T+JjqPa$j@r=@bJ35P$##AOHafKmY;| zfWW^Mn5r37e^`*G1;-nRHxth}n}}Y}KNYUsbDb044xNz~tOTd31k*4XxAP$%-WPG`WW%C`B`Y_Y>u{h-$BvS((O z)jI8F-J*vMOp9_a^6xP2*{~*NA7qiLNVysA!h?S6rtk^n&0;Y zT_nTH`6uIO^40gp1UvG2(YhTk6eq$r4pUiudt2_#h0li6_VxlnAKdGUAbF`I7=F6B z71g#wPa4yjtm>Pa^4piQoMSPfV&?l)A_JcX|B592n$9p`_$O3G)SFY&j{yM)KmY;| zfB*y_009U<00Izzz#0pn|6k*ei_#zf0SG_<0uX=z1Rwwb2tWV=3jy^1_!S@k0SG_< z0uX=z1Rwwb2tWV=>n{-X|BCiO(k``6bijZB1Rwwb2tWV=5P$##AOHafK;T*n"29"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 29]] +Completed 404 Not Found in 19ms (ActiveRecord: 0.5ms) + +ActiveRecord::RecordNotFound - Couldn't find Task with 'id'=29: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/home_controller.rb:33:in `show' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/cf9d0712497267df/variables" for ::1 at 2016-04-22 15:11:39 -0700 + + +Started GET "/" for ::1 at 2016-04-22 15:11:51 -0700 +Processing by HomeController#index as HTML +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms) + +ActionView::MissingTemplate - Missing template home/index, application/index with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/Nadine/C5/projects/TaskListRails/app/views" +: + actionview (4.2.6) lib/action_view/path_set.rb:46:in `find' + actionview (4.2.6) lib/action_view/lookup_context.rb:121:in `find' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:40:in `determine_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:8:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/cc75c7907895da89/variables" for ::1 at 2016-04-22 15:11:51 -0700 + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + + +Started GET "/" for ::1 at 2016-04-22 15:20:21 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered tasks/index.html.erb within layouts/application (7.3ms) +Completed 200 OK in 573ms (Views: 561.9ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 15:20:22 -0700 + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-22 15:20:22 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (8.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (68.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (50.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (110.4ms) + + +Started POST "/__better_errors/cf9d0712497267df/variables" for ::1 at 2016-04-22 15:20:25 -0700 + +NoMethodError (undefined method `id' for nil:NilClass): + better_errors (2.1.1) lib/better_errors/middleware.rb:127:in `internal_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:75:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (80.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (46.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (121.6ms) + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + + +Started GET "/" for ::1 at 2016-04-22 15:23:45 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered tasks/index.html.erb within layouts/application (6.2ms) +Completed 200 OK in 410ms (Views: 398.2ms | ActiveRecord: 0.5ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-22 15:23:45 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (9.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (75.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (47.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (98.9ms) + + +Started GET "/" for ::1 at 2016-04-22 15:23:47 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 62ms (Views: 60.6ms | ActiveRecord: 0.1ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-22 15:23:47 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (66.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (102.8ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-22 15:24:09 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (7.6ms) +Completed 200 OK in 66ms (Views: 61.0ms | ActiveRecord: 0.5ms) + + +Started POST "/tasks" for ::1 at 2016-04-22 15:24:13 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"CtWsJFsskZQB/t0PfGopLr+UUOEYb/ymzPxrmx9jhSGoAiz9NMiSJDXOYsgyv5dXHw3ys+EqBgCEYU+jp4rNDw==", "task"=>{"name"=>"hello", "description"=>"jdbkjdv"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "hello"], ["description", "jdbkjdv"], ["created_at", "2016-04-22 22:24:13.838200"], ["updated_at", "2016-04-22 22:24:13.838200"]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 1.2ms) + + +Started GET "/" for ::1 at 2016-04-22 15:24:13 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +ActionController::UrlGenerationError - No route matches {:action=>"destroy", :controller=>"home", :id=>1}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:181:in `link_to' + app/views/tasks/index.html.erb:22:in `block in _app_views_tasks_index_html_erb__2444098937859128397_70241394520020' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:16:in `_app_views_tasks_index_html_erb__2444098937859128397_70241394520020' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/7117e25365826844/variables" for ::1 at 2016-04-22 15:24:13 -0700 + + +Started GET "/" for ::1 at 2016-04-22 15:24:25 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.2ms) + +ActionController::UrlGenerationError - No route matches {:action=>"destroy", :controller=>"home", :id=>1}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:181:in `link_to' + app/views/tasks/index.html.erb:22:in `block in _app_views_tasks_index_html_erb__2444098937859128397_70241394520020' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:16:in `_app_views_tasks_index_html_erb__2444098937859128397_70241394520020' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/e11405f7489f1d64/variables" for ::1 at 2016-04-22 15:24:25 -0700 + + +Started GET "/" for ::1 at 2016-04-22 15:24:26 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +ActionController::UrlGenerationError - No route matches {:action=>"destroy", :controller=>"home", :id=>1}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:181:in `link_to' + app/views/tasks/index.html.erb:22:in `block in _app_views_tasks_index_html_erb__2444098937859128397_70241394520020' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:16:in `_app_views_tasks_index_html_erb__2444098937859128397_70241394520020' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/a2bef92d022fc3c9/variables" for ::1 at 2016-04-22 15:24:26 -0700 + + +Started GET "/" for ::1 at 2016-04-22 15:24:27 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered tasks/index.html.erb within layouts/application (4.7ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.2ms) + +ActionController::UrlGenerationError - No route matches {:action=>"destroy", :controller=>"home", :id=>1}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:181:in `link_to' + app/views/tasks/index.html.erb:22:in `block in _app_views_tasks_index_html_erb__2444098937859128397_70241394520020' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:16:in `_app_views_tasks_index_html_erb__2444098937859128397_70241394520020' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/e2fc288848ee059a/variables" for ::1 at 2016-04-22 15:24:27 -0700 + + +Started GET "/" for ::1 at 2016-04-22 15:24:28 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered tasks/index.html.erb within layouts/application (4.3ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.2ms) + +ActionController::UrlGenerationError - No route matches {:action=>"destroy", :controller=>"home", :id=>1}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:181:in `link_to' + app/views/tasks/index.html.erb:22:in `block in _app_views_tasks_index_html_erb__2444098937859128397_70241394520020' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:16:in `_app_views_tasks_index_html_erb__2444098937859128397_70241394520020' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/ed88c4787239951a/variables" for ::1 at 2016-04-22 15:24:28 -0700 + + +Started GET "/" for ::1 at 2016-04-22 15:24:28 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered tasks/index.html.erb within layouts/application (8.5ms) +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.2ms) + +ActionController::UrlGenerationError - No route matches {:action=>"destroy", :controller=>"home", :id=>1}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:181:in `link_to' + app/views/tasks/index.html.erb:22:in `block in _app_views_tasks_index_html_erb__2444098937859128397_70241394520020' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:16:in `_app_views_tasks_index_html_erb__2444098937859128397_70241394520020' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/dd4419a0de69eed5/variables" for ::1 at 2016-04-22 15:24:28 -0700 + + +Started GET "/" for ::1 at 2016-04-22 15:24:55 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 49ms (Views: 48.1ms | ActiveRecord: 0.4ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-22 15:24:55 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (62.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.7ms) + + +Started GET "/tasks/1" for ::1 at 2016-04-22 15:25:00 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 59ms (Views: 52.2ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-22 15:25:02 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 53ms (Views: 52.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-04-22 15:25:04 -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 (3.3ms) +Completed 200 OK in 45ms (Views: 44.7ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/1" for ::1 at 2016-04-22 15:25:07 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"yLP9OWdVcC1ZgrrUbFMaCpRHVdmnJWo6HzTZ9+dAn69qZH3gCLFznW2yBRMihqRzNN73i15gkJxXqf3PX6nXgQ==", "task"=>{"name"=>"hello", "description"=>""}, "commit"=>"Update Task", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", ""], ["updated_at", "2016-04-22 22:25:07.349036"], ["id", 1]] +  (0.7ms) commit transaction + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 56ms (Views: 51.7ms | ActiveRecord: 1.2ms) + + +Started GET "/tasks/css/bootstrap.min.css" for ::1 at 2016-04-22 15:25:07 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (66.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (100.1ms) + + +Started GET "/" for ::1 at 2016-04-22 15:25:09 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 56ms (Views: 54.9ms | ActiveRecord: 0.2ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-22 15:25:09 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (74.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.2ms) + + +Started DELETE "/tasks/1" for ::1 at 2016-04-22 15:25:12 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"p9T9JrmdotfOEnIpxce4vOMKD5TMVweqEU6XaNe+muYFA33/1nmhZ/oize6LEgbFQ5OtxjUS/QxZ07NQb1fSyA==", "id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +  (0.1ms) begin transaction + SQL (0.9ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 1]] +  (1.4ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered tasks/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 55ms (Views: 45.6ms | ActiveRecord: 2.7ms) + + +Started GET "/tasks/css/bootstrap.min.css" for ::1 at 2016-04-22 15:25:12 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (59.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (81.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (177.1ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-22 15:25:14 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.9ms) +Completed 200 OK in 54ms (Views: 53.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/css/bootstrap.min.css" for ::1 at 2016-04-22 15:25:14 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (59.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (124.8ms) + + +Started POST "/tasks" for ::1 at 2016-04-22 15:25:19 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"DjDZGI81uRIZaMHtfuHD2e2WFzJr4GnG26QUAWXmoqes51nB4NG6oi1YfiowNH2gTQ+1YJKlk2CTOTA53Q/qiQ==", "task"=>{"name"=>"ddv", "description"=>"wdvwrgwrgw"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ddv"], ["description", "wdvwrgwrgw"], ["created_at", "2016-04-22 22:25:19.611936"], ["updated_at", "2016-04-22 22:25:19.611936"]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.1ms) + + +Started GET "/" for ::1 at 2016-04-22 15:25:19 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 46ms (Views: 45.6ms | ActiveRecord: 0.1ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-22 15:25:19 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (65.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (103.4ms) + + +Started POST "/tasks/2/complete" for ::1 at 2016-04-22 15:25:22 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"uuasEdsKm1QWc6d9BGgi8W79lCrrrnWTDBuOjcisUicYMSzItO6Y5CJDGLpKvZyIzmQ2eBLrjzVEhqq1cEUaCQ==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-04-22 22:25:22.265443"], ["updated_at", "2016-04-22 22:25:22.265951"], ["id", 2]] +  (1.1ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for ::1 at 2016-04-22 15:25:22 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 49ms (Views: 48.2ms | ActiveRecord: 0.1ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-22 15:25:22 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (63.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.4ms) + + +Started GET "/tasks/2" for ::1 at 2016-04-22 15:25:24 -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.3ms) +Completed 200 OK in 45ms (Views: 44.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 15:25:28 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 57ms (Views: 56.5ms | ActiveRecord: 0.3ms) + + +Started DELETE "/tasks/2" for ::1 at 2016-04-22 15:25:31 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"pf2/eXjHSVb5/HbtdZiPdDtlexFUnDG86iPjyNDsoxAHKj+gFyNK5s3MySo7TTENm/zZQ63ZyxqivsfwaAXrPg==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 2]] +  (1.6ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 58ms (Views: 54.3ms | ActiveRecord: 2.2ms) + + +Started GET "/tasks/css/bootstrap.min.css" for ::1 at 2016-04-22 15:25:31 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (60.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (101.4ms) +  (1.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  +  (0.8ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" varchar, "completed_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "person_id" integer) +  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)  +  (0.0ms) select sqlite_version(*) +  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") +  (0.2ms) SELECT version FROM "schema_migrations" +  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20160422215946') +  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20160419210846') +  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20160422215930') +  (0.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) +  (0.8ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" varchar, "completed_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "person_id" integer)  +  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) +  (0.1ms) select sqlite_version(*) +  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") +  (0.2ms) SELECT version FROM "schema_migrations" +  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20160422215946') +  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20160419210846') +  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20160422215930') + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.0ms) begin transaction + SQL (0.4ms) INSERT INTO "people" ("name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Jack"], ["email", "something@google.com"], ["created_at", "2016-04-22 22:27:59.355179"], ["updated_at", "2016-04-22 22:27:59.355179"]] +  (0.7ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "people" ("name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Pandora"], ["email", "pandora@mybox.com"], ["created_at", "2016-04-22 22:27:59.359413"], ["updated_at", "2016-04-22 22:27:59.359413"]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "people" ("name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Marley"], ["email", "bob@rasta.com"], ["created_at", "2016-04-22 22:27:59.361154"], ["updated_at", "2016-04-22 22:27:59.361154"]] +  (0.9ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "people" ("name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Rosa"], ["email", "chihuahua@kickassdogs.com"], ["created_at", "2016-04-22 22:27:59.363506"], ["updated_at", "2016-04-22 22:27:59.363506"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.5ms) INSERT INTO "tasks" ("name", "description", "completed_at", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "The First Task"], ["description", ""], ["completed_at", "2003-03-15 09:03:51.225439"], ["person_id", 2], ["created_at", "2016-04-22 22:27:59.371561"], ["updated_at", "2016-04-22 22:27:59.371561"]] +  (0.7ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Go to Brunch"], ["description", ""], ["person_id", 4], ["created_at", "2016-04-22 22:27:59.374208"], ["updated_at", "2016-04-22 22:27:59.374208"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "completed_at", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Go to Lunch"], ["description", ""], ["completed_at", "1978-04-05 06:29:13.663091"], ["person_id", 4], ["created_at", "2016-04-22 22:27:59.376135"], ["updated_at", "2016-04-22 22:27:59.376135"]] +  (3.9ms) commit transaction +  (0.1ms) begin transaction + SQL (0.8ms) INSERT INTO "tasks" ("name", "description", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Go to Second Lunch"], ["description", ""], ["person_id", 3], ["created_at", "2016-04-22 22:27:59.382316"], ["updated_at", "2016-04-22 22:27:59.382316"]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "completed_at", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Play Video Games"], ["description", ""], ["completed_at", "1976-06-27 00:27:13.366817"], ["person_id", 1], ["created_at", "2016-04-22 22:27:59.386231"], ["updated_at", "2016-04-22 22:27:59.386231"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "completed_at", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "High Five Somebody You Don't Know"], ["description", ""], ["completed_at", "1979-07-18 14:27:51.512306"], ["person_id", 1], ["created_at", "2016-04-22 22:27:59.388495"], ["updated_at", "2016-04-22 22:27:59.388495"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "completed_at", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Plant Flowers"], ["description", ""], ["completed_at", "1978-05-18 04:09:47.482675"], ["person_id", 1], ["created_at", "2016-04-22 22:27:59.390662"], ["updated_at", "2016-04-22 22:27:59.390662"]] +  (0.8ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Call Mom"], ["description", ""], ["person_id", 1], ["created_at", "2016-04-22 22:27:59.394229"], ["updated_at", "2016-04-22 22:27:59.394229"]] +  (0.7ms) commit transaction +  (0.0ms) begin transaction + SQL (0.5ms) INSERT INTO "tasks" ("name", "description", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "She worries, you know."], ["description", ""], ["person_id", 2], ["created_at", "2016-04-22 22:27:59.396502"], ["updated_at", "2016-04-22 22:27:59.396502"]] +  (1.1ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "completed_at", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Nap."], ["description", ""], ["completed_at", "2002-10-11 10:43:07.364126"], ["person_id", 3], ["created_at", "2016-04-22 22:27:59.400791"], ["updated_at", "2016-04-22 22:27:59.400791"]] +  (0.5ms) commit transaction + 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" + + +Started GET "/" for ::1 at 2016-04-22 15:28:26 -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" ORDER BY "tasks"."id" ASC + Rendered tasks/index.html.erb within layouts/application (13.9ms) +Completed 200 OK in 371ms (Views: 358.7ms | ActiveRecord: 0.6ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-22 15:28:26 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (12.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (151.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (46.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (102.8ms) + + +Started GET "/tasks/10" for ::1 at 2016-04-22 15:28:33 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"10"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 10]] + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 50ms (Views: 40.6ms | ActiveRecord: 0.2ms) + + +Started POST "/tasks/10/complete" for ::1 at 2016-04-22 15:28:45 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"3W1rRn92hsPxYPbPrToBOf+c4SFXgzPRuf7X3zISDUx/uuufEJKFc8VQSQjj779AXwVDc67GyXfxY/PnivtFYg==", "id"=>"10"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 10]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-04-22 22:28:45.036490"], ["updated_at", "2016-04-22 22:28:45.038978"], ["id", 10]] +  (1.2ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 8ms (ActiveRecord: 1.9ms) + + +Started GET "/" for ::1 at 2016-04-22 15:28:45 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered tasks/index.html.erb within layouts/application (8.6ms) +Completed 200 OK in 95ms (Views: 93.8ms | ActiveRecord: 0.2ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-22 15:28:45 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (64.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.1ms) + + +Started GET "/" for ::1 at 2016-04-22 15:29:40 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered tasks/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 48ms (Views: 47.3ms | ActiveRecord: 0.1ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-22 15:29:40 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (54.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.9ms) + + +Started GET "/tasks/3" for ::1 at 2016-04-22 15:29:47 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 48ms (Views: 47.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 15:29:49 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 56ms (Views: 55.5ms | ActiveRecord: 0.2ms) + + +Started POST "/tasks/4/complete" for ::1 at 2016-04-22 15:30:07 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"Ky1C811tsXr+MpuQMEjGoRa02QLMcTIqdbz6WPM/T5+J+sIqMomyysoCJFd+nXjYti17UDU0yIw9Id5gS9YHsQ==", "id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 4]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-04-22 22:30:07.284486"], ["updated_at", "2016-04-22 22:30:07.285217"], ["id", 4]] +  (2.2ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 7ms (ActiveRecord: 2.9ms) + + +Started GET "/" for ::1 at 2016-04-22 15:30:07 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 50ms (Views: 49.2ms | ActiveRecord: 0.1ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-22 15:30:07 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (58.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.6ms) diff --git a/test/controllers/people_controller_test.rb b/test/controllers/people_controller_test.rb new file mode 100644 index 000000000..e75205679 --- /dev/null +++ b/test/controllers/people_controller_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class PeopleControllerTest < ActionController::TestCase + # test "the truth" do + # assert true + # end +end diff --git a/test/controllers/tasks_controller_test.rb b/test/controllers/tasks_controller_test.rb new file mode 100644 index 000000000..ab48b116d --- /dev/null +++ b/test/controllers/tasks_controller_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class TasksControllerTest < ActionController::TestCase + # test "the truth" do + # assert true + # end +end diff --git a/test/models/person_test.rb b/test/models/person_test.rb index 1d7281dad..ad04ed813 100644 --- a/test/models/person_test.rb +++ b/test/models/person_test.rb @@ -4,5 +4,4 @@ class PersonTest < ActiveSupport::TestCase # test "the truth" do # assert true # end - has_many :tasks end From 343362c971b5457e8b12181a9af6f9feb5e4e222 Mon Sep 17 00:00:00 2001 From: Nadine Curry Date: Mon, 25 Apr 2016 11:18:29 -0700 Subject: [PATCH 06/12] changed Gemfile --- Gemfile | 12 ++++++++++-- Gemfile.lock | 8 ++++++++ 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index e87c93c32..f5879287a 100644 --- a/Gemfile +++ b/Gemfile @@ -3,8 +3,7 @@ source 'https://rubygems.org' # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' gem 'rails', '4.2.6' -# Use sqlite3 as the database for Active Record -gem 'sqlite3' + # Use SCSS for stylesheets gem 'sass-rails', '~> 5.0' # Use Uglifier as compressor for JavaScript assets @@ -34,9 +33,11 @@ gem 'sdoc', '~> 0.4.0', group: :doc gem 'bootstrap-sass', '~> 3.3.6' gem 'chronic' + group :development, :test do # Call 'byebug' anywhere in the code to stop execution and get a debugger console gem 'byebug' + end group :development do @@ -45,9 +46,16 @@ group :development do # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring gem 'spring' + gem 'sqlite3' end group :development do gem "better_errors" gem "binding_of_caller" +end + +#for Heroku +group :production do + gem 'pg' + gem 'rails_12factor' end \ No newline at end of file diff --git a/Gemfile.lock b/Gemfile.lock index 69ec87f8c..75b4a7db7 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -86,6 +86,7 @@ GEM multi_json (1.11.2) nokogiri (1.6.7.2) mini_portile2 (~> 2.0.0.rc2) + pg (0.18.4) rack (1.6.4) rack-test (0.6.3) rack (>= 1.0) @@ -108,6 +109,11 @@ GEM 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.6) actionpack (= 4.2.6) activesupport (= 4.2.6) @@ -162,7 +168,9 @@ DEPENDENCIES coffee-rails (~> 4.1.0) jbuilder (~> 2.0) jquery-rails + pg rails (= 4.2.6) + rails_12factor sass-rails (~> 5.0) sdoc (~> 0.4.0) spring From c24513016490c957c76bf9e7166fe97232608ab7 Mon Sep 17 00:00:00 2001 From: Nadine Curry Date: Mon, 25 Apr 2016 16:28:35 -0700 Subject: [PATCH 07/12] Added pages showing people index and the show page --- app/controllers/people_controller.rb | 7 + app/controllers/tasks_controller.rb | 4 +- app/views/people/index.html.erb | 26 + app/views/people/show.html.erb | 5 + app/views/tasks/edit.html.erb | 10 +- app/views/tasks/index.html.erb | 1 + app/views/tasks/new.html.erb | 16 +- app/views/tasks/show.html.erb | 1 + config/routes.rb | 4 + db/development.sqlite3 | Bin 24576 -> 24576 bytes db/test.sqlite3 | Bin 24576 -> 0 bytes log/development.log | 4256 ++++++++++++++++++++++++++ 12 files changed, 4318 insertions(+), 12 deletions(-) create mode 100644 app/views/people/index.html.erb create mode 100644 app/views/people/show.html.erb delete mode 100644 db/test.sqlite3 diff --git a/app/controllers/people_controller.rb b/app/controllers/people_controller.rb index 2cdd7e442..ebc91ab0f 100644 --- a/app/controllers/people_controller.rb +++ b/app/controllers/people_controller.rb @@ -1,2 +1,9 @@ class PeopleController < ApplicationController + def index + @people = Person.all + end + + def show + @person = Person.find(params[:id]) + end end diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index 278ad9eb4..62716a84e 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -22,11 +22,11 @@ def create end def task_create_params - params.permit(task: [:name, :description]) + params.permit(task: [:name, :description, :person_id]) end def task_edit_params - params.permit(task: [:name, :description]) + params.permit(task: [:name, :description, :person_id]) end def show diff --git a/app/views/people/index.html.erb b/app/views/people/index.html.erb new file mode 100644 index 000000000..d542b07fa --- /dev/null +++ b/app/views/people/index.html.erb @@ -0,0 +1,26 @@ +

      Here's a list of Task Owners!

      +
      Task Name Remove EditMark Complete
      - <%= link_to "", {:controller => :home, :action => 'destroy', :id => task.id}, method: :delete, data: {confirm: "Are you sure?"}, class:"glyphicon glyphicon-trash"%> + <%= link_to "", {:controller => :home, :action => 'destroy', :id => task.id}, method: :delete, data: {confirm: "Are you sure you want to delete this task?"}, class:"glyphicon glyphicon-trash"%> + + <%= link_to "", "/tasks/#{task.id}/edit",class:"glyphicon glyphicon-pencil"%> + + <%= link_to "", {:controller => :home, :action => 'complete', :id => task.id}, method: :update, data: {confirm: "Are you sure this task is complete?"}, class:"glyphicon glyphicon-ok"%>
      - <%= link_to "", {:controller => :home, :action => 'destroy', :id => task.id}, method: :delete, data: {confirm: "Are you sure you want to delete this task?"}, class:"glyphicon glyphicon-trash"%> + <%= task.person.name %> + + <%= link_to "", {:controller => :tasks, :action => 'destroy', :id => task.id}, method: :delete, data: {confirm: "Are you sure you want to delete this task?"}, class:"glyphicon glyphicon-trash"%> <%= link_to "", "/tasks/#{task.id}/edit",class:"glyphicon glyphicon-pencil"%> - <%= link_to "", {:controller => :home, :action => 'complete', :id => task.id}, method: :update, data: {confirm: "Are you sure this task is complete?"}, class:"glyphicon glyphicon-ok"%> + <%= link_to "", {:controller => :tasks, :action => 'complete', :id => task.id}, method: :update, data: {confirm: "Are you sure this task is complete?"}, class:"glyphicon glyphicon-ok" if task.completed_at == nil%>
      + +
      <%=params%>
      + + + + + + + + + + <% @people.each do |person| %> + + + + + <%end%> + + +
      OwnersUnfinished Tasks
      + <%= link_to person.name, "/people/#{person.id}" %> + + <%= Task.where(person_id: person.id, completed_at: nil).length %> +
      \ No newline at end of file diff --git a/app/views/people/show.html.erb b/app/views/people/show.html.erb new file mode 100644 index 000000000..86e1ebeeb --- /dev/null +++ b/app/views/people/show.html.erb @@ -0,0 +1,5 @@ +

      <%= @person.name %>

      +
        +
      • Description: <%= @person.email %>
      • +
      • Unfinished Tasks: <%=Task.where(person_id: @person.id, completed_at: nil).length%>
      • +
      diff --git a/app/views/tasks/edit.html.erb b/app/views/tasks/edit.html.erb index 67d6d1329..fc6746e02 100644 --- a/app/views/tasks/edit.html.erb +++ b/app/views/tasks/edit.html.erb @@ -3,9 +3,11 @@
      <%=params%>
      <%= form_for @task do |f| %> - <%= f.label :name %> - <%= f.text_field :name%> - <%= f.label :description %> - <%= f.text_field :description%> +
    • <%= f.label :name %> + <%= f.text_field :name%>
    • +
    • <%= f.label :description %> + <%= f.text_field :description%>
    • +
    • <%= f.label :person_id %> + <%= f.collection_select(:person_id, Person.all, :id, :name) %>
    • <%= f.submit %> <%end%> \ No newline at end of file diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb index 19b14c944..e78090e13 100644 --- a/app/views/tasks/index.html.erb +++ b/app/views/tasks/index.html.erb @@ -6,6 +6,7 @@ Task Name + Assigned To Remove Edit Mark Complete diff --git a/app/views/tasks/new.html.erb b/app/views/tasks/new.html.erb index 9b37dc781..91a41a8e1 100644 --- a/app/views/tasks/new.html.erb +++ b/app/views/tasks/new.html.erb @@ -2,10 +2,14 @@
      <%=params%>
      +
        <%= form_for @task do |f| %> - <%= f.label :name %> - <%= f.text_field :name%> - <%= f.label :description %> - <%= f.text_field :description%> - <%= f.submit %> -<%end%> \ No newline at end of file +
      • <%= f.label :name %> + <%= f.text_field :name%>
      • +
      • <%= f.label :description %> + <%= f.text_field :description%>
      • +
      • <%= f.label :person_id %> + <%= f.collection_select(:person_id, Person.all, :id, :name) %>
      • +
      • <%= f.submit %>
      • +<%end%> +
      \ No newline at end of file diff --git a/app/views/tasks/show.html.erb b/app/views/tasks/show.html.erb index 89ccbd99c..649c8dcb4 100644 --- a/app/views/tasks/show.html.erb +++ b/app/views/tasks/show.html.erb @@ -1,6 +1,7 @@

      <%= @task.name %>

      • Description: <%= @task.description %>
      • +
      • Assigned to: <%= @task.person.name %>
      • Status: <%= @task.completed_at != nil ? "Completed" : "Not done"%>
      • Completed on: <%= @task.completed_at %>
      diff --git a/config/routes.rb b/config/routes.rb index 10ffb2523..b3e1cf1fc 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -14,6 +14,10 @@ post "/tasks/:id/complete" => "tasks#complete" + get "/people" => "people#index", as: "people" + + get "/people/:id" => "people#show", as: "person" + # The priority is based upon order of creation: first created -> highest priority. # See how all your routes lay out with "rake routes". diff --git a/db/development.sqlite3 b/db/development.sqlite3 index 3c3f7b26d3a4b29183cc6aafc69a31d651b9c977..bb0068e8b5793dc25781b949808c88e93d81f7df 100644 GIT binary patch delta 1315 zcmaKszfTik7{~8N3#IMbYYAE#A)L{m4c_H_-uK>n@4X1v1sxEHFpw~qN}6CKlt7Im zG)`{HJ25!x-~uM5abn~j&_NU9h^*9{9<89 zQIx*m>0HSd*J*J`vA(5I?wXR!jwr^Ck;;ysk7#hO`6?ri(XrmFB;}NGLG6=^#%paZ zA%En`YEqsz#?pb#*J81#J}t>#=tH91?ALY>Q+4U0d#Wm*AzRgC3r+0b{A4(eo7c25 z!Qf(t5CTk4oL4(1AP8X3aYIerI8=b6ax0?ghLh}e^TiK;-VXt|V*}9!cDW#%Psi^ZS^(VEBnQEi95vo|& zu?RB>^$GZl*dFDKiL;5elujwhgOKZy^?a(_y>8hRg?Tdl4&%<0vz z7n=m*pa^aOH-Q8;eN1fb5su?UbesZp8JwCb#NHnw*_s%i4LDfXwFn6tL#Ypr?K1A2 zWe=FkPc>tbA(1dSJm*mh2bzuv%x8fhvmsa>&*_mKF;_cjp` z{ehlRE=QxkRW}=TbLR2d@=DY^z!nG-JfC8pP}}i5;r5;zW}>TkEFW!NdqfeEcc#p^ zDJtNMLPCnbQw9HXG(bb@Nes0Kx)@h6+9wHWrKl>)kJKc!vyizK9cF zA=38EBLij9s$NppYxVWjT4F!{CD*;JTu=f%``0FNVDw5n9yt72q^_ZJ5fZsLT8_ng XLWrKN;1Q8;{*Dj+KeSi1+zZKXZl)AR delta 1327 zcmZ{k&ubGw6vy{R+N4P~n}`yMRn{MVdUrMy)%H?sq>U{ifi*6l}nM!vN@ zeL#M($K|EsvC%N(H>;+b(kR^+*{ti?>hQ4s>S?Drzua1FwO4!phV-ltJB^>EQRE;L zARbWRVTLJS2tein;-WJ|4$WOp#zRO+dVEOalet$9BBAg4Uk(*s_Xy#aU(F*FttFlhdG8m+vPozl;*Z zAOPG$J|TX3>OR7-kM#CX1i3kz&uJH|dcCesH&?wrwSGXT2QVW7^bsChRhAO~xPX1A zyU7<^ei|E1I4Bqes4qOOT|{JYd?Ze*TTwv}N_Q|K3)!4@Gt@rRSZ=O#oT=sZi`LpY z6x??Kb)oM75&#hp?hzj`PSdXjjQtZ;Io&rRL~?I@bXuJ$T)@LKA&D9edK4o3pN8{& zBGPY*h=da(4X*l>xrjRega<;bI+*#8r;1e7#r;Od&P7B`+e7(o;!483l+t&7jfgpK z=Co^3>F>3jPTRTvd}U!VHjgO(9KZr3LS2kuaHh=h?VLe;D$(+(ag30BaMwwQ;%egj z)D$C6EdQg8oXu@oG4 diff --git a/db/test.sqlite3 b/db/test.sqlite3 deleted file mode 100644 index a0eb6e4407cf8af2fd3c3e5f13e7f9a9ab127aa0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 24576 zcmeI#&u`LT7zgl{0*#AU^wRA1<~^<13_pg%C7Ot{F+^52ghUR8RCu>F(!$!ZctsEX zYm5Jao;`Tj&7+A=fkrBs9yDgb@0;}3)3;CG=hI%E=SK}E6zq89yLQNSrMx7|(j&$s zNm6Oc(iV?2okUwa|T+JjqPa$j@r=@bJ35P$##AOHafKmY;| zfWW^Mn5r37e^`*G1;-nRHxth}n}}Y}KNYUsbDb044xNz~tOTd31k*4XxAP$%-WPG`WW%C`B`Y_Y>u{h-$BvS((O z)jI8F-J*vMOp9_a^6xP2*{~*NA7qiLNVysA!h?S6rtk^n&0;Y zT_nTH`6uIO^40gp1UvG2(YhTk6eq$r4pUiudt2_#h0li6_VxlnAKdGUAbF`I7=F6B z71g#wPa4yjtm>Pa^4piQoMSPfV&?l)A_JcX|B592n$9p`_$O3G)SFY&j{yM)KmY;| zfB*y_009U<00Izzz#0pn|6k*ei_#zf0SG_<0uX=z1Rwwb2tWV=3jy^1_!S@k0SG_< z0uX=z1Rwwb2tWV=>n{-X|BCiO(k``6bijZB1Rwwb2tWV=5P$##AOHafK;T*n"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 59ms (Views: 54.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2" for ::1 at 2016-04-25 15:24:18 -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.3ms) +Completed 200 OK in 46ms (Views: 45.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-25 15:27:52 -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" ORDER BY "tasks"."id" ASC + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 4]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 4]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/index.html.erb within layouts/application (32.4ms) +Completed 200 OK in 359ms (Views: 348.4ms | ActiveRecord: 1.4ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-25 15:27:52 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (84.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.2ms) + + +Started GET "/tasks/4/edit" for ::1 at 2016-04-25 15:28:11 -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 (6.9ms) +Completed 200 OK in 50ms (Views: 46.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-25 15:29:53 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 4]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 4]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/index.html.erb within layouts/application (7.3ms) +Completed 200 OK in 48ms (Views: 47.5ms | ActiveRecord: 0.5ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-25 15:29:53 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (59.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (83.8ms) + + +Started GET "/tasks/2" for ::1 at 2016-04-25 15:29:55 -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]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 4]] + Rendered tasks/show.html.erb within layouts/application (1.7ms) +Completed 200 OK in 38ms (Views: 36.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/4" for ::1 at 2016-04-25 15:30:02 -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]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 39ms (Views: 37.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/4" for ::1 at 2016-04-25 15:36:26 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 4]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 41ms (Views: 39.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/css/bootstrap.min.css" for ::1 at 2016-04-25 15:36:26 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (59.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (79.4ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-25 15:36:27 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected '>' +/Users/Nadine/C5/projects/TaskListRails/app/views/tasks/new.html.erb:13: syntax error, unexpected keyword_end, expecting ')' +'.freeze;end;@output_buffer.to_s + ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/tasks/new.html.erb:14: syntax error, unexpected keyword_ensure, expecting ')' +/Users/Nadine/C5/projects/TaskListRails/app/views/tasks/new.html.erb:16: syntax error, unexpected keyword_end, expecting ')': + app/views/tasks/new.html.erb:10:in `' + actionview (4.2.6) lib/action_view/template.rb:296:in `compile' + actionview (4.2.6) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.6) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.6) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasks/new" for ::1 at 2016-04-25 15:36:27 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.4ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected '>' +/Users/Nadine/C5/projects/TaskListRails/app/views/tasks/new.html.erb:13: syntax error, unexpected keyword_end, expecting ')' +'.freeze;end;@output_buffer.to_s + ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/tasks/new.html.erb:14: syntax error, unexpected keyword_ensure, expecting ')' +/Users/Nadine/C5/projects/TaskListRails/app/views/tasks/new.html.erb:16: syntax error, unexpected keyword_end, expecting ')': + app/views/tasks/new.html.erb:10:in `' + actionview (4.2.6) lib/action_view/template.rb:296:in `compile' + actionview (4.2.6) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.6) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.6) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/cb844d641a857e30/variables" for ::1 at 2016-04-25 15:36:27 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-04-25 15:36:46 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (7.6ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `' for #: + activemodel (4.2.6) lib/active_model/attribute_methods.rb:433:in `method_missing' + actionview (4.2.6) lib/action_view/helpers/tags/base.rb:28:in `value' + actionview (4.2.6) lib/action_view/helpers/tags/select.rb:16:in `block in render' + actionview (4.2.6) lib/action_view/helpers/tags/select.rb:16:in `render' + actionview (4.2.6) lib/action_view/helpers/form_options_helper.rb:163:in `select' + actionview (4.2.6) lib/action_view/helpers/form_options_helper.rb:777:in `select' + app/views/tasks/new.html.erb:11:in `block in _app_views_tasks_new_html_erb__2317619854957449430_70116093463220' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `capture' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:444:in `form_for' + app/views/tasks/new.html.erb:5:in `_app_views_tasks_new_html_erb__2317619854957449430_70116093463220' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/80f10b3a2f7bce5e/variables" for ::1 at 2016-04-25 15:36:46 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-04-25 15:42:48 -0700 +Processing by TasksController#new as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasks/new.html.erb within layouts/application (5.0ms) +Completed 200 OK in 52ms (Views: 51.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/css/bootstrap.min.css" for ::1 at 2016-04-25 15:42:48 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (58.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (83.2ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-25 15:44:23 -0700 +Processing by TasksController#new as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasks/new.html.erb within layouts/application (4.3ms) +Completed 200 OK in 39ms (Views: 38.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/css/bootstrap.min.css" for ::1 at 2016-04-25 15:44:23 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (54.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.0ms) + + +Started GET "/" for ::1 at 2016-04-25 15:45:55 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 4]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 4]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/index.html.erb within layouts/application (7.7ms) +Completed 200 OK in 52ms (Views: 51.0ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-04-25 15:45:57 -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]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/edit.html.erb within layouts/application (2.5ms) +Completed 200 OK in 38ms (Views: 37.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 15:46:02 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 4]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 4]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/index.html.erb within layouts/application (8.1ms) +Completed 200 OK in 48ms (Views: 46.6ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-04-25 15:46:03 -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]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/edit.html.erb within layouts/application (2.1ms) +Completed 200 OK in 46ms (Views: 45.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/1" for ::1 at 2016-04-25 15:46:06 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"pX+NcXggcpf1xv0ZZbFlsBIakhZ4nbqczvTk7ejcmP4HqA2oF8RxJ8H2Qt4rZNvJsoMwRIHYQDqGacDVUDXQ0A==", "task"=>{"name"=>"The First Task", "description"=>"", "person_id"=>"3"}, "commit"=>"Update Task", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +Unpermitted parameter: person_id +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.1ms) begin transaction +  (0.0ms) commit transaction + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 40ms (Views: 37.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/css/bootstrap.min.css" for ::1 at 2016-04-25 15:46:06 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (54.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.8ms) + + +Started GET "/" for ::1 at 2016-04-25 15:46:14 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 4]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 4]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/index.html.erb within layouts/application (11.3ms) +Completed 200 OK in 51ms (Views: 49.4ms | ActiveRecord: 0.6ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-25 15:46:14 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (7.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (65.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.5ms) + + +Started GET "/" for ::1 at 2016-04-25 15:46:45 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 4]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 4]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/index.html.erb within layouts/application (17.2ms) +Completed 200 OK in 59ms (Views: 55.6ms | ActiveRecord: 1.1ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-25 15:46:45 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (58.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.8ms) + + +Started GET "/tasks/1" for ::1 at 2016-04-25 15:46:48 -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]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 39ms (Views: 36.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-04-25 15:46:50 -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]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/edit.html.erb within layouts/application (2.9ms) +Completed 200 OK in 45ms (Views: 43.0ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/1" for ::1 at 2016-04-25 15:46:52 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"efIXV/C6TJWzX3XzolpKz1QmNLxa9UoluNlIgFQP3nrbJZeOn15PJYdvyjTsj/S29L+W7qOwsIPwRGy47OaWVA==", "task"=>{"name"=>"The First Task", "description"=>"", "person_id"=>"3"}, "commit"=>"Update Task", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "person_id" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["person_id", 3], ["updated_at", "2016-04-25 22:46:52.979690"], ["id", 1]] +  (1.1ms) commit transaction + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/show.html.erb within layouts/application (1.7ms) +Completed 200 OK in 45ms (Views: 40.5ms | ActiveRecord: 1.7ms) + + +Started GET "/tasks/css/bootstrap.min.css" for ::1 at 2016-04-25 15:46:53 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (53.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (83.6ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-25 15:46:56 -0700 +Processing by TasksController#new as HTML + Person Load (0.4ms) SELECT "people".* FROM "people" + Rendered tasks/new.html.erb within layouts/application (3.9ms) +Completed 200 OK in 49ms (Views: 48.2ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/css/bootstrap.min.css" for ::1 at 2016-04-25 15:46:56 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (53.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (80.5ms) + + +Started POST "/tasks" for ::1 at 2016-04-25 15:47:01 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"8KEWYlRPZFazvEGvKIHJ5Uvomf7shE2BQuBGovuEzudSdpa7O6tn5oeM/mhmVHec63E7rBXBtycKfWKaQ22GyQ==", "task"=>{"name"=>"Shower", "description"=>"Tomorrow", "person_id"=>"1"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Shower"], ["description", "Tomorrow"], ["person_id", 1], ["created_at", "2016-04-25 22:47:01.655257"], ["updated_at", "2016-04-25 22:47:01.655257"]] +  (0.9ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.4ms) + + +Started GET "/" for ::1 at 2016-04-25 15:47:01 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 4]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 4]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (8.6ms) +Completed 200 OK in 45ms (Views: 44.0ms | ActiveRecord: 0.6ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-25 15:47:01 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (56.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.8ms) + + +Started GET "/people" for ::1 at 2016-04-25 15:56:18 -0700 +Processing by PeopleController#index as HTML + Rendered people/index.html.erb within layouts/application (3.9ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/people/index.html.erb:14:in `_app_views_people_index_html_erb___3603086926899742696_70116066030060' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/fd222b538848bed5/variables" for ::1 at 2016-04-25 15:56:18 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 15:57:56 -0700 +Processing by PeopleController#index as HTML + Rendered people/index.html.erb within layouts/application (5.1ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/people/index.html.erb:14:in `_app_views_people_index_html_erb___3603086926899742696_70116095843580' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/9938cb0e9c99a958/variables" for ::1 at 2016-04-25 15:57:56 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 15:57:59 -0700 +Processing by PeopleController#index as HTML + Rendered people/index.html.erb within layouts/application (2.6ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/people/index.html.erb:14:in `_app_views_people_index_html_erb___3603086926899742696_70116095843580' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/021d0dae8e18a81b/variables" for ::1 at 2016-04-25 15:57:59 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 15:58:41 -0700 +Processing by PeopleController#index as HTML + Person Load (0.3ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC + Rendered people/index.html.erb within layouts/application (8.1ms) +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.6ms) + +NoMethodError - undefined method `tasks' for #: + activemodel (4.2.6) lib/active_model/attribute_methods.rb:433:in `method_missing' + app/views/people/index.html.erb:21:in `block in _app_views_people_index_html_erb___3603086926899742696_70116095843580' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/people/index.html.erb:14:in `_app_views_people_index_html_erb___3603086926899742696_70116095843580' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/3eed249897e79657/variables" for ::1 at 2016-04-25 15:58:41 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 15:59:08 -0700 +Processing by PeopleController#index as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC + Rendered people/index.html.erb within layouts/application (5.7ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `task' for #: + activemodel (4.2.6) lib/active_model/attribute_methods.rb:433:in `method_missing' + app/views/people/index.html.erb:21:in `block in _app_views_people_index_html_erb___3603086926899742696_70116066551020' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/people/index.html.erb:14:in `_app_views_people_index_html_erb___3603086926899742696_70116066551020' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/d1241f08f0620ca3/variables" for ::1 at 2016-04-25 15:59:08 -0700 +  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)  +  (0.5ms) 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 (20160419210846) +  (0.1ms) begin transaction +  (0.3ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" varchar, "completed_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) + SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160419210846"]] +  (0.7ms) commit transaction +Migrating to CreatePeople (20160422215930) +  (0.1ms) begin transaction +  (0.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) + SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160422215930"]] +  (0.7ms) commit transaction +Migrating to PersonTaskAssociation (20160422215946) +  (0.0ms) begin transaction +  (0.3ms) ALTER TABLE "tasks" ADD "person_id" integer + SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160422215946"]] +  (0.6ms) commit transaction + 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.0ms) begin transaction + SQL (0.3ms) INSERT INTO "people" ("name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Jack"], ["email", "something@google.com"], ["created_at", "2016-04-25 23:04:46.300059"], ["updated_at", "2016-04-25 23:04:46.300059"]] +  (1.7ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "people" ("name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Pandora"], ["email", "pandora@mybox.com"], ["created_at", "2016-04-25 23:04:46.304811"], ["updated_at", "2016-04-25 23:04:46.304811"]] +  (0.8ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "people" ("name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Marley"], ["email", "bob@rasta.com"], ["created_at", "2016-04-25 23:04:46.307211"], ["updated_at", "2016-04-25 23:04:46.307211"]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "people" ("name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Rosa"], ["email", "chihuahua@kickassdogs.com"], ["created_at", "2016-04-25 23:04:46.309005"], ["updated_at", "2016-04-25 23:04:46.309005"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "completed_at", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "The First Task"], ["description", ""], ["completed_at", "1970-09-22 11:13:36.765231"], ["person_id", 2], ["created_at", "2016-04-25 23:04:46.318492"], ["updated_at", "2016-04-25 23:04:46.318492"]] +  (0.7ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Go to Brunch"], ["description", ""], ["person_id", 4], ["created_at", "2016-04-25 23:04:46.320648"], ["updated_at", "2016-04-25 23:04:46.320648"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "completed_at", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Go to Lunch"], ["description", ""], ["completed_at", "2010-02-05 16:55:58.590599"], ["person_id", 4], ["created_at", "2016-04-25 23:04:46.322416"], ["updated_at", "2016-04-25 23:04:46.322416"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Go to Second Lunch"], ["description", ""], ["person_id", 3], ["created_at", "2016-04-25 23:04:46.324138"], ["updated_at", "2016-04-25 23:04:46.324138"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "tasks" ("name", "description", "completed_at", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Play Video Games"], ["description", ""], ["completed_at", "1986-09-12 06:55:39.713436"], ["person_id", 1], ["created_at", "2016-04-25 23:04:46.325837"], ["updated_at", "2016-04-25 23:04:46.325837"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "completed_at", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "High Five Somebody You Don't Know"], ["description", ""], ["completed_at", "1974-08-06 08:39:49.872954"], ["person_id", 1], ["created_at", "2016-04-25 23:04:46.327559"], ["updated_at", "2016-04-25 23:04:46.327559"]] +  (0.7ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "completed_at", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Plant Flowers"], ["description", ""], ["completed_at", "1989-01-28 20:04:52.560976"], ["person_id", 1], ["created_at", "2016-04-25 23:04:46.329560"], ["updated_at", "2016-04-25 23:04:46.329560"]] +  (0.7ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Call Mom"], ["description", ""], ["person_id", 1], ["created_at", "2016-04-25 23:04:46.331528"], ["updated_at", "2016-04-25 23:04:46.331528"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "She worries, you know."], ["description", ""], ["person_id", 2], ["created_at", "2016-04-25 23:04:46.333279"], ["updated_at", "2016-04-25 23:04:46.333279"]] +  (0.7ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "completed_at", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Nap."], ["description", ""], ["completed_at", "2001-09-10 17:56:05.813309"], ["person_id", 3], ["created_at", "2016-04-25 23:04:46.335204"], ["updated_at", "2016-04-25 23:04:46.335204"]] +  (0.6ms) commit transaction + + +Started GET "/people" for ::1 at 2016-04-25 16:05:00 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC + Rendered people/index.html.erb within layouts/application (14.7ms) +Completed 500 Internal Server Error in 30ms (ActiveRecord: 0.4ms) + +NoMethodError - undefined method `task' for #: + activemodel (4.2.6) lib/active_model/attribute_methods.rb:433:in `method_missing' + app/views/people/index.html.erb:21:in `block in _app_views_people_index_html_erb__1427648813426122732_70314677501080' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/people/index.html.erb:14:in `_app_views_people_index_html_erb__1427648813426122732_70314677501080' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/21d6955875ab8612/variables" for ::1 at 2016-04-25 16:05:01 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 16:05:01 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC + Rendered people/index.html.erb within layouts/application (6.7ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `task' for #: + activemodel (4.2.6) lib/active_model/attribute_methods.rb:433:in `method_missing' + app/views/people/index.html.erb:21:in `block in _app_views_people_index_html_erb__1427648813426122732_70314677501080' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/people/index.html.erb:14:in `_app_views_people_index_html_erb__1427648813426122732_70314677501080' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/7ff7d38233953b2b/variables" for ::1 at 2016-04-25 16:05:02 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 16:05:02 -0700 +Processing by PeopleController#index as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC + Rendered people/index.html.erb within layouts/application (5.3ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `task' for #: + activemodel (4.2.6) lib/active_model/attribute_methods.rb:433:in `method_missing' + app/views/people/index.html.erb:21:in `block in _app_views_people_index_html_erb__1427648813426122732_70314677501080' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/people/index.html.erb:14:in `_app_views_people_index_html_erb__1427648813426122732_70314677501080' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/91255c3ccddbb9af/variables" for ::1 at 2016-04-25 16:05:02 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 16:05:11 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC + Rendered people/index.html.erb within layouts/application (13.3ms) +Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `tasks' for #: + activemodel (4.2.6) lib/active_model/attribute_methods.rb:433:in `method_missing' + app/views/people/index.html.erb:21:in `block in _app_views_people_index_html_erb__1427648813426122732_70314668544840' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/people/index.html.erb:14:in `_app_views_people_index_html_erb__1427648813426122732_70314668544840' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f3f51b13c8385abc/variables" for ::1 at 2016-04-25 16:05:11 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 16:05:12 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC + Rendered people/index.html.erb within layouts/application (6.0ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `tasks' for #: + activemodel (4.2.6) lib/active_model/attribute_methods.rb:433:in `method_missing' + app/views/people/index.html.erb:21:in `block in _app_views_people_index_html_erb__1427648813426122732_70314668544840' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/people/index.html.erb:14:in `_app_views_people_index_html_erb__1427648813426122732_70314668544840' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f3b6442d2b6de384/variables" for ::1 at 2016-04-25 16:05:12 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 16:05:13 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC + Rendered people/index.html.erb within layouts/application (6.4ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `tasks' for #: + activemodel (4.2.6) lib/active_model/attribute_methods.rb:433:in `method_missing' + app/views/people/index.html.erb:21:in `block in _app_views_people_index_html_erb__1427648813426122732_70314668544840' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/people/index.html.erb:14:in `_app_views_people_index_html_erb__1427648813426122732_70314668544840' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/92372c72d9bb4335/variables" for ::1 at 2016-04-25 16:05:13 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 16:05:16 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC + Rendered people/index.html.erb within layouts/application (14.8ms) +Completed 500 Internal Server Error in 18ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `tasks' for #: + activemodel (4.2.6) lib/active_model/attribute_methods.rb:433:in `method_missing' + app/views/people/index.html.erb:21:in `block in _app_views_people_index_html_erb__1427648813426122732_70314668544840' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/people/index.html.erb:14:in `_app_views_people_index_html_erb__1427648813426122732_70314668544840' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/40cdc503d1588d72/variables" for ::1 at 2016-04-25 16:05:16 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 16:07:03 -0700 +Processing by PeopleController#index as HTML + Person Load (0.3ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (9.6ms) +Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.5ms) + +NoMethodError - undefined method `tasks' for #: + activemodel (4.2.6) lib/active_model/attribute_methods.rb:433:in `method_missing' + app/views/people/index.html.erb:21:in `block in _app_views_people_index_html_erb__1427648813426122732_70314668544840' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/people/index.html.erb:14:in `_app_views_people_index_html_erb__1427648813426122732_70314668544840' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/1951d6b913a483a1/variables" for ::1 at 2016-04-25 16:07:03 -0700 + + +Started GET "/people/" for ::1 at 2016-04-25 16:07:08 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (5.1ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `tasks' for #: + activemodel (4.2.6) lib/active_model/attribute_methods.rb:433:in `method_missing' + app/views/people/index.html.erb:21:in `block in _app_views_people_index_html_erb__1427648813426122732_70314668544840' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/people/index.html.erb:14:in `_app_views_people_index_html_erb__1427648813426122732_70314668544840' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/eb55a421cee2d8b9/variables" for ::1 at 2016-04-25 16:07:08 -0700 + + +Started GET "/people/" for ::1 at 2016-04-25 16:07:23 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (5.0ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `task' for #: + activemodel (4.2.6) lib/active_model/attribute_methods.rb:433:in `method_missing' + app/views/people/index.html.erb:21:in `block in _app_views_people_index_html_erb__1427648813426122732_70314702871360' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/people/index.html.erb:14:in `_app_views_people_index_html_erb__1427648813426122732_70314702871360' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/93cd7f4bfc698c24/variables" for ::1 at 2016-04-25 16:07:23 -0700 +  (1.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  +  (1.0ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" varchar, "completed_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "person_id" integer) +  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)  +  (0.1ms) select sqlite_version(*) +  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") +  (0.1ms) SELECT version FROM "schema_migrations" +  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20160422215946') +  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20160419210846') +  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20160422215930') +  (0.7ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) +  (0.8ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" varchar, "completed_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "person_id" integer)  +  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) +  (0.1ms) select sqlite_version(*) +  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") +  (0.1ms) SELECT version FROM "schema_migrations" +  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20160422215946') +  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20160419210846') +  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20160422215930') + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.0ms) begin transaction + SQL (0.3ms) INSERT INTO "people" ("name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Jack"], ["email", "something@google.com"], ["created_at", "2016-04-25 23:10:23.741906"], ["updated_at", "2016-04-25 23:10:23.741906"]] +  (0.8ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "people" ("name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Pandora"], ["email", "pandora@mybox.com"], ["created_at", "2016-04-25 23:10:23.745451"], ["updated_at", "2016-04-25 23:10:23.745451"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "people" ("name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Marley"], ["email", "bob@rasta.com"], ["created_at", "2016-04-25 23:10:23.747529"], ["updated_at", "2016-04-25 23:10:23.747529"]] +  (0.7ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "people" ("name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Rosa"], ["email", "chihuahua@kickassdogs.com"], ["created_at", "2016-04-25 23:10:23.749673"], ["updated_at", "2016-04-25 23:10:23.749673"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.6ms) INSERT INTO "tasks" ("name", "description", "completed_at", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "The First Task"], ["description", ""], ["completed_at", "2006-04-26 16:26:23.743179"], ["person_id", 2], ["created_at", "2016-04-25 23:10:23.764671"], ["updated_at", "2016-04-25 23:10:23.764671"]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Go to Brunch"], ["description", ""], ["person_id", 4], ["created_at", "2016-04-25 23:10:23.768175"], ["updated_at", "2016-04-25 23:10:23.768175"]] +  (1.1ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "completed_at", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Go to Lunch"], ["description", ""], ["completed_at", "1987-09-08 09:02:44.406787"], ["person_id", 4], ["created_at", "2016-04-25 23:10:23.771223"], ["updated_at", "2016-04-25 23:10:23.771223"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Go to Second Lunch"], ["description", ""], ["person_id", 3], ["created_at", "2016-04-25 23:10:23.773435"], ["updated_at", "2016-04-25 23:10:23.773435"]] +  (1.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "completed_at", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Play Video Games"], ["description", ""], ["completed_at", "1987-07-17 22:30:20.211511"], ["person_id", 1], ["created_at", "2016-04-25 23:10:23.776628"], ["updated_at", "2016-04-25 23:10:23.776628"]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "completed_at", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "High Five Somebody You Don't Know"], ["description", ""], ["completed_at", "1997-03-23 03:21:05.382129"], ["person_id", 1], ["created_at", "2016-04-25 23:10:23.786082"], ["updated_at", "2016-04-25 23:10:23.786082"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "completed_at", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Plant Flowers"], ["description", ""], ["completed_at", "1975-08-16 21:00:14.689499"], ["person_id", 1], ["created_at", "2016-04-25 23:10:23.788252"], ["updated_at", "2016-04-25 23:10:23.788252"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Call Mom"], ["description", ""], ["person_id", 1], ["created_at", "2016-04-25 23:10:23.790239"], ["updated_at", "2016-04-25 23:10:23.790239"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "She worries, you know."], ["description", ""], ["person_id", 2], ["created_at", "2016-04-25 23:10:23.792124"], ["updated_at", "2016-04-25 23:10:23.792124"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "completed_at", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Nap."], ["description", ""], ["completed_at", "1999-06-23 01:45:22.429531"], ["person_id", 3], ["created_at", "2016-04-25 23:10:23.794005"], ["updated_at", "2016-04-25 23:10:23.794005"]] +  (0.7ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.0ms) begin transaction + SQL (0.4ms) INSERT INTO "people" ("name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Jack"], ["email", "something@google.com"], ["created_at", "2016-04-25 23:10:32.584759"], ["updated_at", "2016-04-25 23:10:32.584759"]] +  (1.4ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "people" ("name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Pandora"], ["email", "pandora@mybox.com"], ["created_at", "2016-04-25 23:10:32.589071"], ["updated_at", "2016-04-25 23:10:32.589071"]] +  (0.5ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "people" ("name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Marley"], ["email", "bob@rasta.com"], ["created_at", "2016-04-25 23:10:32.590719"], ["updated_at", "2016-04-25 23:10:32.590719"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "people" ("name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Rosa"], ["email", "chihuahua@kickassdogs.com"], ["created_at", "2016-04-25 23:10:32.592235"], ["updated_at", "2016-04-25 23:10:32.592235"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "completed_at", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "The First Task"], ["description", ""], ["completed_at", "2008-01-02 01:17:07.197529"], ["person_id", 2], ["created_at", "2016-04-25 23:10:32.600753"], ["updated_at", "2016-04-25 23:10:32.600753"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Go to Brunch"], ["description", ""], ["person_id", 4], ["created_at", "2016-04-25 23:10:32.602866"], ["updated_at", "2016-04-25 23:10:32.602866"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "completed_at", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Go to Lunch"], ["description", ""], ["completed_at", "1987-07-21 10:43:43.818070"], ["person_id", 4], ["created_at", "2016-04-25 23:10:32.604581"], ["updated_at", "2016-04-25 23:10:32.604581"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "tasks" ("name", "description", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Go to Second Lunch"], ["description", ""], ["person_id", 3], ["created_at", "2016-04-25 23:10:32.606241"], ["updated_at", "2016-04-25 23:10:32.606241"]] +  (0.5ms) commit transaction +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "tasks" ("name", "description", "completed_at", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Play Video Games"], ["description", ""], ["completed_at", "1987-09-18 23:52:39.894788"], ["person_id", 1], ["created_at", "2016-04-25 23:10:32.607767"], ["updated_at", "2016-04-25 23:10:32.607767"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "tasks" ("name", "description", "completed_at", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "High Five Somebody You Don't Know"], ["description", ""], ["completed_at", "1977-04-30 17:37:28.608406"], ["person_id", 1], ["created_at", "2016-04-25 23:10:32.609454"], ["updated_at", "2016-04-25 23:10:32.609454"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "completed_at", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Plant Flowers"], ["description", ""], ["completed_at", "1972-06-05 11:50:46.727464"], ["person_id", 1], ["created_at", "2016-04-25 23:10:32.611407"], ["updated_at", "2016-04-25 23:10:32.611407"]] +  (0.5ms) commit transaction +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "tasks" ("name", "description", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Call Mom"], ["description", ""], ["person_id", 1], ["created_at", "2016-04-25 23:10:32.613166"], ["updated_at", "2016-04-25 23:10:32.613166"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "She worries, you know."], ["description", ""], ["person_id", 2], ["created_at", "2016-04-25 23:10:32.614876"], ["updated_at", "2016-04-25 23:10:32.614876"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "completed_at", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Nap."], ["description", ""], ["completed_at", "1971-12-23 02:20:55.729892"], ["person_id", 3], ["created_at", "2016-04-25 23:10:32.616708"], ["updated_at", "2016-04-25 23:10:32.616708"]] +  (0.6ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + Person Load (1.4ms) SELECT "people".* FROM "people" + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + + +Started GET "/people/" for ::1 at 2016-04-25 16:13:57 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by PeopleController#index as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 3]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 4]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 5]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 6]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 7]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 8]] + Rendered people/index.html.erb within layouts/application (26.1ms) +Completed 200 OK in 366ms (Views: 355.6ms | ActiveRecord: 1.4ms) + + +Started GET "/people/css/bootstrap.min.css" for ::1 at 2016-04-25 16:13:58 -0700 + +ActionController::RoutingError (No route matches [GET] "/people/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (10.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (79.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (53.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (103.3ms) + Person Load (1.2ms) SELECT "people".* FROM "people" +  (1.7ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  +  (0.8ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" varchar, "completed_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "person_id" integer) +  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)  +  (0.1ms) select sqlite_version(*) +  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") +  (0.1ms) SELECT version FROM "schema_migrations" +  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20160422215946') +  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20160419210846') +  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20160422215930') +  (0.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) +  (0.8ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" varchar, "completed_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "person_id" integer)  +  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) +  (0.0ms) select sqlite_version(*) +  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") +  (0.1ms) SELECT version FROM "schema_migrations" +  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20160422215946') +  (2.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20160419210846') +  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20160422215930') + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.0ms) begin transaction + SQL (0.3ms) INSERT INTO "people" ("name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Jack"], ["email", "something@google.com"], ["created_at", "2016-04-25 23:15:49.555202"], ["updated_at", "2016-04-25 23:15:49.555202"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "people" ("name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Pandora"], ["email", "pandora@mybox.com"], ["created_at", "2016-04-25 23:15:49.558751"], ["updated_at", "2016-04-25 23:15:49.558751"]] +  (0.8ms) commit transaction +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "people" ("name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Marley"], ["email", "bob@rasta.com"], ["created_at", "2016-04-25 23:15:49.561137"], ["updated_at", "2016-04-25 23:15:49.561137"]] +  (0.8ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "people" ("name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Rosa"], ["email", "chihuahua@kickassdogs.com"], ["created_at", "2016-04-25 23:15:49.564200"], ["updated_at", "2016-04-25 23:15:49.564200"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "completed_at", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "The First Task"], ["description", ""], ["completed_at", "2005-07-07 09:47:50.073140"], ["person_id", 2], ["created_at", "2016-04-25 23:15:49.573126"], ["updated_at", "2016-04-25 23:15:49.573126"]] +  (0.7ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Go to Brunch"], ["description", ""], ["person_id", 4], ["created_at", "2016-04-25 23:15:49.575497"], ["updated_at", "2016-04-25 23:15:49.575497"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "completed_at", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Go to Lunch"], ["description", ""], ["completed_at", "2000-02-05 17:23:18.300859"], ["person_id", 4], ["created_at", "2016-04-25 23:15:49.577544"], ["updated_at", "2016-04-25 23:15:49.577544"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Go to Second Lunch"], ["description", ""], ["person_id", 3], ["created_at", "2016-04-25 23:15:49.579391"], ["updated_at", "2016-04-25 23:15:49.579391"]] +  (0.6ms) commit transaction +  (4.0ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "completed_at", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Play Video Games"], ["description", ""], ["completed_at", "2003-09-01 10:28:00.219427"], ["person_id", 1], ["created_at", "2016-04-25 23:15:49.585367"], ["updated_at", "2016-04-25 23:15:49.585367"]] +  (0.7ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "completed_at", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "High Five Somebody You Don't Know"], ["description", ""], ["completed_at", "2014-09-11 12:58:13.495715"], ["person_id", 1], ["created_at", "2016-04-25 23:15:49.587838"], ["updated_at", "2016-04-25 23:15:49.587838"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "completed_at", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Plant Flowers"], ["description", ""], ["completed_at", "1986-09-10 23:37:43.441986"], ["person_id", 1], ["created_at", "2016-04-25 23:15:49.589817"], ["updated_at", "2016-04-25 23:15:49.589817"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Call Mom"], ["description", ""], ["person_id", 1], ["created_at", "2016-04-25 23:15:49.591674"], ["updated_at", "2016-04-25 23:15:49.591674"]] +  (0.7ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "She worries, you know."], ["description", ""], ["person_id", 2], ["created_at", "2016-04-25 23:15:49.593465"], ["updated_at", "2016-04-25 23:15:49.593465"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "completed_at", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Nap."], ["description", ""], ["completed_at", "2007-01-03 09:13:23.603479"], ["person_id", 3], ["created_at", "2016-04-25 23:15:49.595553"], ["updated_at", "2016-04-25 23:15:49.595553"]] +  (0.7ms) commit transaction + Person Load (1.1ms) SELECT "people".* FROM "people" + Person Load (0.6ms) SELECT "people".* FROM "people" + Person Load (4.5ms) SELECT "people".* FROM "people" + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" +  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)  +  (0.1ms) select sqlite_version(*) +  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateTasks (20160419210846) +  (0.1ms) begin transaction +  (0.4ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" varchar, "completed_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  + SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160419210846"]] +  (1.6ms) commit transaction +Migrating to CreatePeople (20160422215930) +  (0.1ms) begin transaction +  (0.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  + SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160422215930"]] +  (0.8ms) commit transaction +Migrating to PersonTaskAssociation (20160422215946) +  (0.1ms) begin transaction +  (0.4ms) ALTER TABLE "tasks" ADD "person_id" integer + SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160422215946"]] +  (0.6ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + Person Load (1.0ms) SELECT "people".* FROM "people" + Person Load (0.2ms) SELECT "people".* FROM "people" + + +Started GET "/people/" for ::1 at 2016-04-25 16:18:17 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 337ms (Views: 329.0ms | ActiveRecord: 0.2ms) + + +Started GET "/people/css/bootstrap.min.css" for ::1 at 2016-04-25 16:18:18 -0700 + +ActionController::RoutingError (No route matches [GET] "/people/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (8.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (80.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.5ms) + + +Started GET "/people/" for ::1 at 2016-04-25 16:18:19 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (0.4ms) +Completed 200 OK in 42ms (Views: 41.2ms | ActiveRecord: 0.1ms) + + +Started GET "/people/css/bootstrap.min.css" for ::1 at 2016-04-25 16:18:19 -0700 + +ActionController::RoutingError (No route matches [GET] "/people/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (70.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.3ms) + + +Started GET "/people/" for ::1 at 2016-04-25 16:18:20 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 66ms (Views: 65.3ms | ActiveRecord: 0.1ms) + + +Started GET "/people/css/bootstrap.min.css" for ::1 at 2016-04-25 16:18:20 -0700 + +ActionController::RoutingError (No route matches [GET] "/people/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (63.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.5ms) +  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" + Person Load (1.1ms) SELECT "people".* FROM "people" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.0ms) begin transaction + SQL (1.0ms) INSERT INTO "people" ("name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Jack"], ["email", "something@google.com"], ["created_at", "2016-04-25 23:20:10.784463"], ["updated_at", "2016-04-25 23:20:10.784463"]] +  (1.3ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "people" ("name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Pandora"], ["email", "pandora@mybox.com"], ["created_at", "2016-04-25 23:20:10.789994"], ["updated_at", "2016-04-25 23:20:10.789994"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "people" ("name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Marley"], ["email", "bob@rasta.com"], ["created_at", "2016-04-25 23:20:10.791711"], ["updated_at", "2016-04-25 23:20:10.791711"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "people" ("name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Rosa"], ["email", "chihuahua@kickassdogs.com"], ["created_at", "2016-04-25 23:20:10.793217"], ["updated_at", "2016-04-25 23:20:10.793217"]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "completed_at", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "The First Task"], ["description", ""], ["completed_at", "2011-09-11 12:11:09.095515"], ["person_id", 2], ["created_at", "2016-04-25 23:20:10.801475"], ["updated_at", "2016-04-25 23:20:10.801475"]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Go to Brunch"], ["description", ""], ["person_id", 4], ["created_at", "2016-04-25 23:20:10.803914"], ["updated_at", "2016-04-25 23:20:10.803914"]] +  (0.7ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "completed_at", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Go to Lunch"], ["description", ""], ["completed_at", "2009-10-19 18:30:23.488960"], ["person_id", 4], ["created_at", "2016-04-25 23:20:10.805951"], ["updated_at", "2016-04-25 23:20:10.805951"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Go to Second Lunch"], ["description", ""], ["person_id", 3], ["created_at", "2016-04-25 23:20:10.807907"], ["updated_at", "2016-04-25 23:20:10.807907"]] +  (0.7ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "completed_at", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Play Video Games"], ["description", ""], ["completed_at", "1983-01-04 15:53:15.184684"], ["person_id", 1], ["created_at", "2016-04-25 23:20:10.809734"], ["updated_at", "2016-04-25 23:20:10.809734"]] +  (0.7ms) commit transaction +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "tasks" ("name", "description", "completed_at", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "High Five Somebody You Don't Know"], ["description", ""], ["completed_at", "2011-06-22 03:33:14.657859"], ["person_id", 1], ["created_at", "2016-04-25 23:20:10.811567"], ["updated_at", "2016-04-25 23:20:10.811567"]] +  (0.8ms) commit transaction +  (0.0ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "completed_at", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Plant Flowers"], ["description", ""], ["completed_at", "2009-07-17 12:10:02.782702"], ["person_id", 1], ["created_at", "2016-04-25 23:20:10.813651"], ["updated_at", "2016-04-25 23:20:10.813651"]] +  (0.8ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Call Mom"], ["description", ""], ["person_id", 1], ["created_at", "2016-04-25 23:20:10.816459"], ["updated_at", "2016-04-25 23:20:10.816459"]] +  (0.7ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "She worries, you know."], ["description", ""], ["person_id", 2], ["created_at", "2016-04-25 23:20:10.819020"], ["updated_at", "2016-04-25 23:20:10.819020"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "completed_at", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Nap."], ["description", ""], ["completed_at", "1989-02-25 03:47:03.377472"], ["person_id", 3], ["created_at", "2016-04-25 23:20:10.821018"], ["updated_at", "2016-04-25 23:20:10.821018"]] +  (0.7ms) commit transaction + Person Load (0.9ms) SELECT "people".* FROM "people" + + +Started GET "/people/" for ::1 at 2016-04-25 16:20:38 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 3]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 4]] + Rendered people/index.html.erb within layouts/application (22.6ms) +Completed 200 OK in 360ms (Views: 349.8ms | ActiveRecord: 1.1ms) + + +Started GET "/people/" for ::1 at 2016-04-25 16:20:39 -0700 +Processing by PeopleController#index as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 3]] + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 4]] + Rendered people/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 71ms (Views: 69.2ms | ActiveRecord: 0.6ms) + + +Started GET "/people/css/bootstrap.min.css" for ::1 at 2016-04-25 16:20:39 -0700 + +ActionController::RoutingError (No route matches [GET] "/people/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (8.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (69.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (48.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (104.7ms) + + +Started GET "/people/" for ::1 at 2016-04-25 16:20:41 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 3]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 4]] + Rendered people/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 52ms (Views: 51.0ms | ActiveRecord: 0.4ms) + + +Started GET "/people/css/bootstrap.min.css" for ::1 at 2016-04-25 16:20:41 -0700 + +ActionController::RoutingError (No route matches [GET] "/people/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (64.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (99.9ms) + + +Started GET "/" for ::1 at 2016-04-25 16:20:56 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 4]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 4]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/index.html.erb within layouts/application (22.4ms) +Completed 200 OK in 66ms (Views: 64.6ms | ActiveRecord: 0.6ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-25 16:20:56 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (63.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (105.4ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-25 16:21:43 -0700 +Processing by TasksController#new as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/new.html.erb within layouts/application (6.5ms) +Completed 200 OK in 41ms (Views: 40.4ms | ActiveRecord: 0.1ms) + + +Started POST "/tasks" for ::1 at 2016-04-25 16:21:52 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"65gIDf0taUa+jeiwI5UTo4LME28eAbqc+OsZdYLQC2dJT4jUkslq9oq9V3dtQK3aIlWxPedEQDqwdj1NOjlDSQ==", "task"=>{"name"=>"Shower", "description"=>"Later", "person_id"=>"2"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Shower"], ["description", "Later"], ["person_id", 2], ["created_at", "2016-04-25 23:21:52.837559"], ["updated_at", "2016-04-25 23:21:52.837559"]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.2ms) + + +Started GET "/" for ::1 at 2016-04-25 16:21:52 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 4]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 4]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (16.2ms) +Completed 200 OK in 59ms (Views: 57.5ms | ActiveRecord: 0.5ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-25 16:21:52 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (64.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (103.0ms) + + +Started GET "/people/" for ::1 at 2016-04-25 16:21:59 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 3]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 4]] + Rendered people/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 46ms (Views: 45.1ms | ActiveRecord: 0.3ms) + + +Started GET "/people/css/bootstrap.min.css" for ::1 at 2016-04-25 16:21:59 -0700 + +ActionController::RoutingError (No route matches [GET] "/people/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (69.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (99.2ms) + + +Started GET "/people/1" for ::1 at 2016-04-25 16:22:09 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"1"} + Rendered people/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 48ms (Views: 47.2ms | ActiveRecord: 0.0ms) + + +Started GET "/people/1" for ::1 at 2016-04-25 16:25:51 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 1]] + Rendered people/show.html.erb within layouts/application (5.0ms) +Completed 200 OK in 46ms (Views: 41.1ms | ActiveRecord: 0.7ms) + + +Started GET "/people/css/bootstrap.min.css" for ::1 at 2016-04-25 16:25:51 -0700 + +ActionController::RoutingError (No route matches [GET] "/people/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (57.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.7ms) + + +Started GET "/people/1" for ::1 at 2016-04-25 16:25:53 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"1"} + Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 1]] + Rendered people/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 48ms (Views: 46.7ms | ActiveRecord: 0.3ms) + + +Started GET "/people/css/bootstrap.min.css" for ::1 at 2016-04-25 16:25:53 -0700 + +ActionController::RoutingError (No route matches [GET] "/people/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (61.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.9ms) + + +Started GET "/" for ::1 at 2016-04-25 16:25:55 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 4]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 4]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (9.7ms) +Completed 200 OK in 46ms (Views: 44.5ms | ActiveRecord: 0.6ms) + + +Started GET "/people/" for ::1 at 2016-04-25 16:26:00 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 3]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 4]] + Rendered people/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 43ms (Views: 42.7ms | ActiveRecord: 0.3ms) + + +Started GET "/people/css/bootstrap.min.css" for ::1 at 2016-04-25 16:26:00 -0700 + +ActionController::RoutingError (No route matches [GET] "/people/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (69.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.3ms) + + +Started GET "/people/3" for ::1 at 2016-04-25 16:26:01 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"3"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 3]] + Rendered people/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 52ms (Views: 51.4ms | ActiveRecord: 0.1ms) + + +Started GET "/people/" for ::1 at 2016-04-25 16:26:08 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 3]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 4]] + Rendered people/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 43ms (Views: 41.8ms | ActiveRecord: 0.4ms) + + +Started GET "/people/css/bootstrap.min.css" for ::1 at 2016-04-25 16:26:09 -0700 + +ActionController::RoutingError (No route matches [GET] "/people/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (64.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (103.7ms) + + +Started GET "/people/2" for ::1 at 2016-04-25 16:26:11 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 2]] + Rendered people/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 51ms (Views: 50.3ms | ActiveRecord: 0.2ms) From 91a32fb35669090b85d1a44acefa6810848abebb Mon Sep 17 00:00:00 2001 From: Nadine Curry Date: Mon, 25 Apr 2016 16:36:12 -0700 Subject: [PATCH 08/12] changed gemfile --- Gemfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index f5879287a..757817a0a 100644 --- a/Gemfile +++ b/Gemfile @@ -37,6 +37,7 @@ gem 'chronic' group :development, :test do # Call 'byebug' anywhere in the code to stop execution and get a debugger console gem 'byebug' + gem 'sqlite3' end @@ -46,7 +47,7 @@ group :development do # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring gem 'spring' - gem 'sqlite3' + end group :development do From 076e02b57615681ba27d6eb759770431225e7190 Mon Sep 17 00:00:00 2001 From: Nadine Curry Date: Mon, 25 Apr 2016 16:45:28 -0700 Subject: [PATCH 09/12] changed gemfile --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 75b4a7db7..1eec6efe6 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -83,7 +83,7 @@ GEM mime-types-data (3.2016.0221) mini_portile2 (2.0.0) minitest (5.8.4) - multi_json (1.11.2) + multi_json (1.11.3) nokogiri (1.6.7.2) mini_portile2 (~> 2.0.0.rc2) pg (0.18.4) From 4645a8d6ce2e019ace6528438a66dc5e0e493b38 Mon Sep 17 00:00:00 2001 From: Nadine Curry Date: Mon, 25 Apr 2016 18:59:17 -0700 Subject: [PATCH 10/12] Wave 4 completed --- app/controllers/people_controller.rb | 5 + app/controllers/tasks_controller.rb | 1 + app/views/people/show.html.erb | 2 + app/views/people/tasks.html.erb | 20 + config/routes.rb | 1 + log/development.log | 2852 ++++++++++++++++++++++++++ 6 files changed, 2881 insertions(+) create mode 100644 app/views/people/tasks.html.erb diff --git a/app/controllers/people_controller.rb b/app/controllers/people_controller.rb index ebc91ab0f..36a05fd86 100644 --- a/app/controllers/people_controller.rb +++ b/app/controllers/people_controller.rb @@ -6,4 +6,9 @@ def index def show @person = Person.find(params[:id]) end + + def tasks + @person = Person.find(params[:id]) + @tasks = Task.all + end end diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index 62716a84e..0fbf6844e 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -56,4 +56,5 @@ def complete @task.save redirect_to root_path end + end diff --git a/app/views/people/show.html.erb b/app/views/people/show.html.erb index 86e1ebeeb..a3d7944c2 100644 --- a/app/views/people/show.html.erb +++ b/app/views/people/show.html.erb @@ -3,3 +3,5 @@
    • Description: <%= @person.email %>
    • Unfinished Tasks: <%=Task.where(person_id: @person.id, completed_at: nil).length%>
    + +<%= link_to "See all tasks", "/people/#{@person.id}/tasks" %> diff --git a/app/views/people/tasks.html.erb b/app/views/people/tasks.html.erb new file mode 100644 index 000000000..bdf78e645 --- /dev/null +++ b/app/views/people/tasks.html.erb @@ -0,0 +1,20 @@ +

    <%= @person.name %>

    + +<% @unfinished = Task.where(person_id: @person.id, completed_at: nil) %> +

    Not completed

    +
      + <% @unfinished.each do |task| %> +
    • <%= task.name %> +
    • + <% end %> +
    + +<% @finished = Task.where(person_id: @person.id).where.not(completed_at: nil) %> + +

    Completed

    +
      + <% @finished.each do |task| %> +
    • <%= task.name %> +
    • + <% end %> +
    \ No newline at end of file diff --git a/config/routes.rb b/config/routes.rb index b3e1cf1fc..62f69d624 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -18,6 +18,7 @@ get "/people/:id" => "people#show", as: "person" + get "/people/:id/tasks" => "people#tasks" # The priority is based upon order of creation: first created -> highest priority. # See how all your routes lay out with "rake routes". diff --git a/log/development.log b/log/development.log index b623ea959..cb673d243 100644 --- a/log/development.log +++ b/log/development.log @@ -26431,3 +26431,2855 @@ Processing by PeopleController#show as HTML Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 2]] Rendered people/show.html.erb within layouts/application (0.6ms) Completed 200 OK in 51ms (Views: 50.3ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 18:38:36 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 4]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 4]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (35.2ms) +Completed 200 OK in 382ms (Views: 368.4ms | ActiveRecord: 1.4ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-25 18:38:37 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (79.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (46.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.7ms) + + +Started GET "/people/" for ::1 at 2016-04-25 18:38:41 -0700 +Processing by PeopleController#index as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 3]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 4]] + Rendered people/index.html.erb within layouts/application (4.9ms) +Completed 200 OK in 47ms (Views: 45.6ms | ActiveRecord: 0.5ms) + + +Started GET "/people/css/bootstrap.min.css" for ::1 at 2016-04-25 18:38:41 -0700 + +ActionController::RoutingError (No route matches [GET] "/people/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (60.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (96.8ms) + + +Started GET "/people/2" for ::1 at 2016-04-25 18:38:42 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 2]] + Rendered people/show.html.erb within layouts/application (22.1ms) +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.2ms) + +NameError - undefined local variable or method `person' for #<#:0x007f85ce38f5f8> +Did you mean? @person: + app/views/people/show.html.erb:7:in `_app_views_people_show_html_erb__3165669366522188553_70106333602200' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/people/2" for ::1 at 2016-04-25 18:38:42 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 2]] + Rendered people/show.html.erb within layouts/application (25.0ms) +Completed 500 Internal Server Error in 28ms (ActiveRecord: 0.3ms) + +NameError - undefined local variable or method `person' for #<#:0x007f85d1b6d178> +Did you mean? @person: + app/views/people/show.html.erb:7:in `_app_views_people_show_html_erb__3165669366522188553_70106320731900' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/329059aa9963c494/variables" for ::1 at 2016-04-25 18:38:42 -0700 + + +Started GET "/people/2" for ::1 at 2016-04-25 18:39:02 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 2]] + Rendered people/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 47ms (Views: 45.6ms | ActiveRecord: 0.2ms) + + +Started GET "/people/css/bootstrap.min.css" for ::1 at 2016-04-25 18:39:02 -0700 + +ActionController::RoutingError (No route matches [GET] "/people/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (60.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.6ms) + + +Started GET "/people/2/tasks" for ::1 at 2016-04-25 18:39:04 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered people/tasks.html.erb within layouts/application (1.2ms) +Completed 200 OK in 45ms (Views: 44.1ms | ActiveRecord: 0.1ms) + + +Started GET "/people/2/tasks" for ::1 at 2016-04-25 18:39:38 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", nil]] + Rendered people/tasks.html.erb within layouts/application (4.8ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.5ms) + +ActiveRecord::RecordNotFound - Couldn't find Task with 'id'={:person_id=>2}: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/views/people/tasks.html.erb:3:in `_app_views_people_tasks_html_erb__3665163594143900486_70106365982940' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/203fa2e0af44efa5/variables" for ::1 at 2016-04-25 18:39:38 -0700 + + +Started GET "/people/2/tasks" for ::1 at 2016-04-25 18:39:39 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", nil]] + Rendered people/tasks.html.erb within layouts/application (2.5ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find Task with 'id'={:person_id=>2}: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/views/people/tasks.html.erb:3:in `_app_views_people_tasks_html_erb__3665163594143900486_70106365982940' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/e6eff8dcda6c2a03/variables" for ::1 at 2016-04-25 18:39:39 -0700 + + +Started GET "/people/2/tasks" for ::1 at 2016-04-25 18:39:55 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"2"} + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]] + Rendered people/tasks.html.erb within layouts/application (0.9ms) +Completed 200 OK in 50ms (Views: 47.4ms | ActiveRecord: 0.2ms) + + +Started GET "/people/2/css/bootstrap.min.css" for ::1 at 2016-04-25 18:39:55 -0700 + +ActionController::RoutingError (No route matches [GET] "/people/2/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (10.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (69.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (94.6ms) + + +Started GET "/people/2/tasks" for ::1 at 2016-04-25 18:43:28 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered people/tasks.html.erb within layouts/application (24.2ms) +Completed 500 Internal Server Error in 28ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `task' for #<#:0x007f85ccab5e38> +Did you mean? tasks: + app/views/people/tasks.html.erb:4:in `_app_views_people_tasks_html_erb__3665163594143900486_70106320577560' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/8db225be88d67fab/variables" for ::1 at 2016-04-25 18:43:29 -0700 + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? [["person_id", 2]] + + +Started GET "/people/2/tasks" for ::1 at 2016-04-25 18:43:37 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? [["person_id", 2]] + Rendered people/tasks.html.erb within layouts/application (3.1ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.2ms) + +TypeError - no implicit conversion of Symbol into Integer: + activerecord (4.2.6) lib/active_record/relation/delegation.rb:132:in `method_missing' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:99:in `method_missing' + app/views/people/tasks.html.erb:4:in `_app_views_people_tasks_html_erb__3665163594143900486_70106325152380' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/9fbf65ee177388e4/variables" for ::1 at 2016-04-25 18:43:37 -0700 + + +Started GET "/people/2/tasks" for ::1 at 2016-04-25 18:43:38 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? [["person_id", 2]] + Rendered people/tasks.html.erb within layouts/application (2.8ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.2ms) + +TypeError - no implicit conversion of Symbol into Integer: + activerecord (4.2.6) lib/active_record/relation/delegation.rb:132:in `method_missing' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:99:in `method_missing' + app/views/people/tasks.html.erb:4:in `_app_views_people_tasks_html_erb__3665163594143900486_70106325152380' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/910a2a703d15cd85/variables" for ::1 at 2016-04-25 18:43:38 -0700 + + +Started GET "/people/2/tasks" for ::1 at 2016-04-25 18:46:38 -0700 + +SyntaxError - syntax error, unexpected ']', expecting ')' + @tasks = Task.where(person_id: @person.id]) + ^: + app/controllers/people_controller.rb:12:in `' + activesupport (4.2.6) lib/active_support/dependencies.rb:457:in `block in load_file' + activesupport (4.2.6) lib/active_support/dependencies.rb:647:in `new_constants_in' + activesupport (4.2.6) lib/active_support/dependencies.rb:456:in `load_file' + activesupport (4.2.6) lib/active_support/dependencies.rb:354:in `require_or_load' + activesupport (4.2.6) lib/active_support/dependencies.rb:494:in `load_missing_constant' + activesupport (4.2.6) lib/active_support/dependencies.rb:184:in `const_missing' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `block in constantize' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `constantize' + activesupport (4.2.6) lib/active_support/dependencies.rb:566:in `get' + activesupport (4.2.6) lib/active_support/dependencies.rb:597:in `constantize' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:60:in `controller' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:39:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/8ef6ba7166490f68/variables" for ::1 at 2016-04-25 18:46:38 -0700 + + +Started GET "/people/2/tasks" for ::1 at 2016-04-25 18:46:40 -0700 + +SyntaxError - syntax error, unexpected ']', expecting ')' + @tasks = Task.where(person_id: @person.id]) + ^: + app/controllers/people_controller.rb:12:in `' + activesupport (4.2.6) lib/active_support/dependencies.rb:457:in `block in load_file' + activesupport (4.2.6) lib/active_support/dependencies.rb:647:in `new_constants_in' + activesupport (4.2.6) lib/active_support/dependencies.rb:456:in `load_file' + activesupport (4.2.6) lib/active_support/dependencies.rb:354:in `require_or_load' + activesupport (4.2.6) lib/active_support/dependencies.rb:494:in `load_missing_constant' + activesupport (4.2.6) lib/active_support/dependencies.rb:184:in `const_missing' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `block in constantize' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `constantize' + activesupport (4.2.6) lib/active_support/dependencies.rb:566:in `get' + activesupport (4.2.6) lib/active_support/dependencies.rb:597:in `constantize' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:60:in `controller' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:39:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/19a7b401e63017bb/variables" for ::1 at 2016-04-25 18:46:40 -0700 + + +Started GET "/people/2/tasks" for ::1 at 2016-04-25 18:48:50 -0700 + +SyntaxError - syntax error, unexpected ']', expecting ')' + @tasks = Task.where(person_id: @person.id]) + ^: + app/controllers/people_controller.rb:12:in `' + activesupport (4.2.6) lib/active_support/dependencies.rb:457:in `block in load_file' + activesupport (4.2.6) lib/active_support/dependencies.rb:647:in `new_constants_in' + activesupport (4.2.6) lib/active_support/dependencies.rb:456:in `load_file' + activesupport (4.2.6) lib/active_support/dependencies.rb:354:in `require_or_load' + activesupport (4.2.6) lib/active_support/dependencies.rb:494:in `load_missing_constant' + activesupport (4.2.6) lib/active_support/dependencies.rb:184:in `const_missing' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `block in constantize' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `constantize' + activesupport (4.2.6) lib/active_support/dependencies.rb:566:in `get' + activesupport (4.2.6) lib/active_support/dependencies.rb:597:in `constantize' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:60:in `controller' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:39:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/dae099bd2c8e3920/variables" for ::1 at 2016-04-25 18:48:50 -0700 + + +Started GET "/people/2/tasks" for ::1 at 2016-04-25 18:48:51 -0700 + +SyntaxError - syntax error, unexpected ']', expecting ')' + @tasks = Task.where(person_id: @person.id]) + ^: + app/controllers/people_controller.rb:12:in `' + activesupport (4.2.6) lib/active_support/dependencies.rb:457:in `block in load_file' + activesupport (4.2.6) lib/active_support/dependencies.rb:647:in `new_constants_in' + activesupport (4.2.6) lib/active_support/dependencies.rb:456:in `load_file' + activesupport (4.2.6) lib/active_support/dependencies.rb:354:in `require_or_load' + activesupport (4.2.6) lib/active_support/dependencies.rb:494:in `load_missing_constant' + activesupport (4.2.6) lib/active_support/dependencies.rb:184:in `const_missing' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `block in constantize' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `constantize' + activesupport (4.2.6) lib/active_support/dependencies.rb:566:in `get' + activesupport (4.2.6) lib/active_support/dependencies.rb:597:in `constantize' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:60:in `controller' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:39:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/7d2c2cae53265528/variables" for ::1 at 2016-04-25 18:48:51 -0700 + + +Started GET "/people/2/tasks" for ::1 at 2016-04-25 18:48:58 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered people/tasks.html.erb within layouts/application (1.2ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.5ms) + +SyntaxError - syntax error, unexpected ']', expecting ')' +...sk.where(person_id: @person.id]) );@output_buffer.safe_appen... +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/people/tasks.html.erb:9: syntax error, unexpected keyword_ensure, expecting ')' +/Users/Nadine/C5/projects/TaskListRails/app/views/people/tasks.html.erb:11: syntax error, unexpected keyword_end, expecting ')': + app/views/people/tasks.html.erb:3:in `' + actionview (4.2.6) lib/action_view/template.rb:296:in `compile' + actionview (4.2.6) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.6) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.6) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/5fad3be5d087c012/variables" for ::1 at 2016-04-25 18:48:58 -0700 + + +Started GET "/people/2/tasks" for ::1 at 2016-04-25 18:48:59 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered people/tasks.html.erb within layouts/application (2.0ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +SyntaxError - syntax error, unexpected ']', expecting ')' +...sk.where(person_id: @person.id]) );@output_buffer.safe_appen... +... ^ +/Users/Nadine/C5/projects/TaskListRails/app/views/people/tasks.html.erb:9: syntax error, unexpected keyword_ensure, expecting ')' +/Users/Nadine/C5/projects/TaskListRails/app/views/people/tasks.html.erb:11: syntax error, unexpected keyword_end, expecting ')': + app/views/people/tasks.html.erb:3:in `' + actionview (4.2.6) lib/action_view/template.rb:296:in `compile' + actionview (4.2.6) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.6) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.6) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/3d099e6c6dbdb0c5/variables" for ::1 at 2016-04-25 18:48:59 -0700 + + +Started GET "/people/2/tasks" for ::1 at 2016-04-25 18:49:24 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered people/tasks.html.erb within layouts/application (3.5ms) +Completed 200 OK in 82ms (Views: 80.5ms | ActiveRecord: 0.2ms) + + +Started GET "/people/2/css/bootstrap.min.css" for ::1 at 2016-04-25 18:49:24 -0700 + +ActionController::RoutingError (No route matches [GET] "/people/2/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (64.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.0ms) + + +Started GET "/people/2/tasks" for ::1 at 2016-04-25 18:49:48 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered people/tasks.html.erb within layouts/application (0.6ms) +Completed 200 OK in 49ms (Views: 48.0ms | ActiveRecord: 0.1ms) + + +Started GET "/people/2/css/bootstrap.min.css" for ::1 at 2016-04-25 18:49:48 -0700 + +ActionController::RoutingError (No route matches [GET] "/people/2/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (67.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (96.0ms) + + +Started GET "/people/2/tasks" for ::1 at 2016-04-25 18:49:50 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered people/tasks.html.erb within layouts/application (0.2ms) +Completed 200 OK in 48ms (Views: 47.1ms | ActiveRecord: 0.1ms) + + +Started GET "/people/2/css/bootstrap.min.css" for ::1 at 2016-04-25 18:49:50 -0700 + +ActionController::RoutingError (No route matches [GET] "/people/2/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (8.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (68.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (98.1ms) + + +Started GET "/people/2/tasks" for ::1 at 2016-04-25 18:50:00 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? [["person_id", 2]] + Rendered people/tasks.html.erb within layouts/application (13.9ms) +Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.3ms) + +NoMethodError - undefined method `description' for #: + activerecord (4.2.6) lib/active_record/relation/delegation.rb:136:in `method_missing' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:99:in `method_missing' + app/views/people/tasks.html.erb:3:in `_app_views_people_tasks_html_erb__3665163594143900486_70106361940980' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/b24c3cdb795155a6/variables" for ::1 at 2016-04-25 18:50:01 -0700 + + +Started GET "/people/2/tasks" for ::1 at 2016-04-25 18:50:41 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"2"} + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? [["person_id", 2]] + Rendered people/tasks.html.erb within layouts/application (4.4ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.6ms) + +TypeError - no implicit conversion of Symbol into Integer: + activerecord (4.2.6) lib/active_record/relation/delegation.rb:132:in `method_missing' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:99:in `method_missing' + app/views/people/tasks.html.erb:3:in `_app_views_people_tasks_html_erb__3665163594143900486_70106362722040' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/a67e3e7afa802402/variables" for ::1 at 2016-04-25 18:50:41 -0700 + + +Started GET "/people/2/tasks" for ::1 at 2016-04-25 18:50:42 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? [["person_id", 2]] + Rendered people/tasks.html.erb within layouts/application (3.2ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.2ms) + +TypeError - no implicit conversion of Symbol into Integer: + activerecord (4.2.6) lib/active_record/relation/delegation.rb:132:in `method_missing' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:99:in `method_missing' + app/views/people/tasks.html.erb:3:in `_app_views_people_tasks_html_erb__3665163594143900486_70106362722040' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/ec82dd56d86e8d38/variables" for ::1 at 2016-04-25 18:50:42 -0700 + + +Started GET "/people/2/tasks" for ::1 at 2016-04-25 18:55:19 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered people/tasks.html.erb within layouts/application (2.7ms) +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.5ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/tasks.html.erb:3:in `_app_views_people_tasks_html_erb__3665163594143900486_70106334347060' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/7be14c2f05a491d7/variables" for ::1 at 2016-04-25 18:55:19 -0700 + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + + +Started GET "/people/2/tasks" for ::1 at 2016-04-25 18:55:20 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered people/tasks.html.erb within layouts/application (2.5ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/tasks.html.erb:3:in `_app_views_people_tasks_html_erb__3665163594143900486_70106334347060' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/bc98b6601e6670f2/variables" for ::1 at 2016-04-25 18:55:20 -0700 + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + + +Started GET "/people/2/tasks" for ::1 at 2016-04-25 18:55:36 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered people/tasks.html.erb within layouts/application (2.7ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/tasks.html.erb:3:in `_app_views_people_tasks_html_erb__3665163594143900486_70106348261000' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/48c2aab109099898/variables" for ::1 at 2016-04-25 18:55:36 -0700 + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + + +Started GET "/people/2/tasks" for ::1 at 2016-04-25 18:55:37 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"2"} + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered people/tasks.html.erb within layouts/application (2.4ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/tasks.html.erb:3:in `_app_views_people_tasks_html_erb__3665163594143900486_70106348261000' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f11a52f7aa371891/variables" for ::1 at 2016-04-25 18:55:37 -0700 + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + + +Started GET "/people/2/tasks" for ::1 at 2016-04-25 18:55:45 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 2]] + Rendered people/tasks.html.erb within layouts/application (1.7ms) +Completed 200 OK in 52ms (Views: 49.6ms | ActiveRecord: 0.3ms) + + +Started GET "/people/2/css/bootstrap.min.css" for ::1 at 2016-04-25 18:55:45 -0700 + +ActionController::RoutingError (No route matches [GET] "/people/2/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (67.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.7ms) + + +Started GET "/people/2/tasks" for ::1 at 2016-04-25 18:58:14 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND "tasks"."completed_at" IS NULL [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND ("tasks"."completed_at" IS NOT NULL) [["person_id", 2]] + Rendered people/tasks.html.erb within layouts/application (1.9ms) +Completed 200 OK in 39ms (Views: 38.3ms | ActiveRecord: 0.3ms) + + +Started GET "/people/2/css/bootstrap.min.css" for ::1 at 2016-04-25 18:58:14 -0700 + +ActionController::RoutingError (No route matches [GET] "/people/2/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (57.7ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.6ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.0ms) + + +Started GET "/" for ::1 at 2016-04-25 18:58:28 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 4]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 4]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (10.9ms) +Completed 200 OK in 55ms (Views: 54.1ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/3" for ::1 at 2016-04-25 18:58:30 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 4]] + Rendered tasks/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 43ms (Views: 42.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 18:58:33 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 4]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 4]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (9.6ms) +Completed 200 OK in 49ms (Views: 48.0ms | ActiveRecord: 0.7ms) From a0ac7a8a9909320bc16aafea4adadc06d642b86f Mon Sep 17 00:00:00 2001 From: Nadine Curry Date: Mon, 25 Apr 2016 19:05:43 -0700 Subject: [PATCH 11/12] deleted params lines from view pages. final edit before submission --- app/views/people/index.html.erb | 2 +- app/views/tasks/edit.html.erb | 1 - app/views/tasks/index.html.erb | 1 - app/views/tasks/new.html.erb | 1 - 4 files changed, 1 insertion(+), 4 deletions(-) diff --git a/app/views/people/index.html.erb b/app/views/people/index.html.erb index d542b07fa..cb1b21739 100644 --- a/app/views/people/index.html.erb +++ b/app/views/people/index.html.erb @@ -1,7 +1,7 @@

    Here's a list of Task Owners!

    -
    <%=params%>
    + diff --git a/app/views/tasks/edit.html.erb b/app/views/tasks/edit.html.erb index fc6746e02..44273707c 100644 --- a/app/views/tasks/edit.html.erb +++ b/app/views/tasks/edit.html.erb @@ -1,6 +1,5 @@

    Let's edit your task!

    -
    <%=params%>
    <%= form_for @task do |f| %>
  • <%= f.label :name %> diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb index e78090e13..70e2bef25 100644 --- a/app/views/tasks/index.html.erb +++ b/app/views/tasks/index.html.erb @@ -1,7 +1,6 @@

    Here's are your tasks!

  • -
    <%=params%>
    diff --git a/app/views/tasks/new.html.erb b/app/views/tasks/new.html.erb index 91a41a8e1..e8ff32d4d 100644 --- a/app/views/tasks/new.html.erb +++ b/app/views/tasks/new.html.erb @@ -1,6 +1,5 @@

    Let's make a new task!

    -
    <%=params%>
      <%= form_for @task do |f| %> From 6c314a7b8c11ed8f4868232ea88ac1b88f0e1457 Mon Sep 17 00:00:00 2001 From: Nadine Curry Date: Tue, 26 Apr 2016 10:09:40 -0700 Subject: [PATCH 12/12] changed route path on view files to follow convention --- app/views/tasks/index.html.erb | 2 +- config/routes.rb | 11 +++-- log/development.log | 83 ++++++++++++++++++++++++++++++++++ 3 files changed, 90 insertions(+), 6 deletions(-) diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb index 70e2bef25..e8a0580d8 100644 --- a/app/views/tasks/index.html.erb +++ b/app/views/tasks/index.html.erb @@ -16,7 +16,7 @@ <% @tasks.each do |task| %>
    - <%= link_to task.name, "/tasks/#{task.id}" %> + <%= link_to task.name, task_path(task) %> <%= task.person.name %> diff --git a/config/routes.rb b/config/routes.rb index 62f69d624..c25771d38 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -6,19 +6,20 @@ get "/tasks/new" => "tasks#new" - get "/tasks/:id" => "tasks#show", as: "task" - patch "/tasks/:id" => "tasks#update" - delete "/tasks/:id" => "tasks#destroy" - get "/tasks/:id/edit" => "tasks#edit" post "/tasks/:id/complete" => "tasks#complete" + get "/tasks/:id" => "tasks#show", as: "task" + patch "/tasks/:id" => "tasks#update" + delete "/tasks/:id" => "tasks#destroy" + get "/people" => "people#index", as: "people" + get "/people/:id/tasks" => "people#tasks" + get "/people/:id" => "people#show", as: "person" - get "/people/:id/tasks" => "people#tasks" # The priority is based upon order of creation: first created -> highest priority. # See how all your routes lay out with "rake routes". diff --git a/log/development.log b/log/development.log index cb673d243..6bf70808d 100644 --- a/log/development.log +++ b/log/development.log @@ -29283,3 +29283,86 @@ Processing by TasksController#index as HTML CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] Rendered tasks/index.html.erb within layouts/application (9.6ms) Completed 200 OK in 49ms (Views: 48.0ms | ActiveRecord: 0.7ms) + + +Started GET "/" for ::1 at 2016-04-26 10:08:59 -0700 + ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Person Load (0.5ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 4]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 4]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (42.1ms) +Completed 200 OK in 468ms (Views: 452.7ms | ActiveRecord: 2.0ms) + + +Started GET "/css/bootstrap.min.css" for ::1 at 2016-04-26 10:08:59 -0700 + +ActionController::RoutingError (No route matches [GET] "/css/bootstrap.min.css"): + actionpack (4.2.6) 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.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) 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.6) 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.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) 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/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/Nadine/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (12.8ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (111.1ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (1.0ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (56.2ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/Nadine/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (114.2ms) + + +Started GET "/tasks/4" for ::1 at 2016-04-26 10:09:01 -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]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/show.html.erb within layouts/application (1.8ms) +Completed 200 OK in 61ms (Views: 54.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/3" for ::1 at 2016-04-26 10:09:04 -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]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 4]] + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 46ms (Views: 43.8ms | ActiveRecord: 0.3ms)