rails_tracker 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (206) hide show
  1. checksums.yaml +7 -0
  2. data/.yardoc/checksums +13 -0
  3. data/.yardoc/object_types +0 -0
  4. data/.yardoc/objects/root.dat +0 -0
  5. data/.yardoc/proxy_types +0 -0
  6. data/Gemfile +31 -0
  7. data/Gemfile.lock +207 -0
  8. data/MIT-LICENSE +20 -0
  9. data/README.rdoc +88 -0
  10. data/Rakefile +113 -0
  11. data/app/assets/javascripts/rails_tracker/application.js +15 -0
  12. data/app/assets/javascripts/rails_tracker/issues.js +2 -0
  13. data/app/assets/stylesheets/rails_tracker/application.css +14 -0
  14. data/app/assets/stylesheets/rails_tracker/bootstrap.css +6805 -0
  15. data/app/assets/stylesheets/rails_tracker/issues.css +4 -0
  16. data/app/controllers/rails_tracker/application_controller.rb +12 -0
  17. data/app/controllers/rails_tracker/issues_controller.rb +81 -0
  18. data/app/helpers/rails_tracker/application_helper.rb +4 -0
  19. data/app/helpers/rails_tracker/issues_helper.rb +4 -0
  20. data/app/mailers/rails_tracker/issue_mailer.rb +12 -0
  21. data/app/models/rails_tracker/issue.rb +7 -0
  22. data/app/models/rails_tracker/users_issues.rb +12 -0
  23. data/app/views/layouts/rails_tracker/_header.html.slim +28 -0
  24. data/app/views/layouts/rails_tracker/application.html.slim +10 -0
  25. data/app/views/rails_tracker/issue_mailer/resolved_alert.html.slim +6 -0
  26. data/app/views/rails_tracker/issues/currently_tracking.html.slim +19 -0
  27. data/app/views/rails_tracker/issues/index.html.slim +18 -0
  28. data/app/views/rails_tracker/issues/listen.html.slim +1 -0
  29. data/app/views/rails_tracker/issues/resolved.html.slim +14 -0
  30. data/config/config.ru +0 -0
  31. data/config/routes.rb +16 -0
  32. data/db/migrate/20130924202020_create_tracker_issues.rb +10 -0
  33. data/db/migrate/20130924233027_create_tracker_users_issues.rb +13 -0
  34. data/db/migrate/20130924233149_add_relation_users_issues.rb +5 -0
  35. data/db/migrate/20130928221922_add_issue_id_issues.rb +5 -0
  36. data/db/migrate/20130930233849_add_default_active_column.rb +6 -0
  37. data/db/seeds.rb +1 -0
  38. data/issues} +4 -0
  39. data/lib/generators/rails_tracker/install_generator.rb +16 -0
  40. data/lib/generators/rails_tracker/templates/install.rb +15 -0
  41. data/lib/generators/rails_tracker/templates/rails_tracker.en.yml +5 -0
  42. data/lib/rails_tracker/engine.rb +17 -0
  43. data/lib/rails_tracker/version.rb +3 -0
  44. data/lib/rails_tracker.rb +16 -0
  45. data/lib/tasks/rails_tracker_tasks.rake +4 -0
  46. data/lib/tasks/test_seed.rb +7 -0
  47. data/rails_tracker.gemspec +40 -0
  48. data/screenshot1.png +0 -0
  49. data/spec/controllers/issues_controller_spec.rb +56 -0
  50. data/spec/dummy/README.rdoc +261 -0
  51. data/spec/dummy/Rakefile +7 -0
  52. data/spec/dummy/app/assets/javascripts/application.js +15 -0
  53. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  54. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  55. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  56. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  57. data/spec/dummy/config/application.rb +65 -0
  58. data/spec/dummy/config/boot.rb +10 -0
  59. data/spec/dummy/config/database.yml +25 -0
  60. data/spec/dummy/config/environment.rb +5 -0
  61. data/spec/dummy/config/environments/development.rb +37 -0
  62. data/spec/dummy/config/environments/production.rb +67 -0
  63. data/spec/dummy/config/environments/test.rb +37 -0
  64. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  65. data/spec/dummy/config/initializers/inflections.rb +15 -0
  66. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  67. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  68. data/spec/dummy/config/initializers/session_store.rb +8 -0
  69. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  70. data/spec/dummy/config/locales/en.yml +5 -0
  71. data/spec/dummy/config/routes.rb +4 -0
  72. data/spec/dummy/config.ru +4 -0
  73. data/spec/dummy/db/development.sqlite3 +0 -0
  74. data/spec/dummy/db/schema.rb +34 -0
  75. data/spec/dummy/db/test.sqlite3 +0 -0
  76. data/spec/dummy/log/development.log +4388 -0
  77. data/spec/dummy/log/test.log +750 -0
  78. data/spec/dummy/public/404.html +26 -0
  79. data/spec/dummy/public/422.html +26 -0
  80. data/spec/dummy/public/500.html +25 -0
  81. data/spec/dummy/public/favicon.ico +0 -0
  82. data/spec/dummy/script/rails +6 -0
  83. data/spec/dummy/tmp/cache/assets/BF2/BA0/sprockets%2Fc465f617006f371a570048816c344586 +0 -0
  84. data/spec/dummy/tmp/cache/assets/BF4/290/sprockets%2Fb4800880231a9ee7462085473e967133 +0 -0
  85. data/spec/dummy/tmp/cache/assets/BF4/F70/sprockets%2F7675401393a98310b35195d82832ef15 +0 -0
  86. data/spec/dummy/tmp/cache/assets/C7A/FD0/sprockets%2Fc32979f5e0331ec91531338d8ca43024 +0 -0
  87. data/spec/dummy/tmp/cache/assets/C82/940/sprockets%2F71fd0d5860b491074a85f02db6849227 +0 -0
  88. data/spec/dummy/tmp/cache/assets/C99/CE0/sprockets%2Fa9e3bce034e4511d161e1944200455d3 +0 -0
  89. data/spec/dummy/tmp/cache/assets/CB0/0F0/sprockets%2Fb94cb7750c4a13028836a17f82c5946b +0 -0
  90. data/spec/dummy/tmp/cache/assets/CB5/BF0/sprockets%2F34b1fb9a3b2f3e930436f5856e727129 +0 -0
  91. data/spec/dummy/tmp/cache/assets/CBA/DA0/sprockets%2F37124a7a569a43b3739b926cc9da6397 +0 -0
  92. data/spec/dummy/tmp/cache/assets/CBB/350/sprockets%2F63b5d7323752f0afb24ff82484e68592 +0 -0
  93. data/spec/dummy/tmp/cache/assets/CBF/450/sprockets%2Fd906fd2492c5676acdb0f31766975842 +0 -0
  94. data/spec/dummy/tmp/cache/assets/CC7/9D0/sprockets%2F04258d58abf44498e2be2088df594399 +0 -0
  95. data/spec/dummy/tmp/cache/assets/CCE/A50/sprockets%2F95f552879446108bb23884b9fc8de47f +0 -0
  96. data/spec/dummy/tmp/cache/assets/CD1/C90/sprockets%2F8ac4011e2f834d38565fb0295af0034b +0 -0
  97. data/spec/dummy/tmp/cache/assets/CD7/0A0/sprockets%2F5150feb2b84a78567c7185c5231a1b2e +0 -0
  98. data/spec/dummy/tmp/cache/assets/CDF/C70/sprockets%2F944209069b3190d36ab1a6c687c4c8be +0 -0
  99. data/spec/dummy/tmp/cache/assets/CE3/EE0/sprockets%2F2ce7c81c2bd8280698c3787300b2c29e +0 -0
  100. data/spec/dummy/tmp/cache/assets/CE6/C40/sprockets%2Fc818bee730438348a68efd92bf139220 +0 -0
  101. data/spec/dummy/tmp/cache/assets/CF6/460/sprockets%2Fd6d44319821067fc932ded86d5e9d837 +0 -0
  102. data/spec/dummy/tmp/cache/assets/CFD/4E0/sprockets%2Fc40691e60cdd254c0fc47867a0a018a1 +0 -0
  103. data/spec/dummy/tmp/cache/assets/D1E/700/sprockets%2F992faf3337c4ef8711e5522ff6706cf3 +0 -0
  104. data/spec/dummy/tmp/cache/assets/D34/D60/sprockets%2Ff95ce452cd15cfe3c62a22505520f1b9 +0 -0
  105. data/spec/dummy/tmp/cache/assets/D36/0C0/sprockets%2Fab4634b46625f2a59f2c81fca25b29b2 +0 -0
  106. data/spec/dummy/tmp/cache/assets/D36/580/sprockets%2Fd4cac000971b2a139e658ee1d57cc177 +0 -0
  107. data/spec/dummy/tmp/cache/assets/D38/370/sprockets%2F3f2e6c3a2fdaae7eac19245860891151 +0 -0
  108. data/spec/dummy/tmp/cache/assets/D38/BC0/sprockets%2F50f7a7f0253d401d08bac8f46537e6cb +0 -0
  109. data/spec/dummy/tmp/cache/assets/D39/1E0/sprockets%2Fb461de82da868310001d0886fc0fd5ef +0 -0
  110. data/spec/dummy/tmp/cache/assets/D39/C00/sprockets%2F422361ebe4a842fa89dc3b99a43ce114 +0 -0
  111. data/spec/dummy/tmp/cache/assets/D40/5F0/sprockets%2F06b15a4371a6f969ff7d0b7ef237ca06 +0 -0
  112. data/spec/dummy/tmp/cache/assets/D42/440/sprockets%2F20d8433a8526ab798ef3cc9c0d608d5b +0 -0
  113. data/spec/dummy/tmp/cache/assets/D42/900/sprockets%2Fa82f43357557dbec4918e295c1b6fa1a +0 -0
  114. data/spec/dummy/tmp/cache/assets/D46/7A0/sprockets%2Ff58dbdfbe51f1e65b669f4531676c111 +0 -0
  115. data/spec/dummy/tmp/cache/assets/D4A/B40/sprockets%2Ff40ad1859c7f01f99f019b46b9a4aa89 +0 -0
  116. data/spec/dummy/tmp/cache/assets/D4A/FC0/sprockets%2F8239c23794e8598c2fbc0dbdf7214a6d +0 -0
  117. data/spec/dummy/tmp/cache/assets/D53/6B0/sprockets%2Fd8ec39b3b5a1510cefa113328e030ab7 +0 -0
  118. data/spec/dummy/tmp/cache/assets/D5E/B40/sprockets%2F08c7b37c12104347d6f0dd3a2ac96dbd +0 -0
  119. data/spec/dummy/tmp/cache/assets/D6D/5F0/sprockets%2F6aaa47a79107eeac3b80345b95eed528 +0 -0
  120. data/spec/dummy/tmp/cache/assets/D70/330/sprockets%2F5f9f172aec541c9e4265aea3d2a416f9 +0 -0
  121. data/spec/dummy/tmp/cache/assets/D8F/DA0/sprockets%2F9e434efa471e31eea1da933f0ac3e322 +0 -0
  122. data/spec/dummy/tmp/cache/assets/D90/C80/sprockets%2Fd04fc70f145ec63ad43007a5e2cea9b7 +0 -0
  123. data/spec/dummy/tmp/cache/assets/DA2/9D0/sprockets%2F17df2df8c3aae2af98a9d325815325ed +0 -0
  124. data/spec/dummy/tmp/cache/assets/DA3/A50/sprockets%2F8c32df8c2b685b1b2d5f88bb15f9bc70 +0 -0
  125. data/spec/dummy/tmp/cache/assets/DB9/790/sprockets%2F6c968e2895d7a81cfe44addf3d57c7d5 +0 -0
  126. data/spec/dummy/tmp/cache/assets/DCE/930/sprockets%2Fea724572bf99bab5f2019c2fdfba92c5 +0 -0
  127. data/spec/dummy/tmp/cache/assets/DD1/F90/sprockets%2Fd924f5c7b0cf8d008dd8fea4e00d438f +0 -0
  128. data/spec/dummy/tmp/cache/assets/DD9/510/sprockets%2F544220563a5adf97ea8b5ff7ebe8ff3b +0 -0
  129. data/spec/dummy/tmp/cache/assets/DEF/B20/sprockets%2F3e8a1eac029ed92bee842e2abfea2232 +0 -0
  130. data/spec/dummy/tmp/cache/assets/DF4/6A0/sprockets%2F4af9b5050ffa96b2e2d3bebad85a06c5 +0 -0
  131. data/spec/dummy/tmp/cache/assets/DF6/DF0/sprockets%2Fed28cfcc773b333e5eea0aae655115cf +0 -0
  132. data/spec/dummy/tmp/cache/assets/E61/210/sprockets%2F57168c3ab6088aaf76cee4deaebeac7d +0 -0
  133. data/spec/dummy/tmp/cache/assets/EB7/D90/sprockets%2F5179abd7ac7cdbcea3e43fbbeb1fed64 +0 -0
  134. data/spec/dummy/tmp/cache/sass/1497ad7d973056507928cc72b57246640fe98320/bootstrap.scssc +0 -0
  135. data/spec/dummy/tmp/cache/sass/400fd17e133835848700b2f4e2f02dbad9b80a92/_accordion.scssc +0 -0
  136. data/spec/dummy/tmp/cache/sass/400fd17e133835848700b2f4e2f02dbad9b80a92/_alerts.scssc +0 -0
  137. data/spec/dummy/tmp/cache/sass/400fd17e133835848700b2f4e2f02dbad9b80a92/_breadcrumbs.scssc +0 -0
  138. data/spec/dummy/tmp/cache/sass/400fd17e133835848700b2f4e2f02dbad9b80a92/_button-groups.scssc +0 -0
  139. data/spec/dummy/tmp/cache/sass/400fd17e133835848700b2f4e2f02dbad9b80a92/_buttons.scssc +0 -0
  140. data/spec/dummy/tmp/cache/sass/400fd17e133835848700b2f4e2f02dbad9b80a92/_carousel.scssc +0 -0
  141. data/spec/dummy/tmp/cache/sass/400fd17e133835848700b2f4e2f02dbad9b80a92/_close.scssc +0 -0
  142. data/spec/dummy/tmp/cache/sass/400fd17e133835848700b2f4e2f02dbad9b80a92/_code.scssc +0 -0
  143. data/spec/dummy/tmp/cache/sass/400fd17e133835848700b2f4e2f02dbad9b80a92/_component-animations.scssc +0 -0
  144. data/spec/dummy/tmp/cache/sass/400fd17e133835848700b2f4e2f02dbad9b80a92/_dropdowns.scssc +0 -0
  145. data/spec/dummy/tmp/cache/sass/400fd17e133835848700b2f4e2f02dbad9b80a92/_forms.scssc +0 -0
  146. data/spec/dummy/tmp/cache/sass/400fd17e133835848700b2f4e2f02dbad9b80a92/_grid.scssc +0 -0
  147. data/spec/dummy/tmp/cache/sass/400fd17e133835848700b2f4e2f02dbad9b80a92/_hero-unit.scssc +0 -0
  148. data/spec/dummy/tmp/cache/sass/400fd17e133835848700b2f4e2f02dbad9b80a92/_labels-badges.scssc +0 -0
  149. data/spec/dummy/tmp/cache/sass/400fd17e133835848700b2f4e2f02dbad9b80a92/_layouts.scssc +0 -0
  150. data/spec/dummy/tmp/cache/sass/400fd17e133835848700b2f4e2f02dbad9b80a92/_media.scssc +0 -0
  151. data/spec/dummy/tmp/cache/sass/400fd17e133835848700b2f4e2f02dbad9b80a92/_mixins.scssc +0 -0
  152. data/spec/dummy/tmp/cache/sass/400fd17e133835848700b2f4e2f02dbad9b80a92/_modals.scssc +0 -0
  153. data/spec/dummy/tmp/cache/sass/400fd17e133835848700b2f4e2f02dbad9b80a92/_navbar.scssc +0 -0
  154. data/spec/dummy/tmp/cache/sass/400fd17e133835848700b2f4e2f02dbad9b80a92/_navs.scssc +0 -0
  155. data/spec/dummy/tmp/cache/sass/400fd17e133835848700b2f4e2f02dbad9b80a92/_pager.scssc +0 -0
  156. data/spec/dummy/tmp/cache/sass/400fd17e133835848700b2f4e2f02dbad9b80a92/_pagination.scssc +0 -0
  157. data/spec/dummy/tmp/cache/sass/400fd17e133835848700b2f4e2f02dbad9b80a92/_popovers.scssc +0 -0
  158. data/spec/dummy/tmp/cache/sass/400fd17e133835848700b2f4e2f02dbad9b80a92/_progress-bars.scssc +0 -0
  159. data/spec/dummy/tmp/cache/sass/400fd17e133835848700b2f4e2f02dbad9b80a92/_reset.scssc +0 -0
  160. data/spec/dummy/tmp/cache/sass/400fd17e133835848700b2f4e2f02dbad9b80a92/_scaffolding.scssc +0 -0
  161. data/spec/dummy/tmp/cache/sass/400fd17e133835848700b2f4e2f02dbad9b80a92/_sprites.scssc +0 -0
  162. data/spec/dummy/tmp/cache/sass/400fd17e133835848700b2f4e2f02dbad9b80a92/_tables.scssc +0 -0
  163. data/spec/dummy/tmp/cache/sass/400fd17e133835848700b2f4e2f02dbad9b80a92/_thumbnails.scssc +0 -0
  164. data/spec/dummy/tmp/cache/sass/400fd17e133835848700b2f4e2f02dbad9b80a92/_tooltip.scssc +0 -0
  165. data/spec/dummy/tmp/cache/sass/400fd17e133835848700b2f4e2f02dbad9b80a92/_type.scssc +0 -0
  166. data/spec/dummy/tmp/cache/sass/400fd17e133835848700b2f4e2f02dbad9b80a92/_utilities.scssc +0 -0
  167. data/spec/dummy/tmp/cache/sass/400fd17e133835848700b2f4e2f02dbad9b80a92/_variables.scssc +0 -0
  168. data/spec/dummy/tmp/cache/sass/400fd17e133835848700b2f4e2f02dbad9b80a92/_wells.scssc +0 -0
  169. data/spec/dummy/tmp/cache/sass/400fd17e133835848700b2f4e2f02dbad9b80a92/bootstrap.scssc +0 -0
  170. data/spec/dummy/tmp/cache/sass/40d71a06abb9e71575f253dcb1f6b85c8b3156e2/_config.sassc +0 -0
  171. data/spec/dummy/tmp/cache/sass/40d71a06abb9e71575f253dcb1f6b85c8b3156e2/_icon-font-24.sassc +0 -0
  172. data/spec/dummy/tmp/cache/sass/40d71a06abb9e71575f253dcb1f6b85c8b3156e2/_icon-font.sassc +0 -0
  173. data/spec/dummy/tmp/cache/sass/40d71a06abb9e71575f253dcb1f6b85c8b3156e2/_mixins.sassc +0 -0
  174. data/spec/dummy/tmp/cache/sass/40d71a06abb9e71575f253dcb1f6b85c8b3156e2/_spaces.sassc +0 -0
  175. data/spec/dummy/tmp/cache/sass/803365d1c8cc163df0ae50688e30dcee22f1632b/flat-ui.sassc +0 -0
  176. data/spec/dummy/tmp/cache/sass/bc846aea9bb0b60505398d8c47551cb8d064e9e7/_btn.sassc +0 -0
  177. data/spec/dummy/tmp/cache/sass/bc846aea9bb0b60505398d8c47551cb8d064e9e7/_checkbox-and-radio.sassc +0 -0
  178. data/spec/dummy/tmp/cache/sass/bc846aea9bb0b60505398d8c47551cb8d064e9e7/_demo.sassc +0 -0
  179. data/spec/dummy/tmp/cache/sass/bc846aea9bb0b60505398d8c47551cb8d064e9e7/_footer.sassc +0 -0
  180. data/spec/dummy/tmp/cache/sass/bc846aea9bb0b60505398d8c47551cb8d064e9e7/_input.sassc +0 -0
  181. data/spec/dummy/tmp/cache/sass/bc846aea9bb0b60505398d8c47551cb8d064e9e7/_login.sassc +0 -0
  182. data/spec/dummy/tmp/cache/sass/bc846aea9bb0b60505398d8c47551cb8d064e9e7/_navbar.sassc +0 -0
  183. data/spec/dummy/tmp/cache/sass/bc846aea9bb0b60505398d8c47551cb8d064e9e7/_pager.sassc +0 -0
  184. data/spec/dummy/tmp/cache/sass/bc846aea9bb0b60505398d8c47551cb8d064e9e7/_pagination.sassc +0 -0
  185. data/spec/dummy/tmp/cache/sass/bc846aea9bb0b60505398d8c47551cb8d064e9e7/_palette.sassc +0 -0
  186. data/spec/dummy/tmp/cache/sass/bc846aea9bb0b60505398d8c47551cb8d064e9e7/_progress.sassc +0 -0
  187. data/spec/dummy/tmp/cache/sass/bc846aea9bb0b60505398d8c47551cb8d064e9e7/_select.sassc +0 -0
  188. data/spec/dummy/tmp/cache/sass/bc846aea9bb0b60505398d8c47551cb8d064e9e7/_share.sassc +0 -0
  189. data/spec/dummy/tmp/cache/sass/bc846aea9bb0b60505398d8c47551cb8d064e9e7/_tagsinput.sassc +0 -0
  190. data/spec/dummy/tmp/cache/sass/bc846aea9bb0b60505398d8c47551cb8d064e9e7/_tile.sassc +0 -0
  191. data/spec/dummy/tmp/cache/sass/bc846aea9bb0b60505398d8c47551cb8d064e9e7/_todo.sassc +0 -0
  192. data/spec/dummy/tmp/cache/sass/bc846aea9bb0b60505398d8c47551cb8d064e9e7/_toggle.sassc +0 -0
  193. data/spec/dummy/tmp/cache/sass/bc846aea9bb0b60505398d8c47551cb8d064e9e7/_tooltip.sassc +0 -0
  194. data/spec/dummy/tmp/cache/sass/bc846aea9bb0b60505398d8c47551cb8d064e9e7/_type.sassc +0 -0
  195. data/spec/dummy/tmp/cache/sass/bc846aea9bb0b60505398d8c47551cb8d064e9e7/_ui-slider.sassc +0 -0
  196. data/spec/dummy/tmp/cache/sass/bc846aea9bb0b60505398d8c47551cb8d064e9e7/_video.sassc +0 -0
  197. data/spec/factories/user.rb +8 -0
  198. data/spec/spec_helper.rb +51 -0
  199. data/test/fixtures/tracker/issues.yml +9 -0
  200. data/test/fixtures/tracker/users_issues.yml +15 -0
  201. data/test/functional/tracker/issue_mailer_test.rb +9 -0
  202. data/test/functional/tracker/issues_controller_test.rb +9 -0
  203. data/test/unit/helpers/tracker/issues_helper_test.rb +6 -0
  204. data/test/unit/tracker/issue_test.rb +9 -0
  205. data/test/unit/tracker/users_issues_test.rb +9 -0
  206. metadata +305 -0
