woo 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (167) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +3 -0
  3. data/Rakefile +20 -0
  4. data/app/assets/fonts/styleguide/styleguide.eot +0 -0
  5. data/app/assets/fonts/styleguide/styleguide.json +231 -0
  6. data/app/assets/fonts/styleguide/styleguide.svg +18 -0
  7. data/app/assets/fonts/styleguide/styleguide.ttf +0 -0
  8. data/app/assets/fonts/styleguide/styleguide.woff +0 -0
  9. data/app/assets/javascripts/styleguide/application.js +18555 -0
  10. data/app/assets/stylesheets/styleguide/application.css.scss +20 -0
  11. data/app/assets/stylesheets/styleguide/config/_colors.scss +47 -0
  12. data/app/assets/stylesheets/styleguide/config/_fonts.scss +14 -0
  13. data/app/assets/stylesheets/styleguide/config/_icons.scss +20 -0
  14. data/app/assets/stylesheets/styleguide/config/_media-queries.scss +31 -0
  15. data/app/assets/stylesheets/styleguide/config/_settings.scss +1 -0
  16. data/app/assets/stylesheets/styleguide/lib/_animation-mixins.scss +49 -0
  17. data/app/assets/stylesheets/styleguide/lib/_functions.scss +13 -0
  18. data/app/assets/stylesheets/styleguide/lib/_icon-factory.scss +58 -0
  19. data/app/assets/stylesheets/styleguide/mixins/_color-block.scss +24 -0
  20. data/app/assets/stylesheets/styleguide/mixins/_hover-border.scss +15 -0
  21. data/app/assets/stylesheets/styleguide/partials/_main.scss +268 -0
  22. data/app/controllers/styleguide/application_controller.rb +4 -0
  23. data/app/controllers/styleguide/styleguide_controller.rb +16 -0
  24. data/app/helpers/styleguide/application_helper.rb +4 -0
  25. data/app/helpers/styleguide/styleguide_helper.rb +71 -0
  26. data/app/views/layouts/styleguide/application.html.haml +13 -0
  27. data/app/views/styleguide/shared/_navigation.html.haml +26 -0
  28. data/app/views/styleguide/shared/_navigation_link.html.haml +2 -0
  29. data/app/views/styleguide/shared/_single_page.html.haml +21 -0
  30. data/app/views/styleguide/styleguide/index.html.haml +3 -0
  31. data/config/routes.rb +3 -0
  32. data/lib/styleguide/engine.rb +12 -0
  33. data/lib/styleguide/version.rb +3 -0
  34. data/lib/styleguide.rb +7 -0
  35. data/lib/tasks/styleguide_tasks.rake +4 -0
  36. data/spec/dummy/README.rdoc +28 -0
  37. data/spec/dummy/Rakefile +6 -0
  38. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  39. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  40. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  41. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  42. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  43. data/spec/dummy/bin/bundle +3 -0
  44. data/spec/dummy/bin/rails +4 -0
  45. data/spec/dummy/bin/rake +4 -0
  46. data/spec/dummy/config/application.rb +23 -0
  47. data/spec/dummy/config/boot.rb +5 -0
  48. data/spec/dummy/config/database.yml +25 -0
  49. data/spec/dummy/config/environment.rb +5 -0
  50. data/spec/dummy/config/environments/development.rb +37 -0
  51. data/spec/dummy/config/environments/production.rb +78 -0
  52. data/spec/dummy/config/environments/test.rb +39 -0
  53. data/spec/dummy/config/initializers/assets.rb +8 -0
  54. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  55. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  56. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  57. data/spec/dummy/config/initializers/inflections.rb +16 -0
  58. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  59. data/spec/dummy/config/initializers/session_store.rb +3 -0
  60. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  61. data/spec/dummy/config/locales/en.yml +23 -0
  62. data/spec/dummy/config/routes.rb +3 -0
  63. data/spec/dummy/config/secrets.yml +22 -0
  64. data/spec/dummy/config.ru +4 -0
  65. data/spec/dummy/db/test.sqlite3 +0 -0
  66. data/spec/dummy/log/test.log +358 -0
  67. data/spec/dummy/public/404.html +67 -0
  68. data/spec/dummy/public/422.html +67 -0
  69. data/spec/dummy/public/500.html +66 -0
  70. data/spec/dummy/public/favicon.ico +0 -0
  71. data/spec/dummy/tmp/cache/assets/test/sass/1801d541a5989ffaf7492457e257ec09b687cdef/_animation-mixins.scssc +0 -0
  72. data/spec/dummy/tmp/cache/assets/test/sass/1801d541a5989ffaf7492457e257ec09b687cdef/_functions.scssc +0 -0
  73. data/spec/dummy/tmp/cache/assets/test/sass/1801d541a5989ffaf7492457e257ec09b687cdef/_icon-factory.scssc +0 -0
  74. data/spec/dummy/tmp/cache/assets/test/sass/2708ff5ff5ba63039f9a086efdcf7c87d1a66b67/_animation.scssc +0 -0
  75. data/spec/dummy/tmp/cache/assets/test/sass/2708ff5ff5ba63039f9a086efdcf7c87d1a66b67/_appearance.scssc +0 -0
  76. data/spec/dummy/tmp/cache/assets/test/sass/2708ff5ff5ba63039f9a086efdcf7c87d1a66b67/_backface-visibility.scssc +0 -0
  77. data/spec/dummy/tmp/cache/assets/test/sass/2708ff5ff5ba63039f9a086efdcf7c87d1a66b67/_background-image.scssc +0 -0
  78. data/spec/dummy/tmp/cache/assets/test/sass/2708ff5ff5ba63039f9a086efdcf7c87d1a66b67/_background.scssc +0 -0
  79. data/spec/dummy/tmp/cache/assets/test/sass/2708ff5ff5ba63039f9a086efdcf7c87d1a66b67/_border-image.scssc +0 -0
  80. data/spec/dummy/tmp/cache/assets/test/sass/2708ff5ff5ba63039f9a086efdcf7c87d1a66b67/_border-radius.scssc +0 -0
  81. data/spec/dummy/tmp/cache/assets/test/sass/2708ff5ff5ba63039f9a086efdcf7c87d1a66b67/_box-sizing.scssc +0 -0
  82. data/spec/dummy/tmp/cache/assets/test/sass/2708ff5ff5ba63039f9a086efdcf7c87d1a66b67/_calc.scssc +0 -0
  83. data/spec/dummy/tmp/cache/assets/test/sass/2708ff5ff5ba63039f9a086efdcf7c87d1a66b67/_columns.scssc +0 -0
  84. data/spec/dummy/tmp/cache/assets/test/sass/2708ff5ff5ba63039f9a086efdcf7c87d1a66b67/_filter.scssc +0 -0
  85. data/spec/dummy/tmp/cache/assets/test/sass/2708ff5ff5ba63039f9a086efdcf7c87d1a66b67/_flex-box.scssc +0 -0
  86. data/spec/dummy/tmp/cache/assets/test/sass/2708ff5ff5ba63039f9a086efdcf7c87d1a66b67/_font-face.scssc +0 -0
  87. data/spec/dummy/tmp/cache/assets/test/sass/2708ff5ff5ba63039f9a086efdcf7c87d1a66b67/_font-feature-settings.scssc +0 -0
  88. data/spec/dummy/tmp/cache/assets/test/sass/2708ff5ff5ba63039f9a086efdcf7c87d1a66b67/_hidpi-media-query.scssc +0 -0
  89. data/spec/dummy/tmp/cache/assets/test/sass/2708ff5ff5ba63039f9a086efdcf7c87d1a66b67/_hyphens.scssc +0 -0
  90. data/spec/dummy/tmp/cache/assets/test/sass/2708ff5ff5ba63039f9a086efdcf7c87d1a66b67/_image-rendering.scssc +0 -0
  91. data/spec/dummy/tmp/cache/assets/test/sass/2708ff5ff5ba63039f9a086efdcf7c87d1a66b67/_inline-block.scssc +0 -0
  92. data/spec/dummy/tmp/cache/assets/test/sass/2708ff5ff5ba63039f9a086efdcf7c87d1a66b67/_keyframes.scssc +0 -0
  93. data/spec/dummy/tmp/cache/assets/test/sass/2708ff5ff5ba63039f9a086efdcf7c87d1a66b67/_linear-gradient.scssc +0 -0
  94. data/spec/dummy/tmp/cache/assets/test/sass/2708ff5ff5ba63039f9a086efdcf7c87d1a66b67/_perspective.scssc +0 -0
  95. data/spec/dummy/tmp/cache/assets/test/sass/2708ff5ff5ba63039f9a086efdcf7c87d1a66b67/_placeholder.scssc +0 -0
  96. data/spec/dummy/tmp/cache/assets/test/sass/2708ff5ff5ba63039f9a086efdcf7c87d1a66b67/_radial-gradient.scssc +0 -0
  97. data/spec/dummy/tmp/cache/assets/test/sass/2708ff5ff5ba63039f9a086efdcf7c87d1a66b67/_transform.scssc +0 -0
  98. data/spec/dummy/tmp/cache/assets/test/sass/2708ff5ff5ba63039f9a086efdcf7c87d1a66b67/_transition.scssc +0 -0
  99. data/spec/dummy/tmp/cache/assets/test/sass/2708ff5ff5ba63039f9a086efdcf7c87d1a66b67/_user-select.scssc +0 -0
  100. data/spec/dummy/tmp/cache/assets/test/sass/2b2790ec8b4cd70e250a13b83f1c029cb40c65fd/_main.scssc +0 -0
  101. data/spec/dummy/tmp/cache/assets/test/sass/38b68d2bc0adfc5c693bdbe45080166bf5ba79fe/_gradient-positions-parser.scssc +0 -0
  102. data/spec/dummy/tmp/cache/assets/test/sass/38b68d2bc0adfc5c693bdbe45080166bf5ba79fe/_linear-positions-parser.scssc +0 -0
  103. data/spec/dummy/tmp/cache/assets/test/sass/38b68d2bc0adfc5c693bdbe45080166bf5ba79fe/_radial-arg-parser.scssc +0 -0
  104. data/spec/dummy/tmp/cache/assets/test/sass/38b68d2bc0adfc5c693bdbe45080166bf5ba79fe/_radial-positions-parser.scssc +0 -0
  105. data/spec/dummy/tmp/cache/assets/test/sass/38b68d2bc0adfc5c693bdbe45080166bf5ba79fe/_render-gradients.scssc +0 -0
  106. data/spec/dummy/tmp/cache/assets/test/sass/38b68d2bc0adfc5c693bdbe45080166bf5ba79fe/_shape-size-stripper.scssc +0 -0
  107. data/spec/dummy/tmp/cache/assets/test/sass/3e654c1f9e7d6749b1bdb09c28dbfd60292cf201/_bourbon-deprecated-upcoming.scssc +0 -0
  108. data/spec/dummy/tmp/cache/assets/test/sass/3e654c1f9e7d6749b1bdb09c28dbfd60292cf201/_bourbon.scssc +0 -0
  109. data/spec/dummy/tmp/cache/assets/test/sass/3e924086eaf4a69990f259d1480dde032b0049c0/_color-block.scssc +0 -0
  110. data/spec/dummy/tmp/cache/assets/test/sass/3e924086eaf4a69990f259d1480dde032b0049c0/_hover-border.scssc +0 -0
  111. data/spec/dummy/tmp/cache/assets/test/sass/6ae24caf21d9a373ddab51a973badb8787d497db/_button.scssc +0 -0
  112. data/spec/dummy/tmp/cache/assets/test/sass/6ae24caf21d9a373ddab51a973badb8787d497db/_clearfix.scssc +0 -0
  113. data/spec/dummy/tmp/cache/assets/test/sass/6ae24caf21d9a373ddab51a973badb8787d497db/_directional-values.scssc +0 -0
  114. data/spec/dummy/tmp/cache/assets/test/sass/6ae24caf21d9a373ddab51a973badb8787d497db/_ellipsis.scssc +0 -0
  115. data/spec/dummy/tmp/cache/assets/test/sass/6ae24caf21d9a373ddab51a973badb8787d497db/_font-family.scssc +0 -0
  116. data/spec/dummy/tmp/cache/assets/test/sass/6ae24caf21d9a373ddab51a973badb8787d497db/_hide-text.scssc +0 -0
  117. data/spec/dummy/tmp/cache/assets/test/sass/6ae24caf21d9a373ddab51a973badb8787d497db/_html5-input-types.scssc +0 -0
  118. data/spec/dummy/tmp/cache/assets/test/sass/6ae24caf21d9a373ddab51a973badb8787d497db/_position.scssc +0 -0
  119. data/spec/dummy/tmp/cache/assets/test/sass/6ae24caf21d9a373ddab51a973badb8787d497db/_prefixer.scssc +0 -0
  120. data/spec/dummy/tmp/cache/assets/test/sass/6ae24caf21d9a373ddab51a973badb8787d497db/_retina-image.scssc +0 -0
  121. data/spec/dummy/tmp/cache/assets/test/sass/6ae24caf21d9a373ddab51a973badb8787d497db/_size.scssc +0 -0
  122. data/spec/dummy/tmp/cache/assets/test/sass/6ae24caf21d9a373ddab51a973badb8787d497db/_timing-functions.scssc +0 -0
  123. data/spec/dummy/tmp/cache/assets/test/sass/6ae24caf21d9a373ddab51a973badb8787d497db/_triangle.scssc +0 -0
  124. data/spec/dummy/tmp/cache/assets/test/sass/6ae24caf21d9a373ddab51a973badb8787d497db/_word-wrap.scssc +0 -0
  125. data/spec/dummy/tmp/cache/assets/test/sass/be657e1ebe76b4319695275b777559a635f0eb0b/_color-lightness.scssc +0 -0
  126. data/spec/dummy/tmp/cache/assets/test/sass/be657e1ebe76b4319695275b777559a635f0eb0b/_flex-grid.scssc +0 -0
  127. data/spec/dummy/tmp/cache/assets/test/sass/be657e1ebe76b4319695275b777559a635f0eb0b/_golden-ratio.scssc +0 -0
  128. data/spec/dummy/tmp/cache/assets/test/sass/be657e1ebe76b4319695275b777559a635f0eb0b/_grid-width.scssc +0 -0
  129. data/spec/dummy/tmp/cache/assets/test/sass/be657e1ebe76b4319695275b777559a635f0eb0b/_linear-gradient.scssc +0 -0
  130. data/spec/dummy/tmp/cache/assets/test/sass/be657e1ebe76b4319695275b777559a635f0eb0b/_modular-scale.scssc +0 -0
  131. data/spec/dummy/tmp/cache/assets/test/sass/be657e1ebe76b4319695275b777559a635f0eb0b/_px-to-em.scssc +0 -0
  132. data/spec/dummy/tmp/cache/assets/test/sass/be657e1ebe76b4319695275b777559a635f0eb0b/_px-to-rem.scssc +0 -0
  133. data/spec/dummy/tmp/cache/assets/test/sass/be657e1ebe76b4319695275b777559a635f0eb0b/_radial-gradient.scssc +0 -0
  134. data/spec/dummy/tmp/cache/assets/test/sass/be657e1ebe76b4319695275b777559a635f0eb0b/_strip-units.scssc +0 -0
  135. data/spec/dummy/tmp/cache/assets/test/sass/be657e1ebe76b4319695275b777559a635f0eb0b/_tint-shade.scssc +0 -0
  136. data/spec/dummy/tmp/cache/assets/test/sass/be657e1ebe76b4319695275b777559a635f0eb0b/_transition-property-name.scssc +0 -0
  137. data/spec/dummy/tmp/cache/assets/test/sass/be657e1ebe76b4319695275b777559a635f0eb0b/_unpack.scssc +0 -0
  138. data/spec/dummy/tmp/cache/assets/test/sass/c7efa635f3444096ac687dd06020550ba563f393/application.css.scssc +0 -0
  139. data/spec/dummy/tmp/cache/assets/test/sass/d4acd46669bf2e39dd28e0f4309fe901dcf2ed06/_asset-pipeline.scssc +0 -0
  140. data/spec/dummy/tmp/cache/assets/test/sass/d4acd46669bf2e39dd28e0f4309fe901dcf2ed06/_prefixer.scssc +0 -0
  141. data/spec/dummy/tmp/cache/assets/test/sass/d4acd46669bf2e39dd28e0f4309fe901dcf2ed06/_px-to-em.scssc +0 -0
  142. data/spec/dummy/tmp/cache/assets/test/sass/e392f4294bba0348ea805db6c9152599a2b26b74/_colors.scssc +0 -0
  143. data/spec/dummy/tmp/cache/assets/test/sass/e392f4294bba0348ea805db6c9152599a2b26b74/_fonts.scssc +0 -0
  144. data/spec/dummy/tmp/cache/assets/test/sass/e392f4294bba0348ea805db6c9152599a2b26b74/_icons.scssc +0 -0
  145. data/spec/dummy/tmp/cache/assets/test/sass/e392f4294bba0348ea805db6c9152599a2b26b74/_media-queries.scssc +0 -0
  146. data/spec/dummy/tmp/cache/assets/test/sass/e392f4294bba0348ea805db6c9152599a2b26b74/_settings.scssc +0 -0
  147. data/spec/dummy/tmp/cache/assets/test/sprockets/04acbf5b33b91aa9da1943504eb5afa6 +0 -0
  148. data/spec/dummy/tmp/cache/assets/test/sprockets/1d71d75773f417dbe9b7b77720cdb863 +0 -0
  149. data/spec/dummy/tmp/cache/assets/test/sprockets/228fa94ec3fb3dab5b949ebf68147c9c +0 -0
  150. data/spec/dummy/tmp/cache/assets/test/sprockets/2c7c521501ccfa2acf525bdd77bf3f0a +0 -0
  151. data/spec/dummy/tmp/cache/assets/test/sprockets/376f2aaa806b203d9629b538d1f3c165 +0 -0
  152. data/spec/dummy/tmp/cache/assets/test/sprockets/5984a3df242d59c074b99565aabfc410 +0 -0
  153. data/spec/dummy/tmp/cache/assets/test/sprockets/68a1be219c5f28abde8e508743098849 +0 -0
  154. data/spec/dummy/tmp/cache/assets/test/sprockets/6f8710a7961b83ff2f0745974af3bbc2 +0 -0
  155. data/spec/dummy/tmp/cache/assets/test/sprockets/7eebe4bfaea24e43176732eb5b1c7a1b +0 -0
  156. data/spec/dummy/tmp/cache/assets/test/sprockets/8de6884091cb5b477f1e1e39a7db8119 +0 -0
  157. data/spec/dummy/tmp/cache/assets/test/sprockets/9493130ae6146f32012d474e534555b8 +0 -0
  158. data/spec/dummy/tmp/cache/assets/test/sprockets/b0becd2e3c00668ba309cf65af87e46c +0 -0
  159. data/spec/dummy/tmp/cache/assets/test/sprockets/b27a6ff083e857238d42243a6084f88b +0 -0
  160. data/spec/dummy/tmp/cache/assets/test/sprockets/cd5dcbe2dba335440a63df3c8073b88f +0 -0
  161. data/spec/dummy/tmp/cache/assets/test/sprockets/d72fa45a91193cbd01c52087bdf48251 +0 -0
  162. data/spec/dummy/tmp/cache/assets/test/sprockets/e80af8c6904d4e4a9c5bbfe63774211b +0 -0
  163. data/spec/dummy/tmp/cache/assets/test/sprockets/f12901ffadce417983ed7b4b5b824ce7 +0 -0
  164. data/spec/dummy/tmp/cache/assets/test/sprockets/fc498c3fcba98bece9d2c0f8e8cc7add +0 -0
  165. data/spec/features/styleguide_spec.rb +46 -0
  166. data/spec/spec_helper.rb +18 -0
  167. metadata +522 -0
