style_guide 0.0.1

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 (159) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +8 -0
  3. data/Gemfile +14 -0
  4. data/Gemfile.lock +92 -0
  5. data/MIT-LICENSE +20 -0
  6. data/README.md +91 -0
  7. data/Rakefile +34 -0
  8. data/app/assets/images/style_guide/.keep +0 -0
  9. data/app/assets/javascripts/style_guides.js +97 -0
  10. data/app/assets/javascripts/style_guides_plugins.js +31 -0
  11. data/app/assets/stylesheets/style.css +116 -0
  12. data/app/assets/stylesheets/style_guides.css +405 -0
  13. data/app/controllers/.keep +0 -0
  14. data/app/controllers/style_guide_controller.rb +16 -0
  15. data/app/helpers/.keep +0 -0
  16. data/app/helpers/style_guide_helper.rb +28 -0
  17. data/app/mailers/.keep +0 -0
  18. data/app/models/.keep +0 -0
  19. data/app/views/.keep +0 -0
  20. data/app/views/layouts/style_guide.html.erb +25 -0
  21. data/app/views/style_guide/index.html.erb +105 -0
  22. data/bin/rails +12 -0
  23. data/config/routes.rb +4 -0
  24. data/lib/assets/.keep +0 -0
  25. data/lib/assets/style_guide/doc/base/address.html +1 -0
  26. data/lib/assets/style_guide/doc/base/blockquote.html +1 -0
  27. data/lib/assets/style_guide/doc/base/details.html +1 -0
  28. data/lib/assets/style_guide/doc/base/figure.html +1 -0
  29. data/lib/assets/style_guide/doc/base/form-buttons.html +1 -0
  30. data/lib/assets/style_guide/doc/base/form-fields-default.html +1 -0
  31. data/lib/assets/style_guide/doc/base/form-fields-disabled.html +1 -0
  32. data/lib/assets/style_guide/doc/base/form-fields-readonly.html +1 -0
  33. data/lib/assets/style_guide/doc/base/form-fields-with-datalist.html +1 -0
  34. data/lib/assets/style_guide/doc/base/form-fieldset.html +1 -0
  35. data/lib/assets/style_guide/doc/base/headings-1.html +1 -0
  36. data/lib/assets/style_guide/doc/base/headings-2.html +1 -0
  37. data/lib/assets/style_guide/doc/base/headings-3.html +1 -0
  38. data/lib/assets/style_guide/doc/base/hr.html +1 -0
  39. data/lib/assets/style_guide/doc/base/list-definition.html +1 -0
  40. data/lib/assets/style_guide/doc/base/list-ordered.html +1 -0
  41. data/lib/assets/style_guide/doc/base/list-unordered.html +1 -0
  42. data/lib/assets/style_guide/doc/base/media.html +1 -0
  43. data/lib/assets/style_guide/doc/base/meter-and-progress.html +1 -0
  44. data/lib/assets/style_guide/doc/base/preformated-text.html +1 -0
  45. data/lib/assets/style_guide/doc/base/sample-content-block.html +1 -0
  46. data/lib/assets/style_guide/doc/base/tabular-data.html +1 -0
  47. data/lib/assets/style_guide/doc/base/text-elements.html +1 -0
  48. data/lib/assets/style_guide/doc/base/time.html +1 -0
  49. data/lib/assets/style_guide/doc/patterns/alerts.html +1 -0
  50. data/lib/assets/style_guide/doc/patterns/breadcrumbs.html +1 -0
  51. data/lib/assets/style_guide/markup/base/address.html +6 -0
  52. data/lib/assets/style_guide/markup/base/blockquote.html +5 -0
  53. data/lib/assets/style_guide/markup/base/details.html +30 -0
  54. data/lib/assets/style_guide/markup/base/figure.html +12 -0
  55. data/lib/assets/style_guide/markup/base/form-buttons.html +13 -0
  56. data/lib/assets/style_guide/markup/base/form-fields-default.html +41 -0
  57. data/lib/assets/style_guide/markup/base/form-fields-disabled.html +13 -0
  58. data/lib/assets/style_guide/markup/base/form-fields-readonly.html +9 -0
  59. data/lib/assets/style_guide/markup/base/form-fields-with-datalist.html +94 -0
  60. data/lib/assets/style_guide/markup/base/form-fieldset.html +19 -0
  61. data/lib/assets/style_guide/markup/base/headings-1.html +6 -0
  62. data/lib/assets/style_guide/markup/base/headings-2.html +8 -0
  63. data/lib/assets/style_guide/markup/base/headings-3.html +8 -0
  64. data/lib/assets/style_guide/markup/base/hr.html +1 -0
  65. data/lib/assets/style_guide/markup/base/list-definition.html +10 -0
  66. data/lib/assets/style_guide/markup/base/list-ordered.html +18 -0
  67. data/lib/assets/style_guide/markup/base/list-unordered.html +18 -0
  68. data/lib/assets/style_guide/markup/base/media.html +36 -0
  69. data/lib/assets/style_guide/markup/base/meter-and-progress.html +11 -0
  70. data/lib/assets/style_guide/markup/base/preformated-text.html +18 -0
  71. data/lib/assets/style_guide/markup/base/sample-content-block.html +17 -0
  72. data/lib/assets/style_guide/markup/base/tabular-data.html +68 -0
  73. data/lib/assets/style_guide/markup/base/text-elements.html +23 -0
  74. data/lib/assets/style_guide/markup/base/time.html +1 -0
  75. data/lib/assets/style_guide/markup/patterns/alerts.html +16 -0
  76. data/lib/assets/style_guide/markup/patterns/breadcrumbs.html +6 -0
  77. data/lib/style_guide/engine.rb +11 -0
  78. data/lib/style_guide/version.rb +3 -0
  79. data/lib/style_guide.rb +7 -0
  80. data/lib/tasks/style_guide_tasks.rake +4 -0
  81. data/style_guide.gemspec +26 -0
  82. data/test/controllers/style_guide_controller_test.rb +7 -0
  83. data/test/dummy/README.rdoc +28 -0
  84. data/test/dummy/Rakefile +6 -0
  85. data/test/dummy/app/assets/images/.keep +0 -0
  86. data/test/dummy/app/assets/javascripts/application.js +13 -0
  87. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  88. data/test/dummy/app/controllers/application_controller.rb +5 -0
  89. data/test/dummy/app/controllers/concerns/.keep +0 -0
  90. data/test/dummy/app/helpers/application_helper.rb +2 -0
  91. data/test/dummy/app/mailers/.keep +0 -0
  92. data/test/dummy/app/models/.keep +0 -0
  93. data/test/dummy/app/models/concerns/.keep +0 -0
  94. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  95. data/test/dummy/bin/bundle +3 -0
  96. data/test/dummy/bin/rails +4 -0
  97. data/test/dummy/bin/rake +4 -0
  98. data/test/dummy/config/application.rb +23 -0
  99. data/test/dummy/config/boot.rb +5 -0
  100. data/test/dummy/config/database.yml +25 -0
  101. data/test/dummy/config/environment.rb +5 -0
  102. data/test/dummy/config/environments/development.rb +37 -0
  103. data/test/dummy/config/environments/production.rb +82 -0
  104. data/test/dummy/config/environments/test.rb +39 -0
  105. data/test/dummy/config/initializers/assets.rb +8 -0
  106. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  107. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  108. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  109. data/test/dummy/config/initializers/inflections.rb +16 -0
  110. data/test/dummy/config/initializers/mime_types.rb +4 -0
  111. data/test/dummy/config/initializers/session_store.rb +3 -0
  112. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  113. data/test/dummy/config/locales/en.yml +23 -0
  114. data/test/dummy/config/routes.rb +56 -0
  115. data/test/dummy/config/secrets.yml +22 -0
  116. data/test/dummy/config.ru +4 -0
  117. data/test/dummy/db/development.sqlite3 +0 -0
  118. data/test/dummy/lib/assets/.keep +0 -0
  119. data/test/dummy/log/.keep +0 -0
  120. data/test/dummy/log/development.log +3212 -0
  121. data/test/dummy/public/404.html +67 -0
  122. data/test/dummy/public/422.html +67 -0
  123. data/test/dummy/public/500.html +66 -0
  124. data/test/dummy/public/favicon.ico +0 -0
  125. data/test/dummy/tmp/cache/assets/development/sprockets/004eafe024778b45bd76b68aaba4ac15 +0 -0
  126. data/test/dummy/tmp/cache/assets/development/sprockets/02b9d9c6edce2d06f23d37980b4ee800 +0 -0
  127. data/test/dummy/tmp/cache/assets/development/sprockets/077546dcfe9730fd178069bbd08aabcd +0 -0
  128. data/test/dummy/tmp/cache/assets/development/sprockets/12cfd2d3d39780df1fa5a909e8d44377 +0 -0
  129. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  130. data/test/dummy/tmp/cache/assets/development/sprockets/146550a0272c7c23525da1a6bae7129c +0 -0
  131. data/test/dummy/tmp/cache/assets/development/sprockets/1a165ceceb0f8a97466552db5a2e9117 +0 -0
  132. data/test/dummy/tmp/cache/assets/development/sprockets/2cf006db500529f607744ffa0f89471c +0 -0
  133. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  134. data/test/dummy/tmp/cache/assets/development/sprockets/32a1ac63db3780b8a111e5485be56982 +0 -0
  135. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  136. data/test/dummy/tmp/cache/assets/development/sprockets/4e4e3e3a5771df9cae4d26bc6baf46c7 +0 -0
  137. data/test/dummy/tmp/cache/assets/development/sprockets/58173999e48afe09e8884356c79609f3 +0 -0
  138. data/test/dummy/tmp/cache/assets/development/sprockets/68e2d01c68da66c13b0d9e1476d859d6 +0 -0
  139. data/test/dummy/tmp/cache/assets/development/sprockets/7db7b6b32d1463ec5d4d358ad5e016cd +0 -0
  140. data/test/dummy/tmp/cache/assets/development/sprockets/81de5a8f8e9be0339dc42a8d3478ef61 +0 -0
  141. data/test/dummy/tmp/cache/assets/development/sprockets/8b14c1fcb69f343941b217e79224b573 +0 -0
  142. data/test/dummy/tmp/cache/assets/development/sprockets/a74b3d31d1ee9251adb48ec3f6b692db +0 -0
  143. data/test/dummy/tmp/cache/assets/development/sprockets/c080f0d6d4225e1a2e99b5f69ab934f8 +0 -0
  144. data/test/dummy/tmp/cache/assets/development/sprockets/c5ae04ae7418d8ea47212cf5f39ad45c +0 -0
  145. data/test/dummy/tmp/cache/assets/development/sprockets/cb475082e4e87eebe72cca39328e75fc +0 -0
  146. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  147. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  148. data/test/dummy/tmp/cache/assets/development/sprockets/e70c6cc21a053bd60db4b0b2751a3842 +0 -0
  149. data/test/dummy/tmp/cache/assets/development/sprockets/f13b97266d7293a648da96110bd0828d +0 -0
  150. data/test/dummy/tmp/cache/assets/development/sprockets/f39c3d50409be057fc18747ecf424bf0 +0 -0
  151. data/test/dummy/tmp/cache/assets/development/sprockets/f6d4686b27f2d3d964bf69c90a281e75 +0 -0
  152. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  153. data/test/dummy/tmp/cache/assets/development/sprockets/faf31f12c745fa3dfaa9180a7f6fb546 +0 -0
  154. data/test/dummy/tmp/cache/assets/development/sprockets/fb37ec5c5023032c53cd43bed0105798 +0 -0
  155. data/test/helpers/style_guide_helper_test.rb +4 -0
  156. data/test/integration/navigation_test.rb +10 -0
  157. data/test/style_guide_test.rb +7 -0
  158. data/test/test_helper.rb +15 -0
  159. metadata +302 -0
