stylin 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (111) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/Rakefile +21 -0
  3. data/app/assets/javascripts/stylin/application.js +4 -0
  4. data/app/assets/javascripts/stylin/highlight.pack.js +1 -0
  5. data/app/assets/javascripts/stylin/kss.js +54 -0
  6. data/app/assets/javascripts/stylin/styleguides.js +2 -0
  7. data/app/assets/stylesheets/stylin/_header.scss +12 -0
  8. data/app/assets/stylesheets/stylin/_navigation.css.scss +12 -0
  9. data/app/assets/stylesheets/stylin/application.css.scss +5 -0
  10. data/app/assets/stylesheets/stylin/highlight/arta.css +160 -0
  11. data/app/assets/stylesheets/stylin/highlight/ascetic.css +50 -0
  12. data/app/assets/stylesheets/stylin/highlight/brown_paper.css +105 -0
  13. data/app/assets/stylesheets/stylin/highlight/dark.css +105 -0
  14. data/app/assets/stylesheets/stylin/highlight/default.css +153 -0
  15. data/app/assets/stylesheets/stylin/highlight/docco.css +132 -0
  16. data/app/assets/stylesheets/stylin/highlight/far.css +113 -0
  17. data/app/assets/stylesheets/stylin/highlight/foundation.css +133 -0
  18. data/app/assets/stylesheets/stylin/highlight/github.css +125 -0
  19. data/app/assets/stylesheets/stylin/highlight/googlecode.css +147 -0
  20. data/app/assets/stylesheets/stylin/highlight/idea.css +122 -0
  21. data/app/assets/stylesheets/stylin/highlight/ir_black.css +105 -0
  22. data/app/assets/stylesheets/stylin/highlight/magula.css +123 -0
  23. data/app/assets/stylesheets/stylin/highlight/mono-blue.css +62 -0
  24. data/app/assets/stylesheets/stylin/highlight/monokai.css +127 -0
  25. data/app/assets/stylesheets/stylin/highlight/monokai_sublime.css +149 -0
  26. data/app/assets/stylesheets/stylin/highlight/obsidian.css +154 -0
  27. data/app/assets/stylesheets/stylin/highlight/pojoaque.css +106 -0
  28. data/app/assets/stylesheets/stylin/highlight/railscasts.css +182 -0
  29. data/app/assets/stylesheets/stylin/highlight/rainbow.css +112 -0
  30. data/app/assets/stylesheets/stylin/highlight/school_book.css +113 -0
  31. data/app/assets/stylesheets/stylin/highlight/solarized_dark.css +107 -0
  32. data/app/assets/stylesheets/stylin/highlight/solarized_light.css +107 -0
  33. data/app/assets/stylesheets/stylin/highlight/sunburst.css +160 -0
  34. data/app/assets/stylesheets/stylin/highlight/tomorrow-night-blue.css +93 -0
  35. data/app/assets/stylesheets/stylin/highlight/tomorrow-night-bright.css +92 -0
  36. data/app/assets/stylesheets/stylin/highlight/tomorrow-night-eighties.css +92 -0
  37. data/app/assets/stylesheets/stylin/highlight/tomorrow-night.css +93 -0
  38. data/app/assets/stylesheets/stylin/highlight/tomorrow.css +90 -0
  39. data/app/assets/stylesheets/stylin/highlight/vs.css +89 -0
  40. data/app/assets/stylesheets/stylin/highlight/xcode.css +158 -0
  41. data/app/assets/stylesheets/stylin/highlight/zenburn.css +117 -0
  42. data/app/assets/stylesheets/stylin/styleguides.css.scss +106 -0
  43. data/app/controllers/stylin/application_controller.rb +11 -0
  44. data/app/controllers/stylin/styleguides_controller.rb +13 -0
  45. data/app/helpers/stylin/application_helper.rb +4 -0
  46. data/app/helpers/stylin/navigation_helper.rb +50 -0
  47. data/app/helpers/stylin/styleguides_helper.rb +29 -0
  48. data/app/models/styleguide.rb +69 -0
  49. data/app/views/layouts/stylin/_navigation.html.erb +3 -0
  50. data/app/views/layouts/stylin/application.html.erb +26 -0
  51. data/app/views/stylin/styleguides/_section.html.erb +31 -0
  52. data/app/views/stylin/styleguides/index.html.erb +5 -0
  53. data/app/views/stylin/styleguides/show.html.erb +3 -0
  54. data/config/routes.rb +5 -0
  55. data/lib/generators/stylin/install_generator.rb +12 -0
  56. data/lib/generators/stylin/views_generator.rb +10 -0
  57. data/lib/generators/templates/stylin.yml +7 -0
  58. data/lib/generators/templates/views/layouts/stylin/_navigation.html.erb +3 -0
  59. data/lib/generators/templates/views/layouts/stylin/application.html.erb +23 -0
  60. data/lib/generators/templates/views/stylin/styleguides/_section.html.erb +30 -0
  61. data/lib/generators/templates/views/stylin/styleguides/index.html.erb +5 -0
  62. data/lib/generators/templates/views/stylin/styleguides/show.html.erb +3 -0
  63. data/lib/stylin.rb +8 -0
  64. data/lib/stylin/engine.rb +37 -0
  65. data/lib/stylin/version.rb +3 -0
  66. data/lib/tasks/stylin_tasks.rake +12 -0
  67. data/spec/dummy/README.rdoc +28 -0
  68. data/spec/dummy/Rakefile +6 -0
  69. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  70. data/spec/dummy/app/assets/stylesheets/application.css.scss +1 -0
  71. data/spec/dummy/app/assets/stylesheets/buttons.css +51 -0
  72. data/spec/dummy/app/assets/stylesheets/forms.css +51 -0
  73. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  74. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  75. data/spec/dummy/app/styleguides/buttons.html +1 -0
  76. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  77. data/spec/dummy/bin/bundle +3 -0
  78. data/spec/dummy/bin/rails +4 -0
  79. data/spec/dummy/bin/rake +4 -0
  80. data/spec/dummy/config.ru +4 -0
  81. data/spec/dummy/config/application.rb +23 -0
  82. data/spec/dummy/config/boot.rb +5 -0
  83. data/spec/dummy/config/database.yml +25 -0
  84. data/spec/dummy/config/environment.rb +5 -0
  85. data/spec/dummy/config/environments/development.rb +29 -0
  86. data/spec/dummy/config/environments/production.rb +80 -0
  87. data/spec/dummy/config/environments/test.rb +36 -0
  88. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  89. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  90. data/spec/dummy/config/initializers/inflections.rb +16 -0
  91. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  92. data/spec/dummy/config/initializers/secret_token.rb +12 -0
  93. data/spec/dummy/config/initializers/session_store.rb +3 -0
  94. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  95. data/spec/dummy/config/locales/en.yml +23 -0
  96. data/spec/dummy/config/routes.rb +3 -0
  97. data/spec/dummy/config/stylin.yml +3 -0
  98. data/spec/dummy/db/development.sqlite3 +0 -0
  99. data/spec/dummy/db/production.sqlite3 +0 -0
  100. data/spec/dummy/db/schema.rb +16 -0
  101. data/spec/dummy/db/test.sqlite3 +0 -0
  102. data/spec/dummy/log/development.log +4143 -0
  103. data/spec/dummy/log/production.log +4 -0
  104. data/spec/dummy/log/test.log +380 -0
  105. data/spec/dummy/public/404.html +58 -0
  106. data/spec/dummy/public/422.html +58 -0
  107. data/spec/dummy/public/500.html +57 -0
  108. data/spec/dummy/public/favicon.ico +0 -0
  109. data/spec/models/styleguide_spec.rb +55 -0
  110. data/spec/spec_helper.rb +22 -0
  111. metadata +327 -0
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,3 @@
1
+ Rails.application.routes.draw do
2
+ mount Stylin::Engine => '/styleguides' if Rails.env.development?
3
+ end
@@ -0,0 +1,3 @@
1
+ section_groupings:
2
+ 1: General Elements
3
+ 2: Reporting
File without changes
@@ -0,0 +1,16 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 0) do
15
+
16
+ end
@@ -0,0 +1,4143 @@
1
+
2
+
3
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-27 11:32:10 -0500
4
+ Processing by Stylin::StyleguidesController#show as HTML
5
+ Parameters: {"id"=>"1-1-Buttons"}
6
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (27.2ms)
7
+ Completed 500 Internal Server Error in 41ms
8
+
9
+ ActionView::Template::Error (undefined method `sections' for #<Styleguide:0x007f990c2583f0>):
10
+ 1: <%= styleguide_navigation(styleguide.sections) %>
11
+ 2:
12
+ 3: <%= render partial: "section", locals: {section: @section} %>
13
+ /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb:1:in `___sers_bobburbach_code_peregrinator_stylin_app_views_stylin_styleguides_show_html_erb__503161735170272150_70147691956200'
14
+ actionpack (4.0.2) lib/action_view/template.rb:143:in `block in render'
15
+ activesupport (4.0.2) lib/active_support/notifications.rb:161:in `instrument'
16
+ actionpack (4.0.2) lib/action_view/template.rb:141:in `render'
17
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
18
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
19
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
20
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
21
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
22
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
23
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
24
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
25
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
26
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:17:in `render'
27
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:42:in `render_template'
28
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:23:in `render'
29
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:127:in `_render_template'
30
+ actionpack (4.0.2) lib/action_controller/metal/streaming.rb:219:in `_render_template'
31
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:120:in `render_to_body'
32
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
33
+ actionpack (4.0.2) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
34
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:97:in `render'
35
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:16:in `render'
36
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
37
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
38
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
39
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `ms'
40
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
41
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
42
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
43
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:40:in `render'
44
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
45
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
46
+ actionpack (4.0.2) lib/abstract_controller/base.rb:189:in `process_action'
47
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
48
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
49
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__3532183273747938144__process_action__callbacks'
50
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
51
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
52
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
53
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
54
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
55
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
56
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
57
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
58
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
59
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
60
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
61
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
62
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
63
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
64
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
65
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
66
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
67
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
68
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
69
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
70
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
71
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
72
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
73
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
74
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
75
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
76
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
77
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
78
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
79
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
80
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
81
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
82
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
83
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
84
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
85
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
86
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
87
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
88
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
89
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
90
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__2116516885533111008__call__callbacks'
91
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
92
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
93
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
94
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
95
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
96
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
97
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
98
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
99
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
100
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
101
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
102
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
103
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
104
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
105
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
106
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
107
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
108
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
109
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
110
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
111
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
112
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
113
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
114
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
115
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
116
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
117
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
118
+
119
+
120
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
121
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (18.5ms)
122
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (28.3ms)
123
+
124
+
125
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-27 11:32:43 -0500
126
+ Processing by Stylin::StyleguidesController#show as HTML
127
+ Parameters: {"id"=>"1-1-Buttons"}
128
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/_section.html.erb (0.9ms)
129
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (6.6ms)
130
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/layouts/stylin/_navigation.html.erb (0.3ms)
131
+ Completed 200 OK in 2242ms (Views: 2240.7ms | ActiveRecord: 0.0ms)
132
+
133
+
134
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-27 11:32:46 -0500
135
+
136
+
137
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 11:32:46 -0500
138
+
139
+
140
+ Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2013-12-27 11:32:46 -0500
141
+
142
+
143
+ Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2013-12-27 11:32:46 -0500
144
+
145
+
146
+ Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2013-12-27 11:32:46 -0500
147
+
148
+
149
+ Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2013-12-27 11:32:46 -0500
150
+
151
+
152
+ Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2013-12-27 11:32:46 -0500
153
+
154
+
155
+ Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2013-12-27 11:32:46 -0500
156
+
157
+
158
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 11:32:46 -0500
159
+
160
+
161
+ Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2013-12-27 11:32:46 -0500
162
+
163
+
164
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 11:32:46 -0500
165
+
166
+
167
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2013-12-27 11:32:46 -0500
168
+
169
+
170
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 11:32:46 -0500
171
+
172
+
173
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2013-12-27 11:32:46 -0500
174
+
175
+
176
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-27 11:32:46 -0500
177
+
178
+
179
+ Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 11:32:46 -0500
180
+
181
+
182
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-27 11:32:46 -0500
183
+
184
+
185
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-27 11:32:46 -0500
186
+
187
+
188
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-27 11:32:46 -0500
189
+
190
+
191
+ Started GET "/stylin/styleguides" for 127.0.0.1 at 2013-12-27 11:32:51 -0500
192
+ Processing by Stylin::StyleguidesController#index as HTML
193
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/index.html.erb within layouts/stylin/application (1.8ms)
194
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/layouts/stylin/_navigation.html.erb (0.1ms)
195
+ Completed 200 OK in 11ms (Views: 11.2ms | ActiveRecord: 0.0ms)
196
+
197
+
198
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-27 11:32:52 -0500
199
+
200
+
201
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 11:32:52 -0500
202
+
203
+
204
+ Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2013-12-27 11:32:52 -0500
205
+
206
+
207
+ Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2013-12-27 11:32:52 -0500
208
+
209
+
210
+ Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2013-12-27 11:32:52 -0500
211
+
212
+
213
+ Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2013-12-27 11:32:52 -0500
214
+
215
+
216
+ Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2013-12-27 11:32:52 -0500
217
+
218
+
219
+ Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2013-12-27 11:32:52 -0500
220
+
221
+
222
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 11:32:52 -0500
223
+
224
+
225
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 11:32:52 -0500
226
+
227
+
228
+ Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2013-12-27 11:32:52 -0500
229
+
230
+
231
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2013-12-27 11:32:52 -0500
232
+
233
+
234
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 11:32:52 -0500
235
+
236
+
237
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2013-12-27 11:32:52 -0500
238
+
239
+
240
+ Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 11:32:52 -0500
241
+
242
+
243
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-27 11:32:52 -0500
244
+
245
+
246
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-27 11:32:52 -0500
247
+
248
+
249
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-27 11:32:52 -0500
250
+
251
+
252
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-27 11:32:52 -0500
253
+
254
+
255
+ Started GET "/stylin/1-2-Forms" for 127.0.0.1 at 2013-12-27 11:32:53 -0500
256
+
257
+ ActionController::RoutingError (No route matches [GET] "/stylin/1-2-Forms"):
258
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
259
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
260
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
261
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
262
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
263
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
264
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
265
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
266
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
267
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
268
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
269
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
270
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
271
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
272
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
273
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
274
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
275
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
276
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
277
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
278
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
279
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
280
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
281
+
282
+
283
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
284
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
285
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
286
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (40.9ms)
287
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (56.2ms)
288
+
289
+
290
+ Started GET "/stylin/1-1-Buttons" for 127.0.0.1 at 2013-12-27 11:33:02 -0500
291
+
292
+ ActionController::RoutingError (No route matches [GET] "/stylin/1-1-Buttons"):
293
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
294
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
295
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
296
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
297
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
298
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
299
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
300
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
301
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
302
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
303
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
304
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
305
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
306
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
307
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
308
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
309
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
310
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
311
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
312
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
313
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
314
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
315
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
316
+
317
+
318
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
319
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms)
320
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms)
321
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
322
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (14.9ms)
323
+
324
+
325
+ Started GET "/stylin/styleguides" for 127.0.0.1 at 2013-12-27 11:34:00 -0500
326
+ Processing by Stylin::StyleguidesController#index as HTML
327
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/index.html.erb within layouts/stylin/application (2.1ms)
328
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/layouts/stylin/_navigation.html.erb (0.1ms)
329
+ Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms)
330
+
331
+
332
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-27 11:34:01 -0500
333
+
334
+
335
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:01 -0500
336
+
337
+
338
+ Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:01 -0500
339
+
340
+
341
+ Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:01 -0500
342
+
343
+
344
+ Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:01 -0500
345
+
346
+
347
+ Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:01 -0500
348
+
349
+
350
+ Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:01 -0500
351
+
352
+
353
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:01 -0500
354
+
355
+
356
+ Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:01 -0500
357
+
358
+
359
+ Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:01 -0500
360
+
361
+
362
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:01 -0500
363
+
364
+
365
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:01 -0500
366
+
367
+
368
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:01 -0500
369
+
370
+
371
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:01 -0500
372
+
373
+
374
+ Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:01 -0500
375
+
376
+
377
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:01 -0500
378
+
379
+
380
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:01 -0500
381
+
382
+
383
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:01 -0500
384
+
385
+
386
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:01 -0500
387
+
388
+
389
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-27 11:34:04 -0500
390
+ Processing by Stylin::StyleguidesController#show as HTML
391
+ Parameters: {"id"=>"1-1-Buttons"}
392
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/_section.html.erb (0.4ms)
393
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (1.9ms)
394
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/layouts/stylin/_navigation.html.erb (0.0ms)
395
+ Completed 200 OK in 10ms (Views: 8.9ms | ActiveRecord: 0.0ms)
396
+
397
+
398
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-27 11:34:04 -0500
399
+
400
+
401
+ Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:04 -0500
402
+
403
+
404
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:04 -0500
405
+
406
+
407
+ Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:04 -0500
408
+
409
+
410
+ Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:04 -0500
411
+
412
+
413
+ Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:04 -0500
414
+
415
+
416
+ Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:04 -0500
417
+
418
+
419
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:04 -0500
420
+
421
+
422
+ Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:04 -0500
423
+
424
+
425
+ Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:04 -0500
426
+
427
+
428
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:04 -0500
429
+
430
+
431
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:04 -0500
432
+
433
+
434
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:04 -0500
435
+
436
+
437
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:04 -0500
438
+
439
+
440
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:04 -0500
441
+
442
+
443
+ Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:04 -0500
444
+
445
+
446
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:04 -0500
447
+
448
+
449
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:04 -0500
450
+
451
+
452
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:04 -0500
453
+
454
+
455
+ Started GET "/stylin/styleguides/1-2-Forms" for 127.0.0.1 at 2013-12-27 11:34:05 -0500
456
+ Processing by Stylin::StyleguidesController#show as HTML
457
+ Parameters: {"id"=>"1-2-Forms"}
458
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/_section.html.erb (0.3ms)
459
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (1.6ms)
460
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/layouts/stylin/_navigation.html.erb (0.0ms)
461
+ Completed 200 OK in 10ms (Views: 8.7ms | ActiveRecord: 0.0ms)
462
+
463
+
464
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-27 11:34:05 -0500
465
+
466
+
467
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:06 -0500
468
+
469
+
470
+ Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:06 -0500
471
+
472
+
473
+ Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:06 -0500
474
+
475
+
476
+ Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:06 -0500
477
+
478
+
479
+ Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:06 -0500
480
+
481
+
482
+ Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:06 -0500
483
+
484
+
485
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:06 -0500
486
+
487
+
488
+ Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:06 -0500
489
+
490
+
491
+ Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:06 -0500
492
+
493
+
494
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:06 -0500
495
+
496
+
497
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:06 -0500
498
+
499
+
500
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:06 -0500
501
+
502
+
503
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:06 -0500
504
+
505
+
506
+ Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:06 -0500
507
+
508
+
509
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:06 -0500
510
+
511
+
512
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:06 -0500
513
+
514
+
515
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:06 -0500
516
+
517
+
518
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:06 -0500
519
+
520
+
521
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-27 11:34:07 -0500
522
+ Processing by Stylin::StyleguidesController#show as HTML
523
+ Parameters: {"id"=>"1-1-Buttons"}
524
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/_section.html.erb (0.4ms)
525
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (1.8ms)
526
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/layouts/stylin/_navigation.html.erb (0.1ms)
527
+ Completed 200 OK in 11ms (Views: 9.2ms | ActiveRecord: 0.0ms)
528
+
529
+
530
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-27 11:34:07 -0500
531
+
532
+
533
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:07 -0500
534
+
535
+
536
+ Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:07 -0500
537
+
538
+
539
+ Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:07 -0500
540
+
541
+
542
+ Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:07 -0500
543
+
544
+
545
+ Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:07 -0500
546
+
547
+
548
+ Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:07 -0500
549
+
550
+
551
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:07 -0500
552
+
553
+
554
+ Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:07 -0500
555
+
556
+
557
+ Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:07 -0500
558
+
559
+
560
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:07 -0500
561
+
562
+
563
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:07 -0500
564
+
565
+
566
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:07 -0500
567
+
568
+
569
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:07 -0500
570
+
571
+
572
+ Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:07 -0500
573
+
574
+
575
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:07 -0500
576
+
577
+
578
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:07 -0500
579
+
580
+
581
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:07 -0500
582
+
583
+
584
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-27 11:34:07 -0500
585
+
586
+
587
+ Started GET "/stylin/styleguides/1-2-Forms" for 127.0.0.1 at 2013-12-27 11:35:34 -0500
588
+ Processing by Stylin::StyleguidesController#show as HTML
589
+ Parameters: {"id"=>"1-2-Forms"}
590
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/_section.html.erb (0.3ms)
591
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (1.4ms)
592
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/layouts/stylin/_navigation.html.erb (0.0ms)
593
+ Completed 200 OK in 10ms (Views: 9.1ms | ActiveRecord: 0.0ms)
594
+
595
+
596
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-27 11:35:34 -0500
597
+
598
+
599
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 11:35:34 -0500
600
+
601
+
602
+ Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2013-12-27 11:35:34 -0500
603
+
604
+
605
+ Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2013-12-27 11:35:34 -0500
606
+
607
+
608
+ Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2013-12-27 11:35:34 -0500
609
+
610
+
611
+ Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2013-12-27 11:35:34 -0500
612
+
613
+
614
+ Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2013-12-27 11:35:34 -0500
615
+
616
+
617
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 11:35:34 -0500
618
+
619
+
620
+ Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2013-12-27 11:35:34 -0500
621
+
622
+
623
+ Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2013-12-27 11:35:34 -0500
624
+
625
+
626
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 11:35:34 -0500
627
+
628
+
629
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2013-12-27 11:35:34 -0500
630
+
631
+
632
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 11:35:34 -0500
633
+
634
+
635
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2013-12-27 11:35:34 -0500
636
+
637
+
638
+ Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 11:35:34 -0500
639
+
640
+
641
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-27 11:35:34 -0500
642
+
643
+
644
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-27 11:35:34 -0500
645
+
646
+
647
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-27 11:35:34 -0500
648
+
649
+
650
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-27 11:35:34 -0500
651
+
652
+
653
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-27 11:35:35 -0500
654
+ Processing by Stylin::StyleguidesController#show as HTML
655
+ Parameters: {"id"=>"1-1-Buttons"}
656
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/_section.html.erb (0.7ms)
657
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (3.0ms)
658
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/layouts/stylin/_navigation.html.erb (0.1ms)
659
+ Completed 200 OK in 15ms (Views: 13.3ms | ActiveRecord: 0.0ms)
660
+
661
+
662
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-27 11:35:35 -0500
663
+
664
+
665
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 11:35:35 -0500
666
+
667
+
668
+ Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2013-12-27 11:35:36 -0500
669
+
670
+
671
+ Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2013-12-27 11:35:36 -0500
672
+
673
+
674
+ Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2013-12-27 11:35:36 -0500
675
+
676
+
677
+ Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2013-12-27 11:35:36 -0500
678
+
679
+
680
+ Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2013-12-27 11:35:36 -0500
681
+
682
+
683
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 11:35:36 -0500
684
+
685
+
686
+ Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2013-12-27 11:35:36 -0500
687
+
688
+
689
+ Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2013-12-27 11:35:36 -0500
690
+
691
+
692
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 11:35:36 -0500
693
+
694
+
695
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2013-12-27 11:35:36 -0500
696
+
697
+
698
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 11:35:36 -0500
699
+
700
+
701
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2013-12-27 11:35:36 -0500
702
+
703
+
704
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-27 11:35:36 -0500
705
+
706
+
707
+ Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 11:35:36 -0500
708
+
709
+
710
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-27 11:35:36 -0500
711
+
712
+
713
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-27 11:35:36 -0500
714
+
715
+
716
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-27 11:35:36 -0500
717
+
718
+
719
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-27 15:02:56 -0500
720
+
721
+ SyntaxError (/Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:18: syntax error, unexpected keyword_end, expecting ')'
722
+ /Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:41: syntax error, unexpected $end, expecting keyword_end):
723
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
724
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
725
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
726
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
727
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
728
+ activesupport (4.0.2) lib/active_support/dependencies.rb:289:in `depend_on'
729
+ activesupport (4.0.2) lib/active_support/dependencies.rb:207:in `require_dependency'
730
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:135:in `block in modules_for_helpers'
731
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:130:in `map!'
732
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:130:in `modules_for_helpers'
733
+ actionpack (4.0.2) lib/action_controller/metal/helpers.rb:89:in `modules_for_helpers'
734
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:94:in `helper'
735
+ actionpack (4.0.2) lib/action_controller/railties/helpers.rb:17:in `inherited'
736
+ /Users/bobburbach/code/peregrinator/stylin/app/controllers/stylin/application_controller.rb:2:in `<module:Stylin>'
737
+ /Users/bobburbach/code/peregrinator/stylin/app/controllers/stylin/application_controller.rb:1:in `<top (required)>'
738
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
739
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
740
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
741
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
742
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
743
+ activesupport (4.0.2) lib/active_support/dependencies.rb:289:in `depend_on'
744
+ activesupport (4.0.2) lib/active_support/dependencies.rb:207:in `require_dependency'
745
+ /Users/bobburbach/code/peregrinator/stylin/app/controllers/stylin/styleguides_controller.rb:1:in `<top (required)>'
746
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
747
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
748
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
749
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
750
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
751
+ activesupport (4.0.2) lib/active_support/dependencies.rb:463:in `load_missing_constant'
752
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
753
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `const_get'
754
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `block in constantize'
755
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
756
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
757
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
758
+ activesupport (4.0.2) lib/active_support/dependencies.rb:535:in `get'
759
+ activesupport (4.0.2) lib/active_support/dependencies.rb:566:in `constantize'
760
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
761
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:66:in `controller'
762
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:44:in `call'
763
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
764
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
765
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
766
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
767
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
768
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
769
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
770
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
771
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
772
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
773
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
774
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
775
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
776
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
777
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
778
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
779
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
780
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
781
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
782
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
783
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
784
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
785
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__2116516885533111008__call__callbacks'
786
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
787
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
788
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
789
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
790
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
791
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
792
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
793
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
794
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
795
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
796
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
797
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
798
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
799
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
800
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
801
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
802
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
803
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
804
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
805
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
806
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
807
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
808
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
809
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
810
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
811
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
812
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
813
+
814
+
815
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
816
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
817
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
818
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.1ms)
819
+
820
+
821
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-27 15:05:40 -0500
822
+
823
+ SyntaxError (/Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:18: syntax error, unexpected keyword_end, expecting ')'
824
+ /Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:41: syntax error, unexpected $end, expecting keyword_end):
825
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
826
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
827
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
828
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
829
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
830
+ activesupport (4.0.2) lib/active_support/dependencies.rb:289:in `depend_on'
831
+ activesupport (4.0.2) lib/active_support/dependencies.rb:207:in `require_dependency'
832
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:135:in `block in modules_for_helpers'
833
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:130:in `map!'
834
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:130:in `modules_for_helpers'
835
+ actionpack (4.0.2) lib/action_controller/metal/helpers.rb:89:in `modules_for_helpers'
836
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:94:in `helper'
837
+ actionpack (4.0.2) lib/action_controller/railties/helpers.rb:17:in `inherited'
838
+ /Users/bobburbach/code/peregrinator/stylin/app/controllers/stylin/application_controller.rb:2:in `<module:Stylin>'
839
+ /Users/bobburbach/code/peregrinator/stylin/app/controllers/stylin/application_controller.rb:1:in `<top (required)>'
840
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
841
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
842
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
843
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
844
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
845
+ activesupport (4.0.2) lib/active_support/dependencies.rb:289:in `depend_on'
846
+ activesupport (4.0.2) lib/active_support/dependencies.rb:207:in `require_dependency'
847
+ /Users/bobburbach/code/peregrinator/stylin/app/controllers/stylin/styleguides_controller.rb:1:in `<top (required)>'
848
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
849
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
850
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
851
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
852
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
853
+ activesupport (4.0.2) lib/active_support/dependencies.rb:463:in `load_missing_constant'
854
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
855
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `const_get'
856
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `block in constantize'
857
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
858
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
859
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
860
+ activesupport (4.0.2) lib/active_support/dependencies.rb:535:in `get'
861
+ activesupport (4.0.2) lib/active_support/dependencies.rb:566:in `constantize'
862
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
863
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:66:in `controller'
864
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:44:in `call'
865
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
866
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
867
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
868
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
869
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
870
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
871
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
872
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
873
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
874
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
875
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
876
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
877
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
878
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
879
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
880
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
881
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
882
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
883
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
884
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
885
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
886
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
887
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1782338582976091866__call__callbacks'
888
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
889
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
890
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
891
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
892
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
893
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
894
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
895
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
896
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
897
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
898
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
899
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
900
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
901
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
902
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
903
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
904
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
905
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
906
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
907
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
908
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
909
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
910
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
911
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
912
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
913
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
914
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
915
+
916
+
917
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
918
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
919
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (17.0ms)
920
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (26.8ms)
921
+
922
+
923
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-27 15:05:59 -0500
924
+ Processing by Stylin::StyleguidesController#show as HTML
925
+ Parameters: {"id"=>"1-1-Buttons"}
926
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (1.3ms)
927
+ Completed 500 Internal Server Error in 9ms
928
+
929
+ ActionView::Template::Error (undefined method `find' for Styleguide:Class):
930
+ 1: <%= styleguide_navigation %>
931
+ 2:
932
+ 3: <%= render partial: "section", locals: {section: @section} %>
933
+ /Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:8:in `block in styleguide_navigation'
934
+ /Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:7:in `each'
935
+ /Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:7:in `styleguide_navigation'
936
+ /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb:1:in `___sers_bobburbach_code_peregrinator_stylin_app_views_stylin_styleguides_show_html_erb___2492424053830276857_70151836494860'
937
+ actionpack (4.0.2) lib/action_view/template.rb:143:in `block in render'
938
+ activesupport (4.0.2) lib/active_support/notifications.rb:161:in `instrument'
939
+ actionpack (4.0.2) lib/action_view/template.rb:141:in `render'
940
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
941
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
942
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
943
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
944
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
945
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
946
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
947
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
948
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
949
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:17:in `render'
950
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:42:in `render_template'
951
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:23:in `render'
952
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:127:in `_render_template'
953
+ actionpack (4.0.2) lib/action_controller/metal/streaming.rb:219:in `_render_template'
954
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:120:in `render_to_body'
955
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
956
+ actionpack (4.0.2) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
957
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:97:in `render'
958
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:16:in `render'
959
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
960
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
961
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
962
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `ms'
963
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
964
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
965
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
966
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:40:in `render'
967
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
968
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
969
+ actionpack (4.0.2) lib/abstract_controller/base.rb:189:in `process_action'
970
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
971
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
972
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__4097823216017532618__process_action__callbacks'
973
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
974
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
975
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
976
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
977
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
978
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
979
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
980
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
981
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
982
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
983
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
984
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
985
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
986
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
987
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
988
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
989
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
990
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
991
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
992
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
993
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
994
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
995
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
996
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
997
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
998
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
999
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1000
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1001
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1002
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1003
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1004
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1005
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
1006
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1007
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1008
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1009
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
1010
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1011
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
1012
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1013
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1782338582976091866__call__callbacks'
1014
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1015
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1016
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1017
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1018
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1019
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1020
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1021
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1022
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1023
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1024
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1025
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1026
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1027
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1028
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1029
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1030
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1031
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1032
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1033
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1034
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
1035
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1036
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1037
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1038
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1039
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1040
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1041
+
1042
+
1043
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
1044
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
1045
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.8ms)
1046
+
1047
+
1048
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-27 15:06:23 -0500
1049
+ Processing by Stylin::StyleguidesController#show as HTML
1050
+ Parameters: {"id"=>"1-1-Buttons"}
1051
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (1.2ms)
1052
+ Completed 500 Internal Server Error in 5ms
1053
+
1054
+ ActionView::Template::Error (undefined method `map' for nil:NilClass):
1055
+ 1: <%= styleguide_navigation %>
1056
+ 2:
1057
+ 3: <%= render partial: "section", locals: {section: @section} %>
1058
+ /Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:10:in `block in styleguide_navigation'
1059
+ /Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:7:in `each'
1060
+ /Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:7:in `styleguide_navigation'
1061
+ /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb:1:in `___sers_bobburbach_code_peregrinator_stylin_app_views_stylin_styleguides_show_html_erb___2492424053830276857_70151836494860'
1062
+ actionpack (4.0.2) lib/action_view/template.rb:143:in `block in render'
1063
+ activesupport (4.0.2) lib/active_support/notifications.rb:161:in `instrument'
1064
+ actionpack (4.0.2) lib/action_view/template.rb:141:in `render'
1065
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
1066
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1067
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
1068
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1069
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
1070
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1071
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
1072
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
1073
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
1074
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:17:in `render'
1075
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:42:in `render_template'
1076
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:23:in `render'
1077
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:127:in `_render_template'
1078
+ actionpack (4.0.2) lib/action_controller/metal/streaming.rb:219:in `_render_template'
1079
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:120:in `render_to_body'
1080
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
1081
+ actionpack (4.0.2) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
1082
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:97:in `render'
1083
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:16:in `render'
1084
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
1085
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
1086
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
1087
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `ms'
1088
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
1089
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
1090
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
1091
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:40:in `render'
1092
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
1093
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
1094
+ actionpack (4.0.2) lib/abstract_controller/base.rb:189:in `process_action'
1095
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
1096
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1097
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__4097823216017532618__process_action__callbacks'
1098
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1099
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
1100
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
1101
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1102
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
1103
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1104
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
1105
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1106
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1107
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1108
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
1109
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
1110
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
1111
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1112
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
1113
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
1114
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1115
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
1116
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1117
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1118
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1119
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1120
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1121
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
1122
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1123
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1124
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1125
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1126
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1127
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1128
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1129
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1130
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
1131
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1132
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1133
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1134
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
1135
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1136
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
1137
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1138
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1782338582976091866__call__callbacks'
1139
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1140
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1141
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1142
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1143
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1144
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1145
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1146
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1147
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1148
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1149
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1150
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1151
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1152
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1153
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1154
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1155
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1156
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1157
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1158
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1159
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
1160
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1161
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1162
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1163
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1164
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1165
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1166
+
1167
+
1168
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
1169
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
1170
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.7ms)
1171
+
1172
+
1173
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-27 15:06:39 -0500
1174
+ Processing by Stylin::StyleguidesController#show as HTML
1175
+ Parameters: {"id"=>"1-1-Buttons"}
1176
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (0.6ms)
1177
+ Completed 500 Internal Server Error in 5ms
1178
+
1179
+ ActionView::Template::Error (1):
1180
+ 1: <%= styleguide_navigation %>
1181
+ 2:
1182
+ 3: <%= render partial: "section", locals: {section: @section} %>
1183
+ /Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:8:in `block in styleguide_navigation'
1184
+ /Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:7:in `each'
1185
+ /Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:7:in `styleguide_navigation'
1186
+ /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb:1:in `___sers_bobburbach_code_peregrinator_stylin_app_views_stylin_styleguides_show_html_erb___2492424053830276857_70151836494860'
1187
+ actionpack (4.0.2) lib/action_view/template.rb:143:in `block in render'
1188
+ activesupport (4.0.2) lib/active_support/notifications.rb:161:in `instrument'
1189
+ actionpack (4.0.2) lib/action_view/template.rb:141:in `render'
1190
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
1191
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1192
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
1193
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1194
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
1195
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1196
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
1197
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
1198
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
1199
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:17:in `render'
1200
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:42:in `render_template'
1201
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:23:in `render'
1202
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:127:in `_render_template'
1203
+ actionpack (4.0.2) lib/action_controller/metal/streaming.rb:219:in `_render_template'
1204
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:120:in `render_to_body'
1205
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
1206
+ actionpack (4.0.2) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
1207
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:97:in `render'
1208
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:16:in `render'
1209
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
1210
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
1211
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
1212
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `ms'
1213
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
1214
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
1215
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
1216
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:40:in `render'
1217
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
1218
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
1219
+ actionpack (4.0.2) lib/abstract_controller/base.rb:189:in `process_action'
1220
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
1221
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1222
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__4097823216017532618__process_action__callbacks'
1223
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1224
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
1225
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
1226
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1227
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
1228
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1229
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
1230
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1231
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1232
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1233
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
1234
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
1235
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
1236
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1237
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
1238
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
1239
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1240
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
1241
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1242
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1243
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1244
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1245
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1246
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
1247
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1248
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1249
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1250
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1251
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1252
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1253
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1254
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1255
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
1256
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1257
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1258
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1259
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
1260
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1261
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
1262
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1263
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1782338582976091866__call__callbacks'
1264
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1265
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1266
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1267
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1268
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1269
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1270
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1271
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1272
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1273
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1274
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1275
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1276
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1277
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1278
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1279
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1280
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1281
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1282
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1283
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1284
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
1285
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1286
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1287
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1288
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1289
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1290
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1291
+
1292
+
1293
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
1294
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
1295
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.6ms)
1296
+
1297
+
1298
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-27 15:07:46 -0500
1299
+ Processing by Stylin::StyleguidesController#show as HTML
1300
+ Parameters: {"id"=>"1-1-Buttons"}
1301
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (0.8ms)
1302
+ Completed 500 Internal Server Error in 6ms
1303
+
1304
+ ActionView::Template::Error (1):
1305
+ 1: <%= styleguide_navigation %>
1306
+ 2:
1307
+ 3: <%= render partial: "section", locals: {section: @section} %>
1308
+ /Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:8:in `block in styleguide_navigation'
1309
+ /Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:7:in `each'
1310
+ /Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:7:in `styleguide_navigation'
1311
+ /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb:1:in `___sers_bobburbach_code_peregrinator_stylin_app_views_stylin_styleguides_show_html_erb___2492424053830276857_70151836494860'
1312
+ actionpack (4.0.2) lib/action_view/template.rb:143:in `block in render'
1313
+ activesupport (4.0.2) lib/active_support/notifications.rb:161:in `instrument'
1314
+ actionpack (4.0.2) lib/action_view/template.rb:141:in `render'
1315
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
1316
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1317
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
1318
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1319
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
1320
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1321
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
1322
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
1323
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
1324
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:17:in `render'
1325
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:42:in `render_template'
1326
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:23:in `render'
1327
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:127:in `_render_template'
1328
+ actionpack (4.0.2) lib/action_controller/metal/streaming.rb:219:in `_render_template'
1329
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:120:in `render_to_body'
1330
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
1331
+ actionpack (4.0.2) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
1332
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:97:in `render'
1333
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:16:in `render'
1334
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
1335
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
1336
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
1337
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `ms'
1338
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
1339
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
1340
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
1341
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:40:in `render'
1342
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
1343
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
1344
+ actionpack (4.0.2) lib/abstract_controller/base.rb:189:in `process_action'
1345
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
1346
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1347
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__4097823216017532618__process_action__callbacks'
1348
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1349
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
1350
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
1351
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1352
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
1353
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1354
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
1355
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1356
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1357
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1358
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
1359
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
1360
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
1361
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1362
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
1363
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
1364
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1365
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
1366
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1367
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1368
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1369
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1370
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1371
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
1372
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1373
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1374
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1375
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1376
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1377
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1378
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1379
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1380
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
1381
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1382
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1383
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1384
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
1385
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1386
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
1387
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1388
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1782338582976091866__call__callbacks'
1389
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1390
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1391
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1392
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1393
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1394
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1395
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1396
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1397
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1398
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1399
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1400
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1401
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1402
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1403
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1404
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1405
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1406
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1407
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1408
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1409
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
1410
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1411
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1412
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1413
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1414
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1415
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1416
+
1417
+
1418
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
1419
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
1420
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.4ms)
1421
+
1422
+
1423
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-27 15:07:51 -0500
1424
+ Processing by Stylin::StyleguidesController#show as HTML
1425
+ Parameters: {"id"=>"1-1-Buttons"}
1426
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (1.3ms)
1427
+ Completed 500 Internal Server Error in 5ms
1428
+
1429
+ ActionView::Template::Error (undefined method `split' for #<Kss::Section:0x007f9b003d8ce8>):
1430
+ 1: <%= styleguide_navigation %>
1431
+ 2:
1432
+ 3: <%= render partial: "section", locals: {section: @section} %>
1433
+ /Users/bobburbach/code/peregrinator/stylin/app/models/styleguide.rb:26:in `sluggify'
1434
+ /Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:12:in `block (2 levels) in styleguide_navigation'
1435
+ /Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:10:in `map'
1436
+ /Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:10:in `block in styleguide_navigation'
1437
+ /Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:7:in `each'
1438
+ /Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:7:in `styleguide_navigation'
1439
+ /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb:1:in `___sers_bobburbach_code_peregrinator_stylin_app_views_stylin_styleguides_show_html_erb___2492424053830276857_70151836494860'
1440
+ actionpack (4.0.2) lib/action_view/template.rb:143:in `block in render'
1441
+ activesupport (4.0.2) lib/active_support/notifications.rb:161:in `instrument'
1442
+ actionpack (4.0.2) lib/action_view/template.rb:141:in `render'
1443
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
1444
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1445
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
1446
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1447
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
1448
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1449
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
1450
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
1451
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
1452
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:17:in `render'
1453
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:42:in `render_template'
1454
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:23:in `render'
1455
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:127:in `_render_template'
1456
+ actionpack (4.0.2) lib/action_controller/metal/streaming.rb:219:in `_render_template'
1457
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:120:in `render_to_body'
1458
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
1459
+ actionpack (4.0.2) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
1460
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:97:in `render'
1461
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:16:in `render'
1462
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
1463
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
1464
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
1465
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `ms'
1466
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
1467
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
1468
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
1469
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:40:in `render'
1470
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
1471
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
1472
+ actionpack (4.0.2) lib/abstract_controller/base.rb:189:in `process_action'
1473
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
1474
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1475
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__4097823216017532618__process_action__callbacks'
1476
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1477
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
1478
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
1479
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1480
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
1481
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1482
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
1483
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1484
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1485
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1486
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
1487
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
1488
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
1489
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1490
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
1491
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
1492
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1493
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
1494
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1495
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1496
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1497
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1498
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1499
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
1500
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1501
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1502
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1503
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1504
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1505
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1506
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1507
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1508
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
1509
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1510
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1511
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1512
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
1513
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1514
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
1515
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1516
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1782338582976091866__call__callbacks'
1517
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1518
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1519
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1520
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1521
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1522
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1523
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1524
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1525
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1526
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1527
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1528
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1529
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1530
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1531
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1532
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1533
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1534
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1535
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1536
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1537
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
1538
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1539
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1540
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1541
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1542
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1543
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1544
+
1545
+
1546
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
1547
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
1548
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.2ms)
1549
+
1550
+
1551
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-27 15:08:42 -0500
1552
+ Processing by Stylin::StyleguidesController#show as HTML
1553
+ Parameters: {"id"=>"1-1-Buttons"}
1554
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (1.4ms)
1555
+ Completed 500 Internal Server Error in 6ms
1556
+
1557
+ ActionView::Template::Error (#<Kss::Section:0x007f9afcd6aee0 @raw="Your standard form button.\n\n:hover - Highlights when hovering.\n:disabled - Dims the button when disabled.\n.primary - Indicates button is the primary action.\n.smaller - A smaller button\n\nStyleguide 1.1 Buttons", @filename="buttons.css", @comment_sections=["Your standard form button.", ":hover - Highlights when hovering.\n:disabled - Dims the button when disabled.\n.primary - Indicates button is the primary action.\n.smaller - A smaller button", "Styleguide 1.1 Buttons"], @section="1.1 Buttons">):
1558
+ 1: <%= styleguide_navigation %>
1559
+ 2:
1560
+ 3: <%= render partial: "section", locals: {section: @section} %>
1561
+ /Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:11:in `block (2 levels) in styleguide_navigation'
1562
+ /Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:10:in `map'
1563
+ /Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:10:in `block in styleguide_navigation'
1564
+ /Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:7:in `each'
1565
+ /Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:7:in `styleguide_navigation'
1566
+ /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb:1:in `___sers_bobburbach_code_peregrinator_stylin_app_views_stylin_styleguides_show_html_erb___2492424053830276857_70151836494860'
1567
+ actionpack (4.0.2) lib/action_view/template.rb:143:in `block in render'
1568
+ activesupport (4.0.2) lib/active_support/notifications.rb:161:in `instrument'
1569
+ actionpack (4.0.2) lib/action_view/template.rb:141:in `render'
1570
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
1571
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1572
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
1573
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1574
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
1575
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1576
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
1577
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
1578
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
1579
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:17:in `render'
1580
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:42:in `render_template'
1581
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:23:in `render'
1582
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:127:in `_render_template'
1583
+ actionpack (4.0.2) lib/action_controller/metal/streaming.rb:219:in `_render_template'
1584
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:120:in `render_to_body'
1585
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
1586
+ actionpack (4.0.2) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
1587
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:97:in `render'
1588
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:16:in `render'
1589
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
1590
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
1591
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
1592
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `ms'
1593
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
1594
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
1595
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
1596
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:40:in `render'
1597
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
1598
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
1599
+ actionpack (4.0.2) lib/abstract_controller/base.rb:189:in `process_action'
1600
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
1601
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1602
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__4097823216017532618__process_action__callbacks'
1603
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1604
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
1605
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
1606
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1607
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
1608
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1609
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
1610
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1611
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1612
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1613
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
1614
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
1615
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
1616
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1617
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
1618
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
1619
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1620
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
1621
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1622
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1623
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1624
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1625
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1626
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
1627
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1628
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1629
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1630
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1631
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1632
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1633
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1634
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1635
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
1636
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1637
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1638
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1639
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
1640
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1641
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
1642
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1643
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1782338582976091866__call__callbacks'
1644
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1645
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1646
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1647
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1648
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1649
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1650
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1651
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1652
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1653
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1654
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1655
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1656
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1657
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1658
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1659
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1660
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1661
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1662
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1663
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1664
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
1665
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1666
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1667
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1668
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1669
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1670
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1671
+
1672
+
1673
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
1674
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
1675
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.6ms)
1676
+
1677
+
1678
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-27 15:14:48 -0500
1679
+ Processing by Stylin::StyleguidesController#show as HTML
1680
+ Parameters: {"id"=>"1-1-Buttons"}
1681
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/_section.html.erb (1.3ms)
1682
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (5.9ms)
1683
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/layouts/stylin/_navigation.html.erb (0.4ms)
1684
+ Completed 200 OK in 106ms (Views: 103.9ms | ActiveRecord: 0.0ms)
1685
+
1686
+
1687
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-27 15:14:49 -0500
1688
+
1689
+
1690
+ Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2013-12-27 15:14:49 -0500
1691
+
1692
+
1693
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 15:14:49 -0500
1694
+
1695
+
1696
+ Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2013-12-27 15:14:49 -0500
1697
+
1698
+
1699
+ Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2013-12-27 15:14:49 -0500
1700
+
1701
+
1702
+ Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2013-12-27 15:14:49 -0500
1703
+
1704
+
1705
+ Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2013-12-27 15:14:49 -0500
1706
+
1707
+
1708
+ Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2013-12-27 15:14:49 -0500
1709
+
1710
+
1711
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 15:14:49 -0500
1712
+
1713
+
1714
+ Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2013-12-27 15:14:49 -0500
1715
+
1716
+
1717
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 15:14:49 -0500
1718
+
1719
+
1720
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2013-12-27 15:14:49 -0500
1721
+
1722
+
1723
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 15:14:49 -0500
1724
+
1725
+
1726
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2013-12-27 15:14:49 -0500
1727
+
1728
+
1729
+ Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 15:14:49 -0500
1730
+
1731
+
1732
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-27 15:14:49 -0500
1733
+
1734
+
1735
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-27 15:14:49 -0500
1736
+
1737
+
1738
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-27 15:14:49 -0500
1739
+
1740
+
1741
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-27 15:14:49 -0500
1742
+
1743
+
1744
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-27 15:15:02 -0500
1745
+ Processing by Stylin::StyleguidesController#show as HTML
1746
+ Parameters: {"id"=>"1-1-Buttons"}
1747
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (1.6ms)
1748
+ Completed 500 Internal Server Error in 6ms
1749
+
1750
+ ActionView::Template::Error ([]):
1751
+ 1: <%= styleguide_navigation %>
1752
+ 2:
1753
+ 3: <%= render partial: "section", locals: {section: @section} %>
1754
+ /Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:17:in `block in styleguide_navigation'
1755
+ /Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:7:in `each'
1756
+ /Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:7:in `styleguide_navigation'
1757
+ /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb:1:in `___sers_bobburbach_code_peregrinator_stylin_app_views_stylin_styleguides_show_html_erb___2492424053830276857_70151836494860'
1758
+ actionpack (4.0.2) lib/action_view/template.rb:143:in `block in render'
1759
+ activesupport (4.0.2) lib/active_support/notifications.rb:161:in `instrument'
1760
+ actionpack (4.0.2) lib/action_view/template.rb:141:in `render'
1761
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
1762
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1763
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
1764
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1765
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
1766
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1767
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
1768
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
1769
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
1770
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:17:in `render'
1771
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:42:in `render_template'
1772
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:23:in `render'
1773
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:127:in `_render_template'
1774
+ actionpack (4.0.2) lib/action_controller/metal/streaming.rb:219:in `_render_template'
1775
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:120:in `render_to_body'
1776
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
1777
+ actionpack (4.0.2) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
1778
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:97:in `render'
1779
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:16:in `render'
1780
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
1781
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
1782
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
1783
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `ms'
1784
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
1785
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
1786
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
1787
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:40:in `render'
1788
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
1789
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
1790
+ actionpack (4.0.2) lib/abstract_controller/base.rb:189:in `process_action'
1791
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
1792
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1793
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__4097823216017532618__process_action__callbacks'
1794
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1795
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
1796
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
1797
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1798
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
1799
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1800
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
1801
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1802
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1803
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1804
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
1805
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
1806
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
1807
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1808
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
1809
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
1810
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1811
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
1812
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1813
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1814
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1815
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1816
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1817
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
1818
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1819
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1820
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1821
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1822
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1823
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1824
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1825
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1826
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
1827
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1828
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1829
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1830
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
1831
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1832
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
1833
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1834
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1782338582976091866__call__callbacks'
1835
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1836
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1837
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1838
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1839
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1840
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1841
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1842
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1843
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1844
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1845
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1846
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1847
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1848
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1849
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1850
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1851
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1852
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1853
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1854
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1855
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
1856
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1857
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1858
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1859
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1860
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1861
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1862
+
1863
+
1864
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
1865
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
1866
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.9ms)
1867
+
1868
+
1869
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-27 15:16:59 -0500
1870
+ Processing by Stylin::StyleguidesController#show as HTML
1871
+ Parameters: {"id"=>"1-1-Buttons"}
1872
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (1.7ms)
1873
+ Completed 500 Internal Server Error in 6ms
1874
+
1875
+ ActionView::Template::Error (["<li><ul><li><a href=\"/stylin/styleguides/1-1-Buttons\">1.1 Buttons</a></li>\n<li><a href=\"/stylin/styleguides/1-2-Forms\">1.2 Forms</a></li></ul></li>"]):
1876
+ 1: <%= styleguide_navigation %>
1877
+ 2:
1878
+ 3: <%= render partial: "section", locals: {section: @section} %>
1879
+ /Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:21:in `block in styleguide_navigation'
1880
+ /Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:7:in `each'
1881
+ /Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:7:in `styleguide_navigation'
1882
+ /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb:1:in `___sers_bobburbach_code_peregrinator_stylin_app_views_stylin_styleguides_show_html_erb___2492424053830276857_70151836494860'
1883
+ actionpack (4.0.2) lib/action_view/template.rb:143:in `block in render'
1884
+ activesupport (4.0.2) lib/active_support/notifications.rb:161:in `instrument'
1885
+ actionpack (4.0.2) lib/action_view/template.rb:141:in `render'
1886
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
1887
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1888
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
1889
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1890
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
1891
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1892
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
1893
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
1894
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
1895
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:17:in `render'
1896
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:42:in `render_template'
1897
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:23:in `render'
1898
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:127:in `_render_template'
1899
+ actionpack (4.0.2) lib/action_controller/metal/streaming.rb:219:in `_render_template'
1900
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:120:in `render_to_body'
1901
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
1902
+ actionpack (4.0.2) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
1903
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:97:in `render'
1904
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:16:in `render'
1905
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
1906
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
1907
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
1908
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `ms'
1909
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
1910
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
1911
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
1912
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:40:in `render'
1913
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
1914
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
1915
+ actionpack (4.0.2) lib/abstract_controller/base.rb:189:in `process_action'
1916
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
1917
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1918
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__4097823216017532618__process_action__callbacks'
1919
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1920
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
1921
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
1922
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1923
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
1924
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1925
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
1926
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1927
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1928
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1929
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
1930
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
1931
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
1932
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1933
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
1934
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
1935
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1936
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
1937
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1938
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1939
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1940
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1941
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1942
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
1943
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1944
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1945
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1946
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1947
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1948
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1949
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1950
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1951
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
1952
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1953
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1954
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1955
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
1956
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1957
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
1958
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1959
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1782338582976091866__call__callbacks'
1960
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1961
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1962
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1963
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1964
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1965
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1966
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1967
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1968
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1969
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1970
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1971
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1972
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1973
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1974
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1975
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1976
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1977
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1978
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1979
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1980
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
1981
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1982
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1983
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1984
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1985
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1986
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1987
+
1988
+
1989
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
1990
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
1991
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.7ms)
1992
+
1993
+
1994
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-27 15:17:28 -0500
1995
+ Processing by Stylin::StyleguidesController#show as HTML
1996
+ Parameters: {"id"=>"1-1-Buttons"}
1997
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/_section.html.erb (0.4ms)
1998
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (3.0ms)
1999
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/layouts/stylin/_navigation.html.erb (0.0ms)
2000
+ Completed 200 OK in 11ms (Views: 9.4ms | ActiveRecord: 0.0ms)
2001
+
2002
+
2003
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-27 15:17:28 -0500
2004
+
2005
+
2006
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 15:17:28 -0500
2007
+
2008
+
2009
+ Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2013-12-27 15:17:28 -0500
2010
+
2011
+
2012
+ Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2013-12-27 15:17:28 -0500
2013
+
2014
+
2015
+ Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2013-12-27 15:17:28 -0500
2016
+
2017
+
2018
+ Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2013-12-27 15:17:28 -0500
2019
+
2020
+
2021
+ Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2013-12-27 15:17:28 -0500
2022
+
2023
+
2024
+ Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2013-12-27 15:17:28 -0500
2025
+
2026
+
2027
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 15:17:28 -0500
2028
+
2029
+
2030
+ Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2013-12-27 15:17:28 -0500
2031
+
2032
+
2033
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 15:17:28 -0500
2034
+
2035
+
2036
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2013-12-27 15:17:28 -0500
2037
+
2038
+
2039
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 15:17:28 -0500
2040
+
2041
+
2042
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2013-12-27 15:17:28 -0500
2043
+
2044
+
2045
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-27 15:17:28 -0500
2046
+
2047
+
2048
+ Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 15:17:28 -0500
2049
+
2050
+
2051
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-27 15:17:28 -0500
2052
+
2053
+
2054
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-27 15:17:28 -0500
2055
+
2056
+
2057
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-27 15:17:28 -0500
2058
+
2059
+
2060
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-27 15:17:45 -0500
2061
+ Processing by Stylin::StyleguidesController#show as HTML
2062
+ Parameters: {"id"=>"1-1-Buttons"}
2063
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (2.4ms)
2064
+ Completed 500 Internal Server Error in 7ms
2065
+
2066
+ ActionView::Template::Error (["<li><ul><li><a href=\"/stylin/styleguides/1-1-Buttons\">1.1 Buttons</a></li>\n<li><a href=\"/stylin/styleguides/1-2-Forms\">1.2 Forms</a></li></ul></li>", "<li><ul></ul></li>"]):
2067
+ 1: <%= styleguide_navigation %>
2068
+ 2:
2069
+ 3: <%= render partial: "section", locals: {section: @section} %>
2070
+ /Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:27:in `styleguide_navigation'
2071
+ /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb:1:in `___sers_bobburbach_code_peregrinator_stylin_app_views_stylin_styleguides_show_html_erb___2492424053830276857_70151836494860'
2072
+ actionpack (4.0.2) lib/action_view/template.rb:143:in `block in render'
2073
+ activesupport (4.0.2) lib/active_support/notifications.rb:161:in `instrument'
2074
+ actionpack (4.0.2) lib/action_view/template.rb:141:in `render'
2075
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
2076
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
2077
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
2078
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2079
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
2080
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
2081
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
2082
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
2083
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
2084
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:17:in `render'
2085
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:42:in `render_template'
2086
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:23:in `render'
2087
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:127:in `_render_template'
2088
+ actionpack (4.0.2) lib/action_controller/metal/streaming.rb:219:in `_render_template'
2089
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:120:in `render_to_body'
2090
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
2091
+ actionpack (4.0.2) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
2092
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:97:in `render'
2093
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:16:in `render'
2094
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
2095
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
2096
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
2097
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `ms'
2098
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
2099
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
2100
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
2101
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:40:in `render'
2102
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
2103
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
2104
+ actionpack (4.0.2) lib/abstract_controller/base.rb:189:in `process_action'
2105
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
2106
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
2107
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__4097823216017532618__process_action__callbacks'
2108
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
2109
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
2110
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
2111
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
2112
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
2113
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2114
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
2115
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
2116
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
2117
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2118
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
2119
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
2120
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
2121
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
2122
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
2123
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
2124
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
2125
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
2126
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
2127
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
2128
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
2129
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
2130
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
2131
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
2132
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
2133
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
2134
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
2135
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
2136
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
2137
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
2138
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
2139
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2140
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
2141
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
2142
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
2143
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
2144
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
2145
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
2146
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
2147
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2148
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1782338582976091866__call__callbacks'
2149
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
2150
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2151
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
2152
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
2153
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2154
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2155
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
2156
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
2157
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
2158
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
2159
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
2160
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
2161
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2162
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2163
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2164
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
2165
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2166
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
2167
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2168
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
2169
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
2170
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2171
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2172
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2173
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2174
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2175
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2176
+
2177
+
2178
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
2179
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
2180
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.2ms)
2181
+
2182
+
2183
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-27 15:18:26 -0500
2184
+ Processing by Stylin::StyleguidesController#show as HTML
2185
+ Parameters: {"id"=>"1-1-Buttons"}
2186
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/_section.html.erb (0.4ms)
2187
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (2.7ms)
2188
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/layouts/stylin/_navigation.html.erb (0.0ms)
2189
+ Completed 200 OK in 11ms (Views: 9.2ms | ActiveRecord: 0.0ms)
2190
+
2191
+
2192
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-27 15:18:26 -0500
2193
+
2194
+
2195
+ Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2013-12-27 15:18:26 -0500
2196
+
2197
+
2198
+ Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2013-12-27 15:18:26 -0500
2199
+
2200
+
2201
+ Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2013-12-27 15:18:26 -0500
2202
+
2203
+
2204
+ Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2013-12-27 15:18:26 -0500
2205
+
2206
+
2207
+ Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2013-12-27 15:18:26 -0500
2208
+
2209
+
2210
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 15:18:26 -0500
2211
+
2212
+
2213
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 15:18:26 -0500
2214
+
2215
+
2216
+ Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2013-12-27 15:18:26 -0500
2217
+
2218
+
2219
+ Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2013-12-27 15:18:26 -0500
2220
+
2221
+
2222
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 15:18:26 -0500
2223
+
2224
+
2225
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2013-12-27 15:18:26 -0500
2226
+
2227
+
2228
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 15:18:26 -0500
2229
+
2230
+
2231
+ Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 15:18:26 -0500
2232
+
2233
+
2234
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2013-12-27 15:18:26 -0500
2235
+
2236
+
2237
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-27 15:18:26 -0500
2238
+
2239
+
2240
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-27 15:18:26 -0500
2241
+
2242
+
2243
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-27 15:18:26 -0500
2244
+
2245
+
2246
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-27 15:18:26 -0500
2247
+
2248
+
2249
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-27 15:19:49 -0500
2250
+ Processing by Stylin::StyleguidesController#show as HTML
2251
+ Parameters: {"id"=>"1-1-Buttons"}
2252
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/_section.html.erb (0.4ms)
2253
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (2.8ms)
2254
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/layouts/stylin/_navigation.html.erb (0.0ms)
2255
+ Completed 200 OK in 11ms (Views: 9.2ms | ActiveRecord: 0.0ms)
2256
+
2257
+
2258
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-27 15:19:49 -0500
2259
+
2260
+
2261
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 15:19:49 -0500
2262
+
2263
+
2264
+ Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2013-12-27 15:19:49 -0500
2265
+
2266
+
2267
+ Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2013-12-27 15:19:49 -0500
2268
+
2269
+
2270
+ Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2013-12-27 15:19:49 -0500
2271
+
2272
+
2273
+ Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2013-12-27 15:19:49 -0500
2274
+
2275
+
2276
+ Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2013-12-27 15:19:49 -0500
2277
+
2278
+
2279
+ Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2013-12-27 15:19:49 -0500
2280
+
2281
+
2282
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 15:19:49 -0500
2283
+
2284
+
2285
+ Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2013-12-27 15:19:49 -0500
2286
+
2287
+
2288
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 15:19:49 -0500
2289
+
2290
+
2291
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2013-12-27 15:19:49 -0500
2292
+
2293
+
2294
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 15:19:49 -0500
2295
+
2296
+
2297
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2013-12-27 15:19:50 -0500
2298
+
2299
+
2300
+ Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 15:19:50 -0500
2301
+
2302
+
2303
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-27 15:19:50 -0500
2304
+
2305
+
2306
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-27 15:19:50 -0500
2307
+
2308
+
2309
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-27 15:19:50 -0500
2310
+
2311
+
2312
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-27 15:19:50 -0500
2313
+
2314
+
2315
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-27 15:20:10 -0500
2316
+ Processing by Stylin::StyleguidesController#show as HTML
2317
+ Parameters: {"id"=>"1-1-Buttons"}
2318
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/_section.html.erb (0.4ms)
2319
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (3.4ms)
2320
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/layouts/stylin/_navigation.html.erb (0.1ms)
2321
+ Completed 200 OK in 12ms (Views: 10.6ms | ActiveRecord: 0.0ms)
2322
+
2323
+
2324
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-27 15:20:10 -0500
2325
+
2326
+
2327
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 15:20:10 -0500
2328
+
2329
+
2330
+ Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2013-12-27 15:20:10 -0500
2331
+
2332
+
2333
+ Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2013-12-27 15:20:10 -0500
2334
+
2335
+
2336
+ Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2013-12-27 15:20:10 -0500
2337
+
2338
+
2339
+ Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2013-12-27 15:20:10 -0500
2340
+
2341
+
2342
+ Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2013-12-27 15:20:10 -0500
2343
+
2344
+
2345
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 15:20:10 -0500
2346
+
2347
+
2348
+ Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2013-12-27 15:20:10 -0500
2349
+
2350
+
2351
+ Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2013-12-27 15:20:10 -0500
2352
+
2353
+
2354
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 15:20:10 -0500
2355
+
2356
+
2357
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2013-12-27 15:20:10 -0500
2358
+
2359
+
2360
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 15:20:10 -0500
2361
+
2362
+
2363
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2013-12-27 15:20:10 -0500
2364
+
2365
+
2366
+ Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 15:20:10 -0500
2367
+
2368
+
2369
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-27 15:20:10 -0500
2370
+
2371
+
2372
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-27 15:20:10 -0500
2373
+
2374
+
2375
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-27 15:20:10 -0500
2376
+
2377
+
2378
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-27 15:20:10 -0500
2379
+
2380
+
2381
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-27 15:20:28 -0500
2382
+ Processing by Stylin::StyleguidesController#show as HTML
2383
+ Parameters: {"id"=>"1-1-Buttons"}
2384
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (34.7ms)
2385
+ Completed 500 Internal Server Error in 39ms
2386
+
2387
+ ActionView::Template::Error (undefined method `html_safe' for #<Array:0x007f9b0047f9a8>):
2388
+ 1: <%= styleguide_navigation %>
2389
+ 2:
2390
+ 3: <%= render partial: "section", locals: {section: @section} %>
2391
+ /Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:23:in `styleguide_navigation'
2392
+ /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb:1:in `___sers_bobburbach_code_peregrinator_stylin_app_views_stylin_styleguides_show_html_erb___2492424053830276857_70151836494860'
2393
+ actionpack (4.0.2) lib/action_view/template.rb:143:in `block in render'
2394
+ activesupport (4.0.2) lib/active_support/notifications.rb:161:in `instrument'
2395
+ actionpack (4.0.2) lib/action_view/template.rb:141:in `render'
2396
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
2397
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
2398
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
2399
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2400
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
2401
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
2402
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
2403
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
2404
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
2405
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:17:in `render'
2406
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:42:in `render_template'
2407
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:23:in `render'
2408
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:127:in `_render_template'
2409
+ actionpack (4.0.2) lib/action_controller/metal/streaming.rb:219:in `_render_template'
2410
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:120:in `render_to_body'
2411
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
2412
+ actionpack (4.0.2) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
2413
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:97:in `render'
2414
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:16:in `render'
2415
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
2416
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
2417
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
2418
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `ms'
2419
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
2420
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
2421
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
2422
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:40:in `render'
2423
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
2424
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
2425
+ actionpack (4.0.2) lib/abstract_controller/base.rb:189:in `process_action'
2426
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
2427
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
2428
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__4097823216017532618__process_action__callbacks'
2429
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
2430
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
2431
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
2432
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
2433
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
2434
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2435
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
2436
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
2437
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
2438
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2439
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
2440
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
2441
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
2442
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
2443
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
2444
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
2445
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
2446
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
2447
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
2448
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
2449
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
2450
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
2451
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
2452
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
2453
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
2454
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
2455
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
2456
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
2457
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
2458
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
2459
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
2460
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2461
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
2462
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
2463
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
2464
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
2465
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
2466
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
2467
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
2468
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2469
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1782338582976091866__call__callbacks'
2470
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
2471
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2472
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
2473
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
2474
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2475
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2476
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
2477
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
2478
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
2479
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
2480
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
2481
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
2482
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2483
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2484
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2485
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
2486
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2487
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
2488
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2489
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
2490
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
2491
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2492
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2493
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2494
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2495
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2496
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2497
+
2498
+
2499
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
2500
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
2501
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.7ms)
2502
+
2503
+
2504
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-27 15:20:49 -0500
2505
+ Processing by Stylin::StyleguidesController#show as HTML
2506
+ Parameters: {"id"=>"1-1-Buttons"}
2507
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/_section.html.erb (0.4ms)
2508
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (3.1ms)
2509
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/layouts/stylin/_navigation.html.erb (0.1ms)
2510
+ Completed 200 OK in 12ms (Views: 10.4ms | ActiveRecord: 0.0ms)
2511
+
2512
+
2513
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-27 15:20:50 -0500
2514
+
2515
+
2516
+ Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2013-12-27 15:20:50 -0500
2517
+
2518
+
2519
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 15:20:50 -0500
2520
+
2521
+
2522
+ Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2013-12-27 15:20:50 -0500
2523
+
2524
+
2525
+ Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2013-12-27 15:20:50 -0500
2526
+
2527
+
2528
+ Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2013-12-27 15:20:50 -0500
2529
+
2530
+
2531
+ Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2013-12-27 15:20:50 -0500
2532
+
2533
+
2534
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 15:20:50 -0500
2535
+
2536
+
2537
+ Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2013-12-27 15:20:50 -0500
2538
+
2539
+
2540
+ Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2013-12-27 15:20:50 -0500
2541
+
2542
+
2543
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 15:20:50 -0500
2544
+
2545
+
2546
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2013-12-27 15:20:50 -0500
2547
+
2548
+
2549
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 15:20:50 -0500
2550
+
2551
+
2552
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2013-12-27 15:20:50 -0500
2553
+
2554
+
2555
+ Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 15:20:50 -0500
2556
+
2557
+
2558
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-27 15:20:50 -0500
2559
+
2560
+
2561
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-27 15:20:50 -0500
2562
+
2563
+
2564
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-27 15:20:50 -0500
2565
+
2566
+
2567
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-27 15:20:50 -0500
2568
+
2569
+
2570
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-27 15:22:37 -0500
2571
+ Processing by Stylin::StyleguidesController#show as HTML
2572
+ Parameters: {"id"=>"1-1-Buttons"}
2573
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/_section.html.erb (0.4ms)
2574
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (2.9ms)
2575
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/layouts/stylin/_navigation.html.erb (0.1ms)
2576
+ Completed 200 OK in 14ms (Views: 11.1ms | ActiveRecord: 0.0ms)
2577
+
2578
+
2579
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-27 15:22:37 -0500
2580
+
2581
+
2582
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 15:22:37 -0500
2583
+
2584
+
2585
+ Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2013-12-27 15:22:37 -0500
2586
+
2587
+
2588
+ Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2013-12-27 15:22:37 -0500
2589
+
2590
+
2591
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 15:22:37 -0500
2592
+
2593
+
2594
+ Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2013-12-27 15:22:37 -0500
2595
+
2596
+
2597
+ Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2013-12-27 15:22:37 -0500
2598
+
2599
+
2600
+ Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2013-12-27 15:22:37 -0500
2601
+
2602
+
2603
+ Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2013-12-27 15:22:37 -0500
2604
+
2605
+
2606
+ Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2013-12-27 15:22:37 -0500
2607
+
2608
+
2609
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2013-12-27 15:22:37 -0500
2610
+
2611
+
2612
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 15:22:37 -0500
2613
+
2614
+
2615
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 15:22:37 -0500
2616
+
2617
+
2618
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2013-12-27 15:22:37 -0500
2619
+
2620
+
2621
+ Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 15:22:37 -0500
2622
+
2623
+
2624
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-27 15:22:37 -0500
2625
+
2626
+
2627
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-27 15:22:37 -0500
2628
+
2629
+
2630
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-27 15:22:37 -0500
2631
+
2632
+
2633
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-27 15:22:37 -0500
2634
+
2635
+
2636
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-27 15:22:45 -0500
2637
+ Processing by Stylin::StyleguidesController#show as HTML
2638
+ Parameters: {"id"=>"1-1-Buttons"}
2639
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/_section.html.erb (0.4ms)
2640
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (2.9ms)
2641
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/layouts/stylin/_navigation.html.erb (0.0ms)
2642
+ Completed 200 OK in 12ms (Views: 9.9ms | ActiveRecord: 0.0ms)
2643
+
2644
+
2645
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-27 15:22:45 -0500
2646
+
2647
+
2648
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 15:22:45 -0500
2649
+
2650
+
2651
+ Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2013-12-27 15:22:45 -0500
2652
+
2653
+
2654
+ Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2013-12-27 15:22:45 -0500
2655
+
2656
+
2657
+ Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2013-12-27 15:22:45 -0500
2658
+
2659
+
2660
+ Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2013-12-27 15:22:45 -0500
2661
+
2662
+
2663
+ Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2013-12-27 15:22:45 -0500
2664
+
2665
+
2666
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 15:22:45 -0500
2667
+
2668
+
2669
+ Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2013-12-27 15:22:45 -0500
2670
+
2671
+
2672
+ Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2013-12-27 15:22:45 -0500
2673
+
2674
+
2675
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 15:22:45 -0500
2676
+
2677
+
2678
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2013-12-27 15:22:45 -0500
2679
+
2680
+
2681
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 15:22:45 -0500
2682
+
2683
+
2684
+ Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 15:22:45 -0500
2685
+
2686
+
2687
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2013-12-27 15:22:45 -0500
2688
+
2689
+
2690
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-27 15:22:45 -0500
2691
+
2692
+
2693
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-27 15:22:45 -0500
2694
+
2695
+
2696
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-27 15:22:45 -0500
2697
+
2698
+
2699
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-27 15:22:45 -0500
2700
+
2701
+
2702
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-27 15:23:25 -0500
2703
+ Processing by Stylin::StyleguidesController#show as HTML
2704
+ Parameters: {"id"=>"1-1-Buttons"}
2705
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/_section.html.erb (0.3ms)
2706
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (2.5ms)
2707
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/layouts/stylin/_navigation.html.erb (0.1ms)
2708
+ Completed 200 OK in 897ms (Views: 896.1ms | ActiveRecord: 0.0ms)
2709
+
2710
+
2711
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-27 15:23:26 -0500
2712
+
2713
+
2714
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 15:23:26 -0500
2715
+
2716
+
2717
+ Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2013-12-27 15:23:26 -0500
2718
+
2719
+
2720
+ Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2013-12-27 15:23:26 -0500
2721
+
2722
+
2723
+ Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2013-12-27 15:23:26 -0500
2724
+
2725
+
2726
+ Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2013-12-27 15:23:26 -0500
2727
+
2728
+
2729
+ Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2013-12-27 15:23:26 -0500
2730
+
2731
+
2732
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 15:23:26 -0500
2733
+
2734
+
2735
+ Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2013-12-27 15:23:26 -0500
2736
+
2737
+
2738
+ Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2013-12-27 15:23:26 -0500
2739
+
2740
+
2741
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 15:23:26 -0500
2742
+
2743
+
2744
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2013-12-27 15:23:26 -0500
2745
+
2746
+
2747
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 15:23:26 -0500
2748
+
2749
+
2750
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2013-12-27 15:23:26 -0500
2751
+
2752
+
2753
+ Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 15:23:26 -0500
2754
+
2755
+
2756
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-27 15:23:26 -0500
2757
+
2758
+
2759
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-27 15:23:26 -0500
2760
+
2761
+
2762
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-27 15:23:26 -0500
2763
+
2764
+
2765
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-27 15:23:26 -0500
2766
+
2767
+
2768
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-27 15:30:59 -0500
2769
+ Processing by Stylin::StyleguidesController#show as HTML
2770
+ Parameters: {"id"=>"1-1-Buttons"}
2771
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/_section.html.erb (0.4ms)
2772
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (2.7ms)
2773
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/layouts/stylin/_navigation.html.erb (0.0ms)
2774
+ Completed 200 OK in 10ms (Views: 8.7ms | ActiveRecord: 0.0ms)
2775
+
2776
+
2777
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-27 15:30:59 -0500
2778
+
2779
+
2780
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 15:30:59 -0500
2781
+
2782
+
2783
+ Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2013-12-27 15:30:59 -0500
2784
+
2785
+
2786
+ Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2013-12-27 15:30:59 -0500
2787
+
2788
+
2789
+ Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2013-12-27 15:30:59 -0500
2790
+
2791
+
2792
+ Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2013-12-27 15:30:59 -0500
2793
+
2794
+
2795
+ Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2013-12-27 15:30:59 -0500
2796
+
2797
+
2798
+ Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2013-12-27 15:30:59 -0500
2799
+
2800
+
2801
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 15:30:59 -0500
2802
+
2803
+
2804
+ Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2013-12-27 15:30:59 -0500
2805
+
2806
+
2807
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 15:30:59 -0500
2808
+
2809
+
2810
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2013-12-27 15:30:59 -0500
2811
+
2812
+
2813
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 15:30:59 -0500
2814
+
2815
+
2816
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2013-12-27 15:30:59 -0500
2817
+
2818
+
2819
+ Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 15:30:59 -0500
2820
+
2821
+
2822
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-27 15:31:00 -0500
2823
+
2824
+
2825
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-27 15:31:00 -0500
2826
+
2827
+
2828
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-27 15:31:00 -0500
2829
+
2830
+
2831
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-27 15:31:00 -0500
2832
+
2833
+
2834
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-27 15:31:08 -0500
2835
+ Processing by Stylin::StyleguidesController#show as HTML
2836
+ Parameters: {"id"=>"1-1-Buttons"}
2837
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/_section.html.erb (1.0ms)
2838
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (29.4ms)
2839
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/layouts/stylin/_navigation.html.erb (0.3ms)
2840
+ Completed 200 OK in 120ms (Views: 118.3ms | ActiveRecord: 0.0ms)
2841
+
2842
+
2843
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-27 15:31:09 -0500
2844
+
2845
+
2846
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 15:31:09 -0500
2847
+
2848
+
2849
+ Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2013-12-27 15:31:09 -0500
2850
+
2851
+
2852
+ Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2013-12-27 15:31:09 -0500
2853
+
2854
+
2855
+ Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2013-12-27 15:31:09 -0500
2856
+
2857
+
2858
+ Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2013-12-27 15:31:09 -0500
2859
+
2860
+
2861
+ Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2013-12-27 15:31:09 -0500
2862
+
2863
+
2864
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 15:31:09 -0500
2865
+
2866
+
2867
+ Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2013-12-27 15:31:09 -0500
2868
+
2869
+
2870
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 15:31:09 -0500
2871
+
2872
+
2873
+ Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2013-12-27 15:31:09 -0500
2874
+
2875
+
2876
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2013-12-27 15:31:09 -0500
2877
+
2878
+
2879
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 15:31:09 -0500
2880
+
2881
+
2882
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2013-12-27 15:31:09 -0500
2883
+
2884
+
2885
+ Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 15:31:09 -0500
2886
+
2887
+
2888
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-27 15:31:09 -0500
2889
+
2890
+
2891
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-27 15:31:09 -0500
2892
+
2893
+
2894
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-27 15:31:09 -0500
2895
+
2896
+
2897
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-27 15:31:09 -0500
2898
+
2899
+
2900
+ Started GET "/stylin/styleguides/1-2-Forms" for 127.0.0.1 at 2013-12-27 15:57:48 -0500
2901
+ Processing by Stylin::StyleguidesController#show as HTML
2902
+ Parameters: {"id"=>"1-2-Forms"}
2903
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/_section.html.erb (0.3ms)
2904
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (3.0ms)
2905
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/layouts/stylin/_navigation.html.erb (0.1ms)
2906
+ Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.0ms)
2907
+
2908
+
2909
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-27 15:57:48 -0500
2910
+
2911
+
2912
+ Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2013-12-27 15:57:48 -0500
2913
+
2914
+
2915
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 15:57:48 -0500
2916
+
2917
+
2918
+ Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2013-12-27 15:57:48 -0500
2919
+
2920
+
2921
+ Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2013-12-27 15:57:48 -0500
2922
+
2923
+
2924
+ Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2013-12-27 15:57:48 -0500
2925
+
2926
+
2927
+ Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2013-12-27 15:57:48 -0500
2928
+
2929
+
2930
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 15:57:48 -0500
2931
+
2932
+
2933
+ Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2013-12-27 15:57:48 -0500
2934
+
2935
+
2936
+ Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2013-12-27 15:57:48 -0500
2937
+
2938
+
2939
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 15:57:48 -0500
2940
+
2941
+
2942
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2013-12-27 15:57:48 -0500
2943
+
2944
+
2945
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 15:57:48 -0500
2946
+
2947
+
2948
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2013-12-27 15:57:48 -0500
2949
+
2950
+
2951
+ Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 15:57:48 -0500
2952
+
2953
+
2954
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-27 15:57:48 -0500
2955
+
2956
+
2957
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-27 15:57:48 -0500
2958
+
2959
+
2960
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-27 15:57:48 -0500
2961
+
2962
+
2963
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-27 15:57:48 -0500
2964
+
2965
+
2966
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-27 15:57:50 -0500
2967
+ Processing by Stylin::StyleguidesController#show as HTML
2968
+ Parameters: {"id"=>"1-1-Buttons"}
2969
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/_section.html.erb (0.4ms)
2970
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (2.9ms)
2971
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/layouts/stylin/_navigation.html.erb (0.0ms)
2972
+ Completed 200 OK in 12ms (Views: 10.8ms | ActiveRecord: 0.0ms)
2973
+
2974
+
2975
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-27 15:57:51 -0500
2976
+
2977
+
2978
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 15:57:51 -0500
2979
+
2980
+
2981
+ Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2013-12-27 15:57:51 -0500
2982
+
2983
+
2984
+ Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2013-12-27 15:57:51 -0500
2985
+
2986
+
2987
+ Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2013-12-27 15:57:51 -0500
2988
+
2989
+
2990
+ Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2013-12-27 15:57:51 -0500
2991
+
2992
+
2993
+ Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2013-12-27 15:57:51 -0500
2994
+
2995
+
2996
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 15:57:51 -0500
2997
+
2998
+
2999
+ Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2013-12-27 15:57:51 -0500
3000
+
3001
+
3002
+ Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2013-12-27 15:57:51 -0500
3003
+
3004
+
3005
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 15:57:51 -0500
3006
+
3007
+
3008
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 15:57:51 -0500
3009
+
3010
+
3011
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2013-12-27 15:57:51 -0500
3012
+
3013
+
3014
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2013-12-27 15:57:51 -0500
3015
+
3016
+
3017
+ Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 15:57:51 -0500
3018
+
3019
+
3020
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-27 15:57:51 -0500
3021
+
3022
+
3023
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-27 15:57:51 -0500
3024
+
3025
+
3026
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-27 15:57:51 -0500
3027
+
3028
+
3029
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-27 15:57:51 -0500
3030
+
3031
+
3032
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-27 15:59:13 -0500
3033
+ Processing by Stylin::StyleguidesController#show as HTML
3034
+ Parameters: {"id"=>"1-1-Buttons"}
3035
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/_section.html.erb (0.5ms)
3036
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (3.8ms)
3037
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/layouts/stylin/_navigation.html.erb (0.1ms)
3038
+ Completed 200 OK in 46ms (Views: 43.5ms | ActiveRecord: 0.0ms)
3039
+
3040
+
3041
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-27 15:59:13 -0500
3042
+
3043
+
3044
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 15:59:13 -0500
3045
+
3046
+
3047
+ Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2013-12-27 15:59:13 -0500
3048
+
3049
+
3050
+ Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2013-12-27 15:59:13 -0500
3051
+
3052
+
3053
+ Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2013-12-27 15:59:13 -0500
3054
+
3055
+
3056
+ Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2013-12-27 15:59:13 -0500
3057
+
3058
+
3059
+ Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2013-12-27 15:59:13 -0500
3060
+
3061
+
3062
+ Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2013-12-27 15:59:13 -0500
3063
+
3064
+
3065
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 15:59:13 -0500
3066
+
3067
+
3068
+ Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2013-12-27 15:59:13 -0500
3069
+
3070
+
3071
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 15:59:13 -0500
3072
+
3073
+
3074
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2013-12-27 15:59:13 -0500
3075
+
3076
+
3077
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 15:59:13 -0500
3078
+
3079
+
3080
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2013-12-27 15:59:13 -0500
3081
+
3082
+
3083
+ Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 15:59:13 -0500
3084
+
3085
+
3086
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-27 15:59:13 -0500
3087
+
3088
+
3089
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-27 15:59:13 -0500
3090
+
3091
+
3092
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-27 15:59:13 -0500
3093
+
3094
+
3095
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-27 15:59:13 -0500
3096
+
3097
+
3098
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-27 15:59:45 -0500
3099
+ Processing by Stylin::StyleguidesController#show as HTML
3100
+ Parameters: {"id"=>"1-1-Buttons"}
3101
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/_section.html.erb (0.4ms)
3102
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (3.2ms)
3103
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/layouts/stylin/_navigation.html.erb (0.0ms)
3104
+ Completed 200 OK in 12ms (Views: 10.4ms | ActiveRecord: 0.0ms)
3105
+
3106
+
3107
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-27 15:59:45 -0500
3108
+
3109
+
3110
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 15:59:45 -0500
3111
+
3112
+
3113
+ Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2013-12-27 15:59:45 -0500
3114
+
3115
+
3116
+ Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2013-12-27 15:59:45 -0500
3117
+
3118
+
3119
+ Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2013-12-27 15:59:45 -0500
3120
+
3121
+
3122
+ Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2013-12-27 15:59:45 -0500
3123
+
3124
+
3125
+ Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2013-12-27 15:59:45 -0500
3126
+
3127
+
3128
+ Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2013-12-27 15:59:45 -0500
3129
+
3130
+
3131
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 15:59:45 -0500
3132
+
3133
+
3134
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 15:59:45 -0500
3135
+
3136
+
3137
+ Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2013-12-27 15:59:45 -0500
3138
+
3139
+
3140
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2013-12-27 15:59:45 -0500
3141
+
3142
+
3143
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 15:59:45 -0500
3144
+
3145
+
3146
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2013-12-27 15:59:45 -0500
3147
+
3148
+
3149
+ Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 15:59:45 -0500
3150
+
3151
+
3152
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-27 15:59:45 -0500
3153
+
3154
+
3155
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-27 15:59:45 -0500
3156
+
3157
+
3158
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-27 15:59:45 -0500
3159
+
3160
+
3161
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-27 15:59:45 -0500
3162
+
3163
+
3164
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-27 16:01:39 -0500
3165
+ Processing by Stylin::StyleguidesController#show as HTML
3166
+ Parameters: {"id"=>"1-1-Buttons"}
3167
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/_section.html.erb (0.4ms)
3168
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (2.9ms)
3169
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/layouts/stylin/_navigation.html.erb (0.1ms)
3170
+ Completed 200 OK in 13ms (Views: 10.7ms | ActiveRecord: 0.0ms)
3171
+
3172
+
3173
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-27 16:01:39 -0500
3174
+
3175
+
3176
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 16:01:39 -0500
3177
+
3178
+
3179
+ Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2013-12-27 16:01:39 -0500
3180
+
3181
+
3182
+ Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2013-12-27 16:01:39 -0500
3183
+
3184
+
3185
+ Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2013-12-27 16:01:39 -0500
3186
+
3187
+
3188
+ Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2013-12-27 16:01:39 -0500
3189
+
3190
+
3191
+ Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2013-12-27 16:01:39 -0500
3192
+
3193
+
3194
+ Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2013-12-27 16:01:39 -0500
3195
+
3196
+
3197
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 16:01:39 -0500
3198
+
3199
+
3200
+ Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2013-12-27 16:01:39 -0500
3201
+
3202
+
3203
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 16:01:39 -0500
3204
+
3205
+
3206
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2013-12-27 16:01:39 -0500
3207
+
3208
+
3209
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 16:01:39 -0500
3210
+
3211
+
3212
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2013-12-27 16:01:39 -0500
3213
+
3214
+
3215
+ Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 16:01:39 -0500
3216
+
3217
+
3218
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-27 16:01:39 -0500
3219
+
3220
+
3221
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-27 16:01:39 -0500
3222
+
3223
+
3224
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-27 16:01:39 -0500
3225
+
3226
+
3227
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-27 16:01:39 -0500
3228
+
3229
+
3230
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-27 16:03:27 -0500
3231
+ Processing by Stylin::StyleguidesController#show as HTML
3232
+ Parameters: {"id"=>"1-1-Buttons"}
3233
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (11.1ms)
3234
+ Completed 500 Internal Server Error in 15ms
3235
+
3236
+ ActionView::Template::Error (undefined local variable or method `elements' for #<#<Class:0x007fddf463df38>:0x007fddf6507dd8>):
3237
+ 1: <%= styleguide_navigation %>
3238
+ 2:
3239
+ 3: <%= render partial: "section", locals: {section: @section} %>
3240
+ /Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:35:in `block in custom_section_navigation'
3241
+ /Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:28:in `each'
3242
+ /Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:28:in `custom_section_navigation'
3243
+ /Users/bobburbach/code/peregrinator/stylin/app/helpers/stylin/navigation_helper.rb:7:in `styleguide_navigation'
3244
+ /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb:1:in `___sers_bobburbach_code_peregrinator_stylin_app_views_stylin_styleguides_show_html_erb__1203711826897602199_70295626463440'
3245
+ actionpack (4.0.2) lib/action_view/template.rb:143:in `block in render'
3246
+ activesupport (4.0.2) lib/active_support/notifications.rb:161:in `instrument'
3247
+ actionpack (4.0.2) lib/action_view/template.rb:141:in `render'
3248
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
3249
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
3250
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
3251
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3252
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
3253
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
3254
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
3255
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
3256
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
3257
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:17:in `render'
3258
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:42:in `render_template'
3259
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:23:in `render'
3260
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:127:in `_render_template'
3261
+ actionpack (4.0.2) lib/action_controller/metal/streaming.rb:219:in `_render_template'
3262
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:120:in `render_to_body'
3263
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
3264
+ actionpack (4.0.2) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
3265
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:97:in `render'
3266
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:16:in `render'
3267
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
3268
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
3269
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
3270
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `ms'
3271
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
3272
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
3273
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
3274
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:40:in `render'
3275
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
3276
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
3277
+ actionpack (4.0.2) lib/abstract_controller/base.rb:189:in `process_action'
3278
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
3279
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
3280
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1658822024935519686__process_action__callbacks'
3281
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
3282
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
3283
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
3284
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
3285
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
3286
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3287
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
3288
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
3289
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
3290
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
3291
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
3292
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
3293
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
3294
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
3295
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
3296
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
3297
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
3298
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
3299
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
3300
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
3301
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
3302
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
3303
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
3304
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
3305
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
3306
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
3307
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
3308
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
3309
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
3310
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
3311
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
3312
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
3313
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
3314
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
3315
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
3316
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
3317
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
3318
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
3319
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
3320
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
3321
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__4171736833687088738__call__callbacks'
3322
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
3323
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3324
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
3325
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
3326
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
3327
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3328
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
3329
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
3330
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
3331
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
3332
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
3333
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
3334
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3335
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3336
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3337
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3338
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3339
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
3340
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3341
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
3342
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
3343
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3344
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3345
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3346
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
3347
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
3348
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
3349
+
3350
+
3351
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
3352
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
3353
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.7ms)
3354
+
3355
+
3356
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-27 16:04:46 -0500
3357
+ Processing by Stylin::StyleguidesController#show as HTML
3358
+ Parameters: {"id"=>"1-1-Buttons"}
3359
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/_section.html.erb (0.4ms)
3360
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (3.1ms)
3361
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/layouts/stylin/_navigation.html.erb (0.0ms)
3362
+ Completed 200 OK in 13ms (Views: 10.0ms | ActiveRecord: 0.0ms)
3363
+
3364
+
3365
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-27 16:04:46 -0500
3366
+
3367
+
3368
+ Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2013-12-27 16:04:46 -0500
3369
+
3370
+
3371
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 16:04:46 -0500
3372
+
3373
+
3374
+ Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2013-12-27 16:04:46 -0500
3375
+
3376
+
3377
+ Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2013-12-27 16:04:46 -0500
3378
+
3379
+
3380
+ Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2013-12-27 16:04:46 -0500
3381
+
3382
+
3383
+ Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2013-12-27 16:04:46 -0500
3384
+
3385
+
3386
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 16:04:46 -0500
3387
+
3388
+
3389
+ Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2013-12-27 16:04:46 -0500
3390
+
3391
+
3392
+ Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2013-12-27 16:04:46 -0500
3393
+
3394
+
3395
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 16:04:46 -0500
3396
+
3397
+
3398
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2013-12-27 16:04:46 -0500
3399
+
3400
+
3401
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 16:04:46 -0500
3402
+
3403
+
3404
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2013-12-27 16:04:46 -0500
3405
+
3406
+
3407
+ Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 16:04:46 -0500
3408
+
3409
+
3410
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-27 16:04:46 -0500
3411
+
3412
+
3413
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-27 16:04:46 -0500
3414
+
3415
+
3416
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-27 16:04:46 -0500
3417
+
3418
+
3419
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-27 16:04:46 -0500
3420
+
3421
+
3422
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-27 16:05:17 -0500
3423
+ Processing by Stylin::StyleguidesController#show as HTML
3424
+ Parameters: {"id"=>"1-1-Buttons"}
3425
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/_section.html.erb (0.4ms)
3426
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (3.1ms)
3427
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/layouts/stylin/_navigation.html.erb (0.0ms)
3428
+ Completed 200 OK in 12ms (Views: 10.0ms | ActiveRecord: 0.0ms)
3429
+
3430
+
3431
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-27 16:05:17 -0500
3432
+
3433
+
3434
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 16:05:17 -0500
3435
+
3436
+
3437
+ Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2013-12-27 16:05:17 -0500
3438
+
3439
+
3440
+ Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2013-12-27 16:05:17 -0500
3441
+
3442
+
3443
+ Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2013-12-27 16:05:17 -0500
3444
+
3445
+
3446
+ Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2013-12-27 16:05:17 -0500
3447
+
3448
+
3449
+ Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2013-12-27 16:05:17 -0500
3450
+
3451
+
3452
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 16:05:17 -0500
3453
+
3454
+
3455
+ Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2013-12-27 16:05:17 -0500
3456
+
3457
+
3458
+ Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2013-12-27 16:05:17 -0500
3459
+
3460
+
3461
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 16:05:17 -0500
3462
+
3463
+
3464
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2013-12-27 16:05:18 -0500
3465
+
3466
+
3467
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 16:05:18 -0500
3468
+
3469
+
3470
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2013-12-27 16:05:18 -0500
3471
+
3472
+
3473
+ Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 16:05:18 -0500
3474
+
3475
+
3476
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-27 16:05:18 -0500
3477
+
3478
+
3479
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-27 16:05:18 -0500
3480
+
3481
+
3482
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-27 16:05:18 -0500
3483
+
3484
+
3485
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-27 16:05:18 -0500
3486
+
3487
+
3488
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-27 16:05:34 -0500
3489
+ Processing by Stylin::StyleguidesController#show as HTML
3490
+ Parameters: {"id"=>"1-1-Buttons"}
3491
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/_section.html.erb (0.4ms)
3492
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (2.8ms)
3493
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/layouts/stylin/_navigation.html.erb (0.0ms)
3494
+ Completed 200 OK in 12ms (Views: 9.9ms | ActiveRecord: 0.0ms)
3495
+
3496
+
3497
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-27 16:05:34 -0500
3498
+
3499
+
3500
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 16:05:34 -0500
3501
+
3502
+
3503
+ Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2013-12-27 16:05:34 -0500
3504
+
3505
+
3506
+ Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2013-12-27 16:05:34 -0500
3507
+
3508
+
3509
+ Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2013-12-27 16:05:34 -0500
3510
+
3511
+
3512
+ Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2013-12-27 16:05:34 -0500
3513
+
3514
+
3515
+ Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2013-12-27 16:05:34 -0500
3516
+
3517
+
3518
+ Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2013-12-27 16:05:34 -0500
3519
+
3520
+
3521
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 16:05:34 -0500
3522
+
3523
+
3524
+ Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2013-12-27 16:05:34 -0500
3525
+
3526
+
3527
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 16:05:34 -0500
3528
+
3529
+
3530
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2013-12-27 16:05:34 -0500
3531
+
3532
+
3533
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2013-12-27 16:05:34 -0500
3534
+
3535
+
3536
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 16:05:34 -0500
3537
+
3538
+
3539
+ Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 16:05:34 -0500
3540
+
3541
+
3542
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-27 16:05:34 -0500
3543
+
3544
+
3545
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-27 16:05:34 -0500
3546
+
3547
+
3548
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-27 16:05:34 -0500
3549
+
3550
+
3551
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-27 16:05:34 -0500
3552
+
3553
+
3554
+ Started GET "/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-29 19:07:11 -0500
3555
+
3556
+ ActionController::RoutingError (No route matches [GET] "/styleguides/1-1-Buttons"):
3557
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
3558
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3559
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
3560
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
3561
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
3562
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
3563
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
3564
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
3565
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3566
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3567
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3568
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3569
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3570
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
3571
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3572
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
3573
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
3574
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3575
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3576
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3577
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
3578
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
3579
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
3580
+
3581
+
3582
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
3583
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.9ms)
3584
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
3585
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (23.7ms)
3586
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (58.6ms)
3587
+
3588
+
3589
+ Started GET "/stylin/styleguides" for 127.0.0.1 at 2013-12-29 20:40:09 -0500
3590
+
3591
+ ActionController::RoutingError (No route matches [GET] "/stylin/styleguides"):
3592
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
3593
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3594
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
3595
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
3596
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
3597
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
3598
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
3599
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
3600
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3601
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3602
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3603
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3604
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3605
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
3606
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3607
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
3608
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
3609
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3610
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3611
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3612
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
3613
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
3614
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
3615
+
3616
+
3617
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
3618
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
3619
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
3620
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
3621
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (14.7ms)
3622
+
3623
+
3624
+ Started GET "/stylin" for 127.0.0.1 at 2013-12-29 20:40:23 -0500
3625
+
3626
+ ActionController::RoutingError (No route matches [GET] "/stylin"):
3627
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
3628
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3629
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
3630
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
3631
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
3632
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
3633
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
3634
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
3635
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3636
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3637
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3638
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3639
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3640
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
3641
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3642
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
3643
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
3644
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3645
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3646
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3647
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
3648
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
3649
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
3650
+
3651
+
3652
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
3653
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
3654
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
3655
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.7ms)
3656
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (12.1ms)
3657
+
3658
+
3659
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-29 20:40:32 -0500
3660
+
3661
+ ActionController::RoutingError (No route matches [GET] "/stylin/styleguides/1-1-Buttons"):
3662
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
3663
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3664
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
3665
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
3666
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
3667
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
3668
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
3669
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
3670
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3671
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3672
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3673
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3674
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3675
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
3676
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3677
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
3678
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
3679
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3680
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3681
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3682
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
3683
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
3684
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
3685
+
3686
+
3687
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
3688
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
3689
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms)
3690
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms)
3691
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (14.6ms)
3692
+
3693
+
3694
+ Started GET "/stylin/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-29 20:40:52 -0500
3695
+
3696
+ ActionController::RoutingError (No route matches [GET] "/stylin/styleguides/1-1-Buttons"):
3697
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
3698
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3699
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
3700
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
3701
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
3702
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
3703
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
3704
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
3705
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3706
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3707
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3708
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3709
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3710
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
3711
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3712
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
3713
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
3714
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3715
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3716
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3717
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
3718
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
3719
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
3720
+
3721
+
3722
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
3723
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
3724
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
3725
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (27.4ms)
3726
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (45.1ms)
3727
+
3728
+
3729
+ Started GET "/styleguides" for 127.0.0.1 at 2013-12-29 20:41:50 -0500
3730
+ Processing by Stylin::StyleguidesController#index as HTML
3731
+ Rendered stylin/styleguides/index.html.erb within layouts/stylin/application (8.6ms)
3732
+ Completed 500 Internal Server Error in 17ms
3733
+
3734
+ ActionView::Template::Error (wrong number of arguments (1 for 0)):
3735
+ 1: <%= styleguide_navigation(styleguide.section_names) %>
3736
+ 2:
3737
+ 3: <div class="col-md-8">
3738
+ 4: Welcome to the customized styleguide.
3739
+ app/views/stylin/styleguides/index.html.erb:1:in `_app_views_stylin_styleguides_index_html_erb___1782290904048785657_70102773838760'
3740
+
3741
+
3742
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
3743
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (17.5ms)
3744
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (24.7ms)
3745
+
3746
+
3747
+ Started GET "/styleguides" for 127.0.0.1 at 2013-12-29 20:42:06 -0500
3748
+ Processing by Stylin::StyleguidesController#index as HTML
3749
+ Rendered stylin/styleguides/index.html.erb within layouts/stylin/application (2.8ms)
3750
+ Rendered layouts/stylin/_navigation.html.erb (0.3ms)
3751
+ Completed 200 OK in 98ms (Views: 97.6ms | ActiveRecord: 0.0ms)
3752
+
3753
+
3754
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-29 20:42:06 -0500
3755
+
3756
+
3757
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-29 20:42:06 -0500
3758
+
3759
+
3760
+ Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2013-12-29 20:42:06 -0500
3761
+
3762
+
3763
+ Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2013-12-29 20:42:06 -0500
3764
+
3765
+
3766
+ Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2013-12-29 20:42:06 -0500
3767
+
3768
+
3769
+ Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2013-12-29 20:42:06 -0500
3770
+
3771
+
3772
+ Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2013-12-29 20:42:06 -0500
3773
+
3774
+
3775
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2013-12-29 20:42:06 -0500
3776
+
3777
+
3778
+ Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2013-12-29 20:42:06 -0500
3779
+
3780
+
3781
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2013-12-29 20:42:06 -0500
3782
+
3783
+
3784
+ Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2013-12-29 20:42:06 -0500
3785
+
3786
+
3787
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2013-12-29 20:42:06 -0500
3788
+
3789
+
3790
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2013-12-29 20:42:06 -0500
3791
+
3792
+
3793
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2013-12-29 20:42:06 -0500
3794
+
3795
+
3796
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-29 20:42:06 -0500
3797
+
3798
+
3799
+ Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-29 20:42:06 -0500
3800
+
3801
+
3802
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-29 20:42:06 -0500
3803
+
3804
+
3805
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-29 20:42:06 -0500
3806
+
3807
+
3808
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-29 20:42:06 -0500
3809
+
3810
+
3811
+ Started GET "/styleguides" for 127.0.0.1 at 2013-12-29 21:10:56 -0500
3812
+ Processing by Stylin::StyleguidesController#index as HTML
3813
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/index.html.erb within layouts/stylin/application (5.6ms)
3814
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/layouts/stylin/_navigation.html.erb (0.3ms)
3815
+ Completed 200 OK in 95ms (Views: 94.5ms | ActiveRecord: 0.0ms)
3816
+
3817
+
3818
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-29 21:10:57 -0500
3819
+
3820
+
3821
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-29 21:10:57 -0500
3822
+
3823
+
3824
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-29 21:10:57 -0500
3825
+
3826
+
3827
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-29 21:10:57 -0500
3828
+
3829
+
3830
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-29 21:10:57 -0500
3831
+
3832
+
3833
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-29 21:10:57 -0500
3834
+
3835
+
3836
+ Started GET "/styleguides" for 127.0.0.1 at 2013-12-29 21:10:58 -0500
3837
+ Processing by Stylin::StyleguidesController#index as HTML
3838
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/index.html.erb within layouts/stylin/application (1.9ms)
3839
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/layouts/stylin/_navigation.html.erb (0.0ms)
3840
+ Completed 200 OK in 6ms (Views: 6.3ms | ActiveRecord: 0.0ms)
3841
+
3842
+
3843
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-29 21:10:58 -0500
3844
+
3845
+
3846
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-29 21:10:58 -0500
3847
+
3848
+
3849
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-29 21:10:58 -0500
3850
+
3851
+
3852
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-29 21:10:58 -0500
3853
+
3854
+
3855
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-29 21:10:58 -0500
3856
+
3857
+
3858
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-29 21:10:58 -0500
3859
+
3860
+
3861
+ Started GET "/styleguides/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-29 21:11:00 -0500
3862
+ Processing by Stylin::StyleguidesController#show as HTML
3863
+ Parameters: {"id"=>"1-1-Buttons"}
3864
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/_section.html.erb (1.0ms)
3865
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (4.2ms)
3866
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/layouts/stylin/_navigation.html.erb (0.0ms)
3867
+ Completed 200 OK in 11ms (Views: 9.5ms | ActiveRecord: 0.0ms)
3868
+
3869
+
3870
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-29 21:11:01 -0500
3871
+
3872
+
3873
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-29 21:11:01 -0500
3874
+
3875
+
3876
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-29 21:11:01 -0500
3877
+
3878
+
3879
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-29 21:11:01 -0500
3880
+
3881
+
3882
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-29 21:11:01 -0500
3883
+
3884
+
3885
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-29 21:11:01 -0500
3886
+
3887
+
3888
+ Started GET "/styleguides/styleguides/1-2-Forms" for 127.0.0.1 at 2013-12-29 21:11:02 -0500
3889
+ Processing by Stylin::StyleguidesController#show as HTML
3890
+ Parameters: {"id"=>"1-2-Forms"}
3891
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/_section.html.erb (0.3ms)
3892
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (2.8ms)
3893
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/layouts/stylin/_navigation.html.erb (0.1ms)
3894
+ Completed 200 OK in 9ms (Views: 7.8ms | ActiveRecord: 0.0ms)
3895
+
3896
+
3897
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-29 21:11:02 -0500
3898
+
3899
+
3900
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-29 21:11:02 -0500
3901
+
3902
+
3903
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-29 21:11:02 -0500
3904
+
3905
+
3906
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-29 21:11:02 -0500
3907
+
3908
+
3909
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-29 21:11:02 -0500
3910
+
3911
+
3912
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-29 21:11:02 -0500
3913
+
3914
+
3915
+ Started GET "/styleguides/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-29 21:11:04 -0500
3916
+ Processing by Stylin::StyleguidesController#show as HTML
3917
+ Parameters: {"id"=>"1-1-Buttons"}
3918
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/_section.html.erb (0.4ms)
3919
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (3.2ms)
3920
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/layouts/stylin/_navigation.html.erb (0.0ms)
3921
+ Completed 200 OK in 10ms (Views: 8.6ms | ActiveRecord: 0.0ms)
3922
+
3923
+
3924
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-29 21:11:04 -0500
3925
+
3926
+
3927
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-29 21:11:04 -0500
3928
+
3929
+
3930
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-29 21:11:04 -0500
3931
+
3932
+
3933
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-29 21:11:04 -0500
3934
+
3935
+
3936
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-29 21:11:04 -0500
3937
+
3938
+
3939
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-29 21:11:04 -0500
3940
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3941
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3942
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3943
+  (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3944
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3945
+  (0.1ms) SELECT version FROM "schema_migrations"
3946
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
3947
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3948
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3949
+  (0.1ms) SELECT version FROM "schema_migrations"
3950
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
3951
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3952
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3953
+  (0.1ms) SELECT version FROM "schema_migrations"
3954
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
3955
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3956
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3957
+  (0.1ms) SELECT version FROM "schema_migrations"
3958
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
3959
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3960
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3961
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3962
+  (0.1ms) SELECT version FROM "schema_migrations"
3963
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
3964
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3965
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3966
+  (0.1ms) SELECT version FROM "schema_migrations"
3967
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
3968
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3969
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3970
+  (0.1ms) SELECT version FROM "schema_migrations"
3971
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
3972
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3973
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3974
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3975
+  (0.1ms) SELECT version FROM "schema_migrations"
3976
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
3977
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3978
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3979
+  (0.1ms) SELECT version FROM "schema_migrations"
3980
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
3981
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3982
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3983
+  (0.1ms) SELECT version FROM "schema_migrations"
3984
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
3985
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3986
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3987
+  (0.1ms) SELECT version FROM "schema_migrations"
3988
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
3989
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3990
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3991
+  (0.1ms) SELECT version FROM "schema_migrations"
3992
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
3993
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3994
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3995
+  (0.1ms) SELECT version FROM "schema_migrations"
3996
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
3997
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3998
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3999
+  (0.1ms) SELECT version FROM "schema_migrations"
4000
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
4001
+
4002
+
4003
+ Started GET "/styleguides/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-29 22:19:03 -0500
4004
+ Processing by Stylin::StyleguidesController#show as HTML
4005
+ Parameters: {"id"=>"1-1-Buttons"}
4006
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/_section.html.erb (1.0ms)
4007
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (9.4ms)
4008
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/layouts/stylin/_navigation.html.erb (0.5ms)
4009
+ Completed 200 OK in 58ms (Views: 56.0ms | ActiveRecord: 0.0ms)
4010
+
4011
+
4012
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-29 22:19:04 -0500
4013
+
4014
+
4015
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-29 22:19:04 -0500
4016
+
4017
+
4018
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-29 22:19:04 -0500
4019
+
4020
+
4021
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-29 22:19:04 -0500
4022
+
4023
+
4024
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-29 22:19:04 -0500
4025
+
4026
+
4027
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-29 22:19:04 -0500
4028
+
4029
+
4030
+ Started GET "/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-29 22:19:08 -0500
4031
+
4032
+ ActionController::RoutingError (No route matches [GET] "/styleguides/1-1-Buttons"):
4033
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
4034
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
4035
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
4036
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
4037
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
4038
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
4039
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
4040
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
4041
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
4042
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
4043
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
4044
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
4045
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
4046
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
4047
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
4048
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
4049
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
4050
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
4051
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
4052
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
4053
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
4054
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
4055
+ /Users/bobburbach/.rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
4056
+
4057
+
4058
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
4059
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
4060
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
4061
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.0ms)
4062
+ Rendered /Users/bobburbach/.rvm/gems/ruby-1.9.3-p429/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (22.3ms)
4063
+
4064
+
4065
+ Started GET "/styleguides/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-29 22:19:14 -0500
4066
+ Processing by Stylin::StyleguidesController#show as HTML
4067
+ Parameters: {"id"=>"1-1-Buttons"}
4068
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/_section.html.erb (0.4ms)
4069
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (2.9ms)
4070
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/layouts/stylin/_navigation.html.erb (0.1ms)
4071
+ Completed 200 OK in 9ms (Views: 7.7ms | ActiveRecord: 0.0ms)
4072
+
4073
+
4074
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-29 22:19:14 -0500
4075
+
4076
+
4077
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-29 22:19:14 -0500
4078
+
4079
+
4080
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-29 22:19:14 -0500
4081
+
4082
+
4083
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-29 22:19:14 -0500
4084
+
4085
+
4086
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-29 22:19:14 -0500
4087
+
4088
+
4089
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-29 22:19:14 -0500
4090
+
4091
+
4092
+ Started GET "/styleguides/styleguides/1-2-Forms" for 127.0.0.1 at 2013-12-29 22:19:15 -0500
4093
+ Processing by Stylin::StyleguidesController#show as HTML
4094
+ Parameters: {"id"=>"1-2-Forms"}
4095
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/_section.html.erb (0.4ms)
4096
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (2.7ms)
4097
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/layouts/stylin/_navigation.html.erb (0.0ms)
4098
+ Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.0ms)
4099
+
4100
+
4101
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-29 22:19:15 -0500
4102
+
4103
+
4104
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-29 22:19:15 -0500
4105
+
4106
+
4107
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-29 22:19:15 -0500
4108
+
4109
+
4110
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-29 22:19:15 -0500
4111
+
4112
+
4113
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-29 22:19:15 -0500
4114
+
4115
+
4116
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-29 22:19:15 -0500
4117
+
4118
+
4119
+ Started GET "/styleguides/styleguides/1-1-Buttons" for 127.0.0.1 at 2013-12-29 22:19:16 -0500
4120
+ Processing by Stylin::StyleguidesController#show as HTML
4121
+ Parameters: {"id"=>"1-1-Buttons"}
4122
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/_section.html.erb (0.4ms)
4123
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/stylin/styleguides/show.html.erb within layouts/stylin/application (3.7ms)
4124
+ Rendered /Users/bobburbach/code/peregrinator/stylin/app/views/layouts/stylin/_navigation.html.erb (0.0ms)
4125
+ Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.0ms)
4126
+
4127
+
4128
+ Started GET "/assets/stylin/application.css?body=1" for 127.0.0.1 at 2013-12-29 22:19:16 -0500
4129
+
4130
+
4131
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-29 22:19:16 -0500
4132
+
4133
+
4134
+ Started GET "/assets/stylin/highlight.js?body=1" for 127.0.0.1 at 2013-12-29 22:19:16 -0500
4135
+
4136
+
4137
+ Started GET "/assets/stylin/styleguides.js?body=1" for 127.0.0.1 at 2013-12-29 22:19:16 -0500
4138
+
4139
+
4140
+ Started GET "/assets/stylin/application.js?body=1" for 127.0.0.1 at 2013-12-29 22:19:16 -0500
4141
+
4142
+
4143
+ Started GET "/assets/stylin/kss.js?body=1" for 127.0.0.1 at 2013-12-29 22:19:16 -0500