@@ -0,0 +1,358 @@
1
+  (0.2ms) begin transaction
2
+  (0.0ms) rollback transaction
3
+  (0.2ms) begin transaction
4
+  (0.0ms) rollback transaction
5
+  (0.3ms) begin transaction
6
+  (0.0ms) rollback transaction
7
+  (0.2ms) begin transaction
8
+  (0.0ms) rollback transaction
9
+  (0.2ms) begin transaction
10
+  (0.0ms) rollback transaction
11
+  (0.2ms) begin transaction
12
+ Started GET "/" for 127.0.0.1 at 2014-09-27 18:51:54 -0500
13
+  (0.1ms) rollback transaction
14
+  (0.2ms) begin transaction
15
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 18:52:44 -0500
16
+ Processing by Styleguide::StyleguideController#index as HTML
17
+ Completed 500 Internal Server Error in 7ms
18
+  (0.0ms) rollback transaction
19
+  (0.2ms) begin transaction
20
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 18:55:33 -0500
21
+ Processing by Styleguide::StyleguideController#index as HTML
22
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.erb (1.3ms)
23
+ Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
24
+  (0.0ms) rollback transaction
25
+  (0.2ms) begin transaction
26
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:00:58 -0500
27
+ Processing by Styleguide::StyleguideController#index as HTML
28
+ Completed 500 Internal Server Error in 7ms
29
+  (0.0ms) rollback transaction
30
+  (0.2ms) begin transaction
31
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:02:25 -0500
32
+ Processing by Styleguide::StyleguideController#index as HTML
33
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation_link.html.haml (0.6ms)
34
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation.html.haml (3.5ms)
35
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_single_page.html.haml (0.0ms)
36
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.haml within layouts/styleguide/application (34.5ms)
37
+ Completed 500 Internal Server Error in 333ms
38
+  (0.1ms) rollback transaction
39
+  (0.2ms) begin transaction
40
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:03:40 -0500
41
+ Processing by Styleguide::StyleguideController#index as HTML
42
+ Completed 500 Internal Server Error in 8ms
43
+  (0.0ms) rollback transaction
44
+  (0.2ms) begin transaction
45
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:05:10 -0500
46
+ Processing by Styleguide::StyleguideController#index as HTML
47
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation_link.html.haml (0.6ms)
48
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation.html.haml (3.9ms)
49
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_single_page.html.haml (0.0ms)
50
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.haml within layouts/styleguide/application (33.0ms)
51
+ Completed 500 Internal Server Error in 193ms
52
+  (0.1ms) rollback transaction
53
+  (0.3ms) begin transaction
54
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:05:34 -0500
55
+ Processing by Styleguide::StyleguideController#index as HTML
56
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation_link.html.haml (0.6ms)
57
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation.html.haml (3.6ms)
58
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_single_page.html.haml (0.0ms)
59
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.haml within layouts/styleguide/application (7.7ms)
60
+ Completed 500 Internal Server Error in 53ms
61
+  (0.0ms) rollback transaction
62
+  (0.2ms) begin transaction
63
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:06:15 -0500
64
+ Processing by Styleguide::StyleguideController#index as HTML
65
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation_link.html.haml (0.6ms)
66
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation.html.haml (3.5ms)
67
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_single_page.html.haml (0.0ms)
68
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.haml within layouts/styleguide/application (7.5ms)
69
+ Completed 200 OK in 505ms (Views: 504.4ms | ActiveRecord: 0.0ms)
70
+  (0.1ms) rollback transaction
71
+  (0.2ms) begin transaction
72
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:09:34 -0500
73
+ Processing by Styleguide::StyleguideController#index as HTML
74
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation_link.html.haml (0.6ms)
75
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation.html.haml (3.4ms)
76
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_single_page.html.haml (0.0ms)
77
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.haml within layouts/styleguide/application (7.4ms)
78
+ Completed 200 OK in 51ms (Views: 50.6ms | ActiveRecord: 0.0ms)
79
+  (0.1ms) rollback transaction
80
+  (0.2ms) begin transaction
81
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:13:05 -0500
82
+ Processing by Styleguide::StyleguideController#index as HTML
83
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation_link.html.haml (0.7ms)
84
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation.html.haml (3.6ms)
85
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_single_page.html.haml (0.0ms)
86
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.haml within layouts/styleguide/application (7.6ms)
87
+ Completed 200 OK in 52ms (Views: 51.6ms | ActiveRecord: 0.0ms)
88
+  (0.1ms) rollback transaction
89
+  (0.3ms) begin transaction
90
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:17:23 -0500
91
+ Processing by Styleguide::StyleguideController#index as HTML
92
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation_link.html.haml (0.8ms)
93
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation.html.haml (3.7ms)
94
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_single_page.html.haml (0.0ms)
95
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.haml within layouts/styleguide/application (7.8ms)
96
+ Completed 200 OK in 54ms (Views: 53.5ms | ActiveRecord: 0.0ms)
97
+  (0.1ms) rollback transaction
98
+  (0.2ms) begin transaction
99
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:42:32 -0500
100
+ Processing by Styleguide::StyleguideController#index as HTML
101
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation_link.html.haml (0.6ms)
102
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation.html.haml (3.7ms)
103
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_single_page.html.haml (0.0ms)
104
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.haml within layouts/styleguide/application (8.1ms)
105
+ Completed 200 OK in 52ms (Views: 52.0ms | ActiveRecord: 0.0ms)
106
+  (0.1ms) rollback transaction
107
+  (0.3ms) begin transaction
108
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:43:48 -0500
109
+ Processing by Styleguide::StyleguideController#index as HTML
110
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation_link.html.haml (0.6ms)
111
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation.html.haml (3.4ms)
112
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_single_page.html.haml (0.0ms)
113
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.haml within layouts/styleguide/application (7.4ms)
114
+ Completed 200 OK in 50ms (Views: 49.5ms | ActiveRecord: 0.0ms)
115
+  (0.1ms) rollback transaction
116
+  (0.4ms) begin transaction
117
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:44:50 -0500
118
+ Processing by Styleguide::StyleguideController#index as HTML
119
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation_link.html.haml (0.7ms)
120
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation.html.haml (3.9ms)
121
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_single_page.html.haml (0.0ms)
122
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.haml within layouts/styleguide/application (8.6ms)
123
+ Completed 200 OK in 54ms (Views: 53.5ms | ActiveRecord: 0.0ms)
124
+  (0.1ms) rollback transaction
125
+  (0.2ms) begin transaction
126
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:45:57 -0500
127
+ Processing by Styleguide::StyleguideController#index as HTML
128
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation_link.html.haml (0.6ms)
129
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation.html.haml (3.5ms)
130
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_single_page.html.haml (0.0ms)
131
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.haml within layouts/styleguide/application (8.0ms)
132
+ Completed 200 OK in 49ms (Views: 49.3ms | ActiveRecord: 0.0ms)
133
+  (0.1ms) rollback transaction
134
+  (0.0ms) begin transaction
135
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:45:57 -0500
136
+ Processing by Styleguide::StyleguideController#index as HTML
137
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation_link.html.haml (0.1ms)
138
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation.html.haml (0.4ms)
139
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_single_page.html.haml (0.0ms)
140
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.haml within layouts/styleguide/application (0.6ms)
141
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
142
+  (0.0ms) rollback transaction
143
+  (0.2ms) begin transaction
144
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:47:17 -0500
145
+ Processing by Styleguide::StyleguideController#index as HTML
146
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation_link.html.haml (0.9ms)
147
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation.html.haml (3.9ms)
148
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_single_page.html.haml (0.0ms)
149
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.haml within layouts/styleguide/application (8.2ms)
150
+ Completed 200 OK in 46ms (Views: 46.2ms | ActiveRecord: 0.0ms)
151
+  (0.1ms) rollback transaction
152
+  (0.0ms) begin transaction
153
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:47:17 -0500
154
+ Processing by Styleguide::StyleguideController#index as HTML
155
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation_link.html.haml (0.1ms)
156
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation.html.haml (0.4ms)
157
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_single_page.html.haml (0.0ms)
158
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.haml within layouts/styleguide/application (0.6ms)
159
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
160
+  (0.0ms) rollback transaction
161
+  (0.3ms) begin transaction
162
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:47:43 -0500
163
+ Processing by Styleguide::StyleguideController#index as HTML
164
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation_link.html.haml (0.7ms)
165
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation.html.haml (3.7ms)
166
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_single_page.html.haml (0.0ms)
167
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.haml within layouts/styleguide/application (7.7ms)
168
+ Completed 200 OK in 51ms (Views: 51.1ms | ActiveRecord: 0.0ms)
169
+  (0.1ms) rollback transaction
170
+  (0.0ms) begin transaction
171
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:47:43 -0500
172
+ Processing by Styleguide::StyleguideController#index as HTML
173
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation_link.html.haml (0.1ms)
174
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation.html.haml (0.4ms)
175
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_single_page.html.haml (0.0ms)
176
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.haml within layouts/styleguide/application (0.6ms)
177
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
178
+  (0.0ms) rollback transaction
179
+  (0.3ms) begin transaction
180
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:48:24 -0500
181
+ Processing by Styleguide::StyleguideController#index as HTML
182
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation_link.html.haml (0.6ms)
183
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation.html.haml (3.6ms)
184
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_single_page.html.haml (0.0ms)
185
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.haml within layouts/styleguide/application (7.5ms)
186
+ Completed 200 OK in 49ms (Views: 49.2ms | ActiveRecord: 0.0ms)
187
+  (0.1ms) rollback transaction
188
+  (0.0ms) begin transaction
189
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:48:24 -0500
190
+ Processing by Styleguide::StyleguideController#index as HTML
191
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation_link.html.haml (0.1ms)
192
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation.html.haml (0.4ms)
193
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_single_page.html.haml (0.0ms)
194
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.haml within layouts/styleguide/application (0.6ms)
195
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
196
+  (0.0ms) rollback transaction
197
+  (0.2ms) begin transaction
198
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:49:15 -0500
199
+ Processing by Styleguide::StyleguideController#index as HTML
200
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation_link.html.haml (1.4ms)
201
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation.html.haml (4.7ms)
202
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_single_page.html.haml (0.0ms)
203
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.haml within layouts/styleguide/application (9.5ms)
204
+ Completed 200 OK in 51ms (Views: 50.8ms | ActiveRecord: 0.0ms)
205
+  (0.1ms) rollback transaction
206
+  (0.0ms) begin transaction
207
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:49:15 -0500
208
+ Processing by Styleguide::StyleguideController#index as HTML
209
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation_link.html.haml (0.1ms)
210
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation.html.haml (0.4ms)
211
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_single_page.html.haml (0.0ms)
212
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.haml within layouts/styleguide/application (0.6ms)
213
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
214
+  (0.0ms) rollback transaction
215
+  (0.3ms) begin transaction
216
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:51:07 -0500
217
+ Processing by Styleguide::StyleguideController#index as HTML
218
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation_link.html.haml (0.7ms)
219
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation.html.haml (3.4ms)
220
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_single_page.html.haml (0.0ms)
221
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.haml within layouts/styleguide/application (7.4ms)
222
+ Completed 200 OK in 48ms (Views: 47.9ms | ActiveRecord: 0.0ms)
223
+  (0.1ms) rollback transaction
224
+  (0.0ms) begin transaction
225
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:51:07 -0500
226
+ Processing by Styleguide::StyleguideController#index as HTML
227
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation_link.html.haml (0.1ms)
228
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation.html.haml (0.4ms)
229
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_single_page.html.haml (0.0ms)
230
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.haml within layouts/styleguide/application (0.6ms)
231
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
232
+  (0.0ms) rollback transaction
233
+  (0.0ms) begin transaction
234
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:51:07 -0500
235
+ Processing by Styleguide::StyleguideController#index as HTML
236
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation_link.html.haml (0.1ms)
237
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation.html.haml (0.4ms)
238
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_single_page.html.haml (0.0ms)
239
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.haml within layouts/styleguide/application (0.6ms)
240
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
241
+  (0.0ms) rollback transaction
242
+  (0.2ms) begin transaction
243
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:53:52 -0500
244
+ Processing by Styleguide::StyleguideController#index as HTML
245
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation_link.html.haml (0.7ms)
246
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation.html.haml (4.2ms)
247
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_single_page.html.haml (0.0ms)
248
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.haml within layouts/styleguide/application (8.3ms)
249
+ Completed 200 OK in 49ms (Views: 48.7ms | ActiveRecord: 0.0ms)
250
+  (0.1ms) rollback transaction
251
+  (0.0ms) begin transaction
252
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:53:52 -0500
253
+ Processing by Styleguide::StyleguideController#index as HTML
254
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation_link.html.haml (0.1ms)
255
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation.html.haml (0.4ms)
256
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_single_page.html.haml (0.0ms)
257
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.haml within layouts/styleguide/application (0.6ms)
258
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
259
+  (0.1ms) rollback transaction
260
+  (0.0ms) begin transaction
261
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:53:52 -0500
262
+ Processing by Styleguide::StyleguideController#index as HTML
263
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation_link.html.haml (0.1ms)
264
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation.html.haml (0.4ms)
265
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_single_page.html.haml (0.0ms)
266
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.haml within layouts/styleguide/application (0.6ms)
267
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
268
+  (0.0ms) rollback transaction
269
+  (0.2ms) begin transaction
270
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:59:25 -0500
271
+ Processing by Styleguide::StyleguideController#index as HTML
272
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation_link.html.haml (0.7ms)
273
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation.html.haml (3.6ms)
274
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_single_page.html.haml (0.0ms)
275
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.haml within layouts/styleguide/application (8.2ms)
276
+ Completed 200 OK in 49ms (Views: 49.0ms | ActiveRecord: 0.0ms)
277
+  (0.1ms) rollback transaction
278
+  (0.0ms) begin transaction
279
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:59:25 -0500
280
+ Processing by Styleguide::StyleguideController#index as HTML
281
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation_link.html.haml (0.1ms)
282
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation.html.haml (0.4ms)
283
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_single_page.html.haml (0.0ms)
284
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.haml within layouts/styleguide/application (0.6ms)
285
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
286
+  (0.0ms) rollback transaction
287
+  (0.0ms) begin transaction
288
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:59:25 -0500
289
+ Processing by Styleguide::StyleguideController#index as HTML
290
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation_link.html.haml (0.1ms)
291
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation.html.haml (0.4ms)
292
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_single_page.html.haml (0.0ms)
293
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.haml within layouts/styleguide/application (0.6ms)
294
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
295
+  (0.0ms) rollback transaction
296
+  (0.0ms) begin transaction
297
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:59:25 -0500
298
+ Processing by Styleguide::StyleguideController#index as HTML
299
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation_link.html.haml (0.1ms)
300
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation.html.haml (0.4ms)
301
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_single_page.html.haml (0.0ms)
302
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.haml within layouts/styleguide/application (0.6ms)
303
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
304
+  (0.0ms) rollback transaction
305
+  (0.0ms) begin transaction
306
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:59:25 -0500
307
+ Processing by Styleguide::StyleguideController#index as HTML
308
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation_link.html.haml (0.1ms)
309
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation.html.haml (0.4ms)
310
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_single_page.html.haml (0.0ms)
311
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.haml within layouts/styleguide/application (0.6ms)
312
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
313
+  (0.0ms) rollback transaction
314
+  (0.0ms) begin transaction
315
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:59:25 -0500
316
+ Processing by Styleguide::StyleguideController#index as HTML
317
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation_link.html.haml (0.1ms)
318
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation.html.haml (0.4ms)
319
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_single_page.html.haml (0.0ms)
320
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.haml within layouts/styleguide/application (0.6ms)
321
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
322
+  (0.0ms) rollback transaction
323
+  (0.0ms) begin transaction
324
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:59:25 -0500
325
+ Processing by Styleguide::StyleguideController#index as HTML
326
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation_link.html.haml (28.2ms)
327
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation.html.haml (28.5ms)
328
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_single_page.html.haml (0.0ms)
329
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.haml within layouts/styleguide/application (28.8ms)
330
+ Completed 200 OK in 30ms (Views: 29.8ms | ActiveRecord: 0.0ms)
331
+  (0.1ms) rollback transaction
332
+  (0.0ms) begin transaction
333
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:59:25 -0500
334
+ Processing by Styleguide::StyleguideController#index as HTML
335
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation_link.html.haml (0.1ms)
336
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation.html.haml (0.4ms)
337
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_single_page.html.haml (0.0ms)
338
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.haml within layouts/styleguide/application (0.7ms)
339
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
340
+  (0.0ms) rollback transaction
341
+  (0.0ms) begin transaction
342
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:59:25 -0500
343
+ Processing by Styleguide::StyleguideController#index as HTML
344
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation_link.html.haml (0.1ms)
345
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation.html.haml (0.4ms)
346
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_single_page.html.haml (0.0ms)
347
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.haml within layouts/styleguide/application (0.6ms)
348
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
349
+  (0.0ms) rollback transaction
350
+  (0.0ms) begin transaction
351
+ Started GET "/styleguide" for 127.0.0.1 at 2014-09-27 19:59:25 -0500
352
+ Processing by Styleguide::StyleguideController#index as HTML
353
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation_link.html.haml (0.1ms)
354
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_navigation.html.haml (0.4ms)
355
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/shared/_single_page.html.haml (0.0ms)
356
+ Rendered /Users/jim/code/styleguide/app/views/styleguide/styleguide/index.html.haml within layouts/styleguide/application (0.6ms)
357
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
358
+  (0.0ms) rollback transaction
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/404.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The page you were looking for doesn't exist.</h1>
62
+ <p>You may have mistyped the address or the page may have moved.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/422.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The change you wanted was rejected.</h1>
62
+ <p>Maybe you tried to change something you didn't have access to.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,66 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/500.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>We're sorry, but something went wrong.</h1>
62
+ </div>
63
+ <p>If you are the application owner check the logs for more information.</p>
64
+ </div>
65
+ </body>
66
+ </html>
File without changes