@@ -0,0 +1,3212 @@
1
+
2
+
3
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 13:30:30 -0700
4
+
5
+ LoadError (Unable to autoload constant StyleGuide::StyleGuideController, expected /Users/joshuaschultz/Development/Style_Guide/app/controllers/style_guide/style_guide_controller.rb to define it):
6
+ activesupport (4.1.4) lib/active_support/dependencies.rb:481:in `load_missing_constant'
7
+ activesupport (4.1.4) lib/active_support/dependencies.rb:180:in `const_missing'
8
+ activesupport (4.1.4) lib/active_support/inflector/methods.rb:240:in `const_get'
9
+ activesupport (4.1.4) lib/active_support/inflector/methods.rb:240:in `block in constantize'
10
+ activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `each'
11
+ activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `inject'
12
+ activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `constantize'
13
+ activesupport (4.1.4) lib/active_support/dependencies.rb:552:in `get'
14
+ activesupport (4.1.4) lib/active_support/dependencies.rb:583:in `constantize'
15
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:78:in `controller_reference'
16
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:68:in `controller'
17
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:46:in `call'
18
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
19
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each'
20
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call'
21
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call'
22
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
23
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
24
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
25
+ actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
26
+ actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call'
27
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
28
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
29
+ actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call'
30
+ activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call'
31
+ activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
32
+ activerecord (4.1.4) lib/active_record/migration.rb:380:in `call'
33
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
34
+ activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks'
35
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
36
+ actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
37
+ actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
38
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
39
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
40
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
41
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
42
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
43
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
44
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
45
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
46
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
47
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
48
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
49
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
50
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
51
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
52
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
53
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
54
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
55
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
56
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
57
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
58
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
59
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
60
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
61
+
62
+
63
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
64
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
65
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.2ms)
66
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (23.0ms)
67
+
68
+
69
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 13:31:46 -0700
70
+
71
+ ArgumentError ('StyleGuide' is not a supported controller name. This can lead to potential routing problems. See http://guides.rubyonrails.org/routing.html#specifying-a-controller-to-use):
72
+ actionpack (4.1.4) lib/action_dispatch/routing/mapper.rb:249:in `default_controller_and_action'
73
+ actionpack (4.1.4) lib/action_dispatch/routing/mapper.rb:117:in `normalize_options!'
74
+ actionpack (4.1.4) lib/action_dispatch/routing/mapper.rb:65:in `initialize'
75
+ actionpack (4.1.4) lib/action_dispatch/routing/mapper.rb:1487:in `new'
76
+ actionpack (4.1.4) lib/action_dispatch/routing/mapper.rb:1487:in `add_route'
77
+ actionpack (4.1.4) lib/action_dispatch/routing/mapper.rb:1466:in `decomposed_match'
78
+ actionpack (4.1.4) lib/action_dispatch/routing/mapper.rb:1447:in `block in match'
79
+ actionpack (4.1.4) lib/action_dispatch/routing/mapper.rb:1437:in `each'
80
+ actionpack (4.1.4) lib/action_dispatch/routing/mapper.rb:1437:in `match'
81
+ actionpack (4.1.4) lib/action_dispatch/routing/mapper.rb:630:in `map_method'
82
+ actionpack (4.1.4) lib/action_dispatch/routing/mapper.rb:591:in `get'
83
+ /Users/joshuaschultz/Development/Style_Guide/config/routes.rb:2:in `block in <top (required)>'
84
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:337:in `instance_exec'
85
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:337:in `eval_block'
86
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:315:in `draw'
87
+ /Users/joshuaschultz/Development/Style_Guide/config/routes.rb:1:in `<top (required)>'
88
+ activesupport (4.1.4) lib/active_support/dependencies.rb:241:in `load'
89
+ activesupport (4.1.4) lib/active_support/dependencies.rb:241:in `block in load'
90
+ activesupport (4.1.4) lib/active_support/dependencies.rb:232:in `load_dependency'
91
+ activesupport (4.1.4) lib/active_support/dependencies.rb:241:in `load'
92
+ railties (4.1.4) lib/rails/application/routes_reloader.rb:40:in `block in load_paths'
93
+ railties (4.1.4) lib/rails/application/routes_reloader.rb:40:in `each'
94
+ railties (4.1.4) lib/rails/application/routes_reloader.rb:40:in `load_paths'
95
+ railties (4.1.4) lib/rails/application/routes_reloader.rb:16:in `reload!'
96
+ railties (4.1.4) lib/rails/application/routes_reloader.rb:26:in `block in updater'
97
+ activesupport (4.1.4) lib/active_support/file_update_checker.rb:75:in `call'
98
+ activesupport (4.1.4) lib/active_support/file_update_checker.rb:75:in `execute'
99
+ railties (4.1.4) lib/rails/application/routes_reloader.rb:7:in `execute'
100
+ railties (4.1.4) lib/rails/application/finisher.rb:83:in `block (2 levels) in <module:Finisher>'
101
+ activesupport (4.1.4) lib/active_support/callbacks.rb:438:in `instance_exec'
102
+ activesupport (4.1.4) lib/active_support/callbacks.rb:438:in `block in make_lambda'
103
+ activesupport (4.1.4) lib/active_support/callbacks.rb:184:in `call'
104
+ activesupport (4.1.4) lib/active_support/callbacks.rb:184:in `block in simple'
105
+ activesupport (4.1.4) lib/active_support/callbacks.rb:185:in `call'
106
+ activesupport (4.1.4) lib/active_support/callbacks.rb:185:in `block in simple'
107
+ activesupport (4.1.4) lib/active_support/callbacks.rb:185:in `call'
108
+ activesupport (4.1.4) lib/active_support/callbacks.rb:185:in `block in simple'
109
+ activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `call'
110
+ activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks'
111
+ actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:83:in `prepare!'
112
+ actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:71:in `call'
113
+ actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
114
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
115
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
116
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
117
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
118
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
119
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
120
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
121
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
122
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
123
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
124
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
125
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
126
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
127
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
128
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
129
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
130
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
131
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
132
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
133
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
134
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
135
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
136
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
137
+
138
+
139
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
140
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
141
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
142
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.0ms)
143
+
144
+
145
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 13:32:39 -0700
146
+
147
+ ActionController::RoutingError (No route matches [GET] "/style_guide"):
148
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
149
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
150
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
151
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
152
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
153
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
154
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
155
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
156
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
157
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
158
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
159
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
160
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
161
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
162
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
163
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
164
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
165
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
166
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
167
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
168
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
169
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
170
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
171
+
172
+
173
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
174
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
175
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.5ms)
176
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (23.1ms)
177
+
178
+
179
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 13:33:55 -0700
180
+ Processing by StyleGuideController#index as HTML
181
+ Completed 500 Internal Server Error in 0ms
182
+
183
+ Errno::ENOENT (No such file or directory @ dir_chdir - /Users/joshuaschultz/Development/Style_Guide/app/controllers/style_guide):
184
+ /Users/joshuaschultz/Development/Style_Guide/app/controllers/style_guide/style_guide_controller.rb:6:in `chdir'
185
+ /Users/joshuaschultz/Development/Style_Guide/app/controllers/style_guide/style_guide_controller.rb:6:in `index'
186
+ actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
187
+ actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action'
188
+ actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action'
189
+ actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
190
+ activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call'
191
+ activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call'
192
+ activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting'
193
+ activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `call'
194
+ activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting'
195
+ activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `call'
196
+ activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks'
197
+ actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action'
198
+ actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
199
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
200
+ activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument'
201
+ activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
202
+ activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument'
203
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
204
+ actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
205
+ activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
206
+ actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process'
207
+ actionview (4.1.4) lib/action_view/rendering.rb:30:in `process'
208
+ actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch'
209
+ actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
210
+ actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action'
211
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `call'
212
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
213
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call'
214
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
215
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each'
216
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call'
217
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call'
218
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
219
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
220
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
221
+ actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
222
+ actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call'
223
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
224
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
225
+ actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call'
226
+ activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call'
227
+ activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
228
+ activerecord (4.1.4) lib/active_record/migration.rb:380:in `call'
229
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
230
+ activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks'
231
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
232
+ actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
233
+ actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
234
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
235
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
236
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
237
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
238
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
239
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
240
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
241
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
242
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
243
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
244
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
245
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
246
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
247
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
248
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
249
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
250
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
251
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
252
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
253
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
254
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
255
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
256
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
257
+
258
+
259
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms)
260
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
261
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
262
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.2ms)
263
+
264
+
265
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 13:35:04 -0700
266
+ Processing by StyleGuideController#index as HTML
267
+ Completed 500 Internal Server Error in 0ms
268
+
269
+ Errno::ENOENT (No such file or directory @ dir_chdir - /Users/joshuaschultz/Development/Style_Guide/app/controllers/style_guide):
270
+ /Users/joshuaschultz/Development/Style_Guide/app/controllers/style_guide/style_guide_controller.rb:6:in `chdir'
271
+ /Users/joshuaschultz/Development/Style_Guide/app/controllers/style_guide/style_guide_controller.rb:6:in `index'
272
+ actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
273
+ actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action'
274
+ actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action'
275
+ actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
276
+ activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call'
277
+ activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call'
278
+ activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting'
279
+ activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `call'
280
+ activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting'
281
+ activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `call'
282
+ activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks'
283
+ actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action'
284
+ actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
285
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
286
+ activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument'
287
+ activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
288
+ activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument'
289
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
290
+ actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
291
+ activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
292
+ actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process'
293
+ actionview (4.1.4) lib/action_view/rendering.rb:30:in `process'
294
+ actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch'
295
+ actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
296
+ actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action'
297
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `call'
298
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
299
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call'
300
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
301
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each'
302
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call'
303
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call'
304
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
305
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
306
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
307
+ actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
308
+ actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call'
309
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
310
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
311
+ actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call'
312
+ activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call'
313
+ activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
314
+ activerecord (4.1.4) lib/active_record/migration.rb:380:in `call'
315
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
316
+ activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks'
317
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
318
+ actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
319
+ actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
320
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
321
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
322
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
323
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
324
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
325
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
326
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
327
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
328
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
329
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
330
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
331
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
332
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
333
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
334
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
335
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
336
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
337
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
338
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
339
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
340
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
341
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
342
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
343
+
344
+
345
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
346
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
347
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
348
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.8ms)
349
+
350
+
351
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 13:35:07 -0700
352
+ Processing by StyleGuideController#index as HTML
353
+ Completed 500 Internal Server Error in 0ms
354
+
355
+ Errno::ENOENT (No such file or directory @ dir_chdir - /Users/joshuaschultz/Development/Style_Guide/app/controllers/style_guide):
356
+ /Users/joshuaschultz/Development/Style_Guide/app/controllers/style_guide/style_guide_controller.rb:6:in `chdir'
357
+ /Users/joshuaschultz/Development/Style_Guide/app/controllers/style_guide/style_guide_controller.rb:6:in `index'
358
+ actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
359
+ actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action'
360
+ actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action'
361
+ actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
362
+ activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call'
363
+ activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call'
364
+ activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting'
365
+ activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `call'
366
+ activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting'
367
+ activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `call'
368
+ activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks'
369
+ actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action'
370
+ actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
371
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
372
+ activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument'
373
+ activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
374
+ activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument'
375
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
376
+ actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
377
+ activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
378
+ actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process'
379
+ actionview (4.1.4) lib/action_view/rendering.rb:30:in `process'
380
+ actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch'
381
+ actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
382
+ actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action'
383
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `call'
384
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
385
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call'
386
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
387
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each'
388
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call'
389
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call'
390
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
391
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
392
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
393
+ actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
394
+ actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call'
395
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
396
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
397
+ actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call'
398
+ activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call'
399
+ activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
400
+ activerecord (4.1.4) lib/active_record/migration.rb:380:in `call'
401
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
402
+ activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks'
403
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
404
+ actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
405
+ actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
406
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
407
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
408
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
409
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
410
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
411
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
412
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
413
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
414
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
415
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
416
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
417
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
418
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
419
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
420
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
421
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
422
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
423
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
424
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
425
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
426
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
427
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
428
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
429
+
430
+
431
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
432
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
433
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
434
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.5ms)
435
+
436
+
437
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 13:36:56 -0700
438
+ Processing by StyleGuideController#index as HTML
439
+ Completed 500 Internal Server Error in 0ms
440
+
441
+ Errno::ENOENT (No such file or directory @ dir_chdir - /Users/joshuaschultz/Development/Style_Guide/app/controllers/style_guide):
442
+ /Users/joshuaschultz/Development/Style_Guide/app/controllers/style_guide/style_guide_controller.rb:6:in `chdir'
443
+ /Users/joshuaschultz/Development/Style_Guide/app/controllers/style_guide/style_guide_controller.rb:6:in `index'
444
+ actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
445
+ actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action'
446
+ actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action'
447
+ actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
448
+ activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call'
449
+ activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call'
450
+ activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting'
451
+ activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `call'
452
+ activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting'
453
+ activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `call'
454
+ activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks'
455
+ actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action'
456
+ actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
457
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
458
+ activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument'
459
+ activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
460
+ activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument'
461
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
462
+ actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
463
+ activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
464
+ actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process'
465
+ actionview (4.1.4) lib/action_view/rendering.rb:30:in `process'
466
+ actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch'
467
+ actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
468
+ actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action'
469
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `call'
470
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
471
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call'
472
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
473
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each'
474
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call'
475
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call'
476
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
477
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
478
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
479
+ actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
480
+ actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call'
481
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
482
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
483
+ actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call'
484
+ activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call'
485
+ activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
486
+ activerecord (4.1.4) lib/active_record/migration.rb:380:in `call'
487
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
488
+ activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks'
489
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
490
+ actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
491
+ actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
492
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
493
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
494
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
495
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
496
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
497
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
498
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
499
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
500
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
501
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
502
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
503
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
504
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
505
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
506
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
507
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
508
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
509
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
510
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
511
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
512
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
513
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
514
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
515
+
516
+
517
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
518
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
519
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
520
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.5ms)
521
+
522
+
523
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 13:36:58 -0700
524
+ Processing by StyleGuideController#index as HTML
525
+ Completed 500 Internal Server Error in 0ms
526
+
527
+ Errno::ENOENT (No such file or directory @ dir_chdir - /Users/joshuaschultz/Development/Style_Guide/app/controllers/style_guide):
528
+ /Users/joshuaschultz/Development/Style_Guide/app/controllers/style_guide/style_guide_controller.rb:6:in `chdir'
529
+ /Users/joshuaschultz/Development/Style_Guide/app/controllers/style_guide/style_guide_controller.rb:6:in `index'
530
+ actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
531
+ actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action'
532
+ actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action'
533
+ actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
534
+ activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call'
535
+ activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call'
536
+ activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting'
537
+ activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `call'
538
+ activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting'
539
+ activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `call'
540
+ activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks'
541
+ actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action'
542
+ actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
543
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
544
+ activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument'
545
+ activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
546
+ activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument'
547
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
548
+ actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
549
+ activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
550
+ actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process'
551
+ actionview (4.1.4) lib/action_view/rendering.rb:30:in `process'
552
+ actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch'
553
+ actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
554
+ actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action'
555
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `call'
556
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
557
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call'
558
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
559
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each'
560
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call'
561
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call'
562
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
563
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
564
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
565
+ actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
566
+ actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call'
567
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
568
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
569
+ actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call'
570
+ activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call'
571
+ activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
572
+ activerecord (4.1.4) lib/active_record/migration.rb:380:in `call'
573
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
574
+ activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks'
575
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
576
+ actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
577
+ actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
578
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
579
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
580
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
581
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
582
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
583
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
584
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
585
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
586
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
587
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
588
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
589
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
590
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
591
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
592
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
593
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
594
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
595
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
596
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
597
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
598
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
599
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
600
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
601
+
602
+
603
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
604
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
605
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
606
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.1ms)
607
+
608
+
609
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 13:37:06 -0700
610
+ Processing by StyleGuideController#index as HTML
611
+ Completed 500 Internal Server Error in 1ms
612
+
613
+ NameError (uninitialized constant StyleGuideController::RAILS_ROOT):
614
+ /Users/joshuaschultz/Development/Style_Guide/app/controllers/style_guide_controller.rb:6:in `index'
615
+ actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
616
+ actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action'
617
+ actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action'
618
+ actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
619
+ activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call'
620
+ activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call'
621
+ activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting'
622
+ activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `call'
623
+ activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting'
624
+ activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `call'
625
+ activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks'
626
+ actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action'
627
+ actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
628
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
629
+ activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument'
630
+ activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
631
+ activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument'
632
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
633
+ actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
634
+ activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
635
+ actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process'
636
+ actionview (4.1.4) lib/action_view/rendering.rb:30:in `process'
637
+ actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch'
638
+ actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
639
+ actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action'
640
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `call'
641
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
642
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call'
643
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
644
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each'
645
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call'
646
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call'
647
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
648
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
649
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
650
+ actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
651
+ actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call'
652
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
653
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
654
+ actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call'
655
+ activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call'
656
+ activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
657
+ activerecord (4.1.4) lib/active_record/migration.rb:380:in `call'
658
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
659
+ activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks'
660
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
661
+ actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
662
+ actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
663
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
664
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
665
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
666
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
667
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
668
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
669
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
670
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
671
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
672
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
673
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
674
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
675
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
676
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
677
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
678
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
679
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
680
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
681
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
682
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
683
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
684
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
685
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
686
+
687
+
688
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
689
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
690
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.8ms)
691
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (19.8ms)
692
+
693
+
694
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 13:37:24 -0700
695
+ Processing by StyleGuideController#index as HTML
696
+ Rendered /Users/joshuaschultz/Development/Style_Guide/app/views/style_guide/index.html.erb within layouts/style_guide.html.erb (20.7ms)
697
+ Completed 500 Internal Server Error in 40ms
698
+
699
+ ActionView::Template::Error (Asset filtered out and will not be served: add `Rails.application.config.assets.precompile += %w( style_guides.css )` to `config/initializers/assets.rb` and restart your server):
700
+ 7:
701
+ 8: <!-- Style Guide Boilerplate Styles And Scripts -->
702
+ 9: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
703
+ 10: <%= stylesheet_link_tag 'style_guides', media: 'all', 'data-turbolinks-track' => true %>
704
+ 11:
705
+ 12: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
706
+ 13:
707
+ sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:185:in `check_errors_for'
708
+ sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:156:in `block in stylesheet_link_tag'
709
+ sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:155:in `map'
710
+ sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:155:in `stylesheet_link_tag'
711
+ /Users/joshuaschultz/Development/Style_Guide/app/views/layouts/style_guide.html.erb:10:in `___sers_joshuaschultz__evelopment__tyle__uide_app_views_layouts_style_guide_html_erb___1417128698347604888_70140206214900'
712
+ actionview (4.1.4) lib/action_view/template.rb:145:in `block in render'
713
+ activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument'
714
+ actionview (4.1.4) lib/action_view/template.rb:339:in `instrument'
715
+ actionview (4.1.4) lib/action_view/template.rb:143:in `render'
716
+ actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:67:in `render_with_layout'
717
+ actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
718
+ actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render'
719
+ actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template'
720
+ actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render'
721
+ actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template'
722
+ actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template'
723
+ actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body'
724
+ actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
725
+ actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
726
+ actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render'
727
+ actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render'
728
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
729
+ activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
730
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
731
+ activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms'
732
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
733
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
734
+ activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
735
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render'
736
+ actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
737
+ actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
738
+ actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action'
739
+ actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action'
740
+ actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
741
+ activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call'
742
+ activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call'
743
+ activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting'
744
+ activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `call'
745
+ activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting'
746
+ activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `call'
747
+ activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks'
748
+ actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action'
749
+ actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
750
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
751
+ activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument'
752
+ activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
753
+ activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument'
754
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
755
+ actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
756
+ activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
757
+ actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process'
758
+ actionview (4.1.4) lib/action_view/rendering.rb:30:in `process'
759
+ actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch'
760
+ actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
761
+ actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action'
762
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `call'
763
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
764
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call'
765
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
766
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each'
767
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call'
768
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call'
769
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
770
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
771
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
772
+ actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
773
+ actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call'
774
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
775
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
776
+ actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call'
777
+ activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call'
778
+ activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
779
+ activerecord (4.1.4) lib/active_record/migration.rb:380:in `call'
780
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
781
+ activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks'
782
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
783
+ actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
784
+ actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
785
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
786
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
787
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
788
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
789
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
790
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
791
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
792
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
793
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
794
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
795
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
796
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
797
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
798
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
799
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
800
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
801
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
802
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
803
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
804
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
805
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
806
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
807
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
808
+
809
+
810
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
811
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
812
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (8.6ms)
813
+
814
+
815
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 13:38:18 -0700
816
+ Processing by StyleGuideController#index as HTML
817
+ Rendered /Users/joshuaschultz/Development/Style_Guide/app/views/style_guide/index.html.erb within layouts/style_guide.html.erb (6.9ms)
818
+ Completed 200 OK in 49ms (Views: 49.0ms | ActiveRecord: 0.0ms)
819
+
820
+
821
+ Started GET "/assets/style_guides.css?body=1" for 127.0.0.1 at 2014-07-21 13:38:18 -0700
822
+
823
+
824
+ Started GET "/assets/style.css?body=1" for 127.0.0.1 at 2014-07-21 13:38:18 -0700
825
+
826
+
827
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 13:38:18 -0700
828
+
829
+
830
+ Started GET "/javascripts/style_guides_plugins.js" for 127.0.0.1 at 2014-07-21 13:38:18 -0700
831
+
832
+ ActionController::RoutingError (No route matches [GET] "/javascripts/style_guides_plugins.js"):
833
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
834
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
835
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
836
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
837
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
838
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
839
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
840
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
841
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
842
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
843
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
844
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
845
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
846
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
847
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
848
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
849
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
850
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
851
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
852
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
853
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
854
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
855
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
856
+
857
+
858
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
859
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
860
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.7ms)
861
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (20.2ms)
862
+
863
+
864
+ Started GET "/assets/style_guides.js?body=1" for 127.0.0.1 at 2014-07-21 13:38:18 -0700
865
+
866
+
867
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 13:38:19 -0700
868
+
869
+
870
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 13:43:15 -0700
871
+ Processing by StyleGuideController#index as HTML
872
+ Rendered /Users/joshuaschultz/Development/Style_Guide/app/views/style_guide/index.html.erb within layouts/style_guide.html.erb (22.7ms)
873
+ Completed 200 OK in 55ms (Views: 54.1ms | ActiveRecord: 0.0ms)
874
+
875
+
876
+ Started GET "/assets/style_guides.css?body=1" for 127.0.0.1 at 2014-07-21 13:43:15 -0700
877
+
878
+
879
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 13:43:15 -0700
880
+
881
+
882
+ Started GET "/assets/style.css?body=1" for 127.0.0.1 at 2014-07-21 13:43:15 -0700
883
+
884
+
885
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 13:43:15 -0700
886
+
887
+
888
+ Started GET "/assets/style_guides_plugins.js?body=1" for 127.0.0.1 at 2014-07-21 13:43:15 -0700
889
+
890
+
891
+ Started GET "/assets/style_guides.js?body=1" for 127.0.0.1 at 2014-07-21 13:43:15 -0700
892
+
893
+
894
+ Started GET "/form-buttons" for 127.0.0.1 at 2014-07-21 13:43:27 -0700
895
+
896
+ ActionController::RoutingError (No route matches [GET] "/form-buttons"):
897
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
898
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
899
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
900
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
901
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
902
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
903
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
904
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
905
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
906
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
907
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
908
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
909
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
910
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
911
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
912
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
913
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
914
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
915
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
916
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
917
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
918
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
919
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
920
+
921
+
922
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
923
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
924
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.0ms)
925
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (21.6ms)
926
+
927
+
928
+ Started GET "/" for 127.0.0.1 at 2014-07-21 14:53:39 -0700
929
+
930
+ Gem::LoadError (Specified 'sqlite3' for database adapter, but the gem is not loaded. Add `gem 'sqlite3'` to your Gemfile (and ensure its version is at the minimum required by ActiveRecord).):
931
+ activerecord (4.1.4) lib/active_record/connection_adapters/connection_specification.rb:190:in `rescue in spec'
932
+ activerecord (4.1.4) lib/active_record/connection_adapters/connection_specification.rb:187:in `spec'
933
+ activerecord (4.1.4) lib/active_record/connection_handling.rb:50:in `establish_connection'
934
+ activerecord (4.1.4) lib/active_record/railtie.rb:129:in `block (2 levels) in <class:Railtie>'
935
+ activesupport (4.1.4) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
936
+ activesupport (4.1.4) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
937
+ activesupport (4.1.4) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
938
+ activesupport (4.1.4) lib/active_support/lazy_load_hooks.rb:44:in `each'
939
+ activesupport (4.1.4) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
940
+ activerecord (4.1.4) lib/active_record/base.rb:326:in `<module:ActiveRecord>'
941
+ activerecord (4.1.4) lib/active_record/base.rb:23:in `<top (required)>'
942
+ activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:628:in `rescue in call'
943
+ activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:619:in `call'
944
+ activerecord (4.1.4) lib/active_record/migration.rb:380:in `call'
945
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
946
+ activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks'
947
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
948
+ actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
949
+ actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
950
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
951
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
952
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
953
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
954
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
955
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
956
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
957
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
958
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
959
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
960
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
961
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
962
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
963
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
964
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
965
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
966
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
967
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
968
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
969
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
970
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
971
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
972
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
973
+
974
+
975
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
976
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
977
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
978
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (17.0ms)
979
+
980
+
981
+ Started GET "/style_guides/index" for 127.0.0.1 at 2014-07-21 14:54:01 -0700
982
+
983
+ Gem::LoadError (Specified 'sqlite3' for database adapter, but the gem is not loaded. Add `gem 'sqlite3'` to your Gemfile (and ensure its version is at the minimum required by ActiveRecord).):
984
+ activerecord (4.1.4) lib/active_record/connection_adapters/connection_specification.rb:190:in `rescue in spec'
985
+ activerecord (4.1.4) lib/active_record/connection_adapters/connection_specification.rb:187:in `spec'
986
+ activerecord (4.1.4) lib/active_record/connection_handling.rb:50:in `establish_connection'
987
+ activerecord (4.1.4) lib/active_record/railtie.rb:129:in `block (2 levels) in <class:Railtie>'
988
+ activesupport (4.1.4) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
989
+ activesupport (4.1.4) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
990
+ activesupport (4.1.4) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
991
+ activesupport (4.1.4) lib/active_support/lazy_load_hooks.rb:44:in `each'
992
+ activesupport (4.1.4) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
993
+ activerecord (4.1.4) lib/active_record/base.rb:326:in `<module:ActiveRecord>'
994
+ activerecord (4.1.4) lib/active_record/base.rb:23:in `<top (required)>'
995
+ activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:628:in `rescue in call'
996
+ activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:619:in `call'
997
+ activerecord (4.1.4) lib/active_record/migration.rb:380:in `call'
998
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
999
+ activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks'
1000
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1001
+ actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1002
+ actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1003
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1004
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1005
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
1006
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
1007
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1008
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
1009
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
1010
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
1011
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1012
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1013
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1014
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1015
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1016
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
1017
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1018
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
1019
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
1020
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1021
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1022
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1023
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1024
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1025
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1026
+
1027
+
1028
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
1029
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
1030
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1031
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.8ms)
1032
+
1033
+
1034
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 14:54:03 -0700
1035
+
1036
+ Gem::LoadError (Specified 'sqlite3' for database adapter, but the gem is not loaded. Add `gem 'sqlite3'` to your Gemfile (and ensure its version is at the minimum required by ActiveRecord).):
1037
+ activerecord (4.1.4) lib/active_record/connection_adapters/connection_specification.rb:190:in `rescue in spec'
1038
+ activerecord (4.1.4) lib/active_record/connection_adapters/connection_specification.rb:187:in `spec'
1039
+ activerecord (4.1.4) lib/active_record/connection_handling.rb:50:in `establish_connection'
1040
+ activerecord (4.1.4) lib/active_record/railtie.rb:129:in `block (2 levels) in <class:Railtie>'
1041
+ activesupport (4.1.4) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
1042
+ activesupport (4.1.4) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
1043
+ activesupport (4.1.4) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
1044
+ activesupport (4.1.4) lib/active_support/lazy_load_hooks.rb:44:in `each'
1045
+ activesupport (4.1.4) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
1046
+ activerecord (4.1.4) lib/active_record/base.rb:326:in `<module:ActiveRecord>'
1047
+ activerecord (4.1.4) lib/active_record/base.rb:23:in `<top (required)>'
1048
+ activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:628:in `rescue in call'
1049
+ activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:619:in `call'
1050
+ activerecord (4.1.4) lib/active_record/migration.rb:380:in `call'
1051
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1052
+ activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks'
1053
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1054
+ actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1055
+ actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1056
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1057
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1058
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
1059
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
1060
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1061
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
1062
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
1063
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
1064
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1065
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1066
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1067
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1068
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1069
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
1070
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1071
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
1072
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
1073
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1074
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1075
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1076
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1077
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1078
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1079
+
1080
+
1081
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
1082
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
1083
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1084
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.9ms)
1085
+
1086
+
1087
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 15:39:54 -0700
1088
+
1089
+ Gem::LoadError (Specified 'sqlite3' for database adapter, but the gem is not loaded. Add `gem 'sqlite3'` to your Gemfile (and ensure its version is at the minimum required by ActiveRecord).):
1090
+ activerecord (4.1.4) lib/active_record/connection_adapters/connection_specification.rb:190:in `rescue in spec'
1091
+ activerecord (4.1.4) lib/active_record/connection_adapters/connection_specification.rb:187:in `spec'
1092
+ activerecord (4.1.4) lib/active_record/connection_handling.rb:50:in `establish_connection'
1093
+ activerecord (4.1.4) lib/active_record/railtie.rb:129:in `block (2 levels) in <class:Railtie>'
1094
+ activesupport (4.1.4) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
1095
+ activesupport (4.1.4) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
1096
+ activesupport (4.1.4) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
1097
+ activesupport (4.1.4) lib/active_support/lazy_load_hooks.rb:44:in `each'
1098
+ activesupport (4.1.4) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
1099
+ activerecord (4.1.4) lib/active_record/base.rb:326:in `<module:ActiveRecord>'
1100
+ activerecord (4.1.4) lib/active_record/base.rb:23:in `<top (required)>'
1101
+ activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:628:in `rescue in call'
1102
+ activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:619:in `call'
1103
+ activerecord (4.1.4) lib/active_record/migration.rb:380:in `call'
1104
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1105
+ activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks'
1106
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1107
+ actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1108
+ actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1109
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1110
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1111
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
1112
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
1113
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1114
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
1115
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
1116
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
1117
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1118
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1119
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1120
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1121
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1122
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
1123
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1124
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
1125
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
1126
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1127
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1128
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1129
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1130
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1131
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1132
+
1133
+
1134
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
1135
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
1136
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
1137
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.7ms)
1138
+
1139
+
1140
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 15:41:25 -0700
1141
+
1142
+ Gem::LoadError (Specified 'sqlite3' for database adapter, but the gem is not loaded. Add `gem 'sqlite3'` to your Gemfile (and ensure its version is at the minimum required by ActiveRecord).):
1143
+ activerecord (4.1.4) lib/active_record/connection_adapters/connection_specification.rb:190:in `rescue in spec'
1144
+ activerecord (4.1.4) lib/active_record/connection_adapters/connection_specification.rb:187:in `spec'
1145
+ activerecord (4.1.4) lib/active_record/connection_handling.rb:50:in `establish_connection'
1146
+ activerecord (4.1.4) lib/active_record/railtie.rb:129:in `block (2 levels) in <class:Railtie>'
1147
+ activesupport (4.1.4) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
1148
+ activesupport (4.1.4) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
1149
+ activesupport (4.1.4) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
1150
+ activesupport (4.1.4) lib/active_support/lazy_load_hooks.rb:44:in `each'
1151
+ activesupport (4.1.4) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
1152
+ activerecord (4.1.4) lib/active_record/base.rb:326:in `<module:ActiveRecord>'
1153
+ activerecord (4.1.4) lib/active_record/base.rb:23:in `<top (required)>'
1154
+ activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:628:in `rescue in call'
1155
+ activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:619:in `call'
1156
+ activerecord (4.1.4) lib/active_record/migration.rb:380:in `call'
1157
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1158
+ activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks'
1159
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1160
+ actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1161
+ actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1162
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1163
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1164
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
1165
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
1166
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1167
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
1168
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
1169
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
1170
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1171
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1172
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1173
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1174
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1175
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
1176
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1177
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
1178
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
1179
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1180
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1181
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1182
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1183
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1184
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1185
+
1186
+
1187
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
1188
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
1189
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
1190
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.6ms)
1191
+
1192
+
1193
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 15:44:03 -0700
1194
+ Processing by StyleGuideController#index as HTML
1195
+ Rendered /Users/joshuaschultz/Development/Style_Guide/app/views/style_guide/index.html.erb within layouts/style_guide.html.erb (21.9ms)
1196
+ Completed 200 OK in 53ms (Views: 52.2ms | ActiveRecord: 0.0ms)
1197
+
1198
+
1199
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 15:44:03 -0700
1200
+
1201
+
1202
+ Started GET "/assets/style_guides.css?body=1" for 127.0.0.1 at 2014-07-21 15:44:03 -0700
1203
+
1204
+
1205
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 15:44:03 -0700
1206
+
1207
+
1208
+ Started GET "/assets/style.css?body=1" for 127.0.0.1 at 2014-07-21 15:44:03 -0700
1209
+
1210
+
1211
+ Started GET "/assets/style_guides_plugins.js?body=1" for 127.0.0.1 at 2014-07-21 15:44:03 -0700
1212
+
1213
+
1214
+ Started GET "/assets/style_guides.js?body=1" for 127.0.0.1 at 2014-07-21 15:44:03 -0700
1215
+
1216
+
1217
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 15:51:00 -0700
1218
+ Processing by StyleGuideController#index as HTML
1219
+ Rendered /Users/joshuaschultz/Development/Style_Guide/app/views/style_guide/index.html.erb within layouts/style_guide.html.erb (7.4ms)
1220
+ Completed 200 OK in 28ms (Views: 28.1ms | ActiveRecord: 0.0ms)
1221
+
1222
+
1223
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 15:51:00 -0700
1224
+
1225
+
1226
+ Started GET "/assets/style.css?body=1" for 127.0.0.1 at 2014-07-21 15:51:00 -0700
1227
+
1228
+
1229
+ Started GET "/assets/style_guides.css?body=1" for 127.0.0.1 at 2014-07-21 15:51:00 -0700
1230
+
1231
+
1232
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 15:51:00 -0700
1233
+
1234
+
1235
+ Started GET "/assets/style_guides_plugins.js?body=1" for 127.0.0.1 at 2014-07-21 15:51:00 -0700
1236
+
1237
+
1238
+ Started GET "/assets/style_guides.js?body=1" for 127.0.0.1 at 2014-07-21 15:51:00 -0700
1239
+
1240
+
1241
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 15:51:51 -0700
1242
+
1243
+ LoadError (Unable to autoload constant StyleGuideController, expected /Users/joshuaschultz/Development/Style_Guide/app/controllers/style_guide_controller.rb to define it):
1244
+ activesupport (4.1.4) lib/active_support/dependencies.rb:481:in `load_missing_constant'
1245
+ activesupport (4.1.4) lib/active_support/dependencies.rb:180:in `const_missing'
1246
+ activesupport (4.1.4) lib/active_support/inflector/methods.rb:238:in `const_get'
1247
+ activesupport (4.1.4) lib/active_support/inflector/methods.rb:238:in `block in constantize'
1248
+ activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `each'
1249
+ activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `inject'
1250
+ activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `constantize'
1251
+ activesupport (4.1.4) lib/active_support/dependencies.rb:552:in `get'
1252
+ activesupport (4.1.4) lib/active_support/dependencies.rb:583:in `constantize'
1253
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:78:in `controller_reference'
1254
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:68:in `controller'
1255
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:46:in `call'
1256
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
1257
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each'
1258
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call'
1259
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call'
1260
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1261
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1262
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1263
+ actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1264
+ actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call'
1265
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1266
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1267
+ actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1268
+ activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call'
1269
+ activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
1270
+ activerecord (4.1.4) lib/active_record/migration.rb:380:in `call'
1271
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1272
+ activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks'
1273
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1274
+ actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1275
+ actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1276
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1277
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1278
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
1279
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
1280
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1281
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
1282
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
1283
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
1284
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1285
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1286
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1287
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1288
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1289
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
1290
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1291
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
1292
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
1293
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1294
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1295
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1296
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1297
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1298
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1299
+
1300
+
1301
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
1302
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
1303
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.3ms)
1304
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (18.6ms)
1305
+
1306
+
1307
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 15:52:09 -0700
1308
+ Processing by StyleGuideController#index as HTML
1309
+ Rendered /Users/joshuaschultz/Development/Style_Guide/app/views/style_guide/index.html.erb within layouts/style_guide.html.erb (7.2ms)
1310
+ Completed 200 OK in 29ms (Views: 28.7ms | ActiveRecord: 0.0ms)
1311
+
1312
+
1313
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 15:52:09 -0700
1314
+
1315
+
1316
+ Started GET "/assets/style_guides.css?body=1" for 127.0.0.1 at 2014-07-21 15:52:09 -0700
1317
+
1318
+
1319
+ Started GET "/assets/style.css?body=1" for 127.0.0.1 at 2014-07-21 15:52:09 -0700
1320
+
1321
+
1322
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 15:52:09 -0700
1323
+
1324
+
1325
+ Started GET "/assets/style_guides_plugins.js?body=1" for 127.0.0.1 at 2014-07-21 15:52:09 -0700
1326
+
1327
+
1328
+ Started GET "/assets/style_guides.js?body=1" for 127.0.0.1 at 2014-07-21 15:52:09 -0700
1329
+
1330
+
1331
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 17:45:41 -0700
1332
+ Processing by StyleGuideController#index as HTML
1333
+ Rendered /Users/joshuaschultz/Development/Style_Guide/app/views/style_guide/index.html.erb within layouts/style_guide.html.erb (16.9ms)
1334
+ Completed 200 OK in 37ms (Views: 36.7ms | ActiveRecord: 0.0ms)
1335
+
1336
+
1337
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 17:45:41 -0700
1338
+
1339
+
1340
+ Started GET "/assets/style_guides.css?body=1" for 127.0.0.1 at 2014-07-21 17:45:41 -0700
1341
+
1342
+
1343
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 17:45:41 -0700
1344
+
1345
+
1346
+ Started GET "/assets/style.css?body=1" for 127.0.0.1 at 2014-07-21 17:45:41 -0700
1347
+
1348
+
1349
+ Started GET "/assets/style_guides_plugins.js?body=1" for 127.0.0.1 at 2014-07-21 17:45:41 -0700
1350
+
1351
+
1352
+ Started GET "/assets/style_guides.js?body=1" for 127.0.0.1 at 2014-07-21 17:45:41 -0700
1353
+
1354
+
1355
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 17:49:11 -0700
1356
+ Processing by StyleGuideController#index as HTML
1357
+ Rendered /Users/joshuaschultz/Development/Style_Guide/app/views/style_guide/index.html.erb within layouts/style_guide.html.erb (16.1ms)
1358
+ Completed 200 OK in 21ms (Views: 20.0ms | ActiveRecord: 0.0ms)
1359
+
1360
+
1361
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 17:49:11 -0700
1362
+
1363
+
1364
+ Started GET "/assets/style_guides.css?body=1" for 127.0.0.1 at 2014-07-21 17:49:11 -0700
1365
+
1366
+
1367
+ Started GET "/assets/style.css?body=1" for 127.0.0.1 at 2014-07-21 17:49:11 -0700
1368
+
1369
+
1370
+ Started GET "/assets/style_guides.js?body=1" for 127.0.0.1 at 2014-07-21 17:49:11 -0700
1371
+
1372
+
1373
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 17:49:11 -0700
1374
+
1375
+
1376
+ Started GET "/assets/style_guides_plugins.js?body=1" for 127.0.0.1 at 2014-07-21 17:49:11 -0700
1377
+
1378
+
1379
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 17:49:14 -0700
1380
+ Processing by StyleGuideController#index as HTML
1381
+ Rendered /Users/joshuaschultz/Development/Style_Guide/app/views/style_guide/index.html.erb within layouts/style_guide.html.erb (15.4ms)
1382
+ Completed 200 OK in 21ms (Views: 20.2ms | ActiveRecord: 0.0ms)
1383
+
1384
+
1385
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 17:49:14 -0700
1386
+
1387
+
1388
+ Started GET "/assets/style_guides.css?body=1" for 127.0.0.1 at 2014-07-21 17:49:14 -0700
1389
+
1390
+
1391
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 17:49:14 -0700
1392
+
1393
+
1394
+ Started GET "/assets/style.css?body=1" for 127.0.0.1 at 2014-07-21 17:49:14 -0700
1395
+
1396
+
1397
+ Started GET "/assets/style_guides_plugins.js?body=1" for 127.0.0.1 at 2014-07-21 17:49:14 -0700
1398
+
1399
+
1400
+ Started GET "/assets/style_guides.js?body=1" for 127.0.0.1 at 2014-07-21 17:49:14 -0700
1401
+
1402
+
1403
+ Started GET "/form-fieldset" for 127.0.0.1 at 2014-07-21 17:49:27 -0700
1404
+
1405
+ ActionController::RoutingError (No route matches [GET] "/form-fieldset"):
1406
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1407
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1408
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
1409
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
1410
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1411
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
1412
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
1413
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
1414
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1415
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1416
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1417
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1418
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1419
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
1420
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1421
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
1422
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
1423
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1424
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1425
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1426
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1427
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1428
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1429
+
1430
+
1431
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
1432
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms)
1433
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (11.0ms)
1434
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (35.5ms)
1435
+
1436
+
1437
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 17:51:17 -0700
1438
+ Processing by StyleGuideController#index as HTML
1439
+ Rendered /Users/joshuaschultz/Development/Style_Guide/app/views/style_guide/index.html.erb within layouts/style_guide.html.erb (7.1ms)
1440
+ Completed 500 Internal Server Error in 9ms
1441
+
1442
+ ActionView::Template::Error (undefined method `filname' for #<#<Class:0x007f905bd23758>:0x007f9061b81e08>):
1443
+ 10: </optgroup>
1444
+ 11: <optgroup label="Base Styles">
1445
+ 12: <%= @basefiles.each do |file| %>
1446
+ 13: <option value="<%=filename(file) %>"><%= link_to("#{filename(file)}", style_guide_path(:anchor => "#{filname(file)}")) %></option>
1447
+ 14: <% end %>
1448
+ 15: </optgroup>
1449
+ 16: <optgroup label="Pattern Styles">
1450
+ /Users/joshuaschultz/Development/Style_Guide/app/views/style_guide/index.html.erb:13:in `block in ___sers_joshuaschultz__evelopment__tyle__uide_app_views_style_guide_index_html_erb___1362399031849646460_70129045733600'
1451
+ /Users/joshuaschultz/Development/Style_Guide/app/views/style_guide/index.html.erb:12:in `each'
1452
+ /Users/joshuaschultz/Development/Style_Guide/app/views/style_guide/index.html.erb:12:in `___sers_joshuaschultz__evelopment__tyle__uide_app_views_style_guide_index_html_erb___1362399031849646460_70129045733600'
1453
+ actionview (4.1.4) lib/action_view/template.rb:145:in `block in render'
1454
+ activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument'
1455
+ actionview (4.1.4) lib/action_view/template.rb:339:in `instrument'
1456
+ actionview (4.1.4) lib/action_view/template.rb:143:in `render'
1457
+ actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template'
1458
+ actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1459
+ activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument'
1460
+ activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1461
+ activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument'
1462
+ actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1463
+ actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template'
1464
+ actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout'
1465
+ actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
1466
+ actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render'
1467
+ actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template'
1468
+ actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render'
1469
+ actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template'
1470
+ actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template'
1471
+ actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body'
1472
+ actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
1473
+ actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
1474
+ actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render'
1475
+ actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render'
1476
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
1477
+ activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
1478
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
1479
+ activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms'
1480
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
1481
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
1482
+ activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
1483
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render'
1484
+ actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
1485
+ actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
1486
+ actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action'
1487
+ actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action'
1488
+ actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
1489
+ activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call'
1490
+ activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call'
1491
+ activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting'
1492
+ activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `call'
1493
+ activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting'
1494
+ activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `call'
1495
+ activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks'
1496
+ actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action'
1497
+ actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
1498
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1499
+ activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument'
1500
+ activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1501
+ activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument'
1502
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1503
+ actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1504
+ activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1505
+ actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process'
1506
+ actionview (4.1.4) lib/action_view/rendering.rb:30:in `process'
1507
+ actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch'
1508
+ actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1509
+ actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action'
1510
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `call'
1511
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
1512
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call'
1513
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
1514
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each'
1515
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call'
1516
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call'
1517
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1518
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1519
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1520
+ actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1521
+ actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call'
1522
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1523
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1524
+ actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1525
+ activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call'
1526
+ activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
1527
+ activerecord (4.1.4) lib/active_record/migration.rb:380:in `call'
1528
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1529
+ activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks'
1530
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1531
+ actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1532
+ actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1533
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1534
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1535
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
1536
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
1537
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1538
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
1539
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
1540
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
1541
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1542
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1543
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1544
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1545
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1546
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
1547
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1548
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
1549
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
1550
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1551
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1552
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1553
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1554
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1555
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1556
+
1557
+
1558
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
1559
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.5ms)
1560
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.4ms)
1561
+
1562
+
1563
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 17:51:55 -0700
1564
+ Processing by StyleGuideController#index as HTML
1565
+ Rendered /Users/joshuaschultz/Development/Style_Guide/app/views/style_guide/index.html.erb within layouts/style_guide.html.erb (27.6ms)
1566
+ Completed 200 OK in 33ms (Views: 32.2ms | ActiveRecord: 0.0ms)
1567
+
1568
+
1569
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 17:51:55 -0700
1570
+
1571
+
1572
+ Started GET "/assets/style_guides.css?body=1" for 127.0.0.1 at 2014-07-21 17:51:55 -0700
1573
+
1574
+
1575
+ Started GET "/assets/style.css?body=1" for 127.0.0.1 at 2014-07-21 17:51:55 -0700
1576
+
1577
+
1578
+ Started GET "/assets/style_guides_plugins.js?body=1" for 127.0.0.1 at 2014-07-21 17:51:55 -0700
1579
+
1580
+
1581
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 17:51:55 -0700
1582
+
1583
+
1584
+ Started GET "/assets/style_guides.js?body=1" for 127.0.0.1 at 2014-07-21 17:51:55 -0700
1585
+
1586
+
1587
+ Started GET "/form-fields-readonly" for 127.0.0.1 at 2014-07-21 17:52:01 -0700
1588
+
1589
+ ActionController::RoutingError (No route matches [GET] "/form-fields-readonly"):
1590
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1591
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1592
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
1593
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
1594
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1595
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
1596
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
1597
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
1598
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1599
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1600
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1601
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1602
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1603
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
1604
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1605
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
1606
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
1607
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1608
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1609
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1610
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1611
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1612
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1613
+
1614
+
1615
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
1616
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms)
1617
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms)
1618
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (16.5ms)
1619
+
1620
+
1621
+ Started GET "/form-fields-readonly" for 127.0.0.1 at 2014-07-21 17:52:16 -0700
1622
+
1623
+ ActionController::RoutingError (No route matches [GET] "/form-fields-readonly"):
1624
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1625
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1626
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
1627
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
1628
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1629
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
1630
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
1631
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
1632
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1633
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1634
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1635
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1636
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1637
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
1638
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1639
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
1640
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
1641
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1642
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1643
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1644
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1645
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1646
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1647
+
1648
+
1649
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
1650
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
1651
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
1652
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (11.5ms)
1653
+
1654
+
1655
+ Started GET "/form-fields-default" for 127.0.0.1 at 2014-07-21 17:52:24 -0700
1656
+
1657
+ ActionController::RoutingError (No route matches [GET] "/form-fields-default"):
1658
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1659
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1660
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
1661
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
1662
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1663
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
1664
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
1665
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
1666
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1667
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1668
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1669
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1670
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1671
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
1672
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1673
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
1674
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
1675
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1676
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1677
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1678
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1679
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1680
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1681
+
1682
+
1683
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms)
1684
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms)
1685
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms)
1686
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (19.4ms)
1687
+
1688
+
1689
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 17:52:33 -0700
1690
+ Processing by StyleGuideController#index as HTML
1691
+ Rendered /Users/joshuaschultz/Development/Style_Guide/app/views/style_guide/index.html.erb within layouts/style_guide.html.erb (2.1ms)
1692
+ Completed 500 Internal Server Error in 4ms
1693
+
1694
+ ActionView::Template::Error (wrong number of arguments (0 for 2..3)):
1695
+ 10: </optgroup>
1696
+ 11: <optgroup label="Base Styles">
1697
+ 12: <%= @basefiles.each do |file| %>
1698
+ 13: <option value="<%=filename(file) %>"><%= test %></option>
1699
+ 14: <% end %>
1700
+ 15: </optgroup>
1701
+ 16: <optgroup label="Pattern Styles">
1702
+ /Users/joshuaschultz/Development/Style_Guide/app/views/style_guide/index.html.erb:13:in `test'
1703
+ /Users/joshuaschultz/Development/Style_Guide/app/views/style_guide/index.html.erb:13:in `block in ___sers_joshuaschultz__evelopment__tyle__uide_app_views_style_guide_index_html_erb___1362399031849646460_70129006881820'
1704
+ /Users/joshuaschultz/Development/Style_Guide/app/views/style_guide/index.html.erb:12:in `each'
1705
+ /Users/joshuaschultz/Development/Style_Guide/app/views/style_guide/index.html.erb:12:in `___sers_joshuaschultz__evelopment__tyle__uide_app_views_style_guide_index_html_erb___1362399031849646460_70129006881820'
1706
+ actionview (4.1.4) lib/action_view/template.rb:145:in `block in render'
1707
+ activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument'
1708
+ actionview (4.1.4) lib/action_view/template.rb:339:in `instrument'
1709
+ actionview (4.1.4) lib/action_view/template.rb:143:in `render'
1710
+ actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template'
1711
+ actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1712
+ activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument'
1713
+ activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1714
+ activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument'
1715
+ actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1716
+ actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template'
1717
+ actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout'
1718
+ actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
1719
+ actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render'
1720
+ actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template'
1721
+ actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render'
1722
+ actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template'
1723
+ actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template'
1724
+ actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body'
1725
+ actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
1726
+ actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
1727
+ actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render'
1728
+ actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render'
1729
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
1730
+ activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
1731
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
1732
+ activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms'
1733
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
1734
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
1735
+ activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
1736
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render'
1737
+ actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
1738
+ actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
1739
+ actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action'
1740
+ actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action'
1741
+ actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
1742
+ activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call'
1743
+ activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call'
1744
+ activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting'
1745
+ activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `call'
1746
+ activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting'
1747
+ activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `call'
1748
+ activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks'
1749
+ actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action'
1750
+ actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
1751
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1752
+ activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument'
1753
+ activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1754
+ activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument'
1755
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1756
+ actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1757
+ activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1758
+ actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process'
1759
+ actionview (4.1.4) lib/action_view/rendering.rb:30:in `process'
1760
+ actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch'
1761
+ actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1762
+ actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action'
1763
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `call'
1764
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
1765
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call'
1766
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
1767
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each'
1768
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call'
1769
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call'
1770
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1771
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1772
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1773
+ actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1774
+ actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call'
1775
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1776
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1777
+ actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1778
+ activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call'
1779
+ activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
1780
+ activerecord (4.1.4) lib/active_record/migration.rb:380:in `call'
1781
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1782
+ activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks'
1783
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1784
+ actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1785
+ actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1786
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1787
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1788
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
1789
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
1790
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1791
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
1792
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
1793
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
1794
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1795
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1796
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1797
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1798
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1799
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
1800
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1801
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
1802
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
1803
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1804
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1805
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1806
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1807
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1808
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1809
+
1810
+
1811
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
1812
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
1813
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (8.7ms)
1814
+
1815
+
1816
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 17:52:50 -0700
1817
+ Processing by StyleGuideController#index as HTML
1818
+ Rendered /Users/joshuaschultz/Development/Style_Guide/app/views/style_guide/index.html.erb within layouts/style_guide.html.erb (16.0ms)
1819
+ Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.0ms)
1820
+
1821
+
1822
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 17:52:50 -0700
1823
+
1824
+
1825
+ Started GET "/assets/style_guides.css?body=1" for 127.0.0.1 at 2014-07-21 17:52:51 -0700
1826
+
1827
+
1828
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 17:52:51 -0700
1829
+
1830
+
1831
+ Started GET "/assets/style.css?body=1" for 127.0.0.1 at 2014-07-21 17:52:51 -0700
1832
+
1833
+
1834
+ Started GET "/assets/style_guides_plugins.js?body=1" for 127.0.0.1 at 2014-07-21 17:52:51 -0700
1835
+
1836
+
1837
+ Started GET "/assets/style_guides.js?body=1" for 127.0.0.1 at 2014-07-21 17:52:51 -0700
1838
+
1839
+
1840
+ Started GET "/form-fields-with-datalist" for 127.0.0.1 at 2014-07-21 17:52:58 -0700
1841
+
1842
+ ActionController::RoutingError (No route matches [GET] "/form-fields-with-datalist"):
1843
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1844
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1845
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
1846
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
1847
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1848
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
1849
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
1850
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
1851
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1852
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1853
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1854
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1855
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1856
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
1857
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1858
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
1859
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
1860
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1861
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1862
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1863
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1864
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1865
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1866
+
1867
+
1868
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
1869
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms)
1870
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.0ms)
1871
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (16.5ms)
1872
+
1873
+
1874
+ Started GET "/form-fields-with-datalist" for 127.0.0.1 at 2014-07-21 17:53:13 -0700
1875
+
1876
+ ActionController::RoutingError (No route matches [GET] "/form-fields-with-datalist"):
1877
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1878
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1879
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
1880
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
1881
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1882
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
1883
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
1884
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
1885
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1886
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1887
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1888
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1889
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1890
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
1891
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1892
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
1893
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
1894
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1895
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1896
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1897
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1898
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1899
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1900
+
1901
+
1902
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
1903
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
1904
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms)
1905
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (10.8ms)
1906
+
1907
+
1908
+ Started GET "/hr" for 127.0.0.1 at 2014-07-21 17:53:20 -0700
1909
+
1910
+ ActionController::RoutingError (No route matches [GET] "/hr"):
1911
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1912
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1913
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
1914
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
1915
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1916
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
1917
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
1918
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
1919
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1920
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1921
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1922
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1923
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1924
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
1925
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1926
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
1927
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
1928
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1929
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1930
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1931
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1932
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1933
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1934
+
1935
+
1936
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
1937
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms)
1938
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms)
1939
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (17.2ms)
1940
+
1941
+
1942
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 17:53:24 -0700
1943
+ Processing by StyleGuideController#index as HTML
1944
+ Rendered /Users/joshuaschultz/Development/Style_Guide/app/views/style_guide/index.html.erb within layouts/style_guide.html.erb (15.9ms)
1945
+ Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.0ms)
1946
+
1947
+
1948
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 17:53:25 -0700
1949
+
1950
+
1951
+ Started GET "/assets/style_guides.css?body=1" for 127.0.0.1 at 2014-07-21 17:53:25 -0700
1952
+
1953
+
1954
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 17:53:25 -0700
1955
+
1956
+
1957
+ Started GET "/assets/style.css?body=1" for 127.0.0.1 at 2014-07-21 17:53:25 -0700
1958
+
1959
+
1960
+ Started GET "/assets/style_guides_plugins.js?body=1" for 127.0.0.1 at 2014-07-21 17:53:25 -0700
1961
+
1962
+
1963
+ Started GET "/assets/style_guides.js?body=1" for 127.0.0.1 at 2014-07-21 17:53:25 -0700
1964
+
1965
+
1966
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 17:53:50 -0700
1967
+ Processing by StyleGuideController#index as HTML
1968
+ Rendered /Users/joshuaschultz/Development/Style_Guide/app/views/style_guide/index.html.erb within layouts/style_guide.html.erb (33.8ms)
1969
+ Completed 200 OK in 38ms (Views: 37.3ms | ActiveRecord: 0.0ms)
1970
+
1971
+
1972
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 17:53:50 -0700
1973
+
1974
+
1975
+ Started GET "/assets/style_guides.css?body=1" for 127.0.0.1 at 2014-07-21 17:53:50 -0700
1976
+
1977
+
1978
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 17:53:50 -0700
1979
+
1980
+
1981
+ Started GET "/assets/style.css?body=1" for 127.0.0.1 at 2014-07-21 17:53:50 -0700
1982
+
1983
+
1984
+ Started GET "/assets/style_guides_plugins.js?body=1" for 127.0.0.1 at 2014-07-21 17:53:50 -0700
1985
+
1986
+
1987
+ Started GET "/assets/style_guides.js?body=1" for 127.0.0.1 at 2014-07-21 17:53:50 -0700
1988
+
1989
+
1990
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 17:53:55 -0700
1991
+ Processing by StyleGuideController#index as HTML
1992
+ Rendered /Users/joshuaschultz/Development/Style_Guide/app/views/style_guide/index.html.erb within layouts/style_guide.html.erb (29.6ms)
1993
+ Completed 200 OK in 37ms (Views: 36.1ms | ActiveRecord: 0.0ms)
1994
+
1995
+
1996
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 17:53:55 -0700
1997
+
1998
+
1999
+ Started GET "/assets/style_guides.css?body=1" for 127.0.0.1 at 2014-07-21 17:53:55 -0700
2000
+
2001
+
2002
+ Started GET "/assets/style_guides.js?body=1" for 127.0.0.1 at 2014-07-21 17:53:55 -0700
2003
+
2004
+
2005
+ Started GET "/assets/style_guides_plugins.js?body=1" for 127.0.0.1 at 2014-07-21 17:53:55 -0700
2006
+
2007
+
2008
+ Started GET "/assets/style.css?body=1" for 127.0.0.1 at 2014-07-21 17:53:55 -0700
2009
+
2010
+
2011
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 17:53:55 -0700
2012
+
2013
+
2014
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 18:02:07 -0700
2015
+ Processing by StyleGuideController#index as HTML
2016
+ Rendered /Users/joshuaschultz/Development/Style_Guide/app/views/style_guide/index.html.erb within layouts/style_guide.html.erb (18.2ms)
2017
+ Completed 200 OK in 22ms (Views: 21.8ms | ActiveRecord: 0.0ms)
2018
+
2019
+
2020
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 18:02:08 -0700
2021
+
2022
+
2023
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 18:02:08 -0700
2024
+
2025
+
2026
+ Started GET "/assets/style_guides.css?body=1" for 127.0.0.1 at 2014-07-21 18:02:08 -0700
2027
+
2028
+
2029
+ Started GET "/assets/style.css?body=1" for 127.0.0.1 at 2014-07-21 18:02:08 -0700
2030
+
2031
+
2032
+ Started GET "/assets/style_guides_plugins.js?body=1" for 127.0.0.1 at 2014-07-21 18:02:08 -0700
2033
+
2034
+
2035
+ Started GET "/assets/style_guides.js?body=1" for 127.0.0.1 at 2014-07-21 18:02:08 -0700
2036
+
2037
+
2038
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 18:02:13 -0700
2039
+ Processing by StyleGuideController#index as HTML
2040
+ Rendered /Users/joshuaschultz/Development/Style_Guide/app/views/style_guide/index.html.erb within layouts/style_guide.html.erb (16.3ms)
2041
+ Completed 200 OK in 20ms (Views: 19.8ms | ActiveRecord: 0.0ms)
2042
+
2043
+
2044
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 18:02:13 -0700
2045
+
2046
+
2047
+ Started GET "/assets/style.css?body=1" for 127.0.0.1 at 2014-07-21 18:02:13 -0700
2048
+
2049
+
2050
+ Started GET "/assets/style_guides.css?body=1" for 127.0.0.1 at 2014-07-21 18:02:13 -0700
2051
+
2052
+
2053
+ Started GET "/assets/style_guides_plugins.js?body=1" for 127.0.0.1 at 2014-07-21 18:02:13 -0700
2054
+
2055
+
2056
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 18:02:13 -0700
2057
+
2058
+
2059
+ Started GET "/assets/style_guides.js?body=1" for 127.0.0.1 at 2014-07-21 18:02:13 -0700
2060
+
2061
+
2062
+ Started GET "/" for 127.0.0.1 at 2014-07-21 21:25:56 -0700
2063
+ Processing by Rails::WelcomeController#index as HTML
2064
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/railties-4.1.4/lib/rails/templates/rails/welcome/index.html.erb (3.8ms)
2065
+ Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.0ms)
2066
+
2067
+
2068
+ Started GET "/" for 127.0.0.1 at 2014-07-21 21:25:57 -0700
2069
+ Processing by Rails::WelcomeController#index as HTML
2070
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/railties-4.1.4/lib/rails/templates/rails/welcome/index.html.erb (0.1ms)
2071
+ Completed 200 OK in 1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
2072
+
2073
+
2074
+ Started GET "/style_guides/index" for 127.0.0.1 at 2014-07-21 21:26:02 -0700
2075
+
2076
+ ActionController::RoutingError (No route matches [GET] "/style_guides/index"):
2077
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2078
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2079
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
2080
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
2081
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2082
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
2083
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
2084
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
2085
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2086
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2087
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2088
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2089
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2090
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
2091
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2092
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
2093
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
2094
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2095
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2096
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2097
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2098
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2099
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2100
+
2101
+
2102
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
2103
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.4ms)
2104
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (18.6ms)
2105
+
2106
+
2107
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 21:26:03 -0700
2108
+
2109
+ ActionController::RoutingError (No route matches [GET] "/style_guide"):
2110
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2111
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2112
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
2113
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
2114
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2115
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
2116
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
2117
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
2118
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2119
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2120
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2121
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2122
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2123
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
2124
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2125
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
2126
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
2127
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2128
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2129
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2130
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2131
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2132
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2133
+
2134
+
2135
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
2136
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
2137
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (7.5ms)
2138
+
2139
+
2140
+ Started GET "/style_guide/style_guide" for 127.0.0.1 at 2014-07-21 21:26:37 -0700
2141
+
2142
+ ActionController::RoutingError (No route matches [GET] "/style_guide/style_guide"):
2143
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2144
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2145
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
2146
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
2147
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2148
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
2149
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
2150
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
2151
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2152
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2153
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2154
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2155
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2156
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
2157
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2158
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
2159
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
2160
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2161
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2162
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2163
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2164
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2165
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2166
+
2167
+
2168
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
2169
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
2170
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (8.1ms)
2171
+
2172
+
2173
+ Started GET "/" for 127.0.0.1 at 2014-07-21 21:29:32 -0700
2174
+ Processing by Rails::WelcomeController#index as HTML
2175
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/railties-4.1.4/lib/rails/templates/rails/welcome/index.html.erb (0.1ms)
2176
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
2177
+
2178
+
2179
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 21:29:39 -0700
2180
+
2181
+ ActionController::RoutingError (No route matches [GET] "/style_guide"):
2182
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2183
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2184
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
2185
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
2186
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2187
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
2188
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
2189
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
2190
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2191
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2192
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2193
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2194
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2195
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
2196
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2197
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
2198
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
2199
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2200
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2201
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2202
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2203
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2204
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2205
+
2206
+
2207
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
2208
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
2209
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms)
2210
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
2211
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (15.4ms)
2212
+
2213
+
2214
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 21:30:10 -0700
2215
+
2216
+ ActionController::RoutingError (No route matches [GET] "/style_guide"):
2217
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2218
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2219
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
2220
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
2221
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2222
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
2223
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
2224
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
2225
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2226
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2227
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2228
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2229
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2230
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
2231
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2232
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
2233
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
2234
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2235
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2236
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2237
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2238
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2239
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2240
+
2241
+
2242
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
2243
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
2244
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
2245
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
2246
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (14.2ms)
2247
+
2248
+
2249
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 21:30:40 -0700
2250
+
2251
+ ActionController::RoutingError (No route matches [GET] "/style_guide"):
2252
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2253
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2254
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
2255
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
2256
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2257
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
2258
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
2259
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
2260
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2261
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2262
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2263
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2264
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2265
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
2266
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2267
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
2268
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
2269
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2270
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2271
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2272
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2273
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2274
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2275
+
2276
+
2277
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
2278
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
2279
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
2280
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
2281
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (14.3ms)
2282
+
2283
+
2284
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 21:30:50 -0700
2285
+
2286
+ ActionController::RoutingError (No route matches [GET] "/style_guide"):
2287
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2288
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2289
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
2290
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
2291
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2292
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
2293
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
2294
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
2295
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2296
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2297
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2298
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2299
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2300
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
2301
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2302
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
2303
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
2304
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2305
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2306
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2307
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2308
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2309
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2310
+
2311
+
2312
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
2313
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
2314
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
2315
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
2316
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (13.9ms)
2317
+
2318
+
2319
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 21:30:53 -0700
2320
+
2321
+ ActionController::RoutingError (No route matches [GET] "/style_guide"):
2322
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2323
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2324
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
2325
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
2326
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2327
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
2328
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
2329
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
2330
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2331
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2332
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2333
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2334
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2335
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
2336
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2337
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
2338
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
2339
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2340
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2341
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2342
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2343
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2344
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2345
+
2346
+
2347
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
2348
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
2349
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
2350
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
2351
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (13.7ms)
2352
+
2353
+
2354
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 21:32:21 -0700
2355
+
2356
+ ActionController::RoutingError (No route matches [GET] "/style_guide"):
2357
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2358
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2359
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
2360
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
2361
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2362
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
2363
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
2364
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
2365
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2366
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2367
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2368
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2369
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2370
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
2371
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2372
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
2373
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
2374
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2375
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2376
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2377
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2378
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2379
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2380
+
2381
+
2382
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
2383
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
2384
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
2385
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
2386
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (14.2ms)
2387
+
2388
+
2389
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 21:32:58 -0700
2390
+
2391
+ ActionController::RoutingError (No route matches [GET] "/style_guide"):
2392
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2393
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2394
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
2395
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
2396
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2397
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
2398
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
2399
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
2400
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2401
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2402
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2403
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2404
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2405
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
2406
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2407
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
2408
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
2409
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2410
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2411
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2412
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2413
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2414
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2415
+
2416
+
2417
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
2418
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
2419
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
2420
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
2421
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (14.6ms)
2422
+
2423
+
2424
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 21:33:50 -0700
2425
+
2426
+ ActionController::RoutingError (No route matches [GET] "/style_guide"):
2427
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2428
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2429
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
2430
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
2431
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2432
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
2433
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
2434
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
2435
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2436
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2437
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2438
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2439
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2440
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
2441
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2442
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
2443
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
2444
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2445
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2446
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2447
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2448
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2449
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2450
+
2451
+
2452
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
2453
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms)
2454
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
2455
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
2456
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (14.9ms)
2457
+
2458
+
2459
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 21:34:01 -0700
2460
+
2461
+ ActionController::RoutingError (No route matches [GET] "/style_guide"):
2462
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2463
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2464
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
2465
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
2466
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2467
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
2468
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
2469
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
2470
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2471
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2472
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2473
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2474
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2475
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
2476
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2477
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
2478
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
2479
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2480
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2481
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2482
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2483
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2484
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2485
+
2486
+
2487
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
2488
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
2489
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
2490
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.6ms)
2491
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (19.3ms)
2492
+
2493
+
2494
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 21:34:03 -0700
2495
+
2496
+ ActionController::RoutingError (No route matches [GET] "/style_guide"):
2497
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2498
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2499
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
2500
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
2501
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2502
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
2503
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
2504
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
2505
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2506
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2507
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2508
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2509
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2510
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
2511
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2512
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
2513
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
2514
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2515
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2516
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2517
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2518
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2519
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2520
+
2521
+
2522
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
2523
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
2524
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
2525
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms)
2526
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (13.9ms)
2527
+
2528
+
2529
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 21:38:56 -0700
2530
+
2531
+ ActionController::RoutingError (No route matches [GET] "/style_guide"):
2532
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2533
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2534
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
2535
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
2536
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2537
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
2538
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
2539
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
2540
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2541
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2542
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2543
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2544
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2545
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
2546
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2547
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
2548
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
2549
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2550
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2551
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2552
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2553
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2554
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2555
+
2556
+
2557
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
2558
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
2559
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
2560
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
2561
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (13.8ms)
2562
+
2563
+
2564
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 21:38:58 -0700
2565
+
2566
+ ActionController::RoutingError (No route matches [GET] "/style_guide"):
2567
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2568
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2569
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
2570
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
2571
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2572
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
2573
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
2574
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
2575
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2576
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2577
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2578
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2579
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2580
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
2581
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2582
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
2583
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
2584
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2585
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2586
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2587
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2588
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2589
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2590
+
2591
+
2592
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
2593
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
2594
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
2595
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
2596
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (13.5ms)
2597
+
2598
+
2599
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 21:39:06 -0700
2600
+
2601
+ ActionController::RoutingError (No route matches [GET] "/style_guide"):
2602
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2603
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2604
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
2605
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
2606
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2607
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
2608
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
2609
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
2610
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2611
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2612
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2613
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2614
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2615
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
2616
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2617
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
2618
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
2619
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2620
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2621
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2622
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2623
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2624
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2625
+
2626
+
2627
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
2628
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
2629
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
2630
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.7ms)
2631
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (19.7ms)
2632
+
2633
+
2634
+ Started GET "/style_guide/style_guide" for 127.0.0.1 at 2014-07-21 21:39:29 -0700
2635
+ Processing by StyleGuide::StyleGuideController#index as HTML
2636
+ Completed 500 Internal Server Error in 5ms
2637
+
2638
+ ActionView::MissingTemplate (Missing template style_guide/style_guide/index, application/index with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
2639
+ * "/Users/joshuaschultz/Development/Style_Guide/test/dummy/app/views"
2640
+ * "/Users/joshuaschultz/Development/Style_Guide/app/views"
2641
+ ):
2642
+ actionview (4.1.4) lib/action_view/path_set.rb:46:in `find'
2643
+ actionview (4.1.4) lib/action_view/lookup_context.rb:124:in `find'
2644
+ actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
2645
+ actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:41:in `determine_template'
2646
+ actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:8:in `render'
2647
+ actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template'
2648
+ actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render'
2649
+ actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template'
2650
+ actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template'
2651
+ actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body'
2652
+ actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
2653
+ actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
2654
+ actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render'
2655
+ actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render'
2656
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
2657
+ activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
2658
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
2659
+ activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms'
2660
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
2661
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
2662
+ activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
2663
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render'
2664
+ actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
2665
+ actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
2666
+ actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action'
2667
+ actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action'
2668
+ actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
2669
+ activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call'
2670
+ activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call'
2671
+ activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting'
2672
+ activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `call'
2673
+ activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting'
2674
+ activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `call'
2675
+ activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks'
2676
+ actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action'
2677
+ actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
2678
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
2679
+ activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument'
2680
+ activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2681
+ activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument'
2682
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
2683
+ actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
2684
+ activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2685
+ actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process'
2686
+ actionview (4.1.4) lib/action_view/rendering.rb:30:in `process'
2687
+ actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch'
2688
+ actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
2689
+ actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action'
2690
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `call'
2691
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
2692
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call'
2693
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
2694
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each'
2695
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call'
2696
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call'
2697
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
2698
+ railties (4.1.4) lib/rails/railtie.rb:194:in `public_send'
2699
+ railties (4.1.4) lib/rails/railtie.rb:194:in `method_missing'
2700
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
2701
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each'
2702
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call'
2703
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call'
2704
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
2705
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
2706
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
2707
+ actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2708
+ actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call'
2709
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
2710
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
2711
+ actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call'
2712
+ activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call'
2713
+ activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
2714
+ activerecord (4.1.4) lib/active_record/migration.rb:380:in `call'
2715
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2716
+ activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks'
2717
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2718
+ actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
2719
+ actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
2720
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2721
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2722
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
2723
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
2724
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2725
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
2726
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
2727
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
2728
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2729
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2730
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2731
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2732
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2733
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
2734
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2735
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
2736
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
2737
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2738
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2739
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2740
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2741
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2742
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2743
+
2744
+
2745
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (0.5ms)
2746
+
2747
+
2748
+ Started GET "/style_guide/style_guide" for 127.0.0.1 at 2014-07-21 21:40:53 -0700
2749
+
2750
+ ActionController::RoutingError (No route matches [GET] "/style_guide/style_guide"):
2751
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2752
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2753
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
2754
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
2755
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2756
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
2757
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
2758
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
2759
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2760
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2761
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2762
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2763
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2764
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
2765
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2766
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
2767
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
2768
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2769
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2770
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2771
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2772
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2773
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2774
+
2775
+
2776
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
2777
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
2778
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
2779
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
2780
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (15.3ms)
2781
+
2782
+
2783
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 21:40:59 -0700
2784
+ Processing by StyleGuide::StyleGuideController#index as HTML
2785
+ Rendered /Users/joshuaschultz/Development/Style_Guide/app/views/style_guide/style_guide/index.html.erb within layouts/style_guide/style_guide.html.erb (32.6ms)
2786
+ Completed 500 Internal Server Error in 46ms
2787
+
2788
+ ActionView::Template::Error (Asset filtered out and will not be served: add `Rails.application.config.assets.precompile += %w( style_guide/style_guides.css )` to `config/initializers/assets.rb` and restart your server):
2789
+ 7:
2790
+ 8: <!-- Style Guide Boilerplate Styles And Scripts -->
2791
+ 9: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
2792
+ 10: <%= stylesheet_link_tag 'style_guide/style_guides', media: 'all', 'data-turbolinks-track' => true %>
2793
+ 11:
2794
+ 12: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
2795
+ 13:
2796
+ sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:185:in `check_errors_for'
2797
+ sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:156:in `block in stylesheet_link_tag'
2798
+ sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:155:in `map'
2799
+ sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:155:in `stylesheet_link_tag'
2800
+ /Users/joshuaschultz/Development/Style_Guide/app/views/layouts/style_guide/style_guide.html.erb:10:in `___sers_joshuaschultz__evelopment__tyle__uide_app_views_layouts_style_guide_style_guide_html_erb__3582386646801152982_70269738655900'
2801
+ actionview (4.1.4) lib/action_view/template.rb:145:in `block in render'
2802
+ activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument'
2803
+ actionview (4.1.4) lib/action_view/template.rb:339:in `instrument'
2804
+ actionview (4.1.4) lib/action_view/template.rb:143:in `render'
2805
+ actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:67:in `render_with_layout'
2806
+ actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
2807
+ actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render'
2808
+ actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template'
2809
+ actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render'
2810
+ actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template'
2811
+ actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template'
2812
+ actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body'
2813
+ actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
2814
+ actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
2815
+ actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render'
2816
+ actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render'
2817
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
2818
+ activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
2819
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
2820
+ activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms'
2821
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
2822
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
2823
+ activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
2824
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render'
2825
+ actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
2826
+ actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
2827
+ actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action'
2828
+ actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action'
2829
+ actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
2830
+ activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call'
2831
+ activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call'
2832
+ activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting'
2833
+ activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `call'
2834
+ activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting'
2835
+ activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `call'
2836
+ activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks'
2837
+ actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action'
2838
+ actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
2839
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
2840
+ activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument'
2841
+ activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2842
+ activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument'
2843
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
2844
+ actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
2845
+ activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2846
+ actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process'
2847
+ actionview (4.1.4) lib/action_view/rendering.rb:30:in `process'
2848
+ actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch'
2849
+ actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
2850
+ actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action'
2851
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `call'
2852
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
2853
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call'
2854
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
2855
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each'
2856
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call'
2857
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call'
2858
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
2859
+ railties (4.1.4) lib/rails/railtie.rb:194:in `public_send'
2860
+ railties (4.1.4) lib/rails/railtie.rb:194:in `method_missing'
2861
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
2862
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each'
2863
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call'
2864
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call'
2865
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
2866
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
2867
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
2868
+ actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2869
+ actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call'
2870
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
2871
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
2872
+ actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call'
2873
+ activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call'
2874
+ activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
2875
+ activerecord (4.1.4) lib/active_record/migration.rb:380:in `call'
2876
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2877
+ activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks'
2878
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2879
+ actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
2880
+ actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
2881
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2882
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2883
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
2884
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
2885
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2886
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
2887
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
2888
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
2889
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2890
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2891
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2892
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2893
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2894
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
2895
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2896
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
2897
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
2898
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2899
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2900
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2901
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2902
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2903
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2904
+
2905
+
2906
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
2907
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.7ms)
2908
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (17.8ms)
2909
+
2910
+
2911
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 21:40:59 -0700
2912
+ Processing by StyleGuide::StyleGuideController#index as HTML
2913
+ Rendered /Users/joshuaschultz/Development/Style_Guide/app/views/style_guide/style_guide/index.html.erb within layouts/style_guide/style_guide.html.erb (20.0ms)
2914
+ Completed 500 Internal Server Error in 24ms
2915
+
2916
+ ActionView::Template::Error (Asset filtered out and will not be served: add `Rails.application.config.assets.precompile += %w( style_guide/style_guides.css )` to `config/initializers/assets.rb` and restart your server):
2917
+ 7:
2918
+ 8: <!-- Style Guide Boilerplate Styles And Scripts -->
2919
+ 9: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
2920
+ 10: <%= stylesheet_link_tag 'style_guide/style_guides', media: 'all', 'data-turbolinks-track' => true %>
2921
+ 11:
2922
+ 12: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
2923
+ 13:
2924
+ sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:185:in `check_errors_for'
2925
+ sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:156:in `block in stylesheet_link_tag'
2926
+ sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:155:in `map'
2927
+ sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:155:in `stylesheet_link_tag'
2928
+ /Users/joshuaschultz/Development/Style_Guide/app/views/layouts/style_guide/style_guide.html.erb:10:in `___sers_joshuaschultz__evelopment__tyle__uide_app_views_layouts_style_guide_style_guide_html_erb__3582386646801152982_70269738655900'
2929
+ actionview (4.1.4) lib/action_view/template.rb:145:in `block in render'
2930
+ activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument'
2931
+ actionview (4.1.4) lib/action_view/template.rb:339:in `instrument'
2932
+ actionview (4.1.4) lib/action_view/template.rb:143:in `render'
2933
+ actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:67:in `render_with_layout'
2934
+ actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
2935
+ actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render'
2936
+ actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template'
2937
+ actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render'
2938
+ actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template'
2939
+ actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template'
2940
+ actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body'
2941
+ actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
2942
+ actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
2943
+ actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render'
2944
+ actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render'
2945
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
2946
+ activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
2947
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
2948
+ activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms'
2949
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
2950
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
2951
+ activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
2952
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render'
2953
+ actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
2954
+ actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
2955
+ actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action'
2956
+ actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action'
2957
+ actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
2958
+ activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call'
2959
+ activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call'
2960
+ activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting'
2961
+ activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `call'
2962
+ activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting'
2963
+ activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `call'
2964
+ activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks'
2965
+ actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action'
2966
+ actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
2967
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
2968
+ activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument'
2969
+ activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2970
+ activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument'
2971
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
2972
+ actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
2973
+ activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2974
+ actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process'
2975
+ actionview (4.1.4) lib/action_view/rendering.rb:30:in `process'
2976
+ actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch'
2977
+ actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
2978
+ actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action'
2979
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `call'
2980
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
2981
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call'
2982
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
2983
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each'
2984
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call'
2985
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call'
2986
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
2987
+ railties (4.1.4) lib/rails/railtie.rb:194:in `public_send'
2988
+ railties (4.1.4) lib/rails/railtie.rb:194:in `method_missing'
2989
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
2990
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each'
2991
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call'
2992
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call'
2993
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
2994
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
2995
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
2996
+ actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2997
+ actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call'
2998
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
2999
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
3000
+ actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call'
3001
+ activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call'
3002
+ activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
3003
+ activerecord (4.1.4) lib/active_record/migration.rb:380:in `call'
3004
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
3005
+ activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks'
3006
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3007
+ actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
3008
+ actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
3009
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
3010
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3011
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
3012
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
3013
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
3014
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
3015
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
3016
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
3017
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3018
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3019
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3020
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
3021
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3022
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
3023
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3024
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
3025
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
3026
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3027
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3028
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3029
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
3030
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
3031
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
3032
+
3033
+
3034
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
3035
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
3036
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (8.4ms)
3037
+
3038
+
3039
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 21:41:43 -0700
3040
+ Processing by StyleGuide::StyleGuideController#index as HTML
3041
+ Rendered /Users/joshuaschultz/Development/Style_Guide/app/views/style_guide/style_guide/index.html.erb within layouts/style_guide/style_guide.html.erb (14.9ms)
3042
+ Completed 500 Internal Server Error in 19ms
3043
+
3044
+ ActionView::Template::Error (Asset filtered out and will not be served: add `Rails.application.config.assets.precompile += %w( style_guide/style_guides.css )` to `config/initializers/assets.rb` and restart your server):
3045
+ 7:
3046
+ 8: <!-- Style Guide Boilerplate Styles And Scripts -->
3047
+ 9: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
3048
+ 10: <%= stylesheet_link_tag 'style_guide/style_guides', media: 'all', 'data-turbolinks-track' => true %>
3049
+ 11:
3050
+ 12: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
3051
+ 13:
3052
+ sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:185:in `check_errors_for'
3053
+ sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:156:in `block in stylesheet_link_tag'
3054
+ sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:155:in `map'
3055
+ sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:155:in `stylesheet_link_tag'
3056
+ /Users/joshuaschultz/Development/Style_Guide/app/views/layouts/style_guide/style_guide.html.erb:10:in `___sers_joshuaschultz__evelopment__tyle__uide_app_views_layouts_style_guide_style_guide_html_erb__3582386646801152982_70269738655900'
3057
+ actionview (4.1.4) lib/action_view/template.rb:145:in `block in render'
3058
+ activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument'
3059
+ actionview (4.1.4) lib/action_view/template.rb:339:in `instrument'
3060
+ actionview (4.1.4) lib/action_view/template.rb:143:in `render'
3061
+ actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:67:in `render_with_layout'
3062
+ actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
3063
+ actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render'
3064
+ actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template'
3065
+ actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render'
3066
+ actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template'
3067
+ actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template'
3068
+ actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body'
3069
+ actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
3070
+ actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
3071
+ actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render'
3072
+ actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render'
3073
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
3074
+ activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
3075
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
3076
+ activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms'
3077
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
3078
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
3079
+ activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
3080
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render'
3081
+ actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
3082
+ actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
3083
+ actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action'
3084
+ actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action'
3085
+ actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
3086
+ activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call'
3087
+ activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call'
3088
+ activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting'
3089
+ activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `call'
3090
+ activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting'
3091
+ activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `call'
3092
+ activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks'
3093
+ actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action'
3094
+ actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
3095
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
3096
+ activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument'
3097
+ activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3098
+ activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument'
3099
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
3100
+ actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
3101
+ activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
3102
+ actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process'
3103
+ actionview (4.1.4) lib/action_view/rendering.rb:30:in `process'
3104
+ actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch'
3105
+ actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
3106
+ actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action'
3107
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `call'
3108
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
3109
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call'
3110
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
3111
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each'
3112
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call'
3113
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call'
3114
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
3115
+ railties (4.1.4) lib/rails/railtie.rb:194:in `public_send'
3116
+ railties (4.1.4) lib/rails/railtie.rb:194:in `method_missing'
3117
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
3118
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each'
3119
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call'
3120
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call'
3121
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
3122
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
3123
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
3124
+ actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
3125
+ actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call'
3126
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
3127
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
3128
+ actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call'
3129
+ activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call'
3130
+ activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
3131
+ activerecord (4.1.4) lib/active_record/migration.rb:380:in `call'
3132
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
3133
+ activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks'
3134
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3135
+ actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
3136
+ actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
3137
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
3138
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3139
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
3140
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
3141
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
3142
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
3143
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
3144
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
3145
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3146
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3147
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3148
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
3149
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3150
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
3151
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3152
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
3153
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
3154
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3155
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3156
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3157
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
3158
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
3159
+ /Users/joshuaschultz/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
3160
+
3161
+
3162
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
3163
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms)
3164
+ Rendered /Users/joshuaschultz/.rvm/gems/ruby-2.1.2@main/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (9.1ms)
3165
+
3166
+
3167
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 21:41:50 -0700
3168
+ Processing by StyleGuide::StyleGuideController#index as HTML
3169
+ Rendered /Users/joshuaschultz/Development/Style_Guide/app/views/style_guide/style_guide/index.html.erb within layouts/style_guide/style_guide.html.erb (16.4ms)
3170
+ Completed 200 OK in 48ms (Views: 47.2ms | ActiveRecord: 0.0ms)
3171
+
3172
+
3173
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 21:41:50 -0700
3174
+
3175
+
3176
+ Started GET "/assets/style_guide/style_guides.css?body=1" for 127.0.0.1 at 2014-07-21 21:41:50 -0700
3177
+
3178
+
3179
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 21:41:50 -0700
3180
+
3181
+
3182
+ Started GET "/assets/style_guide/style.css?body=1" for 127.0.0.1 at 2014-07-21 21:41:50 -0700
3183
+
3184
+
3185
+ Started GET "/assets/style_guide/style_guides_plugins.js?body=1" for 127.0.0.1 at 2014-07-21 21:41:50 -0700
3186
+
3187
+
3188
+ Started GET "/assets/style_guide/style_guides.js?body=1" for 127.0.0.1 at 2014-07-21 21:41:50 -0700
3189
+
3190
+
3191
+ Started GET "/style_guide" for 127.0.0.1 at 2014-07-21 21:42:30 -0700
3192
+ Processing by StyleGuide::StyleGuideController#index as HTML
3193
+ Rendered /Users/joshuaschultz/Development/Style_Guide/app/views/style_guide/style_guide/index.html.erb within layouts/style_guide/style_guide.html.erb (16.9ms)
3194
+ Completed 200 OK in 37ms (Views: 36.5ms | ActiveRecord: 0.0ms)
3195
+
3196
+
3197
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 21:42:31 -0700
3198
+
3199
+
3200
+ Started GET "/assets/style_guide/style_guides.css?body=1" for 127.0.0.1 at 2014-07-21 21:42:31 -0700
3201
+
3202
+
3203
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 21:42:31 -0700
3204
+
3205
+
3206
+ Started GET "/assets/style_guide/style.css?body=1" for 127.0.0.1 at 2014-07-21 21:42:31 -0700
3207
+
3208
+
3209
+ Started GET "/assets/style_guide/style_guides.js?body=1" for 127.0.0.1 at 2014-07-21 21:42:31 -0700
3210
+
3211
+
3212
+ Started GET "/assets/style_guide/style_guides_plugins.js?body=1" for 127.0.0.1 at 2014-07-21 21:42:31 -0700