showboat 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (382) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.md +119 -0
  3. data/Rakefile +40 -0
  4. data/app/assets/fonts/showboat/helveticaneueltstd-bd-webfont.eot +0 -0
  5. data/app/assets/fonts/showboat/helveticaneueltstd-bd-webfont.svg +231 -0
  6. data/app/assets/fonts/showboat/helveticaneueltstd-bd-webfont.ttf +0 -0
  7. data/app/assets/fonts/showboat/helveticaneueltstd-bd-webfont.woff +0 -0
  8. data/app/assets/fonts/showboat/helveticaneueltstd-roman-webfont.eot +0 -0
  9. data/app/assets/fonts/showboat/helveticaneueltstd-roman-webfont.svg +231 -0
  10. data/app/assets/fonts/showboat/helveticaneueltstd-roman-webfont.ttf +0 -0
  11. data/app/assets/fonts/showboat/helveticaneueltstd-roman-webfont.woff +0 -0
  12. data/app/assets/fonts/showboat/helveticaneueltstdth.eot +0 -0
  13. data/app/assets/fonts/showboat/helveticaneueltstdth.svg +144 -0
  14. data/app/assets/fonts/showboat/helveticaneueltstdth.ttf +0 -0
  15. data/app/assets/fonts/showboat/helveticaneueltstdth.woff +0 -0
  16. data/app/assets/fonts/showboat/mrseavesbold-webfont.eot +0 -0
  17. data/app/assets/fonts/showboat/mrseavesbold-webfont.svg +228 -0
  18. data/app/assets/fonts/showboat/mrseavesbold-webfont.ttf +0 -0
  19. data/app/assets/fonts/showboat/mrseavesbold-webfont.woff +0 -0
  20. data/app/assets/images/showboat/fpo/fpo-handheld-3up.png +0 -0
  21. data/app/assets/images/showboat/fpo/fpo-monitor.png +0 -0
  22. data/app/assets/images/showboat/fpo/fpo-tablet-handheld-duals.png +0 -0
  23. data/app/assets/images/showboat/fpo/fpo-tablet-handheld-laptop.png +0 -0
  24. data/app/assets/images/showboat/title-smoke.png +0 -0
  25. data/app/assets/javascripts/showboat/index.coffee +4 -0
  26. data/app/assets/javascripts/showboat/plugins/help_modal.coffee +67 -0
  27. data/app/assets/javascripts/showboat/plugins/page_title.coffee +13 -0
  28. data/app/assets/javascripts/showboat/plugins/responsive_frame.coffee +38 -0
  29. data/app/assets/javascripts/showboat/plugins/slide_heading.coffee +28 -0
  30. data/app/assets/stylesheets/showboat/base/_components.sass +29 -0
  31. data/app/assets/stylesheets/showboat/base/_config.sass +44 -0
  32. data/app/assets/stylesheets/showboat/base/_highlight.sass +116 -0
  33. data/app/assets/stylesheets/showboat/base/_mixins.sass +33 -0
  34. data/app/assets/stylesheets/showboat/base/_normalize.sass +114 -0
  35. data/app/assets/stylesheets/showboat/base/_scaffold.sass +77 -0
  36. data/app/assets/stylesheets/showboat/base/_table.sass +35 -0
  37. data/app/assets/stylesheets/showboat/base/_typography.sass +210 -0
  38. data/app/assets/stylesheets/showboat/index.sass +45 -0
  39. data/app/assets/stylesheets/showboat/print/_print.sass +95 -0
  40. data/app/assets/stylesheets/showboat/reveal/_background.sass +15 -0
  41. data/app/assets/stylesheets/showboat/reveal/_controls.sass +48 -0
  42. data/app/assets/stylesheets/showboat/reveal/_fallback.sass +26 -0
  43. data/app/assets/stylesheets/showboat/reveal/_fragments.sass +47 -0
  44. data/app/assets/stylesheets/showboat/reveal/_notes.sass +3 -0
  45. data/app/assets/stylesheets/showboat/reveal/_overview.sass +34 -0
  46. data/app/assets/stylesheets/showboat/reveal/_paused.sass +18 -0
  47. data/app/assets/stylesheets/showboat/reveal/_progress.sass +26 -0
  48. data/app/assets/stylesheets/showboat/reveal/_roll.sass +36 -0
  49. data/app/assets/stylesheets/showboat/reveal/_slides.sass +55 -0
  50. data/app/assets/stylesheets/showboat/reveal/_zoomed.sass +22 -0
  51. data/app/assets/stylesheets/showboat/reveal/transitions/_concave.sass +12 -0
  52. data/app/assets/stylesheets/showboat/reveal/transitions/_default.sass +20 -0
  53. data/app/assets/stylesheets/showboat/reveal/transitions/_fade.sass +11 -0
  54. data/app/assets/stylesheets/showboat/reveal/transitions/_linear.sass +12 -0
  55. data/app/assets/stylesheets/showboat/reveal/transitions/_none.sass +4 -0
  56. data/app/assets/stylesheets/showboat/reveal/transitions/_zoom.sass +16 -0
  57. data/app/assets/stylesheets/showboat/templates/_background.sass +9 -0
  58. data/app/assets/stylesheets/showboat/templates/_columns.sass +26 -0
  59. data/app/assets/stylesheets/showboat/templates/_copy.sass +27 -0
  60. data/app/assets/stylesheets/showboat/templates/_end.sass +46 -0
  61. data/app/assets/stylesheets/showboat/templates/_help_modal.sass +21 -0
  62. data/app/assets/stylesheets/showboat/templates/_list.sass +47 -0
  63. data/app/assets/stylesheets/showboat/templates/_media.sass +19 -0
  64. data/app/assets/stylesheets/showboat/templates/_slide_header.sass +44 -0
  65. data/app/assets/stylesheets/showboat/templates/_title.sass +78 -0
  66. data/app/controllers/showboat/application_controller.rb +4 -0
  67. data/app/helpers/showboat/application_helper.rb +4 -0
  68. data/app/views/layouts/showboat/application.html.erb +14 -0
  69. data/config/initializers/haml_markdown.rb +18 -0
  70. data/config/routes.rb +2 -0
  71. data/lib/generators/showboat/install/install_generator.rb +36 -0
  72. data/lib/generators/showboat/slide/slide_generator.rb +85 -0
  73. data/lib/showboat.rb +3 -0
  74. data/lib/showboat/engine.rb +13 -0
  75. data/lib/showboat/version.rb +3 -0
  76. data/lib/tasks/showboat_tasks.rake +4 -0
  77. data/spec/dummy/README.md +6 -0
  78. data/spec/dummy/Rakefile +7 -0
  79. data/spec/dummy/app/assets/javascripts/application.coffee +37 -0
  80. data/spec/dummy/app/assets/stylesheets/application.sass +1 -0
  81. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  82. data/spec/dummy/app/controllers/showboat_controller.rb +10 -0
  83. data/spec/dummy/app/views/layouts/application.html.haml +34 -0
  84. data/spec/dummy/app/views/showboat/index.html.haml +199 -0
  85. data/spec/dummy/config.ru +4 -0
  86. data/spec/dummy/config/application.rb +59 -0
  87. data/spec/dummy/config/boot.rb +10 -0
  88. data/spec/dummy/config/database.yml +25 -0
  89. data/spec/dummy/config/environment.rb +5 -0
  90. data/spec/dummy/config/environments/development.rb +37 -0
  91. data/spec/dummy/config/environments/production.rb +67 -0
  92. data/spec/dummy/config/environments/test.rb +37 -0
  93. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  94. data/spec/dummy/config/initializers/inflections.rb +15 -0
  95. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  96. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  97. data/spec/dummy/config/initializers/session_store.rb +8 -0
  98. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  99. data/spec/dummy/config/locales/en.yml +5 -0
  100. data/spec/dummy/config/routes.rb +4 -0
  101. data/spec/dummy/db/development.sqlite3 +0 -0
  102. data/spec/dummy/log/development.log +157480 -0
  103. data/spec/dummy/public/404.html +27 -0
  104. data/spec/dummy/public/422.html +27 -0
  105. data/spec/dummy/public/500.html +27 -0
  106. data/spec/dummy/public/apple-touch-icon-114x114-precomposed.png +0 -0
  107. data/spec/dummy/public/apple-touch-icon-57x57-precomposed.png +0 -0
  108. data/spec/dummy/public/apple-touch-icon-72x72-precomposed.png +0 -0
  109. data/spec/dummy/public/apple-touch-icon-precomposed.png +0 -0
  110. data/spec/dummy/public/apple-touch-icon.png +0 -0
  111. data/spec/dummy/public/apple-touch-startup-image.png +0 -0
  112. data/spec/dummy/public/error.html +27 -0
  113. data/spec/dummy/public/favicon.ico +0 -0
  114. data/spec/dummy/public/maintenance.html +27 -0
  115. data/spec/dummy/public/plugin/notes/notes.html +164 -0
  116. data/spec/dummy/script/rails +6 -0
  117. data/spec/dummy/tmp/cache/assets/BC5/EA0/sprockets%2F396331100850767196805c48a84d923c +0 -0
  118. data/spec/dummy/tmp/cache/assets/C39/AE0/sprockets%2Fc9929731b13502d2112e0330af38406d +0 -0
  119. data/spec/dummy/tmp/cache/assets/C55/CC0/sprockets%2F1b022528431fe26445059c7de1b86979 +0 -0
  120. data/spec/dummy/tmp/cache/assets/C5A/2C0/sprockets%2F22e6b9f9850f824651e71f93232317d3 +0 -0
  121. data/spec/dummy/tmp/cache/assets/C5D/3A0/sprockets%2F415d262fd085148b572379f1715f66c9 +0 -0
  122. data/spec/dummy/tmp/cache/assets/C66/760/sprockets%2F6c29b616829eb2919a8873c0f6901965 +0 -0
  123. data/spec/dummy/tmp/cache/assets/C6E/DE0/sprockets%2F003a6eade050898216a4c7841260e333 +0 -0
  124. data/spec/dummy/tmp/cache/assets/C75/B50/sprockets%2F8349d20c4bd2a8b734c22c2524505837 +0 -0
  125. data/spec/dummy/tmp/cache/assets/C78/F60/sprockets%2F65b8b28411b1f28309cd16b639018d25 +0 -0
  126. data/spec/dummy/tmp/cache/assets/C80/320/sprockets%2F31465e3472ba7b8107814de317f0d795 +0 -0
  127. data/spec/dummy/tmp/cache/assets/C84/E90/sprockets%2Fee225e74535a5fae994374442425525a +0 -0
  128. data/spec/dummy/tmp/cache/assets/C86/CA0/sprockets%2F5ffbb5a312d53934d4593744f0499180 +0 -0
  129. data/spec/dummy/tmp/cache/assets/C88/4E0/sprockets%2Fe61736046957de7474fc5b27c1a10739 +0 -0
  130. data/spec/dummy/tmp/cache/assets/C95/800/sprockets%2F1a477e6a50e20fe431f4135fa5503120 +0 -0
  131. data/spec/dummy/tmp/cache/assets/C9A/930/sprockets%2F89f5d870de3804e438454e7f8d731580 +0 -0
  132. data/spec/dummy/tmp/cache/assets/CA3/C60/sprockets%2F12631a609d0276caae56c0793c13f708 +0 -0
  133. data/spec/dummy/tmp/cache/assets/CA8/BF0/sprockets%2F54e44444f94dbd1dba146532344256b6 +0 -0
  134. data/spec/dummy/tmp/cache/assets/CB0/130/sprockets%2Fd87810c66e05721ba749c5901c1af296 +0 -0
  135. data/spec/dummy/tmp/cache/assets/CB7/D30/sprockets%2Faaffd804550d3896779c1229c435318b +0 -0
  136. data/spec/dummy/tmp/cache/assets/CBA/BC0/sprockets%2F244454639266fc40f243a78b9f64ee3c +0 -0
  137. data/spec/dummy/tmp/cache/assets/CBB/940/sprockets%2Fe587f015479c05af18f022b557d467c9 +0 -0
  138. data/spec/dummy/tmp/cache/assets/CBB/E60/sprockets%2F4bca798c99708d04e009c19d26952b71 +0 -0
  139. data/spec/dummy/tmp/cache/assets/CBE/DD0/sprockets%2F56eccf6ec84179174b80585e2c356722 +0 -0
  140. data/spec/dummy/tmp/cache/assets/CC2/0D0/sprockets%2Fb045d501e60a066e182e52c0ae0b7830 +0 -0
  141. data/spec/dummy/tmp/cache/assets/CC6/820/sprockets%2F857525cdb02332d069114d17aeaaa621 +0 -0
  142. data/spec/dummy/tmp/cache/assets/CD2/A60/sprockets%2Fa1eefc2f0ada053057743535f6982041 +0 -0
  143. data/spec/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  144. data/spec/dummy/tmp/cache/assets/CD9/1A0/sprockets%2F7067a3b40e2fde19db13449069952ba2 +0 -0
  145. data/spec/dummy/tmp/cache/assets/CD9/590/sprockets%2F404c66ea276b19d52c2c13b2389f2a58 +0 -0
  146. data/spec/dummy/tmp/cache/assets/CDC/140/sprockets%2F9f1b0664b390078308ae0c9b86ac84d0 +0 -0
  147. data/spec/dummy/tmp/cache/assets/CE3/000/sprockets%2Fa88d9c609d05fcc4670c8742b41816c0 +0 -0
  148. data/spec/dummy/tmp/cache/assets/CE3/590/sprockets%2F60f1e97d7008b3ed41f72855a4228bb9 +0 -0
  149. data/spec/dummy/tmp/cache/assets/CE4/490/sprockets%2Fd8731a7a6904c6a132b5fe174977de34 +0 -0
  150. data/spec/dummy/tmp/cache/assets/CE5/C20/sprockets%2F0712261a5d9ba99da728186ac589d44c +0 -0
  151. data/spec/dummy/tmp/cache/assets/CE6/570/sprockets%2Fc4a3a8424090ff40f73afff404987268 +0 -0
  152. data/spec/dummy/tmp/cache/assets/CF2/770/sprockets%2F53caa55bfd741b6e4664516966669a9f +0 -0
  153. data/spec/dummy/tmp/cache/assets/CF2/F10/sprockets%2Fff88290cda75614c55d61b4769b5379b +0 -0
  154. data/spec/dummy/tmp/cache/assets/CF7/F40/sprockets%2Ff29c748a86cd0d8731b6129737f4e67f +0 -0
  155. data/spec/dummy/tmp/cache/assets/CF9/140/sprockets%2Fa7fd864e775793e5d97080ab42ed2398 +0 -0
  156. data/spec/dummy/tmp/cache/assets/D02/520/sprockets%2F7b90b033b136a03468ec7442b4c6ee4d +0 -0
  157. data/spec/dummy/tmp/cache/assets/D0A/620/sprockets%2F0b8229915ac0cb0409e8b3b29c6849bc +0 -0
  158. data/spec/dummy/tmp/cache/assets/D0E/C20/sprockets%2Fe32564da818fd513bd9e41e90444a0c9 +0 -0
  159. data/spec/dummy/tmp/cache/assets/D0F/6C0/sprockets%2Fc90cd19207cc9e41c91b9d659cc40226 +0 -0
  160. data/spec/dummy/tmp/cache/assets/D11/000/sprockets%2F466e294a5bdd3ab92c5e8d50510c7837 +0 -0
  161. data/spec/dummy/tmp/cache/assets/D15/060/sprockets%2F23d77194d67bbd3b99f907e8ac5a2050 +0 -0
  162. data/spec/dummy/tmp/cache/assets/D19/B00/sprockets%2Fd6486027cd025962c44fba68ec758a4f +0 -0
  163. data/spec/dummy/tmp/cache/assets/D19/E00/sprockets%2Fdd2e0b84727fe298d6dc473d2a679051 +0 -0
  164. data/spec/dummy/tmp/cache/assets/D1A/1C0/sprockets%2F6bb7752eb22de09c3e148f4f5683d727 +0 -0
  165. data/spec/dummy/tmp/cache/assets/D1C/FC0/sprockets%2F796e7aae77c75a02b50628b6c64983cd +0 -0
  166. data/spec/dummy/tmp/cache/assets/D20/470/sprockets%2Ffc9b12288a361f486ce7f3189985d1ba +0 -0
  167. data/spec/dummy/tmp/cache/assets/D23/B10/sprockets%2Fc2a831ed79df487d6485a5c9c52766c2 +0 -0
  168. data/spec/dummy/tmp/cache/assets/D24/310/sprockets%2Febe08f689f659c024f467b77f32a1c49 +0 -0
  169. data/spec/dummy/tmp/cache/assets/D2B/FC0/sprockets%2F276c1cda6a2c7728db36110a5ef71a14 +0 -0
  170. data/spec/dummy/tmp/cache/assets/D31/C70/sprockets%2Fd004233b25dc977d60c1e15ad9d47ae2 +0 -0
  171. data/spec/dummy/tmp/cache/assets/D32/030/sprockets%2F3bd6afa18472a7a008f34a4d4d344e82 +0 -0
  172. data/spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  173. data/spec/dummy/tmp/cache/assets/D33/FC0/sprockets%2F83b127eea2aa36c471f50f429ba82d35 +0 -0
  174. data/spec/dummy/tmp/cache/assets/D35/250/sprockets%2F262a63d18103ea6f02a6d285b9bff1f6 +0 -0
  175. data/spec/dummy/tmp/cache/assets/D35/A80/sprockets%2Fa1229356499eb5fe1a2b2d5f1bd0058d +0 -0
  176. data/spec/dummy/tmp/cache/assets/D37/6A0/sprockets%2Fa3e6f5bd2eb1692e1870ff000ee11199 +0 -0
  177. data/spec/dummy/tmp/cache/assets/D39/590/sprockets%2F3e55244d8f2b46272fbd0a94b8c1b46b +0 -0
  178. data/spec/dummy/tmp/cache/assets/D3A/930/sprockets%2Fa28bf3de8b255cddf29106229a07a844 +0 -0
  179. data/spec/dummy/tmp/cache/assets/D3D/960/sprockets%2F981c4da8138e75e223d0c15cd86efb12 +0 -0
  180. data/spec/dummy/tmp/cache/assets/D45/C30/sprockets%2F4831826ee6d84cb31cd879d2a485baa5 +0 -0
  181. data/spec/dummy/tmp/cache/assets/D4B/1F0/sprockets%2F087f04ec46a2ded3f76394f1a3d783e8 +0 -0
  182. data/spec/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  183. data/spec/dummy/tmp/cache/assets/D4E/260/sprockets%2Fc92d2dfe7821d5d8b11648307e6ef97b +0 -0
  184. data/spec/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  185. data/spec/dummy/tmp/cache/assets/D65/BD0/sprockets%2F1373ff33c888f034e03a9cbe3050fdba +0 -0
  186. data/spec/dummy/tmp/cache/assets/D66/550/sprockets%2F63c2d8ce14bfd57b731a211656df1c4f +0 -0
  187. data/spec/dummy/tmp/cache/assets/D69/8D0/sprockets%2Fa72a041b48bcef1be1835c8555a3e89b +0 -0
  188. data/spec/dummy/tmp/cache/assets/D6A/ED0/sprockets%2Fab52a4ddfa39527d953e204a29daf573 +0 -0
  189. data/spec/dummy/tmp/cache/assets/D6B/460/sprockets%2Fd03dcf3a5d151f9a4709469c5a29a6ad +0 -0
  190. data/spec/dummy/tmp/cache/assets/D6B/8B0/sprockets%2Fae5042171cbd6c98a6cb918b5f76da41 +0 -0
  191. data/spec/dummy/tmp/cache/assets/D6C/4C0/sprockets%2Ff734dafbbf7ba1d8145b755a286930d2 +0 -0
  192. data/spec/dummy/tmp/cache/assets/D6E/FB0/sprockets%2F49bc50164d477ca864ceae0324dfc8f2 +0 -0
  193. data/spec/dummy/tmp/cache/assets/D6F/380/sprockets%2F8311a5be17a9cfd04abc849c930ad887 +0 -0
  194. data/spec/dummy/tmp/cache/assets/D6F/570/sprockets%2Fd3fed7200420e66c92876afbc5b6e82b +0 -0
  195. data/spec/dummy/tmp/cache/assets/D72/6A0/sprockets%2Ff9182f361559bf6e7e93f2bda6c00cb1 +0 -0
  196. data/spec/dummy/tmp/cache/assets/D78/C60/sprockets%2F8a0057f8446faaa9ec96b941cf58a24e +0 -0
  197. data/spec/dummy/tmp/cache/assets/D79/280/sprockets%2Fd8ff7a55e2a5ba65bc078963b7e0d880 +0 -0
  198. data/spec/dummy/tmp/cache/assets/D7A/960/sprockets%2Ffe2cd2a6c79c71354d57837f7ab1e9e1 +0 -0
  199. data/spec/dummy/tmp/cache/assets/D7A/A40/sprockets%2Fd37dc748445fabc86891dab045d6e45e +0 -0
  200. data/spec/dummy/tmp/cache/assets/D82/770/sprockets%2F2ada034912ca4be0c2e02e69b50d2af8 +0 -0
  201. data/spec/dummy/tmp/cache/assets/D83/010/sprockets%2F43b1d3d52ada3044d0efb41be47b4a92 +0 -0
  202. data/spec/dummy/tmp/cache/assets/D83/490/sprockets%2Fae7bc4997e9b065805a19b74f4cac98f +0 -0
  203. data/spec/dummy/tmp/cache/assets/D83/E10/sprockets%2Fa40f0886cf6a2fe62b29f954c8fc8d39 +0 -0
  204. data/spec/dummy/tmp/cache/assets/D85/370/sprockets%2Fdaff95d4ca4b312048cbaa046410cc55 +0 -0
  205. data/spec/dummy/tmp/cache/assets/D8A/F80/sprockets%2F0ac2da62b833340a95bdea3eb8241dc9 +0 -0
  206. data/spec/dummy/tmp/cache/assets/D92/0B0/sprockets%2Ff0be3f0e2a18ba0ac7edf11980788a70 +0 -0
  207. data/spec/dummy/tmp/cache/assets/D95/BF0/sprockets%2F9db81aec1c1cf8aca7fa063b70326927 +0 -0
  208. data/spec/dummy/tmp/cache/assets/D96/1F0/sprockets%2Ff0202ba84e19c277fab53a5f5459dcac +0 -0
  209. data/spec/dummy/tmp/cache/assets/D9A/620/sprockets%2Fc2a88c9819fe52ecb6223da191cbbc43 +0 -0
  210. data/spec/dummy/tmp/cache/assets/DAA/410/sprockets%2Fe0603ddf70c90cee957f8af2486b7d1f +0 -0
  211. data/spec/dummy/tmp/cache/assets/DAE/3A0/sprockets%2Fb341d914bb4f917eb4c689974bfecfb6 +0 -0
  212. data/spec/dummy/tmp/cache/assets/DB4/460/sprockets%2F35c9f4f6c51502bacb0dcbc1e3a0409c +0 -0
  213. data/spec/dummy/tmp/cache/assets/DB5/EC0/sprockets%2Fe0b7cdc91d68c6914ee9899047aca6ef +0 -0
  214. data/spec/dummy/tmp/cache/assets/DB9/640/sprockets%2F6ea2df5dca5062086aeb221027aeb6fc +0 -0
  215. data/spec/dummy/tmp/cache/assets/DBC/AE0/sprockets%2F03d262eaea4a0b7224726f2cfeddfe23 +0 -0
  216. data/spec/dummy/tmp/cache/assets/DCA/6E0/sprockets%2F4aa0177c9ef68cda43cb8f36baac1188 +0 -0
  217. data/spec/dummy/tmp/cache/assets/DCF/CD0/sprockets%2Fbc68da53b3982993affa5c6c8af1aa05 +0 -0
  218. data/spec/dummy/tmp/cache/assets/DD5/ED0/sprockets%2F06e84e8ad83cbbf17c96f7efb1d4710c +0 -0
  219. data/spec/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  220. data/spec/dummy/tmp/cache/assets/DE4/690/sprockets%2F89d3bd1a70ebeaa2d7aa403d235bdf30 +0 -0
  221. data/spec/dummy/tmp/cache/assets/DE9/260/sprockets%2Fadd025ab0eb13a6d4180af43d5df39df +0 -0
  222. data/spec/dummy/tmp/cache/assets/DE9/AE0/sprockets%2Fa3957aff4a1b7b3dc0454b1c7cc3ae0c +0 -0
  223. data/spec/dummy/tmp/cache/assets/DED/780/sprockets%2Fea021d1d2cd2e6a7df388c24ecba292c +0 -0
  224. data/spec/dummy/tmp/cache/assets/DF5/850/sprockets%2Fb4eb733c5c069d6cbe1ab19bfd0c09e6 +0 -0
  225. data/spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  226. data/spec/dummy/tmp/cache/assets/E06/480/sprockets%2Fa1bc09efdec5e9f9949c60e9aaf56a00 +0 -0
  227. data/spec/dummy/tmp/cache/assets/E07/570/sprockets%2F9c74e972facfeaed57f824cdce32b170 +0 -0
  228. data/spec/dummy/tmp/cache/assets/E0E/7D0/sprockets%2F976faceda9d9fc5ae21e7ba34b2e9991 +0 -0
  229. data/spec/dummy/tmp/cache/assets/E16/C30/sprockets%2F5ef95c29496cf16c784aaf7d9ebad4ed +0 -0
  230. data/spec/dummy/tmp/cache/assets/E24/4F0/sprockets%2Fee2f53d0b6b5c224e6affb7f20b90fea +0 -0
  231. data/spec/dummy/tmp/cache/assets/E71/100/sprockets%2F0ccd0eeb9cb9d9b5afe99f73a6ed5c77 +0 -0
  232. data/spec/dummy/tmp/cache/assets/EC1/A60/sprockets%2F3f8cc15ea8edcb5ffceb9fed28cb062b +0 -0
  233. data/spec/dummy/tmp/cache/sass/0f89833ea6780439905a2deb4cfefaf9fca6e3dc/index.sassc +0 -0
  234. data/spec/dummy/tmp/cache/sass/1259681af9dd649ea0e1ba09ebe3eaca51e6881d/_font-size.sassc +0 -0
  235. data/spec/dummy/tmp/cache/sass/1259681af9dd649ea0e1ba09ebe3eaca51e6881d/_tab-focus.sassc +0 -0
  236. data/spec/dummy/tmp/cache/sass/1259681af9dd649ea0e1ba09ebe3eaca51e6881d/_text-selection.sassc +0 -0
  237. data/spec/dummy/tmp/cache/sass/1259681af9dd649ea0e1ba09ebe3eaca51e6881d/index.sassc +0 -0
  238. data/spec/dummy/tmp/cache/sass/1c78fe76df9fe4cbc6af29cd461379e5aed58fec/_background.sassc +0 -0
  239. data/spec/dummy/tmp/cache/sass/1c78fe76df9fe4cbc6af29cd461379e5aed58fec/_controls.sassc +0 -0
  240. data/spec/dummy/tmp/cache/sass/1c78fe76df9fe4cbc6af29cd461379e5aed58fec/_fallback.sassc +0 -0
  241. data/spec/dummy/tmp/cache/sass/1c78fe76df9fe4cbc6af29cd461379e5aed58fec/_fragments.sassc +0 -0
  242. data/spec/dummy/tmp/cache/sass/1c78fe76df9fe4cbc6af29cd461379e5aed58fec/_notes.sassc +0 -0
  243. data/spec/dummy/tmp/cache/sass/1c78fe76df9fe4cbc6af29cd461379e5aed58fec/_overview.sassc +0 -0
  244. data/spec/dummy/tmp/cache/sass/1c78fe76df9fe4cbc6af29cd461379e5aed58fec/_paused.sassc +0 -0
  245. data/spec/dummy/tmp/cache/sass/1c78fe76df9fe4cbc6af29cd461379e5aed58fec/_progress.sassc +0 -0
  246. data/spec/dummy/tmp/cache/sass/1c78fe76df9fe4cbc6af29cd461379e5aed58fec/_roll.sassc +0 -0
  247. data/spec/dummy/tmp/cache/sass/1c78fe76df9fe4cbc6af29cd461379e5aed58fec/_slides.sassc +0 -0
  248. data/spec/dummy/tmp/cache/sass/1c78fe76df9fe4cbc6af29cd461379e5aed58fec/_zoomed.sassc +0 -0
  249. data/spec/dummy/tmp/cache/sass/3555835e0714c98f0ac72c71330e3ceb01fa3926/_bourbon-deprecated-upcoming.scssc +0 -0
  250. data/spec/dummy/tmp/cache/sass/3555835e0714c98f0ac72c71330e3ceb01fa3926/_bourbon.scssc +0 -0
  251. data/spec/dummy/tmp/cache/sass/3af96e3ffab1f62afeacb24853baa1e7bdc6ea12/_compact.scssc +0 -0
  252. data/spec/dummy/tmp/cache/sass/3af96e3ffab1f62afeacb24853baa1e7bdc6ea12/_deprecated-webkit-gradient.scssc +0 -0
  253. data/spec/dummy/tmp/cache/sass/3af96e3ffab1f62afeacb24853baa1e7bdc6ea12/_flex-grid.scssc +0 -0
  254. data/spec/dummy/tmp/cache/sass/3af96e3ffab1f62afeacb24853baa1e7bdc6ea12/_grid-width.scssc +0 -0
  255. data/spec/dummy/tmp/cache/sass/3af96e3ffab1f62afeacb24853baa1e7bdc6ea12/_linear-gradient.scssc +0 -0
  256. data/spec/dummy/tmp/cache/sass/3af96e3ffab1f62afeacb24853baa1e7bdc6ea12/_modular-scale.scssc +0 -0
  257. data/spec/dummy/tmp/cache/sass/3af96e3ffab1f62afeacb24853baa1e7bdc6ea12/_px-to-em.scssc +0 -0
  258. data/spec/dummy/tmp/cache/sass/3af96e3ffab1f62afeacb24853baa1e7bdc6ea12/_radial-gradient.scssc +0 -0
  259. data/spec/dummy/tmp/cache/sass/3af96e3ffab1f62afeacb24853baa1e7bdc6ea12/_render-gradients.scssc +0 -0
  260. data/spec/dummy/tmp/cache/sass/3af96e3ffab1f62afeacb24853baa1e7bdc6ea12/_tint-shade.scssc +0 -0
  261. data/spec/dummy/tmp/cache/sass/3af96e3ffab1f62afeacb24853baa1e7bdc6ea12/_transition-property-name.scssc +0 -0
  262. data/spec/dummy/tmp/cache/sass/3bb1c0e7654e14c904095eaad2122638d43e3962/_normalize.sassc +0 -0
  263. data/spec/dummy/tmp/cache/sass/3bb1c0e7654e14c904095eaad2122638d43e3962/application.sassc +0 -0
  264. data/spec/dummy/tmp/cache/sass/3bb1c0e7654e14c904095eaad2122638d43e3962/index.sassc +0 -0
  265. data/spec/dummy/tmp/cache/sass/3c891e2b65d3c58927990c26171fc8f2775c8ede/_button.scssc +0 -0
  266. data/spec/dummy/tmp/cache/sass/3c891e2b65d3c58927990c26171fc8f2775c8ede/_clearfix.scssc +0 -0
  267. data/spec/dummy/tmp/cache/sass/3c891e2b65d3c58927990c26171fc8f2775c8ede/_font-family.scssc +0 -0
  268. data/spec/dummy/tmp/cache/sass/3c891e2b65d3c58927990c26171fc8f2775c8ede/_hide-text.scssc +0 -0
  269. data/spec/dummy/tmp/cache/sass/3c891e2b65d3c58927990c26171fc8f2775c8ede/_html5-input-types.scssc +0 -0
  270. data/spec/dummy/tmp/cache/sass/3c891e2b65d3c58927990c26171fc8f2775c8ede/_position.scssc +0 -0
  271. data/spec/dummy/tmp/cache/sass/3c891e2b65d3c58927990c26171fc8f2775c8ede/_prefixer.scssc +0 -0
  272. data/spec/dummy/tmp/cache/sass/3c891e2b65d3c58927990c26171fc8f2775c8ede/_retina-image.scssc +0 -0
  273. data/spec/dummy/tmp/cache/sass/3c891e2b65d3c58927990c26171fc8f2775c8ede/_size.scssc +0 -0
  274. data/spec/dummy/tmp/cache/sass/3c891e2b65d3c58927990c26171fc8f2775c8ede/_timing-functions.scssc +0 -0
  275. data/spec/dummy/tmp/cache/sass/3c891e2b65d3c58927990c26171fc8f2775c8ede/_triangle.scssc +0 -0
  276. data/spec/dummy/tmp/cache/sass/57efa8894f8c995fb8d665d3f19a2c314e640891/_animation.scssc +0 -0
  277. data/spec/dummy/tmp/cache/sass/57efa8894f8c995fb8d665d3f19a2c314e640891/_appearance.scssc +0 -0
  278. data/spec/dummy/tmp/cache/sass/57efa8894f8c995fb8d665d3f19a2c314e640891/_background-image.scssc +0 -0
  279. data/spec/dummy/tmp/cache/sass/57efa8894f8c995fb8d665d3f19a2c314e640891/_background-size.scssc +0 -0
  280. data/spec/dummy/tmp/cache/sass/57efa8894f8c995fb8d665d3f19a2c314e640891/_background.scssc +0 -0
  281. data/spec/dummy/tmp/cache/sass/57efa8894f8c995fb8d665d3f19a2c314e640891/_border-image.scssc +0 -0
  282. data/spec/dummy/tmp/cache/sass/57efa8894f8c995fb8d665d3f19a2c314e640891/_border-radius.scssc +0 -0
  283. data/spec/dummy/tmp/cache/sass/57efa8894f8c995fb8d665d3f19a2c314e640891/_box-sizing.scssc +0 -0
  284. data/spec/dummy/tmp/cache/sass/57efa8894f8c995fb8d665d3f19a2c314e640891/_columns.scssc +0 -0
  285. data/spec/dummy/tmp/cache/sass/57efa8894f8c995fb8d665d3f19a2c314e640891/_flex-box.scssc +0 -0
  286. data/spec/dummy/tmp/cache/sass/57efa8894f8c995fb8d665d3f19a2c314e640891/_font-face.scssc +0 -0
  287. data/spec/dummy/tmp/cache/sass/57efa8894f8c995fb8d665d3f19a2c314e640891/_hidpi-media-query.scssc +0 -0
  288. data/spec/dummy/tmp/cache/sass/57efa8894f8c995fb8d665d3f19a2c314e640891/_image-rendering.scssc +0 -0
  289. data/spec/dummy/tmp/cache/sass/57efa8894f8c995fb8d665d3f19a2c314e640891/_inline-block.scssc +0 -0
  290. data/spec/dummy/tmp/cache/sass/57efa8894f8c995fb8d665d3f19a2c314e640891/_keyframes.scssc +0 -0
  291. data/spec/dummy/tmp/cache/sass/57efa8894f8c995fb8d665d3f19a2c314e640891/_linear-gradient.scssc +0 -0
  292. data/spec/dummy/tmp/cache/sass/57efa8894f8c995fb8d665d3f19a2c314e640891/_perspective.scssc +0 -0
  293. data/spec/dummy/tmp/cache/sass/57efa8894f8c995fb8d665d3f19a2c314e640891/_placeholder.scssc +0 -0
  294. data/spec/dummy/tmp/cache/sass/57efa8894f8c995fb8d665d3f19a2c314e640891/_radial-gradient.scssc +0 -0
  295. data/spec/dummy/tmp/cache/sass/57efa8894f8c995fb8d665d3f19a2c314e640891/_transform.scssc +0 -0
  296. data/spec/dummy/tmp/cache/sass/57efa8894f8c995fb8d665d3f19a2c314e640891/_transition.scssc +0 -0
  297. data/spec/dummy/tmp/cache/sass/57efa8894f8c995fb8d665d3f19a2c314e640891/_user-select.scssc +0 -0
  298. data/spec/dummy/tmp/cache/sass/5c9badb0b5c60692310753144ac35080f665b5ae/_orig.sassc +0 -0
  299. data/spec/dummy/tmp/cache/sass/5c9badb0b5c60692310753144ac35080f665b5ae/_print.sassc +0 -0
  300. data/spec/dummy/tmp/cache/sass/662ec66808bc6ba72fd1069924836b2ae38dfe11/_concave.sassc +0 -0
  301. data/spec/dummy/tmp/cache/sass/662ec66808bc6ba72fd1069924836b2ae38dfe11/_cube.sassc +0 -0
  302. data/spec/dummy/tmp/cache/sass/662ec66808bc6ba72fd1069924836b2ae38dfe11/_default.sassc +0 -0
  303. data/spec/dummy/tmp/cache/sass/662ec66808bc6ba72fd1069924836b2ae38dfe11/_fade.sassc +0 -0
  304. data/spec/dummy/tmp/cache/sass/662ec66808bc6ba72fd1069924836b2ae38dfe11/_linear.sassc +0 -0
  305. data/spec/dummy/tmp/cache/sass/662ec66808bc6ba72fd1069924836b2ae38dfe11/_none.sassc +0 -0
  306. data/spec/dummy/tmp/cache/sass/662ec66808bc6ba72fd1069924836b2ae38dfe11/_page.sassc +0 -0
  307. data/spec/dummy/tmp/cache/sass/662ec66808bc6ba72fd1069924836b2ae38dfe11/_tile.sassc +0 -0
  308. data/spec/dummy/tmp/cache/sass/662ec66808bc6ba72fd1069924836b2ae38dfe11/_zoom.sassc +0 -0
  309. data/spec/dummy/tmp/cache/sass/757eccd9f3ae904190efe4a9d259b3d1dd8ce1b9/_github.sassc +0 -0
  310. data/spec/dummy/tmp/cache/sass/757eccd9f3ae904190efe4a9d259b3d1dd8ce1b9/_shared.sassc +0 -0
  311. data/spec/dummy/tmp/cache/sass/8d19dc91eec9a2d2e66c4c39cfe62037e8d8680a/_background.sassc +0 -0
  312. data/spec/dummy/tmp/cache/sass/8d19dc91eec9a2d2e66c4c39cfe62037e8d8680a/_columns.sassc +0 -0
  313. data/spec/dummy/tmp/cache/sass/8d19dc91eec9a2d2e66c4c39cfe62037e8d8680a/_containers.sassc +0 -0
  314. data/spec/dummy/tmp/cache/sass/8d19dc91eec9a2d2e66c4c39cfe62037e8d8680a/_copy.sassc +0 -0
  315. data/spec/dummy/tmp/cache/sass/8d19dc91eec9a2d2e66c4c39cfe62037e8d8680a/_cover.sassc +0 -0
  316. data/spec/dummy/tmp/cache/sass/8d19dc91eec9a2d2e66c4c39cfe62037e8d8680a/_end.sassc +0 -0
  317. data/spec/dummy/tmp/cache/sass/8d19dc91eec9a2d2e66c4c39cfe62037e8d8680a/_help_modal.sassc +0 -0
  318. data/spec/dummy/tmp/cache/sass/8d19dc91eec9a2d2e66c4c39cfe62037e8d8680a/_list.sassc +0 -0
  319. data/spec/dummy/tmp/cache/sass/8d19dc91eec9a2d2e66c4c39cfe62037e8d8680a/_media.sassc +0 -0
  320. data/spec/dummy/tmp/cache/sass/8d19dc91eec9a2d2e66c4c39cfe62037e8d8680a/_slide_header.sassc +0 -0
  321. data/spec/dummy/tmp/cache/sass/8d19dc91eec9a2d2e66c4c39cfe62037e8d8680a/_title.sassc +0 -0
  322. data/spec/dummy/tmp/cache/sass/9046485d56e287287c7fb514514412fc1393d129/reveal.cssc +0 -0
  323. data/spec/dummy/tmp/cache/sass/9046485d56e287287c7fb514514412fc1393d129/simple.cssc +0 -0
  324. data/spec/dummy/tmp/cache/sass/917ca7192c2cb12cbe9992ec3fc6619b15b1c3d4/_animation.scssc +0 -0
  325. data/spec/dummy/tmp/cache/sass/917ca7192c2cb12cbe9992ec3fc6619b15b1c3d4/_appearance.scssc +0 -0
  326. data/spec/dummy/tmp/cache/sass/917ca7192c2cb12cbe9992ec3fc6619b15b1c3d4/_background-image.scssc +0 -0
  327. data/spec/dummy/tmp/cache/sass/917ca7192c2cb12cbe9992ec3fc6619b15b1c3d4/_background-size.scssc +0 -0
  328. data/spec/dummy/tmp/cache/sass/917ca7192c2cb12cbe9992ec3fc6619b15b1c3d4/_background.scssc +0 -0
  329. data/spec/dummy/tmp/cache/sass/917ca7192c2cb12cbe9992ec3fc6619b15b1c3d4/_border-image.scssc +0 -0
  330. data/spec/dummy/tmp/cache/sass/917ca7192c2cb12cbe9992ec3fc6619b15b1c3d4/_border-radius.scssc +0 -0
  331. data/spec/dummy/tmp/cache/sass/917ca7192c2cb12cbe9992ec3fc6619b15b1c3d4/_box-shadow.scssc +0 -0
  332. data/spec/dummy/tmp/cache/sass/917ca7192c2cb12cbe9992ec3fc6619b15b1c3d4/_box-sizing.scssc +0 -0
  333. data/spec/dummy/tmp/cache/sass/917ca7192c2cb12cbe9992ec3fc6619b15b1c3d4/_columns.scssc +0 -0
  334. data/spec/dummy/tmp/cache/sass/917ca7192c2cb12cbe9992ec3fc6619b15b1c3d4/_flex-box.scssc +0 -0
  335. data/spec/dummy/tmp/cache/sass/917ca7192c2cb12cbe9992ec3fc6619b15b1c3d4/_font-face.scssc +0 -0
  336. data/spec/dummy/tmp/cache/sass/917ca7192c2cb12cbe9992ec3fc6619b15b1c3d4/_hidpi-media-query.scssc +0 -0
  337. data/spec/dummy/tmp/cache/sass/917ca7192c2cb12cbe9992ec3fc6619b15b1c3d4/_image-rendering.scssc +0 -0
  338. data/spec/dummy/tmp/cache/sass/917ca7192c2cb12cbe9992ec3fc6619b15b1c3d4/_inline-block.scssc +0 -0
  339. data/spec/dummy/tmp/cache/sass/917ca7192c2cb12cbe9992ec3fc6619b15b1c3d4/_linear-gradient.scssc +0 -0
  340. data/spec/dummy/tmp/cache/sass/917ca7192c2cb12cbe9992ec3fc6619b15b1c3d4/_perspective.scssc +0 -0
  341. data/spec/dummy/tmp/cache/sass/917ca7192c2cb12cbe9992ec3fc6619b15b1c3d4/_radial-gradient.scssc +0 -0
  342. data/spec/dummy/tmp/cache/sass/917ca7192c2cb12cbe9992ec3fc6619b15b1c3d4/_transform.scssc +0 -0
  343. data/spec/dummy/tmp/cache/sass/917ca7192c2cb12cbe9992ec3fc6619b15b1c3d4/_transition.scssc +0 -0
  344. data/spec/dummy/tmp/cache/sass/917ca7192c2cb12cbe9992ec3fc6619b15b1c3d4/_user-select.scssc +0 -0
  345. data/spec/dummy/tmp/cache/sass/944176eac51c20d86abe1c73bfb70e2a59488eaa/_bourbon-deprecated-upcoming.scssc +0 -0
  346. data/spec/dummy/tmp/cache/sass/944176eac51c20d86abe1c73bfb70e2a59488eaa/_bourbon.scssc +0 -0
  347. data/spec/dummy/tmp/cache/sass/9f5afec2c38a5d810c84ae7ee55733b63bce970e/application.sassc +0 -0
  348. data/spec/dummy/tmp/cache/sass/b27ac621decebb7ac2b87f2d2f66076d24920450/index.sassc +0 -0
  349. data/spec/dummy/tmp/cache/sass/d3fe1b83793f103e613ed8a008f22059b91765d0/_compact.scssc +0 -0
  350. data/spec/dummy/tmp/cache/sass/d3fe1b83793f103e613ed8a008f22059b91765d0/_deprecated-webkit-gradient.scssc +0 -0
  351. data/spec/dummy/tmp/cache/sass/d3fe1b83793f103e613ed8a008f22059b91765d0/_flex-grid.scssc +0 -0
  352. data/spec/dummy/tmp/cache/sass/d3fe1b83793f103e613ed8a008f22059b91765d0/_grid-width.scssc +0 -0
  353. data/spec/dummy/tmp/cache/sass/d3fe1b83793f103e613ed8a008f22059b91765d0/_linear-gradient.scssc +0 -0
  354. data/spec/dummy/tmp/cache/sass/d3fe1b83793f103e613ed8a008f22059b91765d0/_modular-scale.scssc +0 -0
  355. data/spec/dummy/tmp/cache/sass/d3fe1b83793f103e613ed8a008f22059b91765d0/_radial-gradient.scssc +0 -0
  356. data/spec/dummy/tmp/cache/sass/d3fe1b83793f103e613ed8a008f22059b91765d0/_render-gradients.scssc +0 -0
  357. data/spec/dummy/tmp/cache/sass/d3fe1b83793f103e613ed8a008f22059b91765d0/_tint-shade.scssc +0 -0
  358. data/spec/dummy/tmp/cache/sass/d3fe1b83793f103e613ed8a008f22059b91765d0/_transition-property-name.scssc +0 -0
  359. data/spec/dummy/tmp/cache/sass/ee2ae5c6633c1ab681dafc5f8c10987bbdb86fa8/_backgrounds.sassc +0 -0
  360. data/spec/dummy/tmp/cache/sass/ee2ae5c6633c1ab681dafc5f8c10987bbdb86fa8/_components.sassc +0 -0
  361. data/spec/dummy/tmp/cache/sass/ee2ae5c6633c1ab681dafc5f8c10987bbdb86fa8/_config.sassc +0 -0
  362. data/spec/dummy/tmp/cache/sass/ee2ae5c6633c1ab681dafc5f8c10987bbdb86fa8/_highlight.sassc +0 -0
  363. data/spec/dummy/tmp/cache/sass/ee2ae5c6633c1ab681dafc5f8c10987bbdb86fa8/_icon.sassc +0 -0
  364. data/spec/dummy/tmp/cache/sass/ee2ae5c6633c1ab681dafc5f8c10987bbdb86fa8/_icons.sassc +0 -0
  365. data/spec/dummy/tmp/cache/sass/ee2ae5c6633c1ab681dafc5f8c10987bbdb86fa8/_indication.sassc +0 -0
  366. data/spec/dummy/tmp/cache/sass/ee2ae5c6633c1ab681dafc5f8c10987bbdb86fa8/_mixins.sassc +0 -0
  367. data/spec/dummy/tmp/cache/sass/ee2ae5c6633c1ab681dafc5f8c10987bbdb86fa8/_normalize.sassc +0 -0
  368. data/spec/dummy/tmp/cache/sass/ee2ae5c6633c1ab681dafc5f8c10987bbdb86fa8/_print.sassc +0 -0
  369. data/spec/dummy/tmp/cache/sass/ee2ae5c6633c1ab681dafc5f8c10987bbdb86fa8/_queries.sassc +0 -0
  370. data/spec/dummy/tmp/cache/sass/ee2ae5c6633c1ab681dafc5f8c10987bbdb86fa8/_scaffold.sassc +0 -0
  371. data/spec/dummy/tmp/cache/sass/ee2ae5c6633c1ab681dafc5f8c10987bbdb86fa8/_table.sassc +0 -0
  372. data/spec/dummy/tmp/cache/sass/ee2ae5c6633c1ab681dafc5f8c10987bbdb86fa8/_templates.sassc +0 -0
  373. data/spec/dummy/tmp/cache/sass/ee2ae5c6633c1ab681dafc5f8c10987bbdb86fa8/_typography.sassc +0 -0
  374. data/spec/dummy/tmp/cache/sass/efa64f27288584e12853beb96fb660e9939741ef/_button.scssc +0 -0
  375. data/spec/dummy/tmp/cache/sass/efa64f27288584e12853beb96fb660e9939741ef/_clearfix.scssc +0 -0
  376. data/spec/dummy/tmp/cache/sass/efa64f27288584e12853beb96fb660e9939741ef/_font-family.scssc +0 -0
  377. data/spec/dummy/tmp/cache/sass/efa64f27288584e12853beb96fb660e9939741ef/_hide-text.scssc +0 -0
  378. data/spec/dummy/tmp/cache/sass/efa64f27288584e12853beb96fb660e9939741ef/_html5-input-types.scssc +0 -0
  379. data/spec/dummy/tmp/cache/sass/efa64f27288584e12853beb96fb660e9939741ef/_position.scssc +0 -0
  380. data/spec/dummy/tmp/cache/sass/efa64f27288584e12853beb96fb660e9939741ef/_prefixer.scssc +0 -0
  381. data/spec/dummy/tmp/cache/sass/efa64f27288584e12853beb96fb660e9939741ef/_timing-functions.scssc +0 -0
  382. metadata +881 -0