@@ -0,0 +1,4388 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at 2013-09-24 13:13:00 -0700
4
+ Connecting to database specified by database.yml
5
+
6
+ ActionController::RoutingError (No route matches [GET] "/"):
7
+ actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
8
+ actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
9
+ railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
10
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
11
+ activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
12
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
13
+ actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
14
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
15
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
16
+ activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
17
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
18
+ actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
19
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
20
+ railties (3.2.14) lib/rails/application.rb:231:in `call'
21
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
22
+ railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
23
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
24
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
25
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
26
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
27
+
28
+
29
+ Rendered /Users/mikecifani/.rvm/gems/ruby-2.0.0-p0@active_tracker/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
30
+
31
+
32
+ Started GET "/" for 127.0.0.1 at 2013-09-24 13:14:21 -0700
33
+ Connecting to database specified by database.yml
34
+
35
+ ActionController::RoutingError (No route matches [GET] "/"):
36
+ actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
37
+ actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
38
+ railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
39
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
40
+ activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
41
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
42
+ actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
43
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
44
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
45
+ activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
46
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
47
+ actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
48
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
49
+ railties (3.2.14) lib/rails/application.rb:231:in `call'
50
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
51
+ railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
52
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
53
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
54
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
55
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
56
+
57
+
58
+ Rendered /Users/mikecifani/.rvm/gems/ruby-2.0.0-p0@active_tracker/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
59
+
60
+
61
+ Started GET "/trackers" for 127.0.0.1 at 2013-09-24 13:14:25 -0700
62
+
63
+ ActionController::RoutingError (No route matches [GET] "/trackers"):
64
+ actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
65
+ actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
66
+ railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
67
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
68
+ activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
69
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
70
+ actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
71
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
72
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
73
+ activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
74
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
75
+ actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
76
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
77
+ railties (3.2.14) lib/rails/application.rb:231:in `call'
78
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
79
+ railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
80
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
81
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
82
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
83
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
84
+
85
+
86
+ Rendered /Users/mikecifani/.rvm/gems/ruby-2.0.0-p0@active_tracker/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
87
+
88
+
89
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 13:14:27 -0700
90
+
91
+ ActionController::RoutingError (No route matches [GET] "/tracker"):
92
+ actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
93
+ actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
94
+ railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
95
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
96
+ activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
97
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
98
+ actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
99
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
100
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
101
+ activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
102
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
103
+ actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
104
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
105
+ railties (3.2.14) lib/rails/application.rb:231:in `call'
106
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
107
+ railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
108
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
109
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
110
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
111
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
112
+
113
+
114
+ Rendered /Users/mikecifani/.rvm/gems/ruby-2.0.0-p0@active_tracker/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
115
+
116
+
117
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 13:14:52 -0700
118
+
119
+ AbstractController::ActionNotFound - The action 'index' could not be found for Tracker::IssuesController:
120
+ actionpack (3.2.14) lib/abstract_controller/base.rb:116:in `process'
121
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
122
+ actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
123
+ actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
124
+ actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
125
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
126
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
127
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
128
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
129
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
130
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
131
+ railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
132
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
133
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
134
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
135
+ actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
136
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
137
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
138
+ actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
139
+ actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
140
+ actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
141
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
142
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
143
+ actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
144
+ activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
145
+ activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
146
+ actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
147
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__2885665177464035413__call__4305212778543616805__callbacks'
148
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
149
+ activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
150
+ activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
151
+ actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
152
+ actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
153
+ actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
154
+ better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call'
155
+ better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call'
156
+ better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call'
157
+ actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
158
+ actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
159
+ railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
160
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
161
+ activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
162
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
163
+ actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
164
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
165
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
166
+ activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
167
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
168
+ actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
169
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
170
+ railties (3.2.14) lib/rails/application.rb:231:in `call'
171
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
172
+ railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
173
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
174
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
175
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
176
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
177
+
178
+
179
+
180
+ Started POST "/tracker/__better_errors/70207197119640/variables" for 127.0.0.1 at 2013-09-24 13:14:52 -0700
181
+
182
+
183
+ Started GET "/" for 127.0.0.1 at 2013-09-24 13:16:54 -0700
184
+
185
+ ActionController::RoutingError (No route matches [GET] "/"):
186
+ actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
187
+ actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
188
+ railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
189
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
190
+ activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
191
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
192
+ actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
193
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
194
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
195
+ activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
196
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
197
+ actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
198
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
199
+ railties (3.2.14) lib/rails/application.rb:231:in `call'
200
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
201
+ railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
202
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
203
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
204
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
205
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
206
+
207
+
208
+ Rendered /Users/mikecifani/.rvm/gems/ruby-2.0.0-p0@active_tracker/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
209
+
210
+
211
+ Started GET "/" for 127.0.0.1 at 2013-09-24 13:17:18 -0700
212
+
213
+ ActionController::RoutingError (No route matches [GET] "/"):
214
+ actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
215
+ actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
216
+ railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
217
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
218
+ activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
219
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
220
+ actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
221
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
222
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
223
+ activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
224
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
225
+ actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
226
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
227
+ railties (3.2.14) lib/rails/application.rb:231:in `call'
228
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
229
+ railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
230
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
231
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
232
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
233
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
234
+
235
+
236
+ Rendered /Users/mikecifani/.rvm/gems/ruby-2.0.0-p0@active_tracker/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
237
+
238
+
239
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 13:17:22 -0700
240
+ Processing by Tracker::IssuesController#index as HTML
241
+ Rendered /Users/mikecifani/Projects/tracker/app/views/tracker/issues/index.html.slim within layouts/tracker/application (9.9ms)
242
+ Compiled tracker/issues.css (0ms) (pid 4221)
243
+ Compiled tracker/application.css (38ms) (pid 4221)
244
+ Compiled jquery.js (3ms) (pid 4221)
245
+ Compiled jquery_ujs.js (0ms) (pid 4221)
246
+ Compiled tracker/issues.js (0ms) (pid 4221)
247
+ Compiled tracker/application.js (147ms) (pid 4221)
248
+ Completed 200 OK in 313ms (Views: 313.2ms | ActiveRecord: 0.0ms)
249
+
250
+
251
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 13:17:22 -0700
252
+ Served asset /tracker/application.css - 200 OK (6ms)
253
+
254
+
255
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 13:17:22 -0700
256
+ Served asset /tracker/issues.css - 200 OK (1ms)
257
+
258
+
259
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 13:17:22 -0700
260
+ Served asset /tracker/issues.js - 200 OK (1ms)
261
+
262
+
263
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 13:17:22 -0700
264
+ Served asset /jquery_ujs.js - 200 OK (1ms)
265
+
266
+
267
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 13:17:22 -0700
268
+ Served asset /jquery.js - 200 OK (1ms)
269
+
270
+
271
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 13:17:22 -0700
272
+ Served asset /tracker/application.js - 200 OK (3ms)
273
+
274
+
275
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 13:18:29 -0700
276
+ Processing by Tracker::IssuesController#index as HTML
277
+ Rendered /Users/mikecifani/Projects/tracker/app/views/tracker/issues/index.html.slim within layouts/tracker/application (2.8ms)
278
+ Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.0ms)
279
+
280
+
281
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 13:18:29 -0700
282
+ Served asset /tracker/application.css - 304 Not Modified (0ms)
283
+
284
+
285
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 13:18:29 -0700
286
+ Served asset /jquery.js - 304 Not Modified (0ms)
287
+
288
+
289
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 13:18:29 -0700
290
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
291
+
292
+
293
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 13:18:29 -0700
294
+ Served asset /tracker/issues.css - 304 Not Modified (0ms)
295
+
296
+
297
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 13:18:29 -0700
298
+ Served asset /tracker/issues.js - 304 Not Modified (0ms)
299
+
300
+
301
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 13:18:29 -0700
302
+ Served asset /tracker/application.js - 304 Not Modified (0ms)
303
+
304
+
305
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 13:18:33 -0700
306
+ Processing by Tracker::IssuesController#index as HTML
307
+ Rendered /Users/mikecifani/Projects/tracker/app/views/tracker/issues/index.html.slim within layouts/tracker/application (1.9ms)
308
+ Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
309
+
310
+
311
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 13:18:33 -0700
312
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
313
+
314
+
315
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 13:18:33 -0700
316
+ Served asset /tracker/issues.js - 304 Not Modified (0ms)
317
+
318
+
319
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 13:18:33 -0700
320
+ Served asset /tracker/issues.css - 304 Not Modified (0ms)
321
+
322
+
323
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 13:18:33 -0700
324
+ Served asset /jquery.js - 304 Not Modified (0ms)
325
+
326
+
327
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 13:18:33 -0700
328
+ Served asset /tracker/application.js - 304 Not Modified (0ms)
329
+
330
+
331
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 13:18:33 -0700
332
+ Served asset /tracker/application.css - 304 Not Modified (0ms)
333
+ Connecting to database specified by database.yml
334
+  (0.1ms) select sqlite_version(*)
335
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
336
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
337
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
338
+ Migrating to CreateTrackerIssues (20130924202020)
339
+  (0.0ms) begin transaction
340
+  (0.3ms) CREATE TABLE "tracker_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" text, "content" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
341
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130924202020')
342
+  (0.7ms) commit transaction
343
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
344
+
345
+
346
+ Started GET "/" for 127.0.0.1 at 2013-09-24 13:26:19 -0700
347
+
348
+ ActionController::RoutingError (No route matches [GET] "/"):
349
+ actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
350
+ actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
351
+ railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
352
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
353
+ activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
354
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
355
+ actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
356
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
357
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
358
+ activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
359
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
360
+ actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
361
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
362
+ railties (3.2.14) lib/rails/application.rb:231:in `call'
363
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
364
+ railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
365
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
366
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
367
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
368
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
369
+
370
+
371
+ Rendered /Users/mikecifani/.rvm/gems/ruby-2.0.0-p0@active_tracker/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
372
+
373
+
374
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 13:26:24 -0700
375
+ Processing by Tracker::IssuesController#index as HTML
376
+ Tracker::Issue Load (0.1ms) SELECT "tracker_issues".* FROM "tracker_issues" 
377
+ Rendered /Users/mikecifani/Projects/tracker/app/views/tracker/issues/index.html.slim within layouts/tracker/application (2.0ms)
378
+ Completed 200 OK in 40ms (Views: 7.1ms | ActiveRecord: 0.8ms)
379
+
380
+
381
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 13:26:24 -0700
382
+ Served asset /tracker/application.css - 304 Not Modified (0ms)
383
+
384
+
385
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 13:26:24 -0700
386
+ Served asset /tracker/issues.js - 304 Not Modified (0ms)
387
+
388
+
389
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 13:26:24 -0700
390
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
391
+
392
+
393
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 13:26:24 -0700
394
+ Served asset /tracker/application.js - 304 Not Modified (0ms)
395
+
396
+
397
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 13:26:24 -0700
398
+ Served asset /jquery.js - 304 Not Modified (0ms)
399
+
400
+
401
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 13:26:24 -0700
402
+ Served asset /tracker/issues.css - 304 Not Modified (0ms)
403
+
404
+
405
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 13:27:45 -0700
406
+ Processing by Tracker::IssuesController#index as HTML
407
+ Tracker::Issue Load (0.1ms) SELECT "tracker_issues".* FROM "tracker_issues"
408
+ Rendered /Users/mikecifani/Projects/tracker/app/views/tracker/issues/index.html.slim within layouts/tracker/application (0.1ms)
409
+ Completed 200 OK in 34ms (Views: 28.1ms | ActiveRecord: 0.4ms)
410
+
411
+
412
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 13:27:45 -0700
413
+ Served asset /tracker/issues.js - 304 Not Modified (0ms)
414
+
415
+
416
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 13:27:45 -0700
417
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
418
+
419
+
420
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 13:27:45 -0700
421
+ Served asset /jquery.js - 304 Not Modified (0ms)
422
+
423
+
424
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 13:27:45 -0700
425
+ Served asset /tracker/issues.css - 304 Not Modified (0ms)
426
+
427
+
428
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 13:27:45 -0700
429
+ Served asset /tracker/application.css - 304 Not Modified (0ms)
430
+
431
+
432
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 13:27:45 -0700
433
+ Served asset /tracker/application.js - 304 Not Modified (0ms)
434
+
435
+
436
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 13:33:18 -0700
437
+ Processing by Tracker::IssuesController#index as HTML
438
+ Tracker::Issue Load (0.2ms) SELECT "tracker_issues".* FROM "tracker_issues" 
439
+ Rendered /Users/mikecifani/Projects/tracker/app/views/tracker/issues/index.html.slim within layouts/tracker/application (3.4ms)
440
+ Completed 200 OK in 9ms (Views: 8.1ms | ActiveRecord: 0.2ms)
441
+
442
+
443
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 13:33:18 -0700
444
+ Served asset /tracker/issues.css - 304 Not Modified (0ms)
445
+
446
+
447
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 13:33:18 -0700
448
+ Served asset /jquery.js - 304 Not Modified (0ms)
449
+
450
+
451
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 13:33:18 -0700
452
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
453
+
454
+
455
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 13:33:18 -0700
456
+ Served asset /tracker/application.js - 304 Not Modified (0ms)
457
+
458
+
459
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 13:33:18 -0700
460
+ Served asset /tracker/issues.js - 304 Not Modified (0ms)
461
+
462
+
463
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 13:33:18 -0700
464
+ Served asset /tracker/application.css - 304 Not Modified (0ms)
465
+
466
+
467
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 13:33:31 -0700
468
+ Processing by Tracker::IssuesController#index as HTML
469
+ Tracker::Issue Load (0.1ms) SELECT "tracker_issues".* FROM "tracker_issues"
470
+ Rendered /Users/mikecifani/Projects/tracker/app/views/tracker/issues/index.html.slim within layouts/tracker/application (2.3ms)
471
+ Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.1ms)
472
+
473
+
474
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 13:33:31 -0700
475
+ Served asset /tracker/application.css - 304 Not Modified (0ms)
476
+
477
+
478
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 13:33:31 -0700
479
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
480
+
481
+
482
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 13:33:31 -0700
483
+ Served asset /tracker/issues.css - 304 Not Modified (0ms)
484
+
485
+
486
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 13:33:31 -0700
487
+ Served asset /tracker/application.js - 304 Not Modified (0ms)
488
+
489
+
490
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 13:33:31 -0700
491
+ Served asset /jquery.js - 304 Not Modified (0ms)
492
+
493
+
494
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 13:33:31 -0700
495
+ Served asset /tracker/issues.js - 304 Not Modified (0ms)
496
+
497
+
498
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 13:38:32 -0700
499
+ Connecting to database specified by database.yml
500
+ Processing by Tracker::IssuesController#index as HTML
501
+ Tracker::Issue Load (0.1ms) SELECT "tracker_issues".* FROM "tracker_issues" 
502
+ Rendered /Users/mikecifani/Projects/tracker/app/views/tracker/issues/index.html.slim within layouts/tracker/application (11.2ms)
503
+ Completed 200 OK in 69ms (Views: 54.1ms | ActiveRecord: 0.9ms)
504
+
505
+
506
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 13:38:32 -0700
507
+ Served asset /tracker/issues.js - 304 Not Modified (1ms)
508
+
509
+
510
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 13:38:32 -0700
511
+ Served asset /tracker/application.js - 304 Not Modified (10ms)
512
+
513
+
514
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 13:38:32 -0700
515
+ Served asset /tracker/issues.css - 304 Not Modified (1ms)
516
+
517
+
518
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 13:38:32 -0700
519
+ Served asset /tracker/application.css - 304 Not Modified (2ms)
520
+
521
+
522
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 13:38:32 -0700
523
+ Served asset /jquery.js - 304 Not Modified (1ms)
524
+
525
+
526
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 13:38:32 -0700
527
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
528
+
529
+
530
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 13:49:56 -0700
531
+ Processing by Tracker::IssuesController#index as HTML
532
+ Tracker::Issue Load (0.1ms) SELECT "tracker_issues".* FROM "tracker_issues"
533
+ Completed 500 Internal Server Error in 3ms
534
+
535
+ ActionView::MissingTemplate - Missing template tracker/issues/index, tracker/application/index with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :slim]}. Searched in:
536
+ * "/Users/mikecifani/Projects/tracker/spec/dummy/app/views"
537
+ * "/Users/mikecifani/Projects/tracker/app/views"
538
+ :
539
+ actionpack (3.2.14) lib/action_view/path_set.rb:58:in `find'
540
+ actionpack (3.2.14) lib/action_view/lookup_context.rb:115:in `find'
541
+ actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template'
542
+ actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:35:in `determine_template'
543
+ actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:10:in `render'
544
+ actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template'
545
+ actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render'
546
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template'
547
+ actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template'
548
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body'
549
+ actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
550
+ actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
551
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render'
552
+ actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render'
553
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
554
+ activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
555
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
556
+ activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms'
557
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
558
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
559
+ activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
560
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render'
561
+ actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
562
+ actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
563
+ actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action'
564
+ actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action'
565
+ actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
566
+ activesupport (3.2.14) lib/active_support/callbacks.rb:403:in `_run__2194136903663716763__process_action__2661739715846039390__callbacks'
567
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
568
+ activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
569
+ activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
570
+ actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action'
571
+ actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action'
572
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
573
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
574
+ activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
575
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
576
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
577
+ actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
578
+ activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
579
+ actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process'
580
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
581
+ actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
582
+ actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
583
+ actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
584
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
585
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
586
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
587
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
588
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
589
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
590
+ railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
591
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
592
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
593
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
594
+ actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
595
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
596
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
597
+ actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
598
+ actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
599
+ actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
600
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
601
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
602
+ actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
603
+ activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
604
+ activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
605
+ actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
606
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__2022720672285828869__call__2587896537564757658__callbacks'
607
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
608
+ activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
609
+ activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
610
+ actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
611
+ actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
612
+ actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
613
+ better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call'
614
+ better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call'
615
+ better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call'
616
+ actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
617
+ actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
618
+ railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
619
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
620
+ activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
621
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
622
+ actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
623
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
624
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
625
+ activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
626
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
627
+ actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
628
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
629
+ railties (3.2.14) lib/rails/application.rb:231:in `call'
630
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
631
+ railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
632
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
633
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
634
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
635
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
636
+
637
+
638
+
639
+ Started POST "/tracker/__better_errors/70298519831340/variables" for 127.0.0.1 at 2013-09-24 13:49:56 -0700
640
+
641
+
642
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 13:50:36 -0700
643
+ Processing by Tracker::IssuesController#index as HTML
644
+ Tracker::Issue Load (0.1ms) SELECT "tracker_issues".* FROM "tracker_issues" 
645
+ Completed 500 Internal Server Error in 2ms
646
+
647
+ ActionView::MissingTemplate - Missing template tracker/issues/index, tracker/application/index with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :slim]}. Searched in:
648
+ * "/Users/mikecifani/Projects/tracker/spec/dummy/app/views"
649
+ * "/Users/mikecifani/Projects/tracker/app/views"
650
+ :
651
+ actionpack (3.2.14) lib/action_view/path_set.rb:58:in `find'
652
+ actionpack (3.2.14) lib/action_view/lookup_context.rb:115:in `find'
653
+ actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template'
654
+ actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:35:in `determine_template'
655
+ actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:10:in `render'
656
+ actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template'
657
+ actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render'
658
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template'
659
+ actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template'
660
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body'
661
+ actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
662
+ actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
663
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render'
664
+ actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render'
665
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
666
+ activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
667
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
668
+ activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms'
669
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
670
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
671
+ activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
672
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render'
673
+ actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
674
+ actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
675
+ actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action'
676
+ actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action'
677
+ actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
678
+ activesupport (3.2.14) lib/active_support/callbacks.rb:403:in `_run__2194136903663716763__process_action__2661739715846039390__callbacks'
679
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
680
+ activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
681
+ activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
682
+ actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action'
683
+ actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action'
684
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
685
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
686
+ activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
687
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
688
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
689
+ actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
690
+ activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
691
+ actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process'
692
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
693
+ actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
694
+ actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
695
+ actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
696
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
697
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
698
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
699
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
700
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
701
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
702
+ railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
703
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
704
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
705
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
706
+ actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
707
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
708
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
709
+ actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
710
+ actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
711
+ actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
712
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
713
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
714
+ actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
715
+ activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
716
+ activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
717
+ actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
718
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__2022720672285828869__call__2587896537564757658__callbacks'
719
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
720
+ activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
721
+ activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
722
+ actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
723
+ actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
724
+ actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
725
+ better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call'
726
+ better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call'
727
+ better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call'
728
+ actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
729
+ actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
730
+ railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
731
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
732
+ activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
733
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
734
+ actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
735
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
736
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
737
+ activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
738
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
739
+ actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
740
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
741
+ railties (3.2.14) lib/rails/application.rb:231:in `call'
742
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
743
+ railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
744
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
745
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
746
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
747
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
748
+
749
+
750
+
751
+ Started POST "/tracker/__better_errors/70298519127360/variables" for 127.0.0.1 at 2013-09-24 13:50:36 -0700
752
+
753
+
754
+ Started GET "/" for 127.0.0.1 at 2013-09-24 13:59:21 -0700
755
+ Connecting to database specified by database.yml
756
+
757
+ ActionController::RoutingError (No route matches [GET] "/"):
758
+ actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
759
+ actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
760
+ railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
761
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
762
+ activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
763
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
764
+ actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
765
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
766
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
767
+ activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
768
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
769
+ actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
770
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
771
+ railties (3.2.14) lib/rails/application.rb:231:in `call'
772
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
773
+ railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
774
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
775
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
776
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
777
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
778
+
779
+
780
+ Rendered /Users/mikecifani/.rvm/gems/ruby-2.0.0-p0@active_progress/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
781
+
782
+
783
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 13:59:24 -0700
784
+ Processing by Tracker::IssuesController#index as HTML
785
+ Tracker::Issue Load (0.1ms) SELECT "tracker_issues".* FROM "tracker_issues" 
786
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (11.1ms)
787
+ Compiled tracker/issues.css (0ms) (pid 7227)
788
+ Compiled tracker/application.css (42ms) (pid 7227)
789
+ Compiled jquery.js (30ms) (pid 7227)
790
+ Compiled jquery_ujs.js (0ms) (pid 7227)
791
+ Compiled tracker/issues.js (0ms) (pid 7227)
792
+ Compiled tracker/application.js (154ms) (pid 7227)
793
+ Completed 200 OK in 387ms (Views: 346.1ms | ActiveRecord: 0.9ms)
794
+
795
+
796
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 13:59:24 -0700
797
+ Served asset /tracker/application.css - 304 Not Modified (9ms)
798
+
799
+
800
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 13:59:24 -0700
801
+ Served asset /tracker/issues.css - 304 Not Modified (1ms)
802
+
803
+
804
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 13:59:24 -0700
805
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
806
+
807
+
808
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 13:59:24 -0700
809
+ Served asset /jquery.js - 304 Not Modified (1ms)
810
+
811
+
812
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 13:59:24 -0700
813
+ Served asset /tracker/issues.js - 304 Not Modified (1ms)
814
+
815
+
816
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 13:59:24 -0700
817
+ Served asset /tracker/application.js - 304 Not Modified (3ms)
818
+
819
+
820
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 14:00:04 -0700
821
+
822
+ ArgumentError - missing :action:
823
+ actionpack (3.2.14) lib/action_dispatch/routing/mapper.rb:178:in `default_controller_and_action'
824
+ actionpack (3.2.14) lib/action_dispatch/routing/mapper.rb:71:in `normalize_options!'
825
+ actionpack (3.2.14) lib/action_dispatch/routing/mapper.rb:61:in `initialize'
826
+ actionpack (3.2.14) lib/action_dispatch/routing/mapper.rb:1315:in `add_route'
827
+ actionpack (3.2.14) lib/action_dispatch/routing/mapper.rb:1294:in `decomposed_match'
828
+ actionpack (3.2.14) lib/action_dispatch/routing/mapper.rb:1276:in `block in match'
829
+ actionpack (3.2.14) lib/action_dispatch/routing/mapper.rb:1276:in `match'
830
+ actionpack (3.2.14) lib/action_dispatch/routing/mapper.rb:500:in `map_method'
831
+ actionpack (3.2.14) lib/action_dispatch/routing/mapper.rb:462:in `get'
832
+ /Users/mikecifani/Projects/active_progress/config/routes.rb:5:in `block in <top (required)>'
833
+ actionpack (3.2.14) lib/action_dispatch/routing/mapper.rb:419:in `block in with_default_scope'
834
+ actionpack (3.2.14) lib/action_dispatch/routing/mapper.rb:617:in `scope'
835
+ actionpack (3.2.14) lib/action_dispatch/routing/mapper.rb:418:in `with_default_scope'
836
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:283:in `eval_block'
837
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:263:in `draw'
838
+ /Users/mikecifani/Projects/active_progress/config/routes.rb:1:in `<top (required)>'
839
+ activesupport (3.2.14) lib/active_support/dependencies.rb:245:in `block in load'
840
+ activesupport (3.2.14) lib/active_support/dependencies.rb:236:in `load_dependency'
841
+ activesupport (3.2.14) lib/active_support/dependencies.rb:245:in `load'
842
+ railties (3.2.14) lib/rails/application/routes_reloader.rb:40:in `block in load_paths'
843
+ railties (3.2.14) lib/rails/application/routes_reloader.rb:40:in `load_paths'
844
+ railties (3.2.14) lib/rails/application/routes_reloader.rb:16:in `reload!'
845
+ railties (3.2.14) lib/rails/application/routes_reloader.rb:26:in `block in updater'
846
+ activesupport (3.2.14) lib/active_support/file_update_checker.rb:78:in `execute'
847
+ activesupport (3.2.14) lib/active_support/file_update_checker.rb:86:in `execute_if_updated'
848
+ railties (3.2.14) lib/rails/application/routes_reloader.rb:7:in `execute_if_updated'
849
+ railties (3.2.14) lib/rails/application/finisher.rb:68:in `block (2 levels) in <module:Finisher>'
850
+ activesupport (3.2.14) lib/active_support/callbacks.rb:429:in `_run__2766529918004075606__prepare__905517334917821162__callbacks'
851
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
852
+ activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_prepare_callbacks'
853
+ activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
854
+ actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:74:in `prepare!'
855
+ actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:64:in `call'
856
+ actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
857
+ better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call'
858
+ better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call'
859
+ better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call'
860
+ actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
861
+ actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
862
+ railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
863
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
864
+ activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
865
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
866
+ actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
867
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
868
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
869
+ activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
870
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
871
+ actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
872
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
873
+ railties (3.2.14) lib/rails/application.rb:231:in `call'
874
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
875
+ railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
876
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
877
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
878
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
879
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
880
+
881
+
882
+
883
+ Started POST "/__better_errors/70364496311660/variables" for 127.0.0.1 at 2013-09-24 14:00:04 -0700
884
+
885
+
886
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 14:00:21 -0700
887
+
888
+ ArgumentError - missing :action:
889
+ actionpack (3.2.14) lib/action_dispatch/routing/mapper.rb:178:in `default_controller_and_action'
890
+ actionpack (3.2.14) lib/action_dispatch/routing/mapper.rb:71:in `normalize_options!'
891
+ actionpack (3.2.14) lib/action_dispatch/routing/mapper.rb:61:in `initialize'
892
+ actionpack (3.2.14) lib/action_dispatch/routing/mapper.rb:1315:in `add_route'
893
+ actionpack (3.2.14) lib/action_dispatch/routing/mapper.rb:1294:in `decomposed_match'
894
+ actionpack (3.2.14) lib/action_dispatch/routing/mapper.rb:1276:in `block in match'
895
+ actionpack (3.2.14) lib/action_dispatch/routing/mapper.rb:1276:in `match'
896
+ actionpack (3.2.14) lib/action_dispatch/routing/mapper.rb:500:in `map_method'
897
+ actionpack (3.2.14) lib/action_dispatch/routing/mapper.rb:462:in `get'
898
+ /Users/mikecifani/Projects/active_progress/config/routes.rb:5:in `block in <top (required)>'
899
+ actionpack (3.2.14) lib/action_dispatch/routing/mapper.rb:419:in `block in with_default_scope'
900
+ actionpack (3.2.14) lib/action_dispatch/routing/mapper.rb:617:in `scope'
901
+ actionpack (3.2.14) lib/action_dispatch/routing/mapper.rb:418:in `with_default_scope'
902
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:283:in `eval_block'
903
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:263:in `draw'
904
+ /Users/mikecifani/Projects/active_progress/config/routes.rb:1:in `<top (required)>'
905
+ activesupport (3.2.14) lib/active_support/dependencies.rb:245:in `block in load'
906
+ activesupport (3.2.14) lib/active_support/dependencies.rb:236:in `load_dependency'
907
+ activesupport (3.2.14) lib/active_support/dependencies.rb:245:in `load'
908
+ railties (3.2.14) lib/rails/application/routes_reloader.rb:40:in `block in load_paths'
909
+ railties (3.2.14) lib/rails/application/routes_reloader.rb:40:in `load_paths'
910
+ railties (3.2.14) lib/rails/application/routes_reloader.rb:16:in `reload!'
911
+ railties (3.2.14) lib/rails/application/routes_reloader.rb:26:in `block in updater'
912
+ activesupport (3.2.14) lib/active_support/file_update_checker.rb:78:in `execute'
913
+ activesupport (3.2.14) lib/active_support/file_update_checker.rb:86:in `execute_if_updated'
914
+ railties (3.2.14) lib/rails/application/routes_reloader.rb:7:in `execute_if_updated'
915
+ railties (3.2.14) lib/rails/application/finisher.rb:68:in `block (2 levels) in <module:Finisher>'
916
+ activesupport (3.2.14) lib/active_support/callbacks.rb:429:in `_run__2766529918004075606__prepare__905517334917821162__callbacks'
917
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
918
+ activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_prepare_callbacks'
919
+ activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
920
+ actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:74:in `prepare!'
921
+ actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:64:in `call'
922
+ actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
923
+ better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call'
924
+ better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call'
925
+ better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call'
926
+ actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
927
+ actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
928
+ railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
929
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
930
+ activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
931
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
932
+ actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
933
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
934
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
935
+ activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
936
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
937
+ actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
938
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
939
+ railties (3.2.14) lib/rails/application.rb:231:in `call'
940
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
941
+ railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
942
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
943
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
944
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
945
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
946
+
947
+
948
+
949
+ Started POST "/__better_errors/70364495739480/variables" for 127.0.0.1 at 2013-09-24 14:00:21 -0700
950
+
951
+
952
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 14:00:37 -0700
953
+ Processing by Tracker::IssuesController#index as HTML
954
+ Tracker::Issue Load (0.1ms) SELECT "tracker_issues".* FROM "tracker_issues"
955
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (0.1ms)
956
+ Completed 200 OK in 17ms (Views: 7.1ms | ActiveRecord: 0.6ms)
957
+
958
+
959
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 14:00:38 -0700
960
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
961
+
962
+
963
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 14:00:38 -0700
964
+ Served asset /tracker/issues.css - 304 Not Modified (0ms)
965
+
966
+
967
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 14:00:38 -0700
968
+ Served asset /jquery.js - 304 Not Modified (0ms)
969
+
970
+
971
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 14:00:38 -0700
972
+ Served asset /tracker/application.css - 304 Not Modified (0ms)
973
+
974
+
975
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 14:00:38 -0700
976
+ Served asset /tracker/issues.js - 304 Not Modified (0ms)
977
+
978
+
979
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 14:00:38 -0700
980
+ Served asset /tracker/application.js - 304 Not Modified (0ms)
981
+
982
+
983
+ Started GET "/rails/routes" for 127.0.0.1 at 2013-09-24 14:00:46 -0700
984
+
985
+ ActionController::RoutingError (No route matches [GET] "/rails/routes"):
986
+ actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
987
+ actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
988
+ railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
989
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
990
+ activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
991
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
992
+ actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
993
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
994
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
995
+ activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
996
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
997
+ actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
998
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
999
+ railties (3.2.14) lib/rails/application.rb:231:in `call'
1000
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
1001
+ railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
1002
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
1003
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1004
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1005
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1006
+
1007
+
1008
+ Rendered /Users/mikecifani/.rvm/gems/ruby-2.0.0-p0@active_progress/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
1009
+
1010
+
1011
+ Started GET "/tracker/rails/routes" for 127.0.0.1 at 2013-09-24 14:00:55 -0700
1012
+
1013
+ ActionController::RoutingError (No route matches [GET] "/tracker/rails/routes"):
1014
+ actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1015
+ actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1016
+ railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
1017
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
1018
+ activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
1019
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
1020
+ actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1021
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
1022
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
1023
+ activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1024
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
1025
+ actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
1026
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
1027
+ railties (3.2.14) lib/rails/application.rb:231:in `call'
1028
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
1029
+ railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
1030
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
1031
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1032
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1033
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1034
+
1035
+
1036
+ Rendered /Users/mikecifani/.rvm/gems/ruby-2.0.0-p0@active_progress/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
1037
+
1038
+
1039
+ Started GET "/rails/routes" for 127.0.0.1 at 2013-09-24 14:00:58 -0700
1040
+
1041
+ ActionController::RoutingError (No route matches [GET] "/rails/routes"):
1042
+ actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1043
+ actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1044
+ railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
1045
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
1046
+ activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
1047
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
1048
+ actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1049
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
1050
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
1051
+ activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1052
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
1053
+ actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
1054
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
1055
+ railties (3.2.14) lib/rails/application.rb:231:in `call'
1056
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
1057
+ railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
1058
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
1059
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1060
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1061
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1062
+
1063
+
1064
+ Rendered /Users/mikecifani/.rvm/gems/ruby-2.0.0-p0@active_progress/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
1065
+
1066
+
1067
+ Started GET "/rails/routes" for 127.0.0.1 at 2013-09-24 14:02:14 -0700
1068
+ Connecting to database specified by database.yml
1069
+ Processing by Sextant::RoutesController#index as HTML
1070
+ Rendered /Users/mikecifani/.rvm/gems/ruby-2.0.0-p0@active_progress/gems/sextant-0.2.4/app/views/sextant/routes/_route.html.erb (0.6ms)
1071
+ Rendered /Users/mikecifani/.rvm/gems/ruby-2.0.0-p0@active_progress/gems/sextant-0.2.4/app/views/sextant/routes/_route_wrapper.html.erb (2.0ms)
1072
+ Rendered /Users/mikecifani/.rvm/gems/ruby-2.0.0-p0@active_progress/gems/sextant-0.2.4/app/views/sextant/routes/index.html.erb within layouts/sextant/application (28.9ms)
1073
+ Compiled sextant/sextant.js (0ms) (pid 7489)
1074
+ Compiled sextant/application.js (41ms) (pid 7489)
1075
+ Completed 200 OK in 131ms (Views: 126.1ms | ActiveRecord: 0.0ms)
1076
+
1077
+
1078
+ Started GET "/assets/sextant/application.js?body=1" for 127.0.0.1 at 2013-09-24 14:02:15 -0700
1079
+ Served asset /sextant/application.js - 200 OK (3ms)
1080
+
1081
+
1082
+ Started GET "/assets/sextant/sextant.js?body=1" for 127.0.0.1 at 2013-09-24 14:02:15 -0700
1083
+ Served asset /sextant/sextant.js - 200 OK (1ms)
1084
+
1085
+
1086
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 14:04:29 -0700
1087
+ Processing by Tracker::IssuesController#index as HTML
1088
+ Tracker::Issue Load (0.1ms) SELECT "tracker_issues".* FROM "tracker_issues" 
1089
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (18.4ms)
1090
+ Completed 500 Internal Server Error in 62ms
1091
+
1092
+ NameError - undefined local variable or method `tracker_track_issue_path' for #<#<Class:0x007f8576db9180>:0x007f8576afd9a0>:
1093
+ /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim:8:in `block in ___sers_mikecifani__rojects_active_progress_app_views_tracker_issues_index_html_slim___3737566271608970393_70105599392260'
1094
+ /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim:3:in `___sers_mikecifani__rojects_active_progress_app_views_tracker_issues_index_html_slim___3737566271608970393_70105599392260'
1095
+ actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render'
1096
+ activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument'
1097
+ actionpack (3.2.14) lib/action_view/template.rb:143:in `render'
1098
+ actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:48:in `block (2 levels) in render_template'
1099
+ actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1100
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
1101
+ activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1102
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
1103
+ actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1104
+ actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:47:in `block in render_template'
1105
+ actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:55:in `render_with_layout'
1106
+ actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template'
1107
+ actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render'
1108
+ actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template'
1109
+ actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render'
1110
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template'
1111
+ actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template'
1112
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body'
1113
+ actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
1114
+ actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
1115
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render'
1116
+ actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render'
1117
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
1118
+ activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
1119
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
1120
+ activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms'
1121
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
1122
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
1123
+ activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
1124
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render'
1125
+ actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
1126
+ actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
1127
+ actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action'
1128
+ actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action'
1129
+ actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1130
+ activesupport (3.2.14) lib/active_support/callbacks.rb:403:in `_run__3850654452405853304__process_action__2964003492996749843__callbacks'
1131
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
1132
+ activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1133
+ activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
1134
+ actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action'
1135
+ actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action'
1136
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1137
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
1138
+ activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1139
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
1140
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1141
+ actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
1142
+ activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1143
+ actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process'
1144
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
1145
+ actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
1146
+ actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1147
+ actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
1148
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1149
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
1150
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
1151
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1152
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
1153
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
1154
+ railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
1155
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
1156
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1157
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
1158
+ actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1159
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
1160
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
1161
+ actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
1162
+ actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1163
+ actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
1164
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
1165
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
1166
+ actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
1167
+ activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
1168
+ activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
1169
+ actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1170
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__4140751924665275255__call__266164077100680062__callbacks'
1171
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
1172
+ activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1173
+ activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
1174
+ actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1175
+ actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1176
+ actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1177
+ better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call'
1178
+ better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call'
1179
+ better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call'
1180
+ actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1181
+ actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1182
+ railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
1183
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
1184
+ activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
1185
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
1186
+ actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1187
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
1188
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
1189
+ activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1190
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
1191
+ actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
1192
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
1193
+ railties (3.2.14) lib/rails/application.rb:231:in `call'
1194
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
1195
+ railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
1196
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
1197
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1198
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1199
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1200
+
1201
+
1202
+
1203
+ Started POST "/tracker/__better_errors/70105600607340/variables" for 127.0.0.1 at 2013-09-24 14:04:29 -0700
1204
+
1205
+
1206
+ Started GET "/tracker/rails/routes" for 127.0.0.1 at 2013-09-24 14:13:35 -0700
1207
+
1208
+ ActionController::RoutingError (No route matches [GET] "/tracker/rails/routes"):
1209
+ actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1210
+ actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1211
+ railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
1212
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
1213
+ activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
1214
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
1215
+ actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1216
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
1217
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
1218
+ activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1219
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
1220
+ actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
1221
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
1222
+ railties (3.2.14) lib/rails/application.rb:231:in `call'
1223
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
1224
+ railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
1225
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
1226
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1227
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1228
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1229
+
1230
+
1231
+ Rendered /Users/mikecifani/.rvm/gems/ruby-2.0.0-p0@active_progress/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
1232
+
1233
+
1234
+ Started GET "/tracker/track_issue" for 127.0.0.1 at 2013-09-24 14:13:45 -0700
1235
+
1236
+ ActionController::RoutingError (No route matches [GET] "/tracker/track_issue"):
1237
+ actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1238
+ actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1239
+ railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
1240
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
1241
+ activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
1242
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
1243
+ actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1244
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
1245
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
1246
+ activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1247
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
1248
+ actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
1249
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
1250
+ railties (3.2.14) lib/rails/application.rb:231:in `call'
1251
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
1252
+ railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
1253
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
1254
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1255
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1256
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1257
+
1258
+
1259
+ Rendered /Users/mikecifani/.rvm/gems/ruby-2.0.0-p0@active_progress/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
1260
+
1261
+
1262
+ Started GET "/tracker/track_issue/4" for 127.0.0.1 at 2013-09-24 14:13:47 -0700
1263
+ Processing by Tracker::IssuesController#track_issue as HTML
1264
+ Parameters: {"id"=>"4"}
1265
+ Completed 500 Internal Server Error in 2ms
1266
+
1267
+ ActionView::MissingTemplate - Missing template tracker/issues/track_issue, tracker/application/track_issue with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :slim]}. Searched in:
1268
+ * "/Users/mikecifani/Projects/active_progress/spec/dummy/app/views"
1269
+ * "/Users/mikecifani/.rvm/gems/ruby-2.0.0-p0@active_progress/gems/sextant-0.2.4/app/views"
1270
+ * "/Users/mikecifani/Projects/active_progress/app/views"
1271
+ :
1272
+ actionpack (3.2.14) lib/action_view/path_set.rb:58:in `find'
1273
+ actionpack (3.2.14) lib/action_view/lookup_context.rb:115:in `find'
1274
+ actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template'
1275
+ actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:35:in `determine_template'
1276
+ actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:10:in `render'
1277
+ actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template'
1278
+ actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render'
1279
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template'
1280
+ actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template'
1281
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body'
1282
+ actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
1283
+ actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
1284
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render'
1285
+ actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render'
1286
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
1287
+ activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
1288
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
1289
+ activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms'
1290
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
1291
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
1292
+ activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
1293
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render'
1294
+ actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
1295
+ actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
1296
+ actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action'
1297
+ actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action'
1298
+ actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1299
+ activesupport (3.2.14) lib/active_support/callbacks.rb:403:in `_run__3850654452405853304__process_action__4502278285948902290__callbacks'
1300
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
1301
+ activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1302
+ activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
1303
+ actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action'
1304
+ actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action'
1305
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1306
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
1307
+ activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1308
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
1309
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1310
+ actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
1311
+ activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1312
+ actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process'
1313
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
1314
+ actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
1315
+ actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1316
+ actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
1317
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1318
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
1319
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
1320
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1321
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
1322
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
1323
+ railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
1324
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
1325
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1326
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
1327
+ actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1328
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
1329
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
1330
+ actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
1331
+ actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1332
+ actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
1333
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
1334
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
1335
+ actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
1336
+ activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
1337
+ activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
1338
+ actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1339
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__4140751924665275255__call__266164077100680062__callbacks'
1340
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
1341
+ activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1342
+ activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
1343
+ actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1344
+ actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1345
+ actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1346
+ better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call'
1347
+ better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call'
1348
+ better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call'
1349
+ actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1350
+ actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1351
+ railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
1352
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
1353
+ activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
1354
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
1355
+ actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1356
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
1357
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
1358
+ activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1359
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
1360
+ actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
1361
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
1362
+ railties (3.2.14) lib/rails/application.rb:231:in `call'
1363
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
1364
+ railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
1365
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
1366
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1367
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1368
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1369
+
1370
+
1371
+
1372
+ Started POST "/tracker/__better_errors/70105588138160/variables" for 127.0.0.1 at 2013-09-24 14:13:48 -0700
1373
+
1374
+
1375
+ Started GET "/tracker/track_issue/4" for 127.0.0.1 at 2013-09-24 14:21:49 -0700
1376
+ Connecting to database specified by database.yml
1377
+ Processing by Tracker::IssuesController#track_issue as HTML
1378
+ Parameters: {"id"=>"4"}
1379
+ Completed 500 Internal Server Error in 33ms
1380
+
1381
+ ActionView::MissingTemplate - Missing template tracker/issues/track_issue, tracker/application/track_issue with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :slim]}. Searched in:
1382
+ * "/Users/mikecifani/Projects/active_progress/spec/dummy/app/views"
1383
+ * "/Users/mikecifani/.rvm/gems/ruby-2.0.0-p0@active_progress/gems/sextant-0.2.4/app/views"
1384
+ * "/Users/mikecifani/Projects/active_progress/app/views"
1385
+ :
1386
+ actionpack (3.2.14) lib/action_view/path_set.rb:58:in `find'
1387
+ actionpack (3.2.14) lib/action_view/lookup_context.rb:115:in `find'
1388
+ actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template'
1389
+ actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:35:in `determine_template'
1390
+ actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:10:in `render'
1391
+ actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template'
1392
+ actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render'
1393
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template'
1394
+ actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template'
1395
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body'
1396
+ actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
1397
+ actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
1398
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render'
1399
+ actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render'
1400
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
1401
+ activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
1402
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
1403
+ activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms'
1404
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
1405
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
1406
+ activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
1407
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render'
1408
+ actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
1409
+ actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
1410
+ actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action'
1411
+ actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action'
1412
+ actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1413
+ activesupport (3.2.14) lib/active_support/callbacks.rb:403:in `_run__2286084408561494074__process_action__2896988695079594438__callbacks'
1414
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
1415
+ activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1416
+ activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
1417
+ actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action'
1418
+ actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action'
1419
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1420
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
1421
+ activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1422
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
1423
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1424
+ actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
1425
+ activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1426
+ actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process'
1427
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
1428
+ actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
1429
+ actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1430
+ actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
1431
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1432
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
1433
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
1434
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1435
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
1436
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
1437
+ railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
1438
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
1439
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1440
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
1441
+ actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1442
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
1443
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
1444
+ actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
1445
+ actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1446
+ actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
1447
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
1448
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
1449
+ actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
1450
+ activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
1451
+ activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
1452
+ actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1453
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__4051714417651140079__call__3189894558473333202__callbacks'
1454
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
1455
+ activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1456
+ activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
1457
+ actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1458
+ actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1459
+ actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1460
+ better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call'
1461
+ better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call'
1462
+ better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call'
1463
+ actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1464
+ actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1465
+ railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
1466
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
1467
+ activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
1468
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
1469
+ actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1470
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
1471
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
1472
+ activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1473
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
1474
+ actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
1475
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
1476
+ railties (3.2.14) lib/rails/application.rb:231:in `call'
1477
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
1478
+ railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
1479
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
1480
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1481
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1482
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1483
+
1484
+
1485
+
1486
+ Started POST "/tracker/__better_errors/70302185875220/variables" for 127.0.0.1 at 2013-09-24 14:21:49 -0700
1487
+
1488
+
1489
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 14:21:52 -0700
1490
+ Processing by Tracker::IssuesController#index as HTML
1491
+ Tracker::Issue Load (0.1ms) SELECT "tracker_issues".* FROM "tracker_issues" 
1492
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (17.0ms)
1493
+ Completed 500 Internal Server Error in 67ms
1494
+
1495
+ NameError - undefined local variable or method `tracker_track_issue_path' for #<#<Class:0x007fe107395680>:0x007fe1088180f8>:
1496
+ /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim:8:in `block in ___sers_mikecifani__rojects_active_progress_app_views_tracker_issues_index_html_slim___2087122952660499879_70302243603440'
1497
+ /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim:3:in `___sers_mikecifani__rojects_active_progress_app_views_tracker_issues_index_html_slim___2087122952660499879_70302243603440'
1498
+ actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render'
1499
+ activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument'
1500
+ actionpack (3.2.14) lib/action_view/template.rb:143:in `render'
1501
+ actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:48:in `block (2 levels) in render_template'
1502
+ actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1503
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
1504
+ activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1505
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
1506
+ actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1507
+ actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:47:in `block in render_template'
1508
+ actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:55:in `render_with_layout'
1509
+ actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template'
1510
+ actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render'
1511
+ actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template'
1512
+ actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render'
1513
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template'
1514
+ actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template'
1515
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body'
1516
+ actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
1517
+ actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
1518
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render'
1519
+ actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render'
1520
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
1521
+ activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
1522
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
1523
+ activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms'
1524
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
1525
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
1526
+ activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
1527
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render'
1528
+ actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
1529
+ actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
1530
+ actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action'
1531
+ actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action'
1532
+ actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1533
+ activesupport (3.2.14) lib/active_support/callbacks.rb:403:in `_run__2286084408561494074__process_action__2848826326095570__callbacks'
1534
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
1535
+ activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1536
+ activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
1537
+ actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action'
1538
+ actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action'
1539
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1540
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
1541
+ activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1542
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
1543
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1544
+ actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
1545
+ activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1546
+ actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process'
1547
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
1548
+ actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
1549
+ actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1550
+ actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
1551
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1552
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
1553
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
1554
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1555
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
1556
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
1557
+ railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
1558
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
1559
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1560
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
1561
+ actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1562
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
1563
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
1564
+ actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
1565
+ actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1566
+ actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
1567
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
1568
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
1569
+ actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
1570
+ activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
1571
+ activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
1572
+ actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1573
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__4051714417651140079__call__3189894558473333202__callbacks'
1574
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
1575
+ activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1576
+ activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
1577
+ actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1578
+ actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1579
+ actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1580
+ better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call'
1581
+ better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call'
1582
+ better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call'
1583
+ actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1584
+ actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1585
+ railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
1586
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
1587
+ activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
1588
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
1589
+ actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1590
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
1591
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
1592
+ activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1593
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
1594
+ actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
1595
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
1596
+ railties (3.2.14) lib/rails/application.rb:231:in `call'
1597
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
1598
+ railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
1599
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
1600
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1601
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1602
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1603
+
1604
+
1605
+
1606
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 14:21:52 -0700
1607
+ Processing by Tracker::IssuesController#index as HTML
1608
+ Tracker::Issue Load (0.1ms) SELECT "tracker_issues".* FROM "tracker_issues"
1609
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (7.2ms)
1610
+ Completed 500 Internal Server Error in 11ms
1611
+
1612
+ NameError - undefined local variable or method `tracker_track_issue_path' for #<#<Class:0x007fe107395680>:0x007fe108903058>:
1613
+ /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim:8:in `block in ___sers_mikecifani__rojects_active_progress_app_views_tracker_issues_index_html_slim___2087122952660499879_70302243603440'
1614
+ /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim:3:in `___sers_mikecifani__rojects_active_progress_app_views_tracker_issues_index_html_slim___2087122952660499879_70302243603440'
1615
+ actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render'
1616
+ activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument'
1617
+ actionpack (3.2.14) lib/action_view/template.rb:143:in `render'
1618
+ actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:48:in `block (2 levels) in render_template'
1619
+ actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1620
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
1621
+ activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1622
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
1623
+ actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1624
+ actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:47:in `block in render_template'
1625
+ actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:55:in `render_with_layout'
1626
+ actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template'
1627
+ actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render'
1628
+ actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template'
1629
+ actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render'
1630
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template'
1631
+ actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template'
1632
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body'
1633
+ actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
1634
+ actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
1635
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render'
1636
+ actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render'
1637
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
1638
+ activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
1639
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
1640
+ activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms'
1641
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
1642
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
1643
+ activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
1644
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render'
1645
+ actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
1646
+ actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
1647
+ actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action'
1648
+ actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action'
1649
+ actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1650
+ activesupport (3.2.14) lib/active_support/callbacks.rb:403:in `_run__2286084408561494074__process_action__2848826326095570__callbacks'
1651
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
1652
+ activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1653
+ activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
1654
+ actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action'
1655
+ actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action'
1656
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1657
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
1658
+ activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1659
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
1660
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1661
+ actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
1662
+ activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1663
+ actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process'
1664
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
1665
+ actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
1666
+ actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1667
+ actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
1668
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1669
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
1670
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
1671
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1672
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
1673
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
1674
+ railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
1675
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
1676
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1677
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
1678
+ actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1679
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
1680
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
1681
+ actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
1682
+ actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1683
+ actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
1684
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
1685
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
1686
+ actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
1687
+ activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
1688
+ activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
1689
+ actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1690
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__4051714417651140079__call__3189894558473333202__callbacks'
1691
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
1692
+ activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1693
+ activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
1694
+ actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1695
+ actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1696
+ actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1697
+ better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call'
1698
+ better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call'
1699
+ better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call'
1700
+ actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1701
+ actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1702
+ railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
1703
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
1704
+ activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
1705
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
1706
+ actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1707
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
1708
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
1709
+ activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1710
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
1711
+ actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
1712
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
1713
+ railties (3.2.14) lib/rails/application.rb:231:in `call'
1714
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
1715
+ railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
1716
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
1717
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1718
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1719
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1720
+
1721
+
1722
+
1723
+ Started POST "/tracker/__better_errors/70302244263080/variables" for 127.0.0.1 at 2013-09-24 14:21:52 -0700
1724
+
1725
+
1726
+ Started POST "/tracker/__better_errors/70302232239820/variables" for 127.0.0.1 at 2013-09-24 14:21:52 -0700
1727
+
1728
+
1729
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 14:22:20 -0700
1730
+ Processing by Tracker::IssuesController#index as HTML
1731
+ Tracker::Issue Load (0.1ms) SELECT "tracker_issues".* FROM "tracker_issues" 
1732
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (7.4ms)
1733
+ Completed 500 Internal Server Error in 20ms
1734
+
1735
+ NameError - undefined local variable or method `tracker_track_issue_path' for #<#<Class:0x007fe1089312a0>:0x007fe1072402d0>:
1736
+ /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim:8:in `block in ___sers_mikecifani__rojects_active_progress_app_views_tracker_issues_index_html_slim___2087122952660499879_70302243603440'
1737
+ /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim:3:in `___sers_mikecifani__rojects_active_progress_app_views_tracker_issues_index_html_slim___2087122952660499879_70302243603440'
1738
+ actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render'
1739
+ activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument'
1740
+ actionpack (3.2.14) lib/action_view/template.rb:143:in `render'
1741
+ actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:48:in `block (2 levels) in render_template'
1742
+ actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1743
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
1744
+ activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1745
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
1746
+ actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1747
+ actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:47:in `block in render_template'
1748
+ actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:55:in `render_with_layout'
1749
+ actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template'
1750
+ actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render'
1751
+ actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template'
1752
+ actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render'
1753
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template'
1754
+ actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template'
1755
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body'
1756
+ actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
1757
+ actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
1758
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render'
1759
+ actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render'
1760
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
1761
+ activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
1762
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
1763
+ activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms'
1764
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
1765
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
1766
+ activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
1767
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render'
1768
+ actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
1769
+ actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
1770
+ actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action'
1771
+ actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action'
1772
+ actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1773
+ activesupport (3.2.14) lib/active_support/callbacks.rb:403:in `_run__2286084408561494074__process_action__2848826326095570__callbacks'
1774
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
1775
+ activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1776
+ activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
1777
+ actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action'
1778
+ actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action'
1779
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1780
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
1781
+ activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1782
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
1783
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1784
+ actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
1785
+ activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1786
+ actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process'
1787
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
1788
+ actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
1789
+ actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1790
+ actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
1791
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1792
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
1793
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
1794
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1795
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
1796
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
1797
+ railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
1798
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
1799
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1800
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
1801
+ actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1802
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
1803
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
1804
+ actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
1805
+ actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1806
+ actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
1807
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
1808
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
1809
+ actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
1810
+ activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
1811
+ activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
1812
+ actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1813
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__4051714417651140079__call__3189894558473333202__callbacks'
1814
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
1815
+ activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1816
+ activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
1817
+ actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1818
+ actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1819
+ actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1820
+ better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call'
1821
+ better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call'
1822
+ better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call'
1823
+ actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1824
+ actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1825
+ railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
1826
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
1827
+ activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
1828
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
1829
+ actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1830
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
1831
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
1832
+ activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1833
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
1834
+ actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
1835
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
1836
+ railties (3.2.14) lib/rails/application.rb:231:in `call'
1837
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
1838
+ railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
1839
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
1840
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1841
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1842
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1843
+
1844
+
1845
+
1846
+ Started POST "/tracker/__better_errors/70302232419860/variables" for 127.0.0.1 at 2013-09-24 14:22:20 -0700
1847
+
1848
+
1849
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 14:22:29 -0700
1850
+ Processing by Tracker::IssuesController#index as HTML
1851
+ Tracker::Issue Load (0.2ms) SELECT "tracker_issues".* FROM "tracker_issues"
1852
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (3.0ms)
1853
+ Warning. Error encountered while saving cache /Users/mikecifani/Projects/active_progress/spec/dummy/tmp/cache/sass/40d71a06abb9e71575f253dcb1f6b85c8b3156e2/flat-ui.sassc: can't dump anonymous class #<Class:0x007fe104540488>
1854
+
1855
+ Compiled flat-ui.css (3195ms) (pid 7559)
1856
+ Compiled tracker/application.css (3299ms) (pid 7559)
1857
+ Compiled jquery.dropkick.js (0ms) (pid 7559)
1858
+ Compiled custom_checkbox_and_radio.js (0ms) (pid 7559)
1859
+ Compiled custom_radio.js (0ms) (pid 7559)
1860
+ Compiled jquery.tagsinput.js (0ms) (pid 7559)
1861
+ Compiled bootstrap-tooltip.js (0ms) (pid 7559)
1862
+ Compiled jquery.placeholder.js (0ms) (pid 7559)
1863
+ Compiled run_everything.js (0ms) (pid 7559)
1864
+ Compiled flat-ui.js (358ms) (pid 7559)
1865
+ Compiled tracker/application.js (407ms) (pid 7559)
1866
+ Completed 200 OK in 3774ms (Views: 3773.3ms | ActiveRecord: 0.2ms)
1867
+
1868
+
1869
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 14:22:33 -0700
1870
+ Served asset /tracker/application.css - 200 OK (51ms)
1871
+
1872
+
1873
+ Started GET "/assets/flat-ui.css?body=1" for 127.0.0.1 at 2013-09-24 14:22:33 -0700
1874
+ Served asset /flat-ui.css - 200 OK (8ms)
1875
+
1876
+
1877
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 14:22:33 -0700
1878
+ Served asset /tracker/issues.css - 304 Not Modified (6ms)
1879
+
1880
+
1881
+ Started GET "/assets/custom_radio.js?body=1" for 127.0.0.1 at 2013-09-24 14:22:33 -0700
1882
+ Served asset /custom_radio.js - 200 OK (5ms)
1883
+
1884
+
1885
+ Started GET "/assets/custom_checkbox_and_radio.js?body=1" for 127.0.0.1 at 2013-09-24 14:22:33 -0700
1886
+ Served asset /custom_checkbox_and_radio.js - 200 OK (4ms)
1887
+
1888
+
1889
+ Started GET "/assets/jquery.dropkick.js?body=1" for 127.0.0.1 at 2013-09-24 14:22:33 -0700
1890
+ Served asset /jquery.dropkick.js - 200 OK (4ms)
1891
+
1892
+
1893
+ Started GET "/assets/jquery.tagsinput.js?body=1" for 127.0.0.1 at 2013-09-24 14:22:33 -0700
1894
+ Served asset /jquery.tagsinput.js - 200 OK (5ms)
1895
+
1896
+
1897
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-09-24 14:22:33 -0700
1898
+ Served asset /bootstrap-tooltip.js - 200 OK (4ms)
1899
+
1900
+
1901
+ Started GET "/assets/jquery.placeholder.js?body=1" for 127.0.0.1 at 2013-09-24 14:22:33 -0700
1902
+ Served asset /jquery.placeholder.js - 200 OK (4ms)
1903
+
1904
+
1905
+ Started GET "/assets/run_everything.js?body=1" for 127.0.0.1 at 2013-09-24 14:22:33 -0700
1906
+ Served asset /run_everything.js - 200 OK (2ms)
1907
+
1908
+
1909
+ Started GET "/assets/flat-ui.js?body=1" for 127.0.0.1 at 2013-09-24 14:22:33 -0700
1910
+ Served asset /flat-ui.js - 200 OK (5ms)
1911
+
1912
+
1913
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 14:22:33 -0700
1914
+ Served asset /jquery.js - 304 Not Modified (2ms)
1915
+
1916
+
1917
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 14:22:33 -0700
1918
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
1919
+
1920
+
1921
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 14:22:33 -0700
1922
+ Served asset /tracker/issues.js - 304 Not Modified (1ms)
1923
+
1924
+
1925
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 14:22:33 -0700
1926
+ Served asset /tracker/application.js - 200 OK (40ms)
1927
+
1928
+
1929
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 14:25:43 -0700
1930
+ Processing by Tracker::IssuesController#index as HTML
1931
+ Tracker::Issue Load (0.1ms) SELECT "tracker_issues".* FROM "tracker_issues" 
1932
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (5.9ms)
1933
+ Completed 200 OK in 14ms (Views: 12.8ms | ActiveRecord: 0.1ms)
1934
+
1935
+
1936
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 14:25:43 -0700
1937
+ Served asset /tracker/application.css - 304 Not Modified (0ms)
1938
+
1939
+
1940
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 14:25:43 -0700
1941
+ Served asset /jquery.js - 304 Not Modified (0ms)
1942
+
1943
+
1944
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 14:25:43 -0700
1945
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1946
+
1947
+
1948
+ Started GET "/assets/flat-ui.css?body=1" for 127.0.0.1 at 2013-09-24 14:25:43 -0700
1949
+ Served asset /flat-ui.css - 304 Not Modified (0ms)
1950
+
1951
+
1952
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 14:25:43 -0700
1953
+ Served asset /tracker/issues.css - 304 Not Modified (0ms)
1954
+
1955
+
1956
+ Started GET "/assets/jquery.dropkick.js?body=1" for 127.0.0.1 at 2013-09-24 14:25:43 -0700
1957
+ Served asset /jquery.dropkick.js - 304 Not Modified (0ms)
1958
+
1959
+
1960
+ Started GET "/assets/custom_checkbox_and_radio.js?body=1" for 127.0.0.1 at 2013-09-24 14:25:43 -0700
1961
+ Served asset /custom_checkbox_and_radio.js - 304 Not Modified (0ms)
1962
+
1963
+
1964
+ Started GET "/assets/custom_radio.js?body=1" for 127.0.0.1 at 2013-09-24 14:25:43 -0700
1965
+ Served asset /custom_radio.js - 304 Not Modified (0ms)
1966
+
1967
+
1968
+ Started GET "/assets/jquery.tagsinput.js?body=1" for 127.0.0.1 at 2013-09-24 14:25:43 -0700
1969
+ Served asset /jquery.tagsinput.js - 304 Not Modified (0ms)
1970
+
1971
+
1972
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-09-24 14:25:43 -0700
1973
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
1974
+
1975
+
1976
+ Started GET "/assets/jquery.placeholder.js?body=1" for 127.0.0.1 at 2013-09-24 14:25:43 -0700
1977
+ Served asset /jquery.placeholder.js - 304 Not Modified (0ms)
1978
+
1979
+
1980
+ Started GET "/assets/run_everything.js?body=1" for 127.0.0.1 at 2013-09-24 14:25:43 -0700
1981
+ Served asset /run_everything.js - 304 Not Modified (0ms)
1982
+
1983
+
1984
+ Started GET "/assets/flat-ui.js?body=1" for 127.0.0.1 at 2013-09-24 14:25:43 -0700
1985
+ Served asset /flat-ui.js - 304 Not Modified (0ms)
1986
+
1987
+
1988
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 14:25:43 -0700
1989
+ Served asset /tracker/issues.js - 304 Not Modified (0ms)
1990
+
1991
+
1992
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 14:25:43 -0700
1993
+ Served asset /tracker/application.js - 304 Not Modified (0ms)
1994
+
1995
+
1996
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 14:26:39 -0700
1997
+ Processing by Tracker::IssuesController#index as HTML
1998
+ Tracker::Issue Load (0.1ms) SELECT "tracker_issues".* FROM "tracker_issues"
1999
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (12.5ms)
2000
+ Completed 200 OK in 22ms (Views: 21.1ms | ActiveRecord: 0.1ms)
2001
+
2002
+
2003
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 14:26:39 -0700
2004
+ Served asset /tracker/application.css - 304 Not Modified (1ms)
2005
+
2006
+
2007
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 14:26:39 -0700
2008
+ Served asset /tracker/issues.css - 304 Not Modified (0ms)
2009
+
2010
+
2011
+ Started GET "/assets/flat-ui.css?body=1" for 127.0.0.1 at 2013-09-24 14:26:39 -0700
2012
+ Served asset /flat-ui.css - 304 Not Modified (4ms)
2013
+
2014
+
2015
+ Started GET "/assets/jquery.dropkick.js?body=1" for 127.0.0.1 at 2013-09-24 14:26:39 -0700
2016
+ Served asset /jquery.dropkick.js - 304 Not Modified (0ms)
2017
+
2018
+
2019
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 14:26:39 -0700
2020
+ Served asset /jquery.js - 304 Not Modified (0ms)
2021
+
2022
+
2023
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 14:26:39 -0700
2024
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2025
+
2026
+
2027
+ Started GET "/assets/custom_checkbox_and_radio.js?body=1" for 127.0.0.1 at 2013-09-24 14:26:39 -0700
2028
+ Served asset /custom_checkbox_and_radio.js - 304 Not Modified (0ms)
2029
+
2030
+
2031
+ Started GET "/assets/custom_radio.js?body=1" for 127.0.0.1 at 2013-09-24 14:26:39 -0700
2032
+ Served asset /custom_radio.js - 304 Not Modified (0ms)
2033
+
2034
+
2035
+ Started GET "/assets/jquery.tagsinput.js?body=1" for 127.0.0.1 at 2013-09-24 14:26:39 -0700
2036
+ Served asset /jquery.tagsinput.js - 304 Not Modified (0ms)
2037
+
2038
+
2039
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-09-24 14:26:39 -0700
2040
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2041
+
2042
+
2043
+ Started GET "/assets/jquery.placeholder.js?body=1" for 127.0.0.1 at 2013-09-24 14:26:39 -0700
2044
+ Served asset /jquery.placeholder.js - 304 Not Modified (0ms)
2045
+
2046
+
2047
+ Started GET "/assets/run_everything.js?body=1" for 127.0.0.1 at 2013-09-24 14:26:39 -0700
2048
+ Served asset /run_everything.js - 304 Not Modified (0ms)
2049
+
2050
+
2051
+ Started GET "/assets/flat-ui.js?body=1" for 127.0.0.1 at 2013-09-24 14:26:39 -0700
2052
+ Served asset /flat-ui.js - 304 Not Modified (0ms)
2053
+
2054
+
2055
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 14:26:39 -0700
2056
+ Served asset /tracker/issues.js - 304 Not Modified (0ms)
2057
+
2058
+
2059
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 14:26:39 -0700
2060
+ Served asset /tracker/application.js - 304 Not Modified (0ms)
2061
+
2062
+
2063
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 14:26:43 -0700
2064
+ Processing by Tracker::IssuesController#index as HTML
2065
+ Tracker::Issue Load (0.1ms) SELECT "tracker_issues".* FROM "tracker_issues" 
2066
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (6.4ms)
2067
+ Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.1ms)
2068
+
2069
+
2070
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 14:26:43 -0700
2071
+ Served asset /tracker/application.css - 304 Not Modified (0ms)
2072
+
2073
+
2074
+ Started GET "/assets/flat-ui.css?body=1" for 127.0.0.1 at 2013-09-24 14:26:43 -0700
2075
+ Served asset /flat-ui.css - 304 Not Modified (1ms)
2076
+
2077
+
2078
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 14:26:43 -0700
2079
+ Served asset /jquery.js - 304 Not Modified (0ms)
2080
+
2081
+
2082
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 14:26:43 -0700
2083
+ Served asset /tracker/issues.css - 304 Not Modified (0ms)
2084
+
2085
+
2086
+ Started GET "/assets/jquery.dropkick.js?body=1" for 127.0.0.1 at 2013-09-24 14:26:43 -0700
2087
+ Served asset /jquery.dropkick.js - 304 Not Modified (0ms)
2088
+
2089
+
2090
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 14:26:43 -0700
2091
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2092
+
2093
+
2094
+ Started GET "/assets/custom_checkbox_and_radio.js?body=1" for 127.0.0.1 at 2013-09-24 14:26:43 -0700
2095
+ Served asset /custom_checkbox_and_radio.js - 304 Not Modified (0ms)
2096
+
2097
+
2098
+ Started GET "/assets/custom_radio.js?body=1" for 127.0.0.1 at 2013-09-24 14:26:43 -0700
2099
+ Served asset /custom_radio.js - 304 Not Modified (0ms)
2100
+
2101
+
2102
+ Started GET "/assets/jquery.tagsinput.js?body=1" for 127.0.0.1 at 2013-09-24 14:26:43 -0700
2103
+ Served asset /jquery.tagsinput.js - 304 Not Modified (0ms)
2104
+
2105
+
2106
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-09-24 14:26:43 -0700
2107
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2108
+
2109
+
2110
+ Started GET "/assets/jquery.placeholder.js?body=1" for 127.0.0.1 at 2013-09-24 14:26:43 -0700
2111
+ Served asset /jquery.placeholder.js - 304 Not Modified (0ms)
2112
+
2113
+
2114
+ Started GET "/assets/run_everything.js?body=1" for 127.0.0.1 at 2013-09-24 14:26:43 -0700
2115
+ Served asset /run_everything.js - 304 Not Modified (0ms)
2116
+
2117
+
2118
+ Started GET "/assets/flat-ui.js?body=1" for 127.0.0.1 at 2013-09-24 14:26:43 -0700
2119
+ Served asset /flat-ui.js - 304 Not Modified (0ms)
2120
+
2121
+
2122
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 14:26:43 -0700
2123
+ Served asset /tracker/issues.js - 304 Not Modified (0ms)
2124
+
2125
+
2126
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 14:26:44 -0700
2127
+ Served asset /tracker/application.js - 304 Not Modified (0ms)
2128
+
2129
+
2130
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 15:07:26 -0700
2131
+ Connecting to database specified by database.yml
2132
+ Processing by Tracker::IssuesController#index as HTML
2133
+ Tracker::Issue Load (0.1ms) SELECT "tracker_issues".* FROM "tracker_issues" 
2134
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (15.8ms)
2135
+ Completed 200 OK in 120ms (Views: 77.7ms | ActiveRecord: 1.0ms)
2136
+
2137
+
2138
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 15:07:27 -0700
2139
+ Served asset /tracker/issues.css - 304 Not Modified (6ms)
2140
+
2141
+
2142
+ Started GET "/assets/jquery.dropkick.js?body=1" for 127.0.0.1 at 2013-09-24 15:07:27 -0700
2143
+ Served asset /jquery.dropkick.js - 304 Not Modified (5ms)
2144
+
2145
+
2146
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 15:07:27 -0700
2147
+ Served asset /jquery.js - 304 Not Modified (6ms)
2148
+
2149
+
2150
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 15:07:27 -0700
2151
+ Served asset /jquery_ujs.js - 304 Not Modified (7ms)
2152
+
2153
+
2154
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 15:07:27 -0700
2155
+ Served asset /tracker/application.css - 304 Not Modified (18ms)
2156
+
2157
+
2158
+ Started GET "/assets/flat-ui.css?body=1" for 127.0.0.1 at 2013-09-24 15:07:27 -0700
2159
+ Served asset /flat-ui.css - 304 Not Modified (10ms)
2160
+
2161
+
2162
+ Started GET "/assets/custom_checkbox_and_radio.js?body=1" for 127.0.0.1 at 2013-09-24 15:07:27 -0700
2163
+ Served asset /custom_checkbox_and_radio.js - 304 Not Modified (5ms)
2164
+
2165
+
2166
+ Started GET "/assets/custom_radio.js?body=1" for 127.0.0.1 at 2013-09-24 15:07:27 -0700
2167
+ Served asset /custom_radio.js - 304 Not Modified (5ms)
2168
+
2169
+
2170
+ Started GET "/assets/jquery.tagsinput.js?body=1" for 127.0.0.1 at 2013-09-24 15:07:27 -0700
2171
+ Served asset /jquery.tagsinput.js - 304 Not Modified (5ms)
2172
+
2173
+
2174
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-09-24 15:07:27 -0700
2175
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (1ms)
2176
+
2177
+
2178
+ Started GET "/assets/jquery.placeholder.js?body=1" for 127.0.0.1 at 2013-09-24 15:07:27 -0700
2179
+ Served asset /jquery.placeholder.js - 304 Not Modified (33ms)
2180
+
2181
+
2182
+ Started GET "/assets/run_everything.js?body=1" for 127.0.0.1 at 2013-09-24 15:07:27 -0700
2183
+ Served asset /run_everything.js - 304 Not Modified (2ms)
2184
+
2185
+
2186
+ Started GET "/assets/flat-ui.js?body=1" for 127.0.0.1 at 2013-09-24 15:07:27 -0700
2187
+ Served asset /flat-ui.js - 304 Not Modified (9ms)
2188
+
2189
+
2190
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 15:07:27 -0700
2191
+ Served asset /tracker/issues.js - 304 Not Modified (2ms)
2192
+
2193
+
2194
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 15:07:27 -0700
2195
+ Served asset /tracker/application.js - 304 Not Modified (9ms)
2196
+
2197
+
2198
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 15:07:50 -0700
2199
+ Processing by Tracker::IssuesController#index as HTML
2200
+ Tracker::Issue Load (0.1ms) SELECT "tracker_issues".* FROM "tracker_issues"
2201
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (6.5ms)
2202
+ Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms)
2203
+
2204
+
2205
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 15:07:51 -0700
2206
+ Served asset /tracker/application.css - 304 Not Modified (2ms)
2207
+
2208
+
2209
+ Started GET "/assets/flat-ui.css?body=1" for 127.0.0.1 at 2013-09-24 15:07:51 -0700
2210
+ Served asset /flat-ui.css - 304 Not Modified (0ms)
2211
+
2212
+
2213
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 15:07:51 -0700
2214
+ Served asset /tracker/issues.css - 304 Not Modified (0ms)
2215
+
2216
+
2217
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 15:07:51 -0700
2218
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2219
+
2220
+
2221
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 15:07:51 -0700
2222
+ Served asset /jquery.js - 304 Not Modified (0ms)
2223
+
2224
+
2225
+ Started GET "/assets/jquery.dropkick.js?body=1" for 127.0.0.1 at 2013-09-24 15:07:51 -0700
2226
+ Served asset /jquery.dropkick.js - 304 Not Modified (0ms)
2227
+
2228
+
2229
+ Started GET "/assets/custom_checkbox_and_radio.js?body=1" for 127.0.0.1 at 2013-09-24 15:07:51 -0700
2230
+ Served asset /custom_checkbox_and_radio.js - 304 Not Modified (0ms)
2231
+
2232
+
2233
+ Started GET "/assets/custom_radio.js?body=1" for 127.0.0.1 at 2013-09-24 15:07:51 -0700
2234
+ Served asset /custom_radio.js - 304 Not Modified (0ms)
2235
+
2236
+
2237
+ Started GET "/assets/jquery.tagsinput.js?body=1" for 127.0.0.1 at 2013-09-24 15:07:51 -0700
2238
+ Served asset /jquery.tagsinput.js - 304 Not Modified (0ms)
2239
+
2240
+
2241
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-09-24 15:07:51 -0700
2242
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2243
+
2244
+
2245
+ Started GET "/assets/jquery.placeholder.js?body=1" for 127.0.0.1 at 2013-09-24 15:07:51 -0700
2246
+ Served asset /jquery.placeholder.js - 304 Not Modified (0ms)
2247
+
2248
+
2249
+ Started GET "/assets/run_everything.js?body=1" for 127.0.0.1 at 2013-09-24 15:07:51 -0700
2250
+ Served asset /run_everything.js - 304 Not Modified (0ms)
2251
+
2252
+
2253
+ Started GET "/assets/flat-ui.js?body=1" for 127.0.0.1 at 2013-09-24 15:07:51 -0700
2254
+ Served asset /flat-ui.js - 304 Not Modified (0ms)
2255
+
2256
+
2257
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 15:07:51 -0700
2258
+ Served asset /tracker/issues.js - 304 Not Modified (0ms)
2259
+
2260
+
2261
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 15:07:51 -0700
2262
+ Served asset /tracker/application.js - 304 Not Modified (0ms)
2263
+
2264
+
2265
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 15:08:03 -0700
2266
+ Processing by Tracker::IssuesController#index as HTML
2267
+ Tracker::Issue Load (0.1ms) SELECT "tracker_issues".* FROM "tracker_issues" 
2268
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (5.8ms)
2269
+ Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.1ms)
2270
+
2271
+
2272
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 15:08:03 -0700
2273
+ Served asset /tracker/application.css - 304 Not Modified (1ms)
2274
+
2275
+
2276
+ Started GET "/assets/flat-ui.css?body=1" for 127.0.0.1 at 2013-09-24 15:08:03 -0700
2277
+ Served asset /flat-ui.css - 304 Not Modified (0ms)
2278
+
2279
+
2280
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:03 -0700
2281
+ Served asset /jquery.js - 304 Not Modified (0ms)
2282
+
2283
+
2284
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 15:08:03 -0700
2285
+ Served asset /tracker/issues.css - 304 Not Modified (0ms)
2286
+
2287
+
2288
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:03 -0700
2289
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2290
+
2291
+
2292
+ Started GET "/assets/jquery.dropkick.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:03 -0700
2293
+ Served asset /jquery.dropkick.js - 304 Not Modified (0ms)
2294
+
2295
+
2296
+ Started GET "/assets/custom_checkbox_and_radio.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:03 -0700
2297
+ Served asset /custom_checkbox_and_radio.js - 304 Not Modified (0ms)
2298
+
2299
+
2300
+ Started GET "/assets/custom_radio.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:03 -0700
2301
+ Served asset /custom_radio.js - 304 Not Modified (0ms)
2302
+
2303
+
2304
+ Started GET "/assets/jquery.tagsinput.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:03 -0700
2305
+ Served asset /jquery.tagsinput.js - 304 Not Modified (0ms)
2306
+
2307
+
2308
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:03 -0700
2309
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2310
+
2311
+
2312
+ Started GET "/assets/jquery.placeholder.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:03 -0700
2313
+ Served asset /jquery.placeholder.js - 304 Not Modified (0ms)
2314
+
2315
+
2316
+ Started GET "/assets/run_everything.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:03 -0700
2317
+ Served asset /run_everything.js - 304 Not Modified (0ms)
2318
+
2319
+
2320
+ Started GET "/assets/flat-ui.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:03 -0700
2321
+ Served asset /flat-ui.js - 304 Not Modified (0ms)
2322
+
2323
+
2324
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:03 -0700
2325
+ Served asset /tracker/issues.js - 304 Not Modified (0ms)
2326
+
2327
+
2328
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:03 -0700
2329
+ Served asset /tracker/application.js - 304 Not Modified (0ms)
2330
+
2331
+
2332
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 15:08:24 -0700
2333
+ Processing by Tracker::IssuesController#index as HTML
2334
+ Tracker::Issue Load (0.2ms) SELECT "tracker_issues".* FROM "tracker_issues"
2335
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (49.9ms)
2336
+ Completed 200 OK in 62ms (Views: 61.0ms | ActiveRecord: 0.2ms)
2337
+
2338
+
2339
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 15:08:24 -0700
2340
+ Served asset /tracker/application.css - 304 Not Modified (1ms)
2341
+
2342
+
2343
+ Started GET "/assets/flat-ui.css?body=1" for 127.0.0.1 at 2013-09-24 15:08:24 -0700
2344
+ Served asset /flat-ui.css - 304 Not Modified (0ms)
2345
+
2346
+
2347
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:24 -0700
2348
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2349
+
2350
+
2351
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:24 -0700
2352
+ Served asset /jquery.js - 304 Not Modified (0ms)
2353
+
2354
+
2355
+ Started GET "/assets/jquery.dropkick.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:24 -0700
2356
+ Served asset /jquery.dropkick.js - 304 Not Modified (0ms)
2357
+
2358
+
2359
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 15:08:24 -0700
2360
+ Served asset /tracker/issues.css - 304 Not Modified (0ms)
2361
+
2362
+
2363
+ Started GET "/assets/custom_checkbox_and_radio.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:24 -0700
2364
+ Served asset /custom_checkbox_and_radio.js - 304 Not Modified (0ms)
2365
+
2366
+
2367
+ Started GET "/assets/custom_radio.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:24 -0700
2368
+ Served asset /custom_radio.js - 304 Not Modified (0ms)
2369
+
2370
+
2371
+ Started GET "/assets/jquery.tagsinput.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:24 -0700
2372
+ Served asset /jquery.tagsinput.js - 304 Not Modified (0ms)
2373
+
2374
+
2375
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:24 -0700
2376
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2377
+
2378
+
2379
+ Started GET "/assets/jquery.placeholder.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:24 -0700
2380
+ Served asset /jquery.placeholder.js - 304 Not Modified (0ms)
2381
+
2382
+
2383
+ Started GET "/assets/run_everything.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:24 -0700
2384
+ Served asset /run_everything.js - 304 Not Modified (0ms)
2385
+
2386
+
2387
+ Started GET "/assets/flat-ui.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:24 -0700
2388
+ Served asset /flat-ui.js - 304 Not Modified (0ms)
2389
+
2390
+
2391
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:24 -0700
2392
+ Served asset /tracker/issues.js - 304 Not Modified (0ms)
2393
+
2394
+
2395
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:24 -0700
2396
+ Served asset /tracker/application.js - 304 Not Modified (0ms)
2397
+
2398
+
2399
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 15:08:53 -0700
2400
+ Processing by Tracker::IssuesController#index as HTML
2401
+ Tracker::Issue Load (0.1ms) SELECT "tracker_issues".* FROM "tracker_issues" 
2402
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (3.7ms)
2403
+ Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.1ms)
2404
+
2405
+
2406
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 15:08:53 -0700
2407
+ Served asset /tracker/application.css - 304 Not Modified (6ms)
2408
+
2409
+
2410
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:53 -0700
2411
+ Served asset /jquery.js - 304 Not Modified (0ms)
2412
+
2413
+
2414
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 15:08:53 -0700
2415
+ Served asset /tracker/issues.css - 304 Not Modified (0ms)
2416
+
2417
+
2418
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:53 -0700
2419
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2420
+
2421
+
2422
+ Started GET "/assets/flat-ui.css?body=1" for 127.0.0.1 at 2013-09-24 15:08:53 -0700
2423
+ Served asset /flat-ui.css - 304 Not Modified (1ms)
2424
+
2425
+
2426
+ Started GET "/assets/jquery.dropkick.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:53 -0700
2427
+ Served asset /jquery.dropkick.js - 304 Not Modified (0ms)
2428
+
2429
+
2430
+ Started GET "/assets/custom_checkbox_and_radio.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:53 -0700
2431
+ Served asset /custom_checkbox_and_radio.js - 304 Not Modified (0ms)
2432
+
2433
+
2434
+ Started GET "/assets/jquery.tagsinput.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:53 -0700
2435
+ Served asset /jquery.tagsinput.js - 304 Not Modified (0ms)
2436
+
2437
+
2438
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:53 -0700
2439
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2440
+
2441
+
2442
+ Started GET "/assets/custom_radio.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:53 -0700
2443
+ Served asset /custom_radio.js - 304 Not Modified (0ms)
2444
+
2445
+
2446
+ Started GET "/assets/jquery.placeholder.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:53 -0700
2447
+ Served asset /jquery.placeholder.js - 304 Not Modified (0ms)
2448
+
2449
+
2450
+ Started GET "/assets/run_everything.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:53 -0700
2451
+ Served asset /run_everything.js - 304 Not Modified (0ms)
2452
+
2453
+
2454
+ Started GET "/assets/flat-ui.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:53 -0700
2455
+ Served asset /flat-ui.js - 304 Not Modified (0ms)
2456
+
2457
+
2458
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:53 -0700
2459
+ Served asset /tracker/issues.js - 304 Not Modified (0ms)
2460
+
2461
+
2462
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:53 -0700
2463
+ Served asset /tracker/application.js - 304 Not Modified (0ms)
2464
+
2465
+
2466
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 15:08:57 -0700
2467
+ Processing by Tracker::IssuesController#index as HTML
2468
+ Tracker::Issue Load (0.2ms) SELECT "tracker_issues".* FROM "tracker_issues"
2469
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (4.2ms)
2470
+ Completed 200 OK in 14ms (Views: 12.5ms | ActiveRecord: 0.2ms)
2471
+
2472
+
2473
+ Started GET "/assets/flat-ui.css?body=1" for 127.0.0.1 at 2013-09-24 15:08:57 -0700
2474
+ Served asset /flat-ui.css - 304 Not Modified (0ms)
2475
+
2476
+
2477
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 15:08:57 -0700
2478
+ Served asset /tracker/application.css - 304 Not Modified (1ms)
2479
+
2480
+
2481
+ Started GET "/assets/jquery.dropkick.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:57 -0700
2482
+ Served asset /jquery.dropkick.js - 304 Not Modified (0ms)
2483
+
2484
+
2485
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 15:08:57 -0700
2486
+ Served asset /tracker/issues.css - 304 Not Modified (0ms)
2487
+
2488
+
2489
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:57 -0700
2490
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2491
+
2492
+
2493
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:57 -0700
2494
+ Served asset /jquery.js - 304 Not Modified (0ms)
2495
+
2496
+
2497
+ Started GET "/assets/custom_checkbox_and_radio.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:57 -0700
2498
+ Served asset /custom_checkbox_and_radio.js - 304 Not Modified (0ms)
2499
+
2500
+
2501
+ Started GET "/assets/custom_radio.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:57 -0700
2502
+ Served asset /custom_radio.js - 304 Not Modified (0ms)
2503
+
2504
+
2505
+ Started GET "/assets/jquery.tagsinput.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:57 -0700
2506
+ Served asset /jquery.tagsinput.js - 304 Not Modified (0ms)
2507
+
2508
+
2509
+ Started GET "/assets/jquery.placeholder.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:57 -0700
2510
+ Served asset /jquery.placeholder.js - 304 Not Modified (0ms)
2511
+
2512
+
2513
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:57 -0700
2514
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2515
+
2516
+
2517
+ Started GET "/assets/run_everything.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:57 -0700
2518
+ Served asset /run_everything.js - 304 Not Modified (0ms)
2519
+
2520
+
2521
+ Started GET "/assets/flat-ui.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:57 -0700
2522
+ Served asset /flat-ui.js - 304 Not Modified (0ms)
2523
+
2524
+
2525
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:57 -0700
2526
+ Served asset /tracker/issues.js - 304 Not Modified (0ms)
2527
+
2528
+
2529
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 15:08:57 -0700
2530
+ Served asset /tracker/application.js - 304 Not Modified (0ms)
2531
+
2532
+
2533
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 15:09:07 -0700
2534
+ Processing by Tracker::IssuesController#index as HTML
2535
+ Tracker::Issue Load (0.1ms) SELECT "tracker_issues".* FROM "tracker_issues" 
2536
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (3.8ms)
2537
+ Completed 200 OK in 13ms (Views: 11.6ms | ActiveRecord: 0.1ms)
2538
+
2539
+
2540
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 15:09:07 -0700
2541
+ Served asset /tracker/application.css - 304 Not Modified (5ms)
2542
+
2543
+
2544
+ Started GET "/assets/flat-ui.css?body=1" for 127.0.0.1 at 2013-09-24 15:09:07 -0700
2545
+ Served asset /flat-ui.css - 304 Not Modified (3ms)
2546
+
2547
+
2548
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 15:09:07 -0700
2549
+ Served asset /jquery.js - 304 Not Modified (0ms)
2550
+
2551
+
2552
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 15:09:07 -0700
2553
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2554
+
2555
+
2556
+ Started GET "/assets/jquery.dropkick.js?body=1" for 127.0.0.1 at 2013-09-24 15:09:07 -0700
2557
+ Served asset /jquery.dropkick.js - 304 Not Modified (0ms)
2558
+
2559
+
2560
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 15:09:07 -0700
2561
+ Served asset /tracker/issues.css - 304 Not Modified (0ms)
2562
+
2563
+
2564
+ Started GET "/assets/custom_checkbox_and_radio.js?body=1" for 127.0.0.1 at 2013-09-24 15:09:07 -0700
2565
+ Served asset /custom_checkbox_and_radio.js - 304 Not Modified (0ms)
2566
+
2567
+
2568
+ Started GET "/assets/custom_radio.js?body=1" for 127.0.0.1 at 2013-09-24 15:09:07 -0700
2569
+ Served asset /custom_radio.js - 304 Not Modified (0ms)
2570
+
2571
+
2572
+ Started GET "/assets/jquery.tagsinput.js?body=1" for 127.0.0.1 at 2013-09-24 15:09:07 -0700
2573
+ Served asset /jquery.tagsinput.js - 304 Not Modified (0ms)
2574
+
2575
+
2576
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-09-24 15:09:07 -0700
2577
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2578
+
2579
+
2580
+ Started GET "/assets/jquery.placeholder.js?body=1" for 127.0.0.1 at 2013-09-24 15:09:07 -0700
2581
+ Served asset /jquery.placeholder.js - 304 Not Modified (0ms)
2582
+
2583
+
2584
+ Started GET "/assets/run_everything.js?body=1" for 127.0.0.1 at 2013-09-24 15:09:07 -0700
2585
+ Served asset /run_everything.js - 304 Not Modified (0ms)
2586
+
2587
+
2588
+ Started GET "/assets/flat-ui.js?body=1" for 127.0.0.1 at 2013-09-24 15:09:07 -0700
2589
+ Served asset /flat-ui.js - 304 Not Modified (0ms)
2590
+
2591
+
2592
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 15:09:07 -0700
2593
+ Served asset /tracker/issues.js - 304 Not Modified (0ms)
2594
+
2595
+
2596
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 15:09:07 -0700
2597
+ Served asset /tracker/application.js - 304 Not Modified (0ms)
2598
+
2599
+
2600
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 15:09:52 -0700
2601
+ Processing by Tracker::IssuesController#index as HTML
2602
+ Tracker::Issue Load (0.2ms) SELECT "tracker_issues".* FROM "tracker_issues"
2603
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (5.3ms)
2604
+ Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.2ms)
2605
+
2606
+
2607
+ Started GET "/assets/flat-ui.css?body=1" for 127.0.0.1 at 2013-09-24 15:09:52 -0700
2608
+ Served asset /flat-ui.css - 304 Not Modified (1ms)
2609
+
2610
+
2611
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 15:09:52 -0700
2612
+ Served asset /tracker/application.css - 304 Not Modified (6ms)
2613
+
2614
+
2615
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 15:09:52 -0700
2616
+ Served asset /tracker/issues.css - 304 Not Modified (0ms)
2617
+
2618
+
2619
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 15:09:52 -0700
2620
+ Served asset /jquery.js - 304 Not Modified (0ms)
2621
+
2622
+
2623
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 15:09:52 -0700
2624
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2625
+
2626
+
2627
+ Started GET "/assets/jquery.dropkick.js?body=1" for 127.0.0.1 at 2013-09-24 15:09:52 -0700
2628
+ Served asset /jquery.dropkick.js - 304 Not Modified (0ms)
2629
+
2630
+
2631
+ Started GET "/assets/custom_checkbox_and_radio.js?body=1" for 127.0.0.1 at 2013-09-24 15:09:52 -0700
2632
+ Served asset /custom_checkbox_and_radio.js - 304 Not Modified (0ms)
2633
+
2634
+
2635
+ Started GET "/assets/custom_radio.js?body=1" for 127.0.0.1 at 2013-09-24 15:09:52 -0700
2636
+ Served asset /custom_radio.js - 304 Not Modified (0ms)
2637
+
2638
+
2639
+ Started GET "/assets/jquery.tagsinput.js?body=1" for 127.0.0.1 at 2013-09-24 15:09:52 -0700
2640
+ Served asset /jquery.tagsinput.js - 304 Not Modified (0ms)
2641
+
2642
+
2643
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-09-24 15:09:52 -0700
2644
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2645
+
2646
+
2647
+ Started GET "/assets/jquery.placeholder.js?body=1" for 127.0.0.1 at 2013-09-24 15:09:52 -0700
2648
+ Served asset /jquery.placeholder.js - 304 Not Modified (0ms)
2649
+
2650
+
2651
+ Started GET "/assets/run_everything.js?body=1" for 127.0.0.1 at 2013-09-24 15:09:52 -0700
2652
+ Served asset /run_everything.js - 304 Not Modified (0ms)
2653
+
2654
+
2655
+ Started GET "/assets/flat-ui.js?body=1" for 127.0.0.1 at 2013-09-24 15:09:52 -0700
2656
+ Served asset /flat-ui.js - 304 Not Modified (0ms)
2657
+
2658
+
2659
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 15:09:52 -0700
2660
+ Served asset /tracker/issues.js - 304 Not Modified (0ms)
2661
+
2662
+
2663
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 15:09:52 -0700
2664
+ Served asset /tracker/application.js - 304 Not Modified (0ms)
2665
+
2666
+
2667
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 15:10:15 -0700
2668
+ Processing by Tracker::IssuesController#index as HTML
2669
+ Tracker::Issue Load (0.2ms) SELECT "tracker_issues".* FROM "tracker_issues" 
2670
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (4.0ms)
2671
+ Completed 200 OK in 14ms (Views: 12.4ms | ActiveRecord: 0.2ms)
2672
+
2673
+
2674
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 15:10:15 -0700
2675
+ Served asset /tracker/application.css - 304 Not Modified (12ms)
2676
+
2677
+
2678
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 15:10:15 -0700
2679
+ Served asset /tracker/issues.css - 304 Not Modified (0ms)
2680
+
2681
+
2682
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 15:10:15 -0700
2683
+ Served asset /jquery.js - 304 Not Modified (0ms)
2684
+
2685
+
2686
+ Started GET "/assets/jquery.dropkick.js?body=1" for 127.0.0.1 at 2013-09-24 15:10:15 -0700
2687
+ Served asset /jquery.dropkick.js - 304 Not Modified (0ms)
2688
+
2689
+
2690
+ Started GET "/assets/flat-ui.css?body=1" for 127.0.0.1 at 2013-09-24 15:10:15 -0700
2691
+ Served asset /flat-ui.css - 304 Not Modified (1ms)
2692
+
2693
+
2694
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 15:10:15 -0700
2695
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2696
+
2697
+
2698
+ Started GET "/assets/custom_checkbox_and_radio.js?body=1" for 127.0.0.1 at 2013-09-24 15:10:15 -0700
2699
+ Served asset /custom_checkbox_and_radio.js - 304 Not Modified (0ms)
2700
+
2701
+
2702
+ Started GET "/assets/custom_radio.js?body=1" for 127.0.0.1 at 2013-09-24 15:10:15 -0700
2703
+ Served asset /custom_radio.js - 304 Not Modified (0ms)
2704
+
2705
+
2706
+ Started GET "/assets/jquery.tagsinput.js?body=1" for 127.0.0.1 at 2013-09-24 15:10:15 -0700
2707
+ Served asset /jquery.tagsinput.js - 304 Not Modified (0ms)
2708
+
2709
+
2710
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-09-24 15:10:15 -0700
2711
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2712
+
2713
+
2714
+ Started GET "/assets/jquery.placeholder.js?body=1" for 127.0.0.1 at 2013-09-24 15:10:15 -0700
2715
+ Served asset /jquery.placeholder.js - 304 Not Modified (0ms)
2716
+
2717
+
2718
+ Started GET "/assets/run_everything.js?body=1" for 127.0.0.1 at 2013-09-24 15:10:15 -0700
2719
+ Served asset /run_everything.js - 304 Not Modified (0ms)
2720
+
2721
+
2722
+ Started GET "/assets/flat-ui.js?body=1" for 127.0.0.1 at 2013-09-24 15:10:15 -0700
2723
+ Served asset /flat-ui.js - 304 Not Modified (0ms)
2724
+
2725
+
2726
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 15:10:15 -0700
2727
+ Served asset /tracker/issues.js - 304 Not Modified (0ms)
2728
+
2729
+
2730
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 15:10:15 -0700
2731
+ Served asset /tracker/application.js - 304 Not Modified (0ms)
2732
+
2733
+
2734
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 15:10:34 -0700
2735
+ Processing by Tracker::IssuesController#index as HTML
2736
+ Tracker::Issue Load (0.2ms) SELECT "tracker_issues".* FROM "tracker_issues"
2737
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (4.2ms)
2738
+ Completed 200 OK in 14ms (Views: 12.6ms | ActiveRecord: 0.2ms)
2739
+
2740
+
2741
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 15:10:34 -0700
2742
+ Served asset /tracker/application.css - 304 Not Modified (6ms)
2743
+
2744
+
2745
+ Started GET "/assets/flat-ui.css?body=1" for 127.0.0.1 at 2013-09-24 15:10:34 -0700
2746
+ Served asset /flat-ui.css - 304 Not Modified (3ms)
2747
+
2748
+
2749
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 15:10:34 -0700
2750
+ Served asset /jquery.js - 304 Not Modified (0ms)
2751
+
2752
+
2753
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 15:10:34 -0700
2754
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2755
+
2756
+
2757
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 15:10:34 -0700
2758
+ Served asset /tracker/issues.css - 304 Not Modified (0ms)
2759
+
2760
+
2761
+ Started GET "/assets/jquery.dropkick.js?body=1" for 127.0.0.1 at 2013-09-24 15:10:34 -0700
2762
+ Served asset /jquery.dropkick.js - 304 Not Modified (0ms)
2763
+
2764
+
2765
+ Started GET "/assets/custom_checkbox_and_radio.js?body=1" for 127.0.0.1 at 2013-09-24 15:10:34 -0700
2766
+ Served asset /custom_checkbox_and_radio.js - 304 Not Modified (0ms)
2767
+
2768
+
2769
+ Started GET "/assets/custom_radio.js?body=1" for 127.0.0.1 at 2013-09-24 15:10:34 -0700
2770
+ Served asset /custom_radio.js - 304 Not Modified (0ms)
2771
+
2772
+
2773
+ Started GET "/assets/jquery.tagsinput.js?body=1" for 127.0.0.1 at 2013-09-24 15:10:34 -0700
2774
+ Served asset /jquery.tagsinput.js - 304 Not Modified (0ms)
2775
+
2776
+
2777
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-09-24 15:10:34 -0700
2778
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2779
+
2780
+
2781
+ Started GET "/assets/jquery.placeholder.js?body=1" for 127.0.0.1 at 2013-09-24 15:10:34 -0700
2782
+ Served asset /jquery.placeholder.js - 304 Not Modified (0ms)
2783
+
2784
+
2785
+ Started GET "/assets/run_everything.js?body=1" for 127.0.0.1 at 2013-09-24 15:10:34 -0700
2786
+ Served asset /run_everything.js - 304 Not Modified (0ms)
2787
+
2788
+
2789
+ Started GET "/assets/flat-ui.js?body=1" for 127.0.0.1 at 2013-09-24 15:10:34 -0700
2790
+ Served asset /flat-ui.js - 304 Not Modified (0ms)
2791
+
2792
+
2793
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 15:10:34 -0700
2794
+ Served asset /tracker/issues.js - 304 Not Modified (0ms)
2795
+
2796
+
2797
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 15:10:34 -0700
2798
+ Served asset /tracker/application.js - 304 Not Modified (0ms)
2799
+
2800
+
2801
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 15:10:45 -0700
2802
+ Processing by Tracker::IssuesController#index as HTML
2803
+ Tracker::Issue Load (0.1ms) SELECT "tracker_issues".* FROM "tracker_issues" 
2804
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (3.8ms)
2805
+ Completed 200 OK in 13ms (Views: 11.8ms | ActiveRecord: 0.1ms)
2806
+
2807
+
2808
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 15:10:45 -0700
2809
+ Served asset /tracker/application.css - 304 Not Modified (2ms)
2810
+
2811
+
2812
+ Started GET "/assets/jquery.dropkick.js?body=1" for 127.0.0.1 at 2013-09-24 15:10:45 -0700
2813
+ Served asset /jquery.dropkick.js - 304 Not Modified (0ms)
2814
+
2815
+
2816
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 15:10:45 -0700
2817
+ Served asset /jquery.js - 304 Not Modified (0ms)
2818
+
2819
+
2820
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 15:10:46 -0700
2821
+ Served asset /tracker/issues.css - 304 Not Modified (0ms)
2822
+
2823
+
2824
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 15:10:46 -0700
2825
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2826
+
2827
+
2828
+ Started GET "/assets/flat-ui.css?body=1" for 127.0.0.1 at 2013-09-24 15:10:46 -0700
2829
+ Served asset /flat-ui.css - 304 Not Modified (3ms)
2830
+
2831
+
2832
+ Started GET "/assets/custom_checkbox_and_radio.js?body=1" for 127.0.0.1 at 2013-09-24 15:10:46 -0700
2833
+ Served asset /custom_checkbox_and_radio.js - 304 Not Modified (0ms)
2834
+
2835
+
2836
+ Started GET "/assets/custom_radio.js?body=1" for 127.0.0.1 at 2013-09-24 15:10:46 -0700
2837
+ Served asset /custom_radio.js - 304 Not Modified (0ms)
2838
+
2839
+
2840
+ Started GET "/assets/jquery.tagsinput.js?body=1" for 127.0.0.1 at 2013-09-24 15:10:46 -0700
2841
+ Served asset /jquery.tagsinput.js - 304 Not Modified (0ms)
2842
+
2843
+
2844
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-09-24 15:10:46 -0700
2845
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2846
+
2847
+
2848
+ Started GET "/assets/jquery.placeholder.js?body=1" for 127.0.0.1 at 2013-09-24 15:10:46 -0700
2849
+ Served asset /jquery.placeholder.js - 304 Not Modified (0ms)
2850
+
2851
+
2852
+ Started GET "/assets/run_everything.js?body=1" for 127.0.0.1 at 2013-09-24 15:10:46 -0700
2853
+ Served asset /run_everything.js - 304 Not Modified (0ms)
2854
+
2855
+
2856
+ Started GET "/assets/flat-ui.js?body=1" for 127.0.0.1 at 2013-09-24 15:10:46 -0700
2857
+ Served asset /flat-ui.js - 304 Not Modified (0ms)
2858
+
2859
+
2860
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 15:10:46 -0700
2861
+ Served asset /tracker/issues.js - 304 Not Modified (0ms)
2862
+
2863
+
2864
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 15:10:46 -0700
2865
+ Served asset /tracker/application.js - 304 Not Modified (0ms)
2866
+
2867
+
2868
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 15:12:09 -0700
2869
+ Processing by Tracker::IssuesController#index as HTML
2870
+ Tracker::Issue Load (0.2ms) SELECT "tracker_issues".* FROM "tracker_issues"
2871
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (0.1ms)
2872
+ Completed 200 OK in 10ms (Views: 8.8ms | ActiveRecord: 0.2ms)
2873
+
2874
+
2875
+ Started GET "/assets/flat-ui.css?body=1" for 127.0.0.1 at 2013-09-24 15:12:09 -0700
2876
+ Served asset /flat-ui.css - 304 Not Modified (1ms)
2877
+
2878
+
2879
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 15:12:09 -0700
2880
+ Served asset /tracker/application.css - 304 Not Modified (3ms)
2881
+
2882
+
2883
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 15:12:09 -0700
2884
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2885
+
2886
+
2887
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 15:12:09 -0700
2888
+ Served asset /tracker/issues.css - 304 Not Modified (0ms)
2889
+
2890
+
2891
+ Started GET "/assets/jquery.dropkick.js?body=1" for 127.0.0.1 at 2013-09-24 15:12:09 -0700
2892
+ Served asset /jquery.dropkick.js - 304 Not Modified (0ms)
2893
+
2894
+
2895
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 15:12:09 -0700
2896
+ Served asset /jquery.js - 304 Not Modified (0ms)
2897
+
2898
+
2899
+ Started GET "/assets/custom_checkbox_and_radio.js?body=1" for 127.0.0.1 at 2013-09-24 15:12:09 -0700
2900
+ Served asset /custom_checkbox_and_radio.js - 304 Not Modified (0ms)
2901
+
2902
+
2903
+ Started GET "/assets/custom_radio.js?body=1" for 127.0.0.1 at 2013-09-24 15:12:09 -0700
2904
+ Served asset /custom_radio.js - 304 Not Modified (0ms)
2905
+
2906
+
2907
+ Started GET "/assets/jquery.tagsinput.js?body=1" for 127.0.0.1 at 2013-09-24 15:12:09 -0700
2908
+ Served asset /jquery.tagsinput.js - 304 Not Modified (0ms)
2909
+
2910
+
2911
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-09-24 15:12:09 -0700
2912
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2913
+
2914
+
2915
+ Started GET "/assets/jquery.placeholder.js?body=1" for 127.0.0.1 at 2013-09-24 15:12:09 -0700
2916
+ Served asset /jquery.placeholder.js - 304 Not Modified (0ms)
2917
+
2918
+
2919
+ Started GET "/assets/run_everything.js?body=1" for 127.0.0.1 at 2013-09-24 15:12:09 -0700
2920
+ Served asset /run_everything.js - 304 Not Modified (0ms)
2921
+
2922
+
2923
+ Started GET "/assets/flat-ui.js?body=1" for 127.0.0.1 at 2013-09-24 15:12:09 -0700
2924
+ Served asset /flat-ui.js - 304 Not Modified (0ms)
2925
+
2926
+
2927
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 15:12:09 -0700
2928
+ Served asset /tracker/issues.js - 304 Not Modified (0ms)
2929
+
2930
+
2931
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 15:12:09 -0700
2932
+ Served asset /tracker/application.js - 304 Not Modified (0ms)
2933
+
2934
+
2935
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 15:13:35 -0700
2936
+ Processing by Tracker::IssuesController#index as HTML
2937
+ Tracker::Issue Load (0.2ms) SELECT "tracker_issues".* FROM "tracker_issues" 
2938
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (4.1ms)
2939
+ Completed 200 OK in 13ms (Views: 12.3ms | ActiveRecord: 0.2ms)
2940
+
2941
+
2942
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 15:13:35 -0700
2943
+ Served asset /tracker/application.css - 304 Not Modified (4ms)
2944
+
2945
+
2946
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 15:13:35 -0700
2947
+ Served asset /tracker/issues.css - 304 Not Modified (0ms)
2948
+
2949
+
2950
+ Started GET "/assets/flat-ui.css?body=1" for 127.0.0.1 at 2013-09-24 15:13:35 -0700
2951
+ Served asset /flat-ui.css - 304 Not Modified (0ms)
2952
+
2953
+
2954
+ Started GET "/assets/jquery.dropkick.js?body=1" for 127.0.0.1 at 2013-09-24 15:13:35 -0700
2955
+ Served asset /jquery.dropkick.js - 304 Not Modified (0ms)
2956
+
2957
+
2958
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 15:13:35 -0700
2959
+ Served asset /jquery.js - 304 Not Modified (0ms)
2960
+
2961
+
2962
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 15:13:35 -0700
2963
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2964
+
2965
+
2966
+ Started GET "/assets/custom_checkbox_and_radio.js?body=1" for 127.0.0.1 at 2013-09-24 15:13:35 -0700
2967
+ Served asset /custom_checkbox_and_radio.js - 304 Not Modified (0ms)
2968
+
2969
+
2970
+ Started GET "/assets/custom_radio.js?body=1" for 127.0.0.1 at 2013-09-24 15:13:35 -0700
2971
+ Served asset /custom_radio.js - 304 Not Modified (0ms)
2972
+
2973
+
2974
+ Started GET "/assets/jquery.tagsinput.js?body=1" for 127.0.0.1 at 2013-09-24 15:13:35 -0700
2975
+ Served asset /jquery.tagsinput.js - 304 Not Modified (0ms)
2976
+
2977
+
2978
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-09-24 15:13:35 -0700
2979
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2980
+
2981
+
2982
+ Started GET "/assets/jquery.placeholder.js?body=1" for 127.0.0.1 at 2013-09-24 15:13:35 -0700
2983
+ Served asset /jquery.placeholder.js - 304 Not Modified (0ms)
2984
+
2985
+
2986
+ Started GET "/assets/run_everything.js?body=1" for 127.0.0.1 at 2013-09-24 15:13:35 -0700
2987
+ Served asset /run_everything.js - 304 Not Modified (0ms)
2988
+
2989
+
2990
+ Started GET "/assets/flat-ui.js?body=1" for 127.0.0.1 at 2013-09-24 15:13:35 -0700
2991
+ Served asset /flat-ui.js - 304 Not Modified (0ms)
2992
+
2993
+
2994
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 15:13:35 -0700
2995
+ Served asset /tracker/issues.js - 304 Not Modified (0ms)
2996
+
2997
+
2998
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 15:13:35 -0700
2999
+ Served asset /tracker/application.js - 304 Not Modified (0ms)
3000
+
3001
+
3002
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 15:13:53 -0700
3003
+ Processing by Tracker::IssuesController#index as HTML
3004
+ Tracker::Issue Load (0.2ms) SELECT "tracker_issues".* FROM "tracker_issues"
3005
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (4.2ms)
3006
+ Completed 200 OK in 61ms (Views: 59.8ms | ActiveRecord: 0.2ms)
3007
+
3008
+
3009
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 15:13:53 -0700
3010
+ Served asset /tracker/application.css - 304 Not Modified (1ms)
3011
+
3012
+
3013
+ Started GET "/assets/flat-ui.css?body=1" for 127.0.0.1 at 2013-09-24 15:13:53 -0700
3014
+ Served asset /flat-ui.css - 304 Not Modified (1ms)
3015
+
3016
+
3017
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 15:13:53 -0700
3018
+ Served asset /tracker/issues.css - 304 Not Modified (0ms)
3019
+
3020
+
3021
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 15:13:53 -0700
3022
+ Served asset /jquery.js - 304 Not Modified (0ms)
3023
+
3024
+
3025
+ Started GET "/assets/jquery.dropkick.js?body=1" for 127.0.0.1 at 2013-09-24 15:13:53 -0700
3026
+ Served asset /jquery.dropkick.js - 304 Not Modified (0ms)
3027
+
3028
+
3029
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 15:13:53 -0700
3030
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3031
+
3032
+
3033
+ Started GET "/assets/custom_checkbox_and_radio.js?body=1" for 127.0.0.1 at 2013-09-24 15:13:53 -0700
3034
+ Served asset /custom_checkbox_and_radio.js - 304 Not Modified (0ms)
3035
+
3036
+
3037
+ Started GET "/assets/custom_radio.js?body=1" for 127.0.0.1 at 2013-09-24 15:13:53 -0700
3038
+ Served asset /custom_radio.js - 304 Not Modified (0ms)
3039
+
3040
+
3041
+ Started GET "/assets/jquery.tagsinput.js?body=1" for 127.0.0.1 at 2013-09-24 15:13:53 -0700
3042
+ Served asset /jquery.tagsinput.js - 304 Not Modified (0ms)
3043
+
3044
+
3045
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-09-24 15:13:53 -0700
3046
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
3047
+
3048
+
3049
+ Started GET "/assets/jquery.placeholder.js?body=1" for 127.0.0.1 at 2013-09-24 15:13:53 -0700
3050
+ Served asset /jquery.placeholder.js - 304 Not Modified (0ms)
3051
+
3052
+
3053
+ Started GET "/assets/run_everything.js?body=1" for 127.0.0.1 at 2013-09-24 15:13:53 -0700
3054
+ Served asset /run_everything.js - 304 Not Modified (0ms)
3055
+
3056
+
3057
+ Started GET "/assets/flat-ui.js?body=1" for 127.0.0.1 at 2013-09-24 15:13:53 -0700
3058
+ Served asset /flat-ui.js - 304 Not Modified (0ms)
3059
+
3060
+
3061
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 15:13:53 -0700
3062
+ Served asset /tracker/issues.js - 304 Not Modified (0ms)
3063
+
3064
+
3065
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 15:13:53 -0700
3066
+ Served asset /tracker/application.js - 304 Not Modified (0ms)
3067
+ Connecting to database specified by database.yml
3068
+
3069
+
3070
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 15:55:39 -0700
3071
+ Connecting to database specified by database.yml
3072
+ Processing by Tracker::IssuesController#index as HTML
3073
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (15.2ms)
3074
+ Completed 500 Internal Server Error in 30ms
3075
+
3076
+ NoMethodError - undefined method `each' for #<Github::Repos:0x007fd04cae0cd0>:
3077
+ github_api (0.10.2) lib/github_api/api.rb:83:in `method_missing'
3078
+ /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim:11:in `___sers_mikecifani__rojects_active_progress_app_views_tracker_issues_index_html_slim___188202568510785945_70266308601360'
3079
+ actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render'
3080
+ activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument'
3081
+ actionpack (3.2.14) lib/action_view/template.rb:143:in `render'
3082
+ actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:48:in `block (2 levels) in render_template'
3083
+ actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
3084
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
3085
+ activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3086
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
3087
+ actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
3088
+ actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:47:in `block in render_template'
3089
+ actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:55:in `render_with_layout'
3090
+ actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template'
3091
+ actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render'
3092
+ actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template'
3093
+ actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render'
3094
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template'
3095
+ actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template'
3096
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body'
3097
+ actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
3098
+ actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
3099
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render'
3100
+ actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render'
3101
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
3102
+ activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
3103
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
3104
+ activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms'
3105
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
3106
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
3107
+ activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
3108
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render'
3109
+ actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
3110
+ actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
3111
+ actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action'
3112
+ actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action'
3113
+ actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
3114
+ activesupport (3.2.14) lib/active_support/callbacks.rb:403:in `_run__3461571009571819923__process_action__2735441281320613649__callbacks'
3115
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
3116
+ activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
3117
+ activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
3118
+ actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action'
3119
+ actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action'
3120
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
3121
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
3122
+ activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3123
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
3124
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
3125
+ actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
3126
+ activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
3127
+ actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process'
3128
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
3129
+ actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
3130
+ actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
3131
+ actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
3132
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
3133
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
3134
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
3135
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
3136
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
3137
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
3138
+ railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
3139
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
3140
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
3141
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
3142
+ actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
3143
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
3144
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
3145
+ actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
3146
+ actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
3147
+ actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
3148
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
3149
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
3150
+ actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
3151
+ activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
3152
+ activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
3153
+ actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
3154
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__2223356439858616459__call__1577814708916289082__callbacks'
3155
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
3156
+ activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
3157
+ activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
3158
+ actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3159
+ actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
3160
+ actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
3161
+ better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call'
3162
+ better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call'
3163
+ better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call'
3164
+ actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
3165
+ actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
3166
+ railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
3167
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
3168
+ activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
3169
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
3170
+ actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
3171
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
3172
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
3173
+ activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
3174
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
3175
+ actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
3176
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
3177
+ railties (3.2.14) lib/rails/application.rb:231:in `call'
3178
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
3179
+ railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
3180
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
3181
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
3182
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
3183
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
3184
+
3185
+
3186
+
3187
+ Started POST "/tracker/__better_errors/70266309570760/variables" for 127.0.0.1 at 2013-09-24 15:55:40 -0700
3188
+
3189
+
3190
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 16:18:46 -0700
3191
+ Processing by Tracker::IssuesController#index as HTML
3192
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (0.1ms)
3193
+ Completed 200 OK in 824ms (Views: 32.6ms | ActiveRecord: 0.0ms)
3194
+
3195
+
3196
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 16:18:47 -0700
3197
+ Served asset /jquery_ujs.js - 304 Not Modified (35ms)
3198
+
3199
+
3200
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 16:18:47 -0700
3201
+ Served asset /tracker/application.css - 304 Not Modified (14ms)
3202
+
3203
+
3204
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 16:18:47 -0700
3205
+ Served asset /tracker/issues.css - 304 Not Modified (4ms)
3206
+
3207
+
3208
+ Started GET "/assets/flat-ui.css?body=1" for 127.0.0.1 at 2013-09-24 16:18:47 -0700
3209
+ Served asset /flat-ui.css - 304 Not Modified (9ms)
3210
+
3211
+
3212
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 16:18:47 -0700
3213
+ Served asset /jquery.js - 304 Not Modified (5ms)
3214
+
3215
+
3216
+ Started GET "/assets/jquery.dropkick.js?body=1" for 127.0.0.1 at 2013-09-24 16:18:47 -0700
3217
+ Served asset /jquery.dropkick.js - 304 Not Modified (4ms)
3218
+
3219
+
3220
+ Started GET "/assets/custom_checkbox_and_radio.js?body=1" for 127.0.0.1 at 2013-09-24 16:18:47 -0700
3221
+ Served asset /custom_checkbox_and_radio.js - 304 Not Modified (4ms)
3222
+
3223
+
3224
+ Started GET "/assets/custom_radio.js?body=1" for 127.0.0.1 at 2013-09-24 16:18:47 -0700
3225
+ Served asset /custom_radio.js - 304 Not Modified (5ms)
3226
+
3227
+
3228
+ Started GET "/assets/jquery.tagsinput.js?body=1" for 127.0.0.1 at 2013-09-24 16:18:47 -0700
3229
+ Served asset /jquery.tagsinput.js - 304 Not Modified (4ms)
3230
+
3231
+
3232
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-09-24 16:18:47 -0700
3233
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (1ms)
3234
+
3235
+
3236
+ Started GET "/assets/jquery.placeholder.js?body=1" for 127.0.0.1 at 2013-09-24 16:18:47 -0700
3237
+ Served asset /jquery.placeholder.js - 304 Not Modified (1ms)
3238
+
3239
+
3240
+ Started GET "/assets/run_everything.js?body=1" for 127.0.0.1 at 2013-09-24 16:18:47 -0700
3241
+ Served asset /run_everything.js - 304 Not Modified (1ms)
3242
+
3243
+
3244
+ Started GET "/assets/flat-ui.js?body=1" for 127.0.0.1 at 2013-09-24 16:18:47 -0700
3245
+ Served asset /flat-ui.js - 304 Not Modified (7ms)
3246
+
3247
+
3248
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 16:18:47 -0700
3249
+ Served asset /tracker/issues.js - 304 Not Modified (1ms)
3250
+
3251
+
3252
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 16:18:47 -0700
3253
+ Served asset /tracker/application.js - 304 Not Modified (42ms)
3254
+
3255
+
3256
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 16:19:13 -0700
3257
+ Processing by Tracker::IssuesController#index as HTML
3258
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (0.1ms)
3259
+ Completed 200 OK in 2097ms (Views: 8.5ms | ActiveRecord: 0.0ms)
3260
+
3261
+
3262
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 16:19:15 -0700
3263
+ Served asset /tracker/application.css - 304 Not Modified (2ms)
3264
+
3265
+
3266
+ Started GET "/assets/jquery.dropkick.js?body=1" for 127.0.0.1 at 2013-09-24 16:19:15 -0700
3267
+ Served asset /jquery.dropkick.js - 304 Not Modified (0ms)
3268
+
3269
+
3270
+ Started GET "/assets/flat-ui.css?body=1" for 127.0.0.1 at 2013-09-24 16:19:15 -0700
3271
+ Served asset /flat-ui.css - 304 Not Modified (4ms)
3272
+
3273
+
3274
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 16:19:15 -0700
3275
+ Served asset /tracker/issues.css - 304 Not Modified (0ms)
3276
+
3277
+
3278
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 16:19:15 -0700
3279
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3280
+
3281
+
3282
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 16:19:15 -0700
3283
+ Served asset /jquery.js - 304 Not Modified (0ms)
3284
+
3285
+
3286
+ Started GET "/assets/custom_checkbox_and_radio.js?body=1" for 127.0.0.1 at 2013-09-24 16:19:15 -0700
3287
+ Served asset /custom_checkbox_and_radio.js - 304 Not Modified (0ms)
3288
+
3289
+
3290
+ Started GET "/assets/custom_radio.js?body=1" for 127.0.0.1 at 2013-09-24 16:19:15 -0700
3291
+ Served asset /custom_radio.js - 304 Not Modified (0ms)
3292
+
3293
+
3294
+ Started GET "/assets/jquery.tagsinput.js?body=1" for 127.0.0.1 at 2013-09-24 16:19:16 -0700
3295
+ Served asset /jquery.tagsinput.js - 304 Not Modified (0ms)
3296
+
3297
+
3298
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-09-24 16:19:16 -0700
3299
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
3300
+
3301
+
3302
+ Started GET "/assets/run_everything.js?body=1" for 127.0.0.1 at 2013-09-24 16:19:16 -0700
3303
+ Served asset /run_everything.js - 304 Not Modified (0ms)
3304
+
3305
+
3306
+ Started GET "/assets/jquery.placeholder.js?body=1" for 127.0.0.1 at 2013-09-24 16:19:16 -0700
3307
+ Served asset /jquery.placeholder.js - 304 Not Modified (0ms)
3308
+
3309
+
3310
+ Started GET "/assets/flat-ui.js?body=1" for 127.0.0.1 at 2013-09-24 16:19:16 -0700
3311
+ Served asset /flat-ui.js - 304 Not Modified (0ms)
3312
+
3313
+
3314
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 16:19:16 -0700
3315
+ Served asset /tracker/issues.js - 304 Not Modified (0ms)
3316
+
3317
+
3318
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 16:19:16 -0700
3319
+ Served asset /tracker/application.js - 304 Not Modified (0ms)
3320
+
3321
+
3322
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 16:21:10 -0700
3323
+ Processing by Tracker::IssuesController#index as HTML
3324
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (4.1ms)
3325
+ Completed 200 OK in 3356ms (Views: 11.7ms | ActiveRecord: 0.0ms)
3326
+
3327
+
3328
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 16:21:13 -0700
3329
+ Served asset /tracker/application.css - 304 Not Modified (0ms)
3330
+
3331
+
3332
+ Started GET "/assets/flat-ui.css?body=1" for 127.0.0.1 at 2013-09-24 16:21:13 -0700
3333
+ Served asset /flat-ui.css - 304 Not Modified (0ms)
3334
+
3335
+
3336
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 16:21:13 -0700
3337
+ Served asset /jquery.js - 304 Not Modified (0ms)
3338
+
3339
+
3340
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 16:21:13 -0700
3341
+ Served asset /tracker/issues.css - 304 Not Modified (0ms)
3342
+
3343
+
3344
+ Started GET "/assets/jquery.dropkick.js?body=1" for 127.0.0.1 at 2013-09-24 16:21:13 -0700
3345
+ Served asset /jquery.dropkick.js - 304 Not Modified (0ms)
3346
+
3347
+
3348
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 16:21:13 -0700
3349
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3350
+
3351
+
3352
+ Started GET "/assets/custom_checkbox_and_radio.js?body=1" for 127.0.0.1 at 2013-09-24 16:21:13 -0700
3353
+ Served asset /custom_checkbox_and_radio.js - 304 Not Modified (0ms)
3354
+
3355
+
3356
+ Started GET "/assets/custom_radio.js?body=1" for 127.0.0.1 at 2013-09-24 16:21:13 -0700
3357
+ Served asset /custom_radio.js - 304 Not Modified (0ms)
3358
+
3359
+
3360
+ Started GET "/assets/jquery.tagsinput.js?body=1" for 127.0.0.1 at 2013-09-24 16:21:13 -0700
3361
+ Served asset /jquery.tagsinput.js - 304 Not Modified (0ms)
3362
+
3363
+
3364
+ Started GET "/assets/jquery.placeholder.js?body=1" for 127.0.0.1 at 2013-09-24 16:21:13 -0700
3365
+ Served asset /jquery.placeholder.js - 304 Not Modified (0ms)
3366
+
3367
+
3368
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-09-24 16:21:13 -0700
3369
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
3370
+
3371
+
3372
+ Started GET "/assets/run_everything.js?body=1" for 127.0.0.1 at 2013-09-24 16:21:13 -0700
3373
+ Served asset /run_everything.js - 304 Not Modified (0ms)
3374
+
3375
+
3376
+ Started GET "/assets/flat-ui.js?body=1" for 127.0.0.1 at 2013-09-24 16:21:13 -0700
3377
+ Served asset /flat-ui.js - 304 Not Modified (0ms)
3378
+
3379
+
3380
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 16:21:13 -0700
3381
+ Served asset /tracker/issues.js - 304 Not Modified (0ms)
3382
+
3383
+
3384
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 16:21:14 -0700
3385
+ Served asset /tracker/application.js - 304 Not Modified (0ms)
3386
+
3387
+
3388
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 16:21:47 -0700
3389
+ Processing by Tracker::IssuesController#index as HTML
3390
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (0.1ms)
3391
+ Completed 200 OK in 412ms (Views: 7.2ms | ActiveRecord: 0.0ms)
3392
+
3393
+
3394
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 16:21:47 -0700
3395
+ Served asset /tracker/application.css - 304 Not Modified (1ms)
3396
+
3397
+
3398
+ Started GET "/assets/flat-ui.css?body=1" for 127.0.0.1 at 2013-09-24 16:21:47 -0700
3399
+ Served asset /flat-ui.css - 304 Not Modified (0ms)
3400
+
3401
+
3402
+ Started GET "/assets/custom_checkbox_and_radio.js?body=1" for 127.0.0.1 at 2013-09-24 16:21:47 -0700
3403
+ Served asset /custom_checkbox_and_radio.js - 304 Not Modified (0ms)
3404
+
3405
+
3406
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 16:21:47 -0700
3407
+ Served asset /jquery.js - 304 Not Modified (0ms)
3408
+
3409
+
3410
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 16:21:47 -0700
3411
+ Served asset /tracker/issues.css - 304 Not Modified (0ms)
3412
+
3413
+
3414
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 16:21:47 -0700
3415
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3416
+
3417
+
3418
+ Started GET "/assets/jquery.dropkick.js?body=1" for 127.0.0.1 at 2013-09-24 16:21:47 -0700
3419
+ Served asset /jquery.dropkick.js - 304 Not Modified (0ms)
3420
+
3421
+
3422
+ Started GET "/assets/custom_radio.js?body=1" for 127.0.0.1 at 2013-09-24 16:21:47 -0700
3423
+ Served asset /custom_radio.js - 304 Not Modified (0ms)
3424
+
3425
+
3426
+ Started GET "/assets/jquery.tagsinput.js?body=1" for 127.0.0.1 at 2013-09-24 16:21:47 -0700
3427
+ Served asset /jquery.tagsinput.js - 304 Not Modified (0ms)
3428
+
3429
+
3430
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-09-24 16:21:47 -0700
3431
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
3432
+
3433
+
3434
+ Started GET "/assets/jquery.placeholder.js?body=1" for 127.0.0.1 at 2013-09-24 16:21:47 -0700
3435
+ Served asset /jquery.placeholder.js - 304 Not Modified (0ms)
3436
+
3437
+
3438
+ Started GET "/assets/run_everything.js?body=1" for 127.0.0.1 at 2013-09-24 16:21:47 -0700
3439
+ Served asset /run_everything.js - 304 Not Modified (0ms)
3440
+
3441
+
3442
+ Started GET "/assets/flat-ui.js?body=1" for 127.0.0.1 at 2013-09-24 16:21:47 -0700
3443
+ Served asset /flat-ui.js - 304 Not Modified (0ms)
3444
+
3445
+
3446
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 16:21:47 -0700
3447
+ Served asset /tracker/issues.js - 304 Not Modified (0ms)
3448
+
3449
+
3450
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 16:21:47 -0700
3451
+ Served asset /tracker/application.js - 304 Not Modified (0ms)
3452
+
3453
+
3454
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 16:22:04 -0700
3455
+ Processing by Tracker::IssuesController#index as HTML
3456
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (3.6ms)
3457
+ Completed 200 OK in 768ms (Views: 10.7ms | ActiveRecord: 0.0ms)
3458
+
3459
+
3460
+ Started GET "/assets/flat-ui.css?body=1" for 127.0.0.1 at 2013-09-24 16:22:05 -0700
3461
+ Served asset /flat-ui.css - 304 Not Modified (0ms)
3462
+
3463
+
3464
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 16:22:05 -0700
3465
+ Served asset /tracker/issues.css - 304 Not Modified (0ms)
3466
+
3467
+
3468
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 16:22:05 -0700
3469
+ Served asset /tracker/application.css - 304 Not Modified (2ms)
3470
+
3471
+
3472
+ Started GET "/assets/jquery.dropkick.js?body=1" for 127.0.0.1 at 2013-09-24 16:22:05 -0700
3473
+ Served asset /jquery.dropkick.js - 304 Not Modified (0ms)
3474
+
3475
+
3476
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 16:22:05 -0700
3477
+ Served asset /jquery.js - 304 Not Modified (0ms)
3478
+
3479
+
3480
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 16:22:05 -0700
3481
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3482
+
3483
+
3484
+ Started GET "/assets/custom_checkbox_and_radio.js?body=1" for 127.0.0.1 at 2013-09-24 16:22:05 -0700
3485
+ Served asset /custom_checkbox_and_radio.js - 304 Not Modified (0ms)
3486
+
3487
+
3488
+ Started GET "/assets/custom_radio.js?body=1" for 127.0.0.1 at 2013-09-24 16:22:05 -0700
3489
+ Served asset /custom_radio.js - 304 Not Modified (0ms)
3490
+
3491
+
3492
+ Started GET "/assets/jquery.tagsinput.js?body=1" for 127.0.0.1 at 2013-09-24 16:22:05 -0700
3493
+ Served asset /jquery.tagsinput.js - 304 Not Modified (0ms)
3494
+
3495
+
3496
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-09-24 16:22:05 -0700
3497
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
3498
+
3499
+
3500
+ Started GET "/assets/jquery.placeholder.js?body=1" for 127.0.0.1 at 2013-09-24 16:22:05 -0700
3501
+ Served asset /jquery.placeholder.js - 304 Not Modified (0ms)
3502
+
3503
+
3504
+ Started GET "/assets/run_everything.js?body=1" for 127.0.0.1 at 2013-09-24 16:22:05 -0700
3505
+ Served asset /run_everything.js - 304 Not Modified (0ms)
3506
+
3507
+
3508
+ Started GET "/assets/flat-ui.js?body=1" for 127.0.0.1 at 2013-09-24 16:22:05 -0700
3509
+ Served asset /flat-ui.js - 304 Not Modified (0ms)
3510
+
3511
+
3512
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 16:22:05 -0700
3513
+ Served asset /tracker/issues.js - 304 Not Modified (0ms)
3514
+
3515
+
3516
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 16:22:05 -0700
3517
+ Served asset /tracker/application.js - 304 Not Modified (0ms)
3518
+
3519
+
3520
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 16:22:31 -0700
3521
+ Processing by Tracker::IssuesController#index as HTML
3522
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (3.6ms)
3523
+ Completed 200 OK in 1805ms (Views: 10.7ms | ActiveRecord: 0.0ms)
3524
+
3525
+
3526
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 16:22:33 -0700
3527
+ Served asset /tracker/application.css - 304 Not Modified (1ms)
3528
+
3529
+
3530
+ Started GET "/assets/flat-ui.css?body=1" for 127.0.0.1 at 2013-09-24 16:22:33 -0700
3531
+ Served asset /flat-ui.css - 304 Not Modified (3ms)
3532
+
3533
+
3534
+ Started GET "/assets/jquery.dropkick.js?body=1" for 127.0.0.1 at 2013-09-24 16:22:33 -0700
3535
+ Served asset /jquery.dropkick.js - 304 Not Modified (0ms)
3536
+
3537
+
3538
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 16:22:33 -0700
3539
+ Served asset /tracker/issues.css - 304 Not Modified (0ms)
3540
+
3541
+
3542
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 16:22:33 -0700
3543
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3544
+
3545
+
3546
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 16:22:33 -0700
3547
+ Served asset /jquery.js - 304 Not Modified (0ms)
3548
+
3549
+
3550
+ Started GET "/assets/custom_checkbox_and_radio.js?body=1" for 127.0.0.1 at 2013-09-24 16:22:33 -0700
3551
+ Served asset /custom_checkbox_and_radio.js - 304 Not Modified (0ms)
3552
+
3553
+
3554
+ Started GET "/assets/custom_radio.js?body=1" for 127.0.0.1 at 2013-09-24 16:22:33 -0700
3555
+ Served asset /custom_radio.js - 304 Not Modified (0ms)
3556
+
3557
+
3558
+ Started GET "/assets/jquery.tagsinput.js?body=1" for 127.0.0.1 at 2013-09-24 16:22:33 -0700
3559
+ Served asset /jquery.tagsinput.js - 304 Not Modified (0ms)
3560
+
3561
+
3562
+ Started GET "/assets/jquery.placeholder.js?body=1" for 127.0.0.1 at 2013-09-24 16:22:33 -0700
3563
+ Served asset /jquery.placeholder.js - 304 Not Modified (0ms)
3564
+
3565
+
3566
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-09-24 16:22:33 -0700
3567
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
3568
+
3569
+
3570
+ Started GET "/assets/run_everything.js?body=1" for 127.0.0.1 at 2013-09-24 16:22:33 -0700
3571
+ Served asset /run_everything.js - 304 Not Modified (0ms)
3572
+
3573
+
3574
+ Started GET "/assets/flat-ui.js?body=1" for 127.0.0.1 at 2013-09-24 16:22:33 -0700
3575
+ Served asset /flat-ui.js - 304 Not Modified (0ms)
3576
+
3577
+
3578
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 16:22:33 -0700
3579
+ Served asset /tracker/issues.js - 304 Not Modified (0ms)
3580
+
3581
+
3582
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 16:22:33 -0700
3583
+ Served asset /tracker/application.js - 304 Not Modified (0ms)
3584
+
3585
+
3586
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 16:23:57 -0700
3587
+ Processing by Tracker::IssuesController#index as HTML
3588
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (0.1ms)
3589
+ Completed 200 OK in 766ms (Views: 9.4ms | ActiveRecord: 0.0ms)
3590
+
3591
+
3592
+ Started GET "/assets/flat-ui.css?body=1" for 127.0.0.1 at 2013-09-24 16:23:58 -0700
3593
+ Served asset /flat-ui.css - 304 Not Modified (0ms)
3594
+
3595
+
3596
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 16:23:58 -0700
3597
+ Served asset /tracker/application.css - 304 Not Modified (3ms)
3598
+
3599
+
3600
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 16:23:58 -0700
3601
+ Served asset /tracker/issues.css - 304 Not Modified (0ms)
3602
+
3603
+
3604
+ Started GET "/assets/jquery.dropkick.js?body=1" for 127.0.0.1 at 2013-09-24 16:23:58 -0700
3605
+ Served asset /jquery.dropkick.js - 304 Not Modified (0ms)
3606
+
3607
+
3608
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 16:23:58 -0700
3609
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3610
+
3611
+
3612
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 16:23:58 -0700
3613
+ Served asset /jquery.js - 304 Not Modified (0ms)
3614
+
3615
+
3616
+ Started GET "/assets/custom_checkbox_and_radio.js?body=1" for 127.0.0.1 at 2013-09-24 16:23:58 -0700
3617
+ Served asset /custom_checkbox_and_radio.js - 304 Not Modified (0ms)
3618
+
3619
+
3620
+ Started GET "/assets/custom_radio.js?body=1" for 127.0.0.1 at 2013-09-24 16:23:58 -0700
3621
+ Served asset /custom_radio.js - 304 Not Modified (0ms)
3622
+
3623
+
3624
+ Started GET "/assets/jquery.tagsinput.js?body=1" for 127.0.0.1 at 2013-09-24 16:23:58 -0700
3625
+ Served asset /jquery.tagsinput.js - 304 Not Modified (0ms)
3626
+
3627
+
3628
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-09-24 16:23:58 -0700
3629
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
3630
+
3631
+
3632
+ Started GET "/assets/jquery.placeholder.js?body=1" for 127.0.0.1 at 2013-09-24 16:23:58 -0700
3633
+ Served asset /jquery.placeholder.js - 304 Not Modified (0ms)
3634
+
3635
+
3636
+ Started GET "/assets/run_everything.js?body=1" for 127.0.0.1 at 2013-09-24 16:23:58 -0700
3637
+ Served asset /run_everything.js - 304 Not Modified (0ms)
3638
+
3639
+
3640
+ Started GET "/assets/flat-ui.js?body=1" for 127.0.0.1 at 2013-09-24 16:23:58 -0700
3641
+ Served asset /flat-ui.js - 304 Not Modified (0ms)
3642
+
3643
+
3644
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 16:23:58 -0700
3645
+ Served asset /tracker/issues.js - 304 Not Modified (0ms)
3646
+
3647
+
3648
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 16:23:58 -0700
3649
+ Served asset /tracker/application.js - 304 Not Modified (0ms)
3650
+ Connecting to database specified by database.yml
3651
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
3652
+ Migrating to CreateTrackerIssues (20130924202020)
3653
+ Migrating to CreateTrackerUsersIssues (20130924233027)
3654
+  (0.0ms) select sqlite_version(*)
3655
+  (0.0ms) begin transaction
3656
+  (0.4ms) CREATE TABLE "tracker_users_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" text, "body" text, "active" boolean, "assignee" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
3657
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130924233027')
3658
+  (2.4ms) commit transaction
3659
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
3660
+ Connecting to database specified by database.yml
3661
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
3662
+ Migrating to CreateTrackerIssues (20130924202020)
3663
+ Migrating to CreateTrackerUsersIssues (20130924233027)
3664
+ Migrating to AddRelationUsersIssues (20130924233149)
3665
+  (0.0ms) select sqlite_version(*)
3666
+  (0.0ms) begin transaction
3667
+  (0.4ms) ALTER TABLE "tracker_users_issues" ADD "user_id" integer
3668
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130924233149')
3669
+  (2.2ms) commit transaction
3670
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
3671
+
3672
+
3673
+ Started GET "/" for 127.0.0.1 at 2013-09-24 16:43:31 -0700
3674
+
3675
+ ActionController::RoutingError (No route matches [GET] "/"):
3676
+ actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
3677
+ actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
3678
+ railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
3679
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
3680
+ activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
3681
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
3682
+ actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
3683
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
3684
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
3685
+ activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
3686
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
3687
+ actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
3688
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
3689
+ railties (3.2.14) lib/rails/application.rb:231:in `call'
3690
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
3691
+ railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
3692
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
3693
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
3694
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
3695
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
3696
+
3697
+
3698
+ Rendered /Users/mikecifani/.rvm/gems/ruby-2.0.0-p0@active_progress/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
3699
+
3700
+
3701
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 16:43:35 -0700
3702
+ Processing by Tracker::IssuesController#index as HTML
3703
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (0.1ms)
3704
+ Completed 200 OK in 522ms (Views: 8.3ms | ActiveRecord: 0.0ms)
3705
+
3706
+
3707
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 16:43:35 -0700
3708
+ Processing by Tracker::IssuesController#index as HTML
3709
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (0.1ms)
3710
+ Completed 200 OK in 390ms (Views: 6.9ms | ActiveRecord: 0.0ms)
3711
+
3712
+
3713
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 16:43:36 -0700
3714
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3715
+
3716
+
3717
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 16:43:36 -0700
3718
+ Served asset /tracker/application.css - 304 Not Modified (3ms)
3719
+
3720
+
3721
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 16:43:36 -0700
3722
+ Served asset /jquery.js - 304 Not Modified (0ms)
3723
+
3724
+
3725
+ Started GET "/assets/flat-ui.css?body=1" for 127.0.0.1 at 2013-09-24 16:43:36 -0700
3726
+ Served asset /flat-ui.css - 304 Not Modified (1ms)
3727
+
3728
+
3729
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 16:43:36 -0700
3730
+ Served asset /tracker/issues.css - 304 Not Modified (0ms)
3731
+
3732
+
3733
+ Started GET "/assets/jquery.dropkick.js?body=1" for 127.0.0.1 at 2013-09-24 16:43:36 -0700
3734
+ Served asset /jquery.dropkick.js - 304 Not Modified (0ms)
3735
+
3736
+
3737
+ Started GET "/assets/custom_checkbox_and_radio.js?body=1" for 127.0.0.1 at 2013-09-24 16:43:36 -0700
3738
+ Served asset /custom_checkbox_and_radio.js - 304 Not Modified (0ms)
3739
+
3740
+
3741
+ Started GET "/assets/custom_radio.js?body=1" for 127.0.0.1 at 2013-09-24 16:43:36 -0700
3742
+ Served asset /custom_radio.js - 304 Not Modified (0ms)
3743
+
3744
+
3745
+ Started GET "/assets/jquery.tagsinput.js?body=1" for 127.0.0.1 at 2013-09-24 16:43:36 -0700
3746
+ Served asset /jquery.tagsinput.js - 304 Not Modified (0ms)
3747
+
3748
+
3749
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-09-24 16:43:36 -0700
3750
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
3751
+
3752
+
3753
+ Started GET "/assets/jquery.placeholder.js?body=1" for 127.0.0.1 at 2013-09-24 16:43:36 -0700
3754
+ Served asset /jquery.placeholder.js - 304 Not Modified (0ms)
3755
+
3756
+
3757
+ Started GET "/assets/run_everything.js?body=1" for 127.0.0.1 at 2013-09-24 16:43:36 -0700
3758
+ Served asset /run_everything.js - 304 Not Modified (0ms)
3759
+
3760
+
3761
+ Started GET "/assets/flat-ui.js?body=1" for 127.0.0.1 at 2013-09-24 16:43:36 -0700
3762
+ Served asset /flat-ui.js - 304 Not Modified (0ms)
3763
+
3764
+
3765
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 16:43:36 -0700
3766
+ Served asset /tracker/issues.js - 304 Not Modified (0ms)
3767
+
3768
+
3769
+ Started GET "/assets/flat-ui.css?body=1" for 127.0.0.1 at 2013-09-24 16:43:36 -0700
3770
+ Served asset /flat-ui.css - 304 Not Modified (1ms)
3771
+
3772
+
3773
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 16:43:36 -0700
3774
+ Served asset /tracker/application.css - 304 Not Modified (2ms)
3775
+
3776
+
3777
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 16:43:36 -0700
3778
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3779
+
3780
+
3781
+ Started GET "/assets/jquery.dropkick.js?body=1" for 127.0.0.1 at 2013-09-24 16:43:36 -0700
3782
+ Served asset /jquery.dropkick.js - 304 Not Modified (0ms)
3783
+
3784
+
3785
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 16:43:36 -0700
3786
+ Served asset /tracker/issues.css - 304 Not Modified (0ms)
3787
+
3788
+
3789
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 16:43:36 -0700
3790
+ Served asset /jquery.js - 304 Not Modified (0ms)
3791
+
3792
+
3793
+ Started GET "/assets/custom_checkbox_and_radio.js?body=1" for 127.0.0.1 at 2013-09-24 16:43:36 -0700
3794
+ Served asset /custom_checkbox_and_radio.js - 304 Not Modified (0ms)
3795
+
3796
+
3797
+ Started GET "/assets/custom_radio.js?body=1" for 127.0.0.1 at 2013-09-24 16:43:36 -0700
3798
+ Served asset /custom_radio.js - 304 Not Modified (0ms)
3799
+
3800
+
3801
+ Started GET "/assets/jquery.tagsinput.js?body=1" for 127.0.0.1 at 2013-09-24 16:43:36 -0700
3802
+ Served asset /jquery.tagsinput.js - 304 Not Modified (0ms)
3803
+
3804
+
3805
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-09-24 16:43:36 -0700
3806
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
3807
+
3808
+
3809
+ Started GET "/assets/jquery.placeholder.js?body=1" for 127.0.0.1 at 2013-09-24 16:43:36 -0700
3810
+ Served asset /jquery.placeholder.js - 304 Not Modified (0ms)
3811
+
3812
+
3813
+ Started GET "/assets/run_everything.js?body=1" for 127.0.0.1 at 2013-09-24 16:43:36 -0700
3814
+ Served asset /run_everything.js - 304 Not Modified (0ms)
3815
+
3816
+
3817
+ Started GET "/assets/flat-ui.js?body=1" for 127.0.0.1 at 2013-09-24 16:43:36 -0700
3818
+ Served asset /flat-ui.js - 304 Not Modified (0ms)
3819
+
3820
+
3821
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 16:43:36 -0700
3822
+ Served asset /tracker/issues.js - 304 Not Modified (0ms)
3823
+
3824
+
3825
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 16:43:36 -0700
3826
+ Served asset /tracker/application.js - 304 Not Modified (0ms)
3827
+
3828
+
3829
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 16:43:36 -0700
3830
+ Served asset /tracker/application.js - 304 Not Modified (0ms)
3831
+
3832
+
3833
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 16:43:42 -0700
3834
+ Processing by Tracker::IssuesController#index as HTML
3835
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (0.1ms)
3836
+ Completed 200 OK in 382ms (Views: 9.1ms | ActiveRecord: 0.0ms)
3837
+
3838
+
3839
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 16:43:43 -0700
3840
+ Served asset /tracker/application.css - 304 Not Modified (1ms)
3841
+
3842
+
3843
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 16:43:43 -0700
3844
+ Served asset /jquery.js - 304 Not Modified (0ms)
3845
+
3846
+
3847
+ Started GET "/assets/flat-ui.css?body=1" for 127.0.0.1 at 2013-09-24 16:43:43 -0700
3848
+ Served asset /flat-ui.css - 304 Not Modified (0ms)
3849
+
3850
+
3851
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 16:43:43 -0700
3852
+ Served asset /tracker/issues.css - 304 Not Modified (0ms)
3853
+
3854
+
3855
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 16:43:43 -0700
3856
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3857
+
3858
+
3859
+ Started GET "/assets/jquery.dropkick.js?body=1" for 127.0.0.1 at 2013-09-24 16:43:43 -0700
3860
+ Served asset /jquery.dropkick.js - 304 Not Modified (0ms)
3861
+
3862
+
3863
+ Started GET "/assets/custom_radio.js?body=1" for 127.0.0.1 at 2013-09-24 16:43:43 -0700
3864
+ Served asset /custom_radio.js - 304 Not Modified (0ms)
3865
+
3866
+
3867
+ Started GET "/assets/custom_checkbox_and_radio.js?body=1" for 127.0.0.1 at 2013-09-24 16:43:43 -0700
3868
+ Served asset /custom_checkbox_and_radio.js - 304 Not Modified (0ms)
3869
+
3870
+
3871
+ Started GET "/assets/jquery.tagsinput.js?body=1" for 127.0.0.1 at 2013-09-24 16:43:43 -0700
3872
+ Served asset /jquery.tagsinput.js - 304 Not Modified (0ms)
3873
+
3874
+
3875
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-09-24 16:43:43 -0700
3876
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
3877
+
3878
+
3879
+ Started GET "/assets/jquery.placeholder.js?body=1" for 127.0.0.1 at 2013-09-24 16:43:43 -0700
3880
+ Served asset /jquery.placeholder.js - 304 Not Modified (0ms)
3881
+
3882
+
3883
+ Started GET "/assets/run_everything.js?body=1" for 127.0.0.1 at 2013-09-24 16:43:43 -0700
3884
+ Served asset /run_everything.js - 304 Not Modified (0ms)
3885
+
3886
+
3887
+ Started GET "/assets/flat-ui.js?body=1" for 127.0.0.1 at 2013-09-24 16:43:43 -0700
3888
+ Served asset /flat-ui.js - 304 Not Modified (0ms)
3889
+
3890
+
3891
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 16:43:43 -0700
3892
+ Served asset /tracker/issues.js - 304 Not Modified (0ms)
3893
+
3894
+
3895
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 16:43:43 -0700
3896
+ Served asset /tracker/application.js - 304 Not Modified (0ms)
3897
+
3898
+
3899
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 16:44:20 -0700
3900
+ Processing by Tracker::IssuesController#index as HTML
3901
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (3.7ms)
3902
+ Completed 200 OK in 807ms (Views: 10.8ms | ActiveRecord: 0.0ms)
3903
+
3904
+
3905
+ Started GET "/assets/flat-ui.css?body=1" for 127.0.0.1 at 2013-09-24 16:44:21 -0700
3906
+ Served asset /flat-ui.css - 304 Not Modified (0ms)
3907
+
3908
+
3909
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 16:44:21 -0700
3910
+ Served asset /tracker/application.css - 304 Not Modified (2ms)
3911
+
3912
+
3913
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 16:44:21 -0700
3914
+ Served asset /jquery.js - 304 Not Modified (0ms)
3915
+
3916
+
3917
+ Started GET "/assets/jquery.dropkick.js?body=1" for 127.0.0.1 at 2013-09-24 16:44:21 -0700
3918
+ Served asset /jquery.dropkick.js - 304 Not Modified (0ms)
3919
+
3920
+
3921
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 16:44:21 -0700
3922
+ Served asset /tracker/issues.css - 304 Not Modified (0ms)
3923
+
3924
+
3925
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 16:44:21 -0700
3926
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3927
+
3928
+
3929
+ Started GET "/assets/custom_checkbox_and_radio.js?body=1" for 127.0.0.1 at 2013-09-24 16:44:21 -0700
3930
+ Served asset /custom_checkbox_and_radio.js - 304 Not Modified (0ms)
3931
+
3932
+
3933
+ Started GET "/assets/custom_radio.js?body=1" for 127.0.0.1 at 2013-09-24 16:44:21 -0700
3934
+ Served asset /custom_radio.js - 304 Not Modified (0ms)
3935
+
3936
+
3937
+ Started GET "/assets/jquery.tagsinput.js?body=1" for 127.0.0.1 at 2013-09-24 16:44:21 -0700
3938
+ Served asset /jquery.tagsinput.js - 304 Not Modified (0ms)
3939
+
3940
+
3941
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-09-24 16:44:21 -0700
3942
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
3943
+
3944
+
3945
+ Started GET "/assets/jquery.placeholder.js?body=1" for 127.0.0.1 at 2013-09-24 16:44:21 -0700
3946
+ Served asset /jquery.placeholder.js - 304 Not Modified (0ms)
3947
+
3948
+
3949
+ Started GET "/assets/run_everything.js?body=1" for 127.0.0.1 at 2013-09-24 16:44:21 -0700
3950
+ Served asset /run_everything.js - 304 Not Modified (0ms)
3951
+
3952
+
3953
+ Started GET "/assets/flat-ui.js?body=1" for 127.0.0.1 at 2013-09-24 16:44:21 -0700
3954
+ Served asset /flat-ui.js - 304 Not Modified (0ms)
3955
+
3956
+
3957
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 16:44:21 -0700
3958
+ Served asset /tracker/issues.js - 304 Not Modified (0ms)
3959
+
3960
+
3961
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 16:44:21 -0700
3962
+ Served asset /tracker/application.js - 304 Not Modified (0ms)
3963
+
3964
+
3965
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 16:46:09 -0700
3966
+ Processing by Tracker::IssuesController#index as HTML
3967
+ Rendered /Users/mikecifani/Projects/active_progress/app/views/tracker/issues/index.html.slim within layouts/tracker/application (0.2ms)
3968
+ Completed 200 OK in 435ms (Views: 10.7ms | ActiveRecord: 0.0ms)
3969
+
3970
+
3971
+ Started GET "/assets/tracker/application.css?body=1" for 127.0.0.1 at 2013-09-24 16:46:10 -0700
3972
+ Served asset /tracker/application.css - 304 Not Modified (0ms)
3973
+
3974
+
3975
+ Started GET "/assets/flat-ui.css?body=1" for 127.0.0.1 at 2013-09-24 16:46:10 -0700
3976
+ Served asset /flat-ui.css - 304 Not Modified (0ms)
3977
+
3978
+
3979
+ Started GET "/assets/tracker/issues.css?body=1" for 127.0.0.1 at 2013-09-24 16:46:10 -0700
3980
+ Served asset /tracker/issues.css - 304 Not Modified (0ms)
3981
+
3982
+
3983
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-24 16:46:10 -0700
3984
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3985
+
3986
+
3987
+ Started GET "/assets/jquery.dropkick.js?body=1" for 127.0.0.1 at 2013-09-24 16:46:10 -0700
3988
+ Served asset /jquery.dropkick.js - 304 Not Modified (0ms)
3989
+
3990
+
3991
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-24 16:46:10 -0700
3992
+ Served asset /jquery.js - 304 Not Modified (0ms)
3993
+
3994
+
3995
+ Started GET "/assets/custom_checkbox_and_radio.js?body=1" for 127.0.0.1 at 2013-09-24 16:46:10 -0700
3996
+ Served asset /custom_checkbox_and_radio.js - 304 Not Modified (0ms)
3997
+
3998
+
3999
+ Started GET "/assets/custom_radio.js?body=1" for 127.0.0.1 at 2013-09-24 16:46:10 -0700
4000
+ Served asset /custom_radio.js - 304 Not Modified (0ms)
4001
+
4002
+
4003
+ Started GET "/assets/jquery.tagsinput.js?body=1" for 127.0.0.1 at 2013-09-24 16:46:10 -0700
4004
+ Served asset /jquery.tagsinput.js - 304 Not Modified (0ms)
4005
+
4006
+
4007
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-09-24 16:46:10 -0700
4008
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
4009
+
4010
+
4011
+ Started GET "/assets/jquery.placeholder.js?body=1" for 127.0.0.1 at 2013-09-24 16:46:10 -0700
4012
+ Served asset /jquery.placeholder.js - 304 Not Modified (0ms)
4013
+
4014
+
4015
+ Started GET "/assets/flat-ui.js?body=1" for 127.0.0.1 at 2013-09-24 16:46:10 -0700
4016
+ Served asset /flat-ui.js - 304 Not Modified (0ms)
4017
+
4018
+
4019
+ Started GET "/assets/run_everything.js?body=1" for 127.0.0.1 at 2013-09-24 16:46:10 -0700
4020
+ Served asset /run_everything.js - 304 Not Modified (0ms)
4021
+
4022
+
4023
+ Started GET "/assets/tracker/issues.js?body=1" for 127.0.0.1 at 2013-09-24 16:46:10 -0700
4024
+ Served asset /tracker/issues.js - 304 Not Modified (0ms)
4025
+
4026
+
4027
+ Started GET "/assets/tracker/application.js?body=1" for 127.0.0.1 at 2013-09-24 16:46:10 -0700
4028
+ Served asset /tracker/application.js - 304 Not Modified (0ms)
4029
+
4030
+
4031
+ Started GET "/tracker/track_issue/4" for 127.0.0.1 at 2013-09-24 16:47:55 -0700
4032
+ Processing by Tracker::IssuesController#track_issue as HTML
4033
+ Parameters: {"id"=>"4"}
4034
+ Completed 500 Internal Server Error in 2ms
4035
+
4036
+ NoMethodError - undefined method `authenticate_user!' for #<Tracker::IssuesController:0x007fd04caaa4c8>:
4037
+ activesupport (3.2.14) lib/active_support/callbacks.rb:407:in `_run__3461571009571819923__process_action__327896831868903943__callbacks'
4038
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
4039
+ activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
4040
+ activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
4041
+ actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action'
4042
+ actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action'
4043
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
4044
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
4045
+ activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
4046
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
4047
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
4048
+ actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
4049
+ activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
4050
+ actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process'
4051
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
4052
+ actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
4053
+ actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
4054
+ actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
4055
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
4056
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
4057
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
4058
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
4059
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
4060
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
4061
+ railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
4062
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
4063
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
4064
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
4065
+ actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
4066
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
4067
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
4068
+ actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
4069
+ actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
4070
+ actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
4071
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
4072
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
4073
+ actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
4074
+ activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
4075
+ activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
4076
+ actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
4077
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__2223356439858616459__call__1577814708916289082__callbacks'
4078
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
4079
+ activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
4080
+ activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
4081
+ actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
4082
+ actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
4083
+ actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
4084
+ better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call'
4085
+ better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call'
4086
+ better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call'
4087
+ actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
4088
+ actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
4089
+ railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
4090
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
4091
+ activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
4092
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
4093
+ actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
4094
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
4095
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
4096
+ activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
4097
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
4098
+ actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
4099
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
4100
+ railties (3.2.14) lib/rails/application.rb:231:in `call'
4101
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
4102
+ railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
4103
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
4104
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
4105
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
4106
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
4107
+
4108
+
4109
+
4110
+ Started POST "/tracker/__better_errors/70266308525260/variables" for 127.0.0.1 at 2013-09-24 16:47:55 -0700
4111
+
4112
+
4113
+ Started GET "/" for 127.0.0.1 at 2013-09-24 18:00:21 -0700
4114
+
4115
+ ActionController::RoutingError (No route matches [GET] "/"):
4116
+ actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
4117
+ actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
4118
+ railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
4119
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
4120
+ activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
4121
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
4122
+ actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
4123
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
4124
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
4125
+ activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
4126
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
4127
+ actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
4128
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
4129
+ railties (3.2.14) lib/rails/application.rb:231:in `call'
4130
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
4131
+ railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
4132
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
4133
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
4134
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
4135
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
4136
+
4137
+
4138
+ Rendered /Users/mikecifani/.rvm/gems/ruby-2.0.0-p0@active_progress/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
4139
+
4140
+
4141
+ Started GET "/issues" for 127.0.0.1 at 2013-09-24 18:00:27 -0700
4142
+
4143
+ ActionController::RoutingError (No route matches [GET] "/issues"):
4144
+ actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
4145
+ actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
4146
+ railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
4147
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
4148
+ activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
4149
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
4150
+ actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
4151
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
4152
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
4153
+ activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
4154
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
4155
+ actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
4156
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
4157
+ railties (3.2.14) lib/rails/application.rb:231:in `call'
4158
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
4159
+ railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
4160
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
4161
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
4162
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
4163
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
4164
+
4165
+
4166
+ Rendered /Users/mikecifani/.rvm/gems/ruby-2.0.0-p0@active_progress/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
4167
+
4168
+
4169
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 18:00:30 -0700
4170
+ Processing by Tracker::IssuesController#index as HTML
4171
+ Completed 500 Internal Server Error in 473ms
4172
+
4173
+ NameError - uninitialized class variable @@current_user in Tracker::IssuesController:
4174
+ /Users/mikecifani/Projects/active_progress/app/controllers/tracker/issues_controller.rb:10:in `index'
4175
+ actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
4176
+ actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action'
4177
+ actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action'
4178
+ actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
4179
+ activesupport (3.2.14) lib/active_support/callbacks.rb:403:in `_run__3461571009571819923__process_action__2735441281320613649__callbacks'
4180
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
4181
+ activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
4182
+ activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
4183
+ actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action'
4184
+ actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action'
4185
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
4186
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
4187
+ activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
4188
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
4189
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
4190
+ actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
4191
+ activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
4192
+ actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process'
4193
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
4194
+ actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
4195
+ actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
4196
+ actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
4197
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
4198
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
4199
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
4200
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
4201
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
4202
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
4203
+ railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
4204
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
4205
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
4206
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
4207
+ actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
4208
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
4209
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
4210
+ actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
4211
+ actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
4212
+ actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
4213
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
4214
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
4215
+ actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
4216
+ activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
4217
+ activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
4218
+ actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
4219
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__2223356439858616459__call__1577814708916289082__callbacks'
4220
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
4221
+ activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
4222
+ activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
4223
+ actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
4224
+ actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
4225
+ actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
4226
+ better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call'
4227
+ better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call'
4228
+ better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call'
4229
+ actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
4230
+ actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
4231
+ railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
4232
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
4233
+ activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
4234
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
4235
+ actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
4236
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
4237
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
4238
+ activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
4239
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
4240
+ actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
4241
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
4242
+ railties (3.2.14) lib/rails/application.rb:231:in `call'
4243
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
4244
+ railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
4245
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
4246
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
4247
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
4248
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
4249
+
4250
+
4251
+
4252
+ Started GET "/tracker" for 127.0.0.1 at 2013-09-24 18:00:31 -0700
4253
+ Processing by Tracker::IssuesController#index as HTML
4254
+ Completed 500 Internal Server Error in 372ms
4255
+
4256
+ NameError - uninitialized class variable @@current_user in Tracker::IssuesController:
4257
+ /Users/mikecifani/Projects/active_progress/app/controllers/tracker/issues_controller.rb:10:in `index'
4258
+ actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
4259
+ actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action'
4260
+ actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action'
4261
+ actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
4262
+ activesupport (3.2.14) lib/active_support/callbacks.rb:403:in `_run__3461571009571819923__process_action__2735441281320613649__callbacks'
4263
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
4264
+ activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
4265
+ activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
4266
+ actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action'
4267
+ actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action'
4268
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
4269
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
4270
+ activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
4271
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
4272
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
4273
+ actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
4274
+ activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
4275
+ actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process'
4276
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
4277
+ actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
4278
+ actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
4279
+ actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
4280
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
4281
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
4282
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
4283
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
4284
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
4285
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
4286
+ railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
4287
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
4288
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
4289
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
4290
+ actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
4291
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
4292
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
4293
+ actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
4294
+ actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
4295
+ actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
4296
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
4297
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
4298
+ actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
4299
+ activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
4300
+ activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
4301
+ actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
4302
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__2223356439858616459__call__1577814708916289082__callbacks'
4303
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
4304
+ activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
4305
+ activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
4306
+ actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
4307
+ actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
4308
+ actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
4309
+ better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call'
4310
+ better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call'
4311
+ better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call'
4312
+ actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
4313
+ actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
4314
+ railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
4315
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
4316
+ activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
4317
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
4318
+ actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
4319
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
4320
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
4321
+ activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
4322
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
4323
+ actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
4324
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
4325
+ railties (3.2.14) lib/rails/application.rb:231:in `call'
4326
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
4327
+ railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
4328
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
4329
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
4330
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
4331
+ /Users/mikecifani/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
4332
+
4333
+
4334
+
4335
+ Started POST "/tracker/__better_errors/70266282908880/variables" for 127.0.0.1 at 2013-09-24 18:00:31 -0700
4336
+
4337
+
4338
+ Started POST "/tracker/__better_errors/70266309436380/variables" for 127.0.0.1 at 2013-09-24 18:00:31 -0700
4339
+ Connecting to database specified by database.yml
4340
+ Connecting to database specified by database.yml
4341
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
4342
+  (0.2ms) select sqlite_version(*)
4343
+  (1.0ms) CREATE TABLE "tracker_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" text, "content" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
4344
+  (0.8ms) CREATE TABLE "tracker_users_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" text, "body" text, "active" boolean, "assignee" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "user_id" integer)
4345
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
4346
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4347
+  (0.1ms) SELECT version FROM "schema_migrations"
4348
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130924233149')
4349
+ Connecting to database specified by database.yml
4350
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
4351
+  (0.2ms) select sqlite_version(*)
4352
+  (2.4ms) CREATE TABLE "tracker_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" text, "content" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
4353
+  (0.8ms) CREATE TABLE "tracker_users_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" text, "body" text, "active" boolean, "assignee" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "user_id" integer)
4354
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
4355
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4356
+  (0.1ms) SELECT version FROM "schema_migrations"
4357
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130924233149')
4358
+ Connecting to database specified by database.yml
4359
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
4360
+ Migrating to CreateTrackerIssues (20130924202020)
4361
+ Migrating to CreateTrackerUsersIssues (20130924233027)
4362
+ Migrating to AddRelationUsersIssues (20130924233149)
4363
+ Migrating to AddIssueIdIssues (20130928221922)
4364
+  (0.0ms) select sqlite_version(*)
4365
+  (0.1ms) begin transaction
4366
+  (0.5ms) ALTER TABLE "tracker_users_issues" ADD "issue_id" integer
4367
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130928221922')
4368
+  (0.6ms) commit transaction
4369
+ Migrating to AddDefaultActiveColumn (20130930233849)
4370
+  (0.0ms) begin transaction
4371
+  (0.4ms) CREATE TEMPORARY TABLE "altered_tracker_users_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" text, "body" text, "active" boolean, "assignee" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "user_id" integer, "issue_id" integer)
4372
+  (0.4ms) SELECT * FROM "tracker_users_issues"
4373
+  (0.5ms) DROP TABLE "tracker_users_issues"
4374
+  (0.2ms) CREATE TABLE "tracker_users_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" text, "body" text, "active" boolean DEFAULT 't', "assignee" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "user_id" integer, "issue_id" integer) 
4375
+  (0.0ms) SELECT * FROM "altered_tracker_users_issues"
4376
+  (0.3ms) DROP TABLE "altered_tracker_users_issues"
4377
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130930233849')
4378
+  (0.7ms) commit transaction
4379
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
4380
+ Connecting to database specified by database.yml
4381
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
4382
+  (0.2ms) select sqlite_version(*)
4383
+  (2.6ms) CREATE TABLE "tracker_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" text, "content" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
4384
+  (1.0ms) CREATE TABLE "tracker_users_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" text, "body" text, "active" boolean DEFAULT 't', "assignee" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "user_id" integer, "issue_id" integer)
4385
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
4386
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4387
+  (0.1ms) SELECT version FROM "schema_migrations"
4388
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130930233849')