@@ -0,0 +1 @@
1
+ @import showboat
@@ -0,0 +1,3 @@
1
+ class ApplicationController < ActionController::Base
2
+ protect_from_forgery
3
+ end
@@ -0,0 +1,10 @@
1
+ class ShowboatController < ApplicationController
2
+
3
+ def index
4
+ end
5
+
6
+ def show
7
+ render :action => params['page']
8
+ end
9
+
10
+ end
@@ -0,0 +1,34 @@
1
+ !!! 5
2
+ %html.no-js(lang="en")
3
+ %head
4
+ %meta(charset="utf-8")
5
+ %meta(http-equiv="X-UA-Compatible" content="IE=edge,chrome=1")
6
+ %title Showboat
7
+ %meta(name="description" content="Description")
8
+ %meta(name="keywords" content="Keywords")
9
+ %meta(name="author" content="Mode Set")
10
+ %meta(name="imagetoolbar" content="no")
11
+ %meta(name="viewport" content="width=device-width, initial-scale=1.0")
12
+ %meta(name="apple-touch-fullscreen" content="yes")
13
+ %meta(name="apple-mobile-web-app-capable" content="yes")
14
+ %meta(name="apple-mobile-web-app-status-bar-style" content="black")
15
+
16
+ = stylesheet_link_tag :application, :media => "all"
17
+
18
+ :javascript
19
+ (function(H){H.className=H.className.replace(/\bno-js\b/,'js')})(document.documentElement)
20
+ = csrf_meta_tag
21
+ = content_for :head
22
+
23
+ %body(role="document")
24
+ = content_for :pre_body
25
+ %header.slide-header#main_heading
26
+ %h1.slide-heading
27
+ %div.reveal(role="main")
28
+ %article.slides
29
+ = yield
30
+
31
+ = content_for :pre_footer
32
+ = javascript_include_tag :application
33
+ = content_for :post_js
34
+
@@ -0,0 +1,199 @@
1
+ %section.title-template(data-state="no-background")
2
+ %h1 Mode Set
3
+ %h2 Presentation Name
4
+ %h2 Continued or presenter
5
+ %date 01.29.2013
6
+ = image_tag "showboat/title-smoke.png", alt: "mode set", class: "smoke"
7
+ .slant
8
+ %div.modeset-logo
9
+
10
+
11
+ %aside.notes
12
+ talk fast
13
+
14
+
15
+ -# Copy Template
16
+ %section.copy-template(data-heading="Copy Template <span>Sub Heading</span>")
17
+ :markdown
18
+ # Start with an h1 heading
19
+ Yeah, well, listen. You ought to ditch the two geeks you're in the car with
20
+ now and get in with us. But that's alright, we'll worry about that later.
21
+ I will see you there. All right? Man, I love those redheads.
22
+
23
+ %aside.notes
24
+ This is a note
25
+
26
+
27
+ %section.copy-template(data-heading="Copy Template <span>code example</span>")
28
+ :markdown
29
+ # A basic code example
30
+ ```
31
+ class Foo
32
+ constructor: -> @foo = 'foo'
33
+ bar: -> baz() # public method
34
+ baz = -> 'baz' # private method
35
+
36
+ f = new Foo()
37
+ f.bar() # -> 'baz'
38
+ f.baz # -> undefined
39
+ ```
40
+
41
+ %section.copy-template(data-heading="Copy Template <span>table example</span>")
42
+ :markdown
43
+ # A basic table in markdown
44
+
45
+ Class | Span | Decal
46
+ ------------ | ---------------------------------------- | -------------------------------------------
47
+ `important` | <span class="important">important</span> | <span class="decal important">important</span>
48
+ `success` | <span class="success">success</span> | <span class="decal success">success</span>
49
+ `danger` | <span class="danger">danger</span> | <span class="decal danger">danger</span>
50
+ `primary` | <span class="primary">primary</span> | <span class="decal primary">primary</span>
51
+
52
+
53
+ %section.copy-template(data-heading="Copy Template <span>list example</span>")
54
+ :markdown
55
+ # Typography elements and a list
56
+ Yeah, well, _listen_. You <kbd>ought</kbd> to **ditch** the <strong><em>two</em></strong>
57
+ <a href="http://modeset.com/">geeks</a> you're in the <dfn title="motorized vehicle">car</dfn> with now and get
58
+ <sub>in with</sub> us. But <samp>that's</samp> <code>alright</code>, <mark>we'll worry about</mark> that <time>later</time>.
59
+ I will <small>see you</small> there. All right<sup>&trade;</sup>? <del>Man</del>, <ins>I love</ins> those
60
+ <abbr title="Hotties">redheads</abbr>.
61
+
62
+ - Miller High Life
63
+ - Genesee
64
+ - Genny Light
65
+ - Cream Ale
66
+ - Molsen Canadian
67
+ - Pabst
68
+
69
+ %section.copy-template(data-heading="Copy Template <span>split for your pleasure</span>")
70
+ %h1 Got a lot to say? Use 2 panels
71
+ .panel-pull
72
+ :markdown
73
+ Yeah, well, listen. You ought to ditch the two geeks you're in the car with
74
+ now and get in with us. But that's alright, we'll worry about that later.
75
+ I will see you there. All right? Man, I love those redheads.
76
+ .panel-push
77
+ :markdown
78
+ Yeah, well, listen. You ought to ditch the two geeks you're in the car with
79
+ now and get in with us. But that's alright, we'll worry about that later.
80
+ I will see you there. All right? Man, I love those redheads.
81
+
82
+ %section.copy-template(data-heading="Copy Template <span>Like split windows!</span>")
83
+ %h1 Works just as well with code snippets
84
+ .panel-pull
85
+ :markdown
86
+ ```
87
+ describe 'Foo', ->
88
+ describe '#constructor', ->
89
+ f = new Foo()
90
+ it 'sets up a foo thingy', ->
91
+ expect(@foo.bar).toBeDefined()
92
+
93
+ it 'does not have direct access to baz', ->
94
+ expect(@foo.baz).not.toBeDefined()
95
+ ```
96
+ .panel-push
97
+ :markdown
98
+ ```
99
+ class Foo
100
+ constructor: -> @foo = 'foo'
101
+ bar: -> baz() # public method
102
+ baz = -> 'baz' # private method
103
+
104
+ f = new Foo()
105
+ f.bar() # -> 'baz'
106
+ f.baz # -> undefined
107
+ ```
108
+
109
+ %section.copy-template(data-heading="Copy Template <span>Blockquotes!</span>")
110
+ %h1 Rock some quotes
111
+ %blockquote
112
+ %p<
113
+ &#8220;Let me tell you what Melba Toast is packin' right here, all right.
114
+ We got 4:11 Positrac outback, 750 double pumper, Edelbrock intake, bored
115
+ over 30, 11 to 1 pop-up pistons, turbo-jet 390 horsepower. We're talkin'
116
+ some f***in' muscle.&#8221;
117
+ <small>David Wooderson, <cite title="link to source">Dazed &amp; Confused</cite></small>
118
+
119
+ -# List Template
120
+ %section.list-template(data-heading="List Template <span>This is purely a list</span>")
121
+ :markdown
122
+ - this is a list on it's own
123
+ - lives under the list-template class
124
+ - If you have some sub points
125
+ - Use nested lists
126
+ - and like this
127
+ - ordered lists look like unordered lists
128
+
129
+ %section.list-template(data-heading="List Template <span>Split that list</span>")
130
+ .panel-pull
131
+ :markdown
132
+ - lots of lists?
133
+ - split lists using
134
+ - panel-pull
135
+ - panel push
136
+ - keep it short
137
+ - short is good
138
+ .panel-push
139
+ :markdown
140
+ - Miller High Life
141
+ - Genesee
142
+ - Genny Light
143
+ - Cream Ale
144
+ - Molsen Canadian
145
+ - Pabst
146
+
147
+ %section.list-template(data-heading="List Template <span>It's got a heading</span>")
148
+ :markdown
149
+ # Headings are typically not needed in a list
150
+ - but there here if you need it
151
+ - hows it going?
152
+ - does this make sense?
153
+ - Better README?
154
+ - Did you read the tests?
155
+ - is this easier than keynote?
156
+
157
+ %section.copy-template
158
+ %section.list-template(data-heading="List Template <span>This is purely a list</span>")
159
+ %h1 Fragments
160
+ %ul
161
+ %li.fragment.fade-in Utilize fragments for building lists
162
+ %li.fragment.fade-in You can use fragments anywhere
163
+ %li.fragment.fade-in Attach the class to an element
164
+ %li.fragment.fade-in Arrow down for various fragment styles
165
+
166
+ %section.copy-template(data-heading="Copy Template <span>Fragments</span>")
167
+ %h1 Fragment Examples
168
+ %p.fragment.grow grow
169
+ %p.fragment.shrink shrink
170
+ %p.fragment.roll-in roll-in
171
+ %p.fragment.fade-out fade-out
172
+ %p.fragment.fade-in fade-in
173
+ %p<
174
+ %a(href="https://github.com/hakimel/reveal.js/#fragments") see reveal.js docs
175
+
176
+
177
+ -# Media Template
178
+ %section.media-template(data-heading="Media Template <span>Project Name</span>" data-link="Example.com" data-src="http://www.modeset.com")
179
+ = image_tag "showboat/fpo/fpo-tablet-handheld-laptop.png", alt: "fpo", class: "reflect"
180
+
181
+ %section.media-template(data-heading="Media Template <span>Project Name</span>" data-link="Example.com" data-src="http://www.modeset.com/")
182
+ = image_tag "showboat/fpo/fpo-tablet-handheld-duals.png", alt: "fpo", class: "reflect"
183
+
184
+ %section.media-template(data-heading="Media Template <span>Project Name</span>")
185
+ %iframe.reflect(src="http://player.vimeo.com/video/52507615" width="1024" height="575" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen)
186
+
187
+ %section.media-template(data-heading="Media Template <span>Project Name</span>")
188
+ = image_tag "showboat/fpo/fpo-handheld-3up.png", alt: "fpo", class: "reflect"
189
+
190
+ %section.media-template(data-heading="Media Template <span>Project Name</span>")
191
+ = image_tag "showboat/fpo/fpo-monitor.png", alt: "fpo", class: "reflect"
192
+
193
+
194
+ -# So long, thanks much
195
+ %section.end-template
196
+ %h1 thank you
197
+ .slant
198
+ %div.modeset-logo
199
+
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Dummy::Application
@@ -0,0 +1,59 @@
1
+ require File.expand_path('../boot', __FILE__)
2
+
3
+ require 'rails/all'
4
+
5
+ Bundler.require
6
+ require "showboat"
7
+
8
+ module Dummy
9
+ class Application < Rails::Application
10
+ # Settings in config/environments/* take precedence over those specified here.
11
+ # Application configuration should go into files in config/initializers
12
+ # -- all .rb files in that directory are automatically loaded.
13
+
14
+ # Custom directories with classes and modules you want to be autoloadable.
15
+ # config.autoload_paths += %W(#{config.root}/extras)
16
+
17
+ # Only load the plugins named here, in the order given (default is alphabetical).
18
+ # :all can be used as a placeholder for all plugins not explicitly named.
19
+ # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
20
+
21
+ # Activate observers that should always be running.
22
+ # config.active_record.observers = :cacher, :garbage_collector, :forum_observer
23
+
24
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
25
+ # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
26
+ # config.time_zone = 'Central Time (US & Canada)'
27
+
28
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
29
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
30
+ # config.i18n.default_locale = :de
31
+
32
+ # Configure the default encoding used in templates for Ruby 1.9.
33
+ config.encoding = "utf-8"
34
+
35
+ # Configure sensitive parameters which will be filtered from the log file.
36
+ config.filter_parameters += [:password]
37
+
38
+ # Enable escaping HTML in JSON.
39
+ config.active_support.escape_html_entities_in_json = true
40
+
41
+ # Use SQL instead of Active Record's schema dumper when creating the database.
42
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
43
+ # like if you have constraints or database-specific column types
44
+ # config.active_record.schema_format = :sql
45
+
46
+ # Enforce whitelist mode for mass assignment.
47
+ # This will create an empty whitelist of attributes available for mass-assignment for all models
48
+ # in your app. As such, your models will need to explicitly whitelist or blacklist accessible
49
+ # parameters by using an attr_accessible or attr_protected declaration.
50
+ config.active_record.whitelist_attributes = true
51
+
52
+ # Enable the asset pipeline
53
+ config.assets.enabled = true
54
+
55
+ # Version of your assets, change this if you want to expire all your assets
56
+ config.assets.version = '1.0'
57
+ end
58
+ end
59
+
@@ -0,0 +1,10 @@
1
+ require 'rubygems'
2
+ gemfile = File.expand_path('../../../../Gemfile', __FILE__)
3
+
4
+ if File.exist?(gemfile)
5
+ ENV['BUNDLE_GEMFILE'] = gemfile
6
+ require 'bundler'
7
+ Bundler.setup
8
+ end
9
+
10
+ $:.unshift File.expand_path('../../../../lib', __FILE__)
@@ -0,0 +1,25 @@
1
+ # SQLite version 3.x
2
+ # gem install sqlite3
3
+ #
4
+ # Ensure the SQLite 3 gem is defined in your Gemfile
5
+ # gem 'sqlite3'
6
+ development:
7
+ adapter: sqlite3
8
+ database: db/development.sqlite3
9
+ pool: 5
10
+ timeout: 5000
11
+
12
+ # Warning: The database defined as "test" will be erased and
13
+ # re-generated from your development database when you run "rake".
14
+ # Do not set this db to the same as development or production.
15
+ test:
16
+ adapter: sqlite3
17
+ database: db/test.sqlite3
18
+ pool: 5
19
+ timeout: 5000
20
+
21
+ production:
22
+ adapter: sqlite3
23
+ database: db/production.sqlite3
24
+ pool: 5
25
+ timeout: 5000
@@ -0,0 +1,5 @@
1
+ # Load the rails application
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the rails application
5
+ Dummy::Application.initialize!
@@ -0,0 +1,37 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the web server when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Log error messages when you accidentally call methods on nil.
10
+ config.whiny_nils = true
11
+
12
+ # Show full error reports and disable caching
13
+ config.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Don't care if the mailer can't send
17
+ config.action_mailer.raise_delivery_errors = false
18
+
19
+ # Print deprecation notices to the Rails logger
20
+ config.active_support.deprecation = :log
21
+
22
+ # Only use best-standards-support built into browsers
23
+ config.action_dispatch.best_standards_support = :builtin
24
+
25
+ # Raise exception on mass assignment protection for Active Record models
26
+ config.active_record.mass_assignment_sanitizer = :strict
27
+
28
+ # Log the query plan for queries taking more than this (works
29
+ # with SQLite, MySQL, and PostgreSQL)
30
+ config.active_record.auto_explain_threshold_in_seconds = 0.5
31
+
32
+ # Do not compress assets
33
+ config.assets.compress = false
34
+
35
+ # Expands the lines which load the assets
36
+ config.assets.debug = true
37
+ end
@@ -0,0 +1,67 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # Code is not reloaded between requests
5
+ config.cache_classes = true
6
+
7
+ # Full error reports are disabled and caching is turned on
8
+ config.consider_all_requests_local = false
9
+ config.action_controller.perform_caching = true
10
+
11
+ # Disable Rails's static asset server (Apache or nginx will already do this)
12
+ config.serve_static_assets = false
13
+
14
+ # Compress JavaScripts and CSS
15
+ config.assets.compress = true
16
+
17
+ # Don't fallback to assets pipeline if a precompiled asset is missed
18
+ config.assets.compile = false
19
+
20
+ # Generate digests for assets URLs
21
+ config.assets.digest = true
22
+
23
+ # Defaults to nil and saved in location specified by config.assets.prefix
24
+ # config.assets.manifest = YOUR_PATH
25
+
26
+ # Specifies the header that your server uses for sending files
27
+ # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
28
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
29
+
30
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
31
+ # config.force_ssl = true
32
+
33
+ # See everything in the log (default is :info)
34
+ # config.log_level = :debug
35
+
36
+ # Prepend all log lines with the following tags
37
+ # config.log_tags = [ :subdomain, :uuid ]
38
+
39
+ # Use a different logger for distributed setups
40
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
41
+
42
+ # Use a different cache store in production
43
+ # config.cache_store = :mem_cache_store
44
+
45
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server
46
+ # config.action_controller.asset_host = "http://assets.example.com"
47
+
48
+ # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
49
+ # config.assets.precompile += %w( search.js )
50
+
51
+ # Disable delivery errors, bad email addresses will be ignored
52
+ # config.action_mailer.raise_delivery_errors = false
53
+
54
+ # Enable threaded mode
55
+ # config.threadsafe!
56
+
57
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
58
+ # the I18n.default_locale when a translation can not be found)
59
+ config.i18n.fallbacks = true
60
+
61
+ # Send deprecation notices to registered listeners
62
+ config.active_support.deprecation = :notify
63
+
64
+ # Log the query plan for queries taking more than this (works
65
+ # with SQLite, MySQL, and PostgreSQL)
66
+ # config.active_record.auto_explain_threshold_in_seconds = 0.5
67
+ end