middleman-more 3.0.0.beta.3 → 3.0.0.rc.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (292) hide show
  1. data/features/asset_hash.feature +28 -25
  2. data/features/asset_host.feature +7 -0
  3. data/features/automatic_image_sizes.feature +16 -0
  4. data/features/clean_build.feature +14 -0
  5. data/features/coffee-script.feature +1 -1
  6. data/features/content_for.feature +5 -0
  7. data/features/directory_index.feature +66 -0
  8. data/features/extensionless_text_files.feature +28 -0
  9. data/features/former_padrino_helpers.feature +12 -0
  10. data/features/frontmatter_page_settings.feature +42 -0
  11. data/features/helpers_auto_javascript_include_tag.feature +27 -0
  12. data/features/helpers_auto_stylesheet_link_tag.feature +27 -0
  13. data/features/helpers_lorem.feature +6 -0
  14. data/features/helpers_page_classes.feature +17 -0
  15. data/features/helpers_relative_link_to.feature +68 -0
  16. data/features/i18n_builder.feature +121 -0
  17. data/features/i18n_preview.feature +113 -0
  18. data/features/ignore.feature +62 -0
  19. data/features/instance_vars.feature +18 -0
  20. data/features/markdown.feature +1 -7
  21. data/features/markdown_redcarpet.feature +10 -4
  22. data/features/minify_css.feature +2 -2
  23. data/features/nested_layouts.feature +55 -0
  24. data/features/partials.feature +46 -0
  25. data/features/sass_partials.feature +0 -33
  26. data/features/sitemap_traversal.feature +73 -0
  27. data/features/support/env.rb +3 -0
  28. data/features/twitter-bootstrap-compile.feature +6 -0
  29. data/features/wildcard_page_helper.feature +10 -0
  30. data/fixtures/asset-hash-app/source/apple-touch-icon.png +0 -0
  31. data/fixtures/asset-hash-app/source/favicon.ico +0 -0
  32. data/fixtures/asset-hash-app/source/index.html.erb +3 -0
  33. data/fixtures/asset-host-app/source/asset_host.html.erb +1 -0
  34. data/fixtures/auto-css-app/config.rb +11 -0
  35. data/fixtures/auto-css-app/source/auto-css.html.erb +1 -0
  36. data/fixtures/auto-css-app/source/auto-css/auto-css.html.erb +1 -0
  37. data/fixtures/auto-css-app/source/auto-css/index.html.erb +1 -0
  38. data/fixtures/auto-css-app/source/auto-css/sub/auto-css.html.erb +1 -0
  39. data/fixtures/auto-css-app/source/stylesheets/auto-css.css +3 -0
  40. data/fixtures/auto-css-app/source/stylesheets/auto-css/auto-css.css +3 -0
  41. data/fixtures/{sprockets-app2/config.rb → auto-css-app/source/stylesheets/auto-css/index.css} +0 -0
  42. data/fixtures/auto-css-app/source/stylesheets/auto-css/sub/auto-css.css +3 -0
  43. data/fixtures/auto-js-app/config.rb +11 -0
  44. data/fixtures/auto-js-app/source/auto-js.html.erb +1 -0
  45. data/fixtures/auto-js-app/source/auto-js/auto-js.html.erb +1 -0
  46. data/fixtures/auto-js-app/source/auto-js/index.html.erb +1 -0
  47. data/fixtures/auto-js-app/source/auto-js/sub/auto-js.html.erb +1 -0
  48. data/fixtures/auto-js-app/source/javascripts/auto-js.js +1 -0
  49. data/fixtures/auto-js-app/source/javascripts/auto-js/auto-js.js +1 -0
  50. data/fixtures/auto-js-app/source/javascripts/auto-js/index.js +1 -0
  51. data/fixtures/auto-js-app/source/javascripts/auto-js/sub/auto-js.js +1 -0
  52. data/fixtures/automatic-image-size-app/config.rb +0 -0
  53. data/fixtures/automatic-image-size-app/source/auto-image-sizes.html.erb +1 -0
  54. data/fixtures/automatic-image-size-app/source/images/blank.gif +0 -0
  55. data/fixtures/clean-dir-app/config.rb +2 -0
  56. data/fixtures/clean-dir-app/source/about.html +1 -0
  57. data/fixtures/content-for-app/config.rb +1 -0
  58. data/fixtures/content-for-app/source/content_for_erb.html.erb +5 -0
  59. data/fixtures/different-engine-partial/config.rb +0 -0
  60. data/fixtures/different-engine-partial/source/index.html.erb +1 -0
  61. data/fixtures/different-engine-partial/source/layouts/layout.erb +7 -0
  62. data/fixtures/different-engine-partial/source/shared/_footer.str +1 -0
  63. data/fixtures/different-engine-partial/source/shared/_header.erb +1 -0
  64. data/fixtures/extensionless-text-files-app/config.rb +1 -0
  65. data/fixtures/extensionless-text-files-app/source/CNAME +1 -0
  66. data/fixtures/extensionless-text-files-app/source/LICENSE +1 -0
  67. data/fixtures/extensionless-text-files-app/source/README +1 -0
  68. data/fixtures/extensionless-text-files-app/source/index.html +1 -0
  69. data/fixtures/frontmatter-settings-app/config.rb +4 -0
  70. data/fixtures/frontmatter-settings-app/source/alternate_layout.html.erb +5 -0
  71. data/fixtures/frontmatter-settings-app/source/ignored.html.erb +5 -0
  72. data/fixtures/frontmatter-settings-app/source/layouts/alternate.erb +3 -0
  73. data/fixtures/frontmatter-settings-app/source/no_index.html.erb +5 -0
  74. data/fixtures/i18n-alt-root-app/locales/en.yml +4 -0
  75. data/fixtures/i18n-alt-root-app/locales/es.yml +7 -0
  76. data/fixtures/i18n-alt-root-app/source/lang_data/hello.html.erb +1 -0
  77. data/fixtures/i18n-alt-root-app/source/lang_data/index.html.erb +1 -0
  78. data/fixtures/i18n-alt-root-app/source/layout.erb +1 -0
  79. data/fixtures/i18n-test-app/locales/en.yml +4 -0
  80. data/fixtures/i18n-test-app/locales/es.yml +7 -0
  81. data/fixtures/i18n-test-app/source/layout.erb +1 -0
  82. data/fixtures/i18n-test-app/source/localizable/hello.html.erb +1 -0
  83. data/fixtures/i18n-test-app/source/localizable/index.html.erb +1 -0
  84. data/fixtures/ignore-app/source/about.html.erb +1 -0
  85. data/fixtures/ignore-app/source/images/icon/messages.png +0 -0
  86. data/fixtures/ignore-app/source/images/pic.png +0 -0
  87. data/fixtures/ignore-app/source/images/portrait.jpg +0 -0
  88. data/fixtures/ignore-app/source/index.html.erb +0 -0
  89. data/fixtures/ignore-app/source/plain.html +1 -0
  90. data/fixtures/ignore-app/source/reports/another.html +0 -0
  91. data/fixtures/ignore-app/source/reports/index.html +0 -0
  92. data/fixtures/indexable-app/config.rb +4 -0
  93. data/fixtures/indexable-app/source/.htaccess +1 -0
  94. data/fixtures/indexable-app/source/a_folder/needs_index.html +1 -0
  95. data/fixtures/indexable-app/source/leave_me_alone.html +1 -0
  96. data/fixtures/indexable-app/source/needs_index.html +1 -0
  97. data/fixtures/indexable-app/source/regular/index.html +1 -0
  98. data/fixtures/indexable-app/source/wildcard_leave_me_alone.html +1 -0
  99. data/fixtures/instance-vars-app/config.rb +0 -0
  100. data/fixtures/instance-vars-app/source/_vartial.erb +5 -0
  101. data/fixtures/instance-vars-app/source/instance-var-set.html.erb +2 -0
  102. data/fixtures/instance-vars-app/source/layout.erb +3 -0
  103. data/fixtures/instance-vars-app/source/no-instance-var.html.erb +1 -0
  104. data/fixtures/lorem-app/config.rb +1 -0
  105. data/fixtures/lorem-app/source/lorem.html.erb +13 -0
  106. data/fixtures/markdown-app/source/hard_wrap.html.markdown +2 -0
  107. data/fixtures/markdown-app/source/with_toc_data.html.markdown +3 -0
  108. data/fixtures/nested-layout-app/config.rb +1 -0
  109. data/fixtures/nested-layout-app/source/another.html.markdown +7 -0
  110. data/fixtures/nested-layout-app/source/data-one.html.erb +5 -0
  111. data/fixtures/nested-layout-app/source/data-two.html.erb +5 -0
  112. data/fixtures/nested-layout-app/source/haml-test.html.markdown +7 -0
  113. data/fixtures/nested-layout-app/source/index.html.erb +6 -0
  114. data/fixtures/nested-layout-app/source/layouts/inner.erb +4 -0
  115. data/fixtures/nested-layout-app/source/layouts/inner_haml.haml +3 -0
  116. data/fixtures/nested-layout-app/source/layouts/inner_slim.slim +3 -0
  117. data/fixtures/nested-layout-app/source/layouts/master.erb +3 -0
  118. data/fixtures/nested-layout-app/source/layouts/master_haml.haml +3 -0
  119. data/fixtures/nested-layout-app/source/layouts/master_slim.slim +3 -0
  120. data/fixtures/nested-layout-app/source/layouts/outer.erb +4 -0
  121. data/fixtures/nested-layout-app/source/layouts/outer_haml.haml +3 -0
  122. data/fixtures/nested-layout-app/source/layouts/outer_slim.slim +3 -0
  123. data/fixtures/nested-layout-app/source/slim-test.html.markdown +7 -0
  124. data/fixtures/padrino-helpers-app/config.rb +0 -0
  125. data/fixtures/padrino-helpers-app/source/former_padrino_test.html.erb +5 -0
  126. data/fixtures/page-classes-app/config.rb +4 -0
  127. data/fixtures/page-classes-app/source/page-classes.html.erb +1 -0
  128. data/fixtures/page-classes-app/source/sub1/page-classes.html.erb +1 -0
  129. data/fixtures/page-classes-app/source/sub1/sub2/page-classes.html.erb +1 -0
  130. data/fixtures/partials-app/config.rb +0 -0
  131. data/fixtures/partials-app/source/_locals.erb +1 -0
  132. data/fixtures/partials-app/source/_main.erb +1 -0
  133. data/fixtures/partials-app/source/_main.str +1 -0
  134. data/fixtures/partials-app/source/index.html.erb +3 -0
  135. data/fixtures/partials-app/source/locals.html.erb +1 -0
  136. data/fixtures/partials-app/source/second.html.str +3 -0
  137. data/fixtures/partials-app/source/shared/_footer.erb +1 -0
  138. data/fixtures/partials-app/source/shared/_header.erb +1 -0
  139. data/fixtures/partials-app/source/shared/snippet.erb +1 -0
  140. data/fixtures/partials-app/source/sub/_local.erb +1 -0
  141. data/fixtures/partials-app/source/sub/index.html.erb +3 -0
  142. data/fixtures/partials-app/source/using_snippet.html.erb +1 -0
  143. data/fixtures/traversal-app/config.rb +7 -0
  144. data/fixtures/traversal-app/source/directory-indexed.html.erb +0 -0
  145. data/fixtures/traversal-app/source/directory-indexed/sibling.html.erb +3 -0
  146. data/fixtures/traversal-app/source/directory-indexed/sibling2.html.erb +3 -0
  147. data/fixtures/traversal-app/source/directory-indexed/sub2/index.html.erb +0 -0
  148. data/fixtures/traversal-app/source/directory-indexed/sub3/deep.html.erb +0 -0
  149. data/fixtures/traversal-app/source/index.html.erb +0 -0
  150. data/fixtures/traversal-app/source/layout.erb +21 -0
  151. data/fixtures/traversal-app/source/proxied.html.erb +0 -0
  152. data/fixtures/traversal-app/source/root.html.erb +0 -0
  153. data/fixtures/traversal-app/source/sub/index.html.erb +0 -0
  154. data/fixtures/traversal-app/source/sub/sibling.html.erb +0 -0
  155. data/fixtures/traversal-app/source/sub/sibling2.html.erb +0 -0
  156. data/fixtures/traversal-app/source/sub/sub2/index.html.erb +0 -0
  157. data/fixtures/traversal-app/source/sub/sub3/deep.html.erb +0 -0
  158. data/fixtures/twitter-bootstrap-app/config.rb +0 -0
  159. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/.gitignore +36 -0
  160. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/.travis.yml +3 -0
  161. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/LICENSE +176 -0
  162. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/README.md +137 -0
  163. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/img/glyphicons-halflings-white.png +0 -0
  164. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/img/glyphicons-halflings.png +0 -0
  165. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/.jshintrc +10 -0
  166. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/README.md +112 -0
  167. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-alert.js +90 -0
  168. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-button.js +96 -0
  169. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-carousel.js +169 -0
  170. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-collapse.js +157 -0
  171. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-dropdown.js +100 -0
  172. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-modal.js +218 -0
  173. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-popover.js +98 -0
  174. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-scrollspy.js +151 -0
  175. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-tab.js +135 -0
  176. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-tooltip.js +275 -0
  177. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-transition.js +61 -0
  178. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-typeahead.js +285 -0
  179. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/index.html +54 -0
  180. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/phantom.js +63 -0
  181. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/server.js +14 -0
  182. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-alert.js +56 -0
  183. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-button.js +77 -0
  184. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-carousel.js +28 -0
  185. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-collapse.js +54 -0
  186. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-dropdown.js +87 -0
  187. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-modal.js +114 -0
  188. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-phantom.js +21 -0
  189. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-popover.js +93 -0
  190. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-scrollspy.js +31 -0
  191. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-tab.js +61 -0
  192. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-tooltip.js +155 -0
  193. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-transition.js +13 -0
  194. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-typeahead.js +148 -0
  195. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/vendor/jquery.js +9252 -0
  196. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/vendor/qunit.css +232 -0
  197. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/vendor/qunit.js +1510 -0
  198. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_accordion.less +33 -0
  199. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_alerts.less +58 -0
  200. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_breadcrumbs.less +24 -0
  201. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_button-groups.less +191 -0
  202. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_buttons.less +191 -0
  203. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_carousel.less +121 -0
  204. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_close.less +29 -0
  205. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_code.less +57 -0
  206. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_component-animations.less +20 -0
  207. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_dropdowns.less +143 -0
  208. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_forms.less +583 -0
  209. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_grid.less +5 -0
  210. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_hero-unit.less +22 -0
  211. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_labels-badges.less +55 -0
  212. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_layouts.less +17 -0
  213. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_mixins.less +646 -0
  214. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_modals.less +90 -0
  215. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_navbar.less +358 -0
  216. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_navs.less +363 -0
  217. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_pager.less +36 -0
  218. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_pagination.less +56 -0
  219. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_popovers.less +49 -0
  220. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_progress-bars.less +117 -0
  221. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_reset.less +131 -0
  222. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-1200px-min.less +26 -0
  223. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-767px-max.less +149 -0
  224. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-768px-979px.less +17 -0
  225. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-navbar.less +153 -0
  226. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-utilities.less +41 -0
  227. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_scaffolding.less +29 -0
  228. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_sprites.less +191 -0
  229. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_tables.less +176 -0
  230. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_thumbnails.less +47 -0
  231. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_tooltip.less +35 -0
  232. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_type.less +232 -0
  233. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_utilities.less +23 -0
  234. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_variables.less +206 -0
  235. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_wells.less +27 -0
  236. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/bootstrap.less +62 -0
  237. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/responsive.less +48 -0
  238. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/css-tests.css +52 -0
  239. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/css-tests.html +917 -0
  240. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/forms.html +179 -0
  241. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/navbar.html +108 -0
  242. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/package.json +25 -0
  243. data/fixtures/wildcard-directory-index-app/config.rb +2 -0
  244. data/fixtures/wildcard-directory-index-app/source/admin/index.html.erb +1 -0
  245. data/fixtures/wildcard-directory-index-app/source/admin/page.html.erb +1 -0
  246. data/fixtures/wildcard-directory-index-app/source/index.html.erb +1 -0
  247. data/fixtures/wildcard-directory-index-app/source/layouts/admin.erb +2 -0
  248. data/fixtures/wildcard-directory-index-app/source/layouts/layout.erb +2 -0
  249. data/lib/middleman-more.rb +117 -2
  250. data/lib/middleman-more/core_extensions/assets.rb +43 -0
  251. data/lib/middleman-more/core_extensions/compass.rb +26 -0
  252. data/lib/middleman-more/core_extensions/default_helpers.rb +171 -0
  253. data/lib/middleman-more/core_extensions/i18n.rb +123 -0
  254. data/lib/middleman-more/extensions/asset_hash.rb +75 -81
  255. data/lib/middleman-more/extensions/asset_host.rb +46 -0
  256. data/lib/middleman-more/extensions/automatic_image_sizes.rb +56 -0
  257. data/lib/middleman-more/extensions/automatic_image_sizes/fastimage.rb +287 -0
  258. data/lib/middleman-more/extensions/directory_indexes.rb +56 -0
  259. data/lib/middleman-more/extensions/lorem.rb +197 -0
  260. data/lib/middleman_extension.rb +1 -0
  261. data/middleman-more.gemspec +4 -4
  262. metadata +674 -158
  263. data/features/sprockets.feature +0 -52
  264. data/features/sprockets_gems.feature +0 -15
  265. data/fixtures/sprockets-app/config.rb +0 -2
  266. data/fixtures/sprockets-app/source/library/css/bootstrap_include.css.scss +0 -1
  267. data/fixtures/sprockets-app/source/library/css/plain.css +0 -3
  268. data/fixtures/sprockets-app/source/library/css/sprockets_base1.css.scss +0 -1
  269. data/fixtures/sprockets-app/source/library/css/sprockets_base2.css.scss +0 -1
  270. data/fixtures/sprockets-app/source/library/css/sprockets_sub.css.scss +0 -1
  271. data/fixtures/sprockets-app/source/library/js/jquery_include.js +0 -1
  272. data/fixtures/sprockets-app/source/library/js/plain.js +0 -3
  273. data/fixtures/sprockets-app/source/library/js/sprockets_base.js +0 -5
  274. data/fixtures/sprockets-app/source/library/js/sprockets_sub.js +0 -3
  275. data/fixtures/sprockets-app/source/library/js/vendored_include.js +0 -1
  276. data/fixtures/sprockets-app/vendor/assets/javascripts/vendored_js.js +0 -1
  277. data/fixtures/sprockets-app2/data/test.yml +0 -4
  278. data/fixtures/sprockets-app2/data/test2.json +0 -4
  279. data/fixtures/sprockets-app2/source/javascripts/multiple_engines.js.coffee.erb +0 -1
  280. data/fixtures/sprockets-app2/source/javascripts/sprockets_base.js +0 -5
  281. data/fixtures/sprockets-app2/source/javascripts/sprockets_sub.js +0 -3
  282. data/fixtures/sprockets-app2/source/stylesheets/sprockets_base1.css.scss +0 -1
  283. data/fixtures/sprockets-app2/source/stylesheets/sprockets_base2.css.scss +0 -1
  284. data/fixtures/sprockets-app2/source/stylesheets/sprockets_sub.css.scss +0 -1
  285. data/lib/middleman-more/core_extensions/sprockets.rb +0 -101
  286. data/lib/middleman-more/register_extensions.rb +0 -82
  287. data/lib/middleman-more/renderers/coffee_script.rb +0 -22
  288. data/lib/middleman-more/renderers/haml.rb +0 -30
  289. data/lib/middleman-more/renderers/liquid.rb +0 -40
  290. data/lib/middleman-more/renderers/markdown.rb +0 -58
  291. data/lib/middleman-more/renderers/sass.rb +0 -88
  292. data/lib/middleman-more/renderers/slim.rb +0 -35
@@ -0,0 +1,137 @@
1
+ [Twitter Bootstrap](http://twitter.github.com/bootstrap) [![Build Status](https://secure.travis-ci.org/twitter/bootstrap.png)](http://travis-ci.org/twitter/bootstrap)
2
+ =================
3
+
4
+ Bootstrap provides simple and flexible HTML, CSS, and Javascript for popular user interface components and interactions. In other words, it's a front-end toolkit for faster, more beautiful web development. It's created and maintained by [Mark Otto](http://twitter.com/mdo) and [Jacob Thornton](http://twitter.com/fat) at Twitter.
5
+
6
+ To get started, checkout http://twitter.github.com/bootstrap!
7
+
8
+
9
+
10
+ Quick start
11
+ -----------
12
+
13
+ Clone the repo, `git clone git@github.com:twitter/bootstrap.git`, or [download the latest release](https://github.com/twitter/bootstrap/zipball/master).
14
+
15
+
16
+
17
+ Versioning
18
+ ----------
19
+
20
+ For transparency and insight into our release cycle, and for striving to maintain backward compatibility, Bootstrap will be maintained under the Semantic Versioning guidelines as much as possible.
21
+
22
+ Releases will be numbered with the follow format:
23
+
24
+ `<major>.<minor>.<patch>`
25
+
26
+ And constructed with the following guidelines:
27
+
28
+ * Breaking backward compatibility bumps the major (and resets the minor and patch)
29
+ * New additions without breaking backward compatibility bumps the minor (and resets the patch)
30
+ * Bug fixes and misc changes bumps the patch
31
+
32
+ For more information on SemVer, please visit http://semver.org/.
33
+
34
+
35
+
36
+ Bug tracker
37
+ -----------
38
+
39
+ Have a bug? Please create an issue here on GitHub! Also, when filing please make sure you're familiar with [necolas's guidelines](https://github.com/necolas/issue-guidelines). thanks! <3
40
+
41
+ https://github.com/twitter/bootstrap/issues
42
+
43
+
44
+
45
+ Twitter account
46
+ ---------------
47
+
48
+ Keep up to date on announcements and more by following Bootstrap on Twitter, [@TwBootstrap](http://twitter.com/TwBootstrap).
49
+
50
+
51
+
52
+ Blog
53
+ ----
54
+
55
+ Read more detailed announcements, discussions, and more on [The Official Twitter Bootstrap Blog](http://blog.getbootstrap.com).
56
+
57
+
58
+
59
+ Mailing list
60
+ ------------
61
+
62
+ Have a question? Ask on our mailing list!
63
+
64
+ twitter-bootstrap@googlegroups.com
65
+
66
+ http://groups.google.com/group/twitter-bootstrap
67
+
68
+
69
+
70
+ IRC
71
+ ---
72
+
73
+ Server: irc.freenode.net
74
+
75
+ Channel: ##twitter-bootstrap (the double ## is not a typo)
76
+
77
+
78
+
79
+ Developers
80
+ ----------
81
+
82
+ We have included a makefile with convenience methods for working with the Bootstrap library.
83
+
84
+ + **dependencies**
85
+ Our makefile depends on you having recess, uglify.js, and jshint installed. To install, just run the following command in npm:
86
+
87
+ ```
88
+ $ npm install recess uglify-js jshint -g
89
+ ```
90
+
91
+ + **build** - `make`
92
+ Runs the recess compiler to rebuild the `/less` files and compiles the docs pages. Requires recess and uglify-js. <a href="http://twitter.github.com/bootstrap/less.html#compiling">Read more in our docs &raquo;</a>
93
+
94
+ + **test** - `make test`
95
+ Runs jshint and qunit tests headlessly in phantom js (used for ci). Depends on having phatomjs installed.
96
+
97
+ + **watch** - `make watch`
98
+ This is a convenience method for watching just Less files and automatically building them whenever you save. Requires the Watchr gem.
99
+
100
+
101
+ Contributing
102
+ ------------
103
+
104
+ Please make all pull requests against wip-* branches. Also, if your unit test contains javascript patches or features - you must include relevant unit tests. Thanks!
105
+
106
+
107
+ Authors
108
+ -------
109
+
110
+ **Mark Otto**
111
+
112
+ + http://twitter.com/mdo
113
+ + http://github.com/markdotto
114
+
115
+ **Jacob Thornton**
116
+
117
+ + http://twitter.com/fat
118
+ + http://github.com/fat
119
+
120
+
121
+
122
+ Copyright and license
123
+ ---------------------
124
+
125
+ Copyright 2012 Twitter, Inc.
126
+
127
+ Licensed under the Apache License, Version 2.0 (the "License");
128
+ you may not use this work except in compliance with the License.
129
+ You may obtain a copy of the License in the LICENSE file, or at:
130
+
131
+ http://www.apache.org/licenses/LICENSE-2.0
132
+
133
+ Unless required by applicable law or agreed to in writing, software
134
+ distributed under the License is distributed on an "AS IS" BASIS,
135
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
136
+ See the License for the specific language governing permissions and
137
+ limitations under the License.
@@ -0,0 +1,10 @@
1
+ {
2
+ "validthis": true,
3
+ "laxcomma" : true,
4
+ "laxbreak" : true,
5
+ "browser" : true,
6
+ "debug" : true,
7
+ "boss" : true,
8
+ "expr" : true,
9
+ "asi" : true
10
+ }
@@ -0,0 +1,112 @@
1
+ ## 2.0 BOOTSTRAP JS PHILOSOPHY
2
+ These are the high-level design rules which guide the development of Bootstrap's plugin apis.
3
+
4
+ ---
5
+
6
+ ### DATA-ATTRIBUTE API
7
+
8
+ We believe you should be able to use all plugins provided by Bootstrap purely through the markup API without writing a single line of JavaScript. This is Bootstrap's first class API.
9
+
10
+ We acknowledge that this isn't always the most performant and it may sometimes be desirable to turn this functionality off altogether. Therefore, as of 2.0 we provide the ability to disable the data attribute API by unbinding all events on the body namespaced with `'data-api'`. This looks like this:
11
+
12
+ $('body').off('.data-api')
13
+
14
+ To target a specific plugin, just include the plugins name as a namespace along with the data-api namespace like this:
15
+
16
+ $('body').off('.alert.data-api')
17
+
18
+ ---
19
+
20
+ ### PROGRAMATIC API
21
+
22
+ We also believe you should be able to use all plugins provided by Bootstrap purely through the JavaScript API.
23
+
24
+ All public APIs should be single, chainable methods, and return the collection acted upon.
25
+
26
+ $(".btn.danger").button("toggle").addClass("fat")
27
+
28
+ All methods should accept an optional options object, a string which targets a particular method, or null which initiates the default behavior:
29
+
30
+ $("#myModal").modal() // initialized with defaults
31
+ $("#myModal").modal({ keyboard: false }) // initialized with no keyboard
32
+ $("#myModal").modal('show') // initializes and invokes show immediately
33
+
34
+ ---
35
+
36
+ ### OPTIONS
37
+
38
+ Options should be sparse and add universal value. We should pick the right defaults.
39
+
40
+ All plugins should have a default object which can be modified to affect all instances' default options. The defaults object should be available via `$.fn.plugin.defaults`.
41
+
42
+ $.fn.modal.defaults = { … }
43
+
44
+ An options definition should take the following form:
45
+
46
+ *noun*: *adjective* - describes or modifies a quality of an instance
47
+
48
+ Examples:
49
+
50
+ backdrop: true
51
+ keyboard: false
52
+ placement: 'top'
53
+
54
+ ---
55
+
56
+ ### EVENTS
57
+
58
+ All events should have an infinitive and past participle form. The infinitive is fired just before an action takes place, the past participle on completion of the action.
59
+
60
+ show | shown
61
+ hide | hidden
62
+
63
+ All infinitive events should provide preventDefault functionality. This provides the abililty to stop the execution of an action.
64
+
65
+ $('#myModal').on('show', function (e) {
66
+ if (!data) return e.preventDefault() // stops modal from being shown
67
+ })
68
+
69
+ ---
70
+
71
+ ### CONSTRUCTORS
72
+
73
+ Each plugin should expose its raw constructor on a `Constructor` property -- accessed in the following way:
74
+
75
+
76
+ $.fn.popover.Constructor
77
+
78
+ ---
79
+
80
+ ### DATA ACCESSOR
81
+
82
+ Each plugin stores a copy of the invoked class on an object. This class instance can be accessed directly through jQuery's data API like this:
83
+
84
+ $('[rel=popover]').data('popover') instanceof $.fn.popover.Constructor
85
+
86
+ ---
87
+
88
+ ### DATA ATTRIBUTES
89
+
90
+ Data attributes should take the following form:
91
+
92
+ - data-{{verb}}={{plugin}} - defines main interaction
93
+ - data-target || href^=# - defined on "control" element (if element controls an element other than self)
94
+ - data-{{noun}} - defines class instance options
95
+
96
+ Examples:
97
+
98
+ // control other targets
99
+ data-toggle="modal" data-target="#foo"
100
+ data-toggle="collapse" data-target="#foo" data-parent="#bar"
101
+
102
+ // defined on element they control
103
+ data-spy="scroll"
104
+
105
+ data-dismiss="modal"
106
+ data-dismiss="alert"
107
+
108
+ data-toggle="dropdown"
109
+
110
+ data-toggle="button"
111
+ data-toggle="buttons-checkbox"
112
+ data-toggle="buttons-radio"
@@ -0,0 +1,90 @@
1
+ /* ==========================================================
2
+ * bootstrap-alert.js v2.0.4
3
+ * http://twitter.github.com/bootstrap/javascript.html#alerts
4
+ * ==========================================================
5
+ * Copyright 2012 Twitter, Inc.
6
+ *
7
+ * Licensed under the Apache License, Version 2.0 (the "License");
8
+ * you may not use this file except in compliance with the License.
9
+ * You may obtain a copy of the License at
10
+ *
11
+ * http://www.apache.org/licenses/LICENSE-2.0
12
+ *
13
+ * Unless required by applicable law or agreed to in writing, software
14
+ * distributed under the License is distributed on an "AS IS" BASIS,
15
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ * See the License for the specific language governing permissions and
17
+ * limitations under the License.
18
+ * ========================================================== */
19
+
20
+
21
+ !function ($) {
22
+
23
+ "use strict"; // jshint ;_;
24
+
25
+
26
+ /* ALERT CLASS DEFINITION
27
+ * ====================== */
28
+
29
+ var dismiss = '[data-dismiss="alert"]'
30
+ , Alert = function (el) {
31
+ $(el).on('click', dismiss, this.close)
32
+ }
33
+
34
+ Alert.prototype.close = function (e) {
35
+ var $this = $(this)
36
+ , selector = $this.attr('data-target')
37
+ , $parent
38
+
39
+ if (!selector) {
40
+ selector = $this.attr('href')
41
+ selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7
42
+ }
43
+
44
+ $parent = $(selector)
45
+
46
+ e && e.preventDefault()
47
+
48
+ $parent.length || ($parent = $this.hasClass('alert') ? $this : $this.parent())
49
+
50
+ $parent.trigger(e = $.Event('close'))
51
+
52
+ if (e.isDefaultPrevented()) return
53
+
54
+ $parent.removeClass('in')
55
+
56
+ function removeElement() {
57
+ $parent
58
+ .trigger('closed')
59
+ .remove()
60
+ }
61
+
62
+ $.support.transition && $parent.hasClass('fade') ?
63
+ $parent.on($.support.transition.end, removeElement) :
64
+ removeElement()
65
+ }
66
+
67
+
68
+ /* ALERT PLUGIN DEFINITION
69
+ * ======================= */
70
+
71
+ $.fn.alert = function (option) {
72
+ return this.each(function () {
73
+ var $this = $(this)
74
+ , data = $this.data('alert')
75
+ if (!data) $this.data('alert', (data = new Alert(this)))
76
+ if (typeof option == 'string') data[option].call($this)
77
+ })
78
+ }
79
+
80
+ $.fn.alert.Constructor = Alert
81
+
82
+
83
+ /* ALERT DATA-API
84
+ * ============== */
85
+
86
+ $(function () {
87
+ $('body').on('click.alert.data-api', dismiss, Alert.prototype.close)
88
+ })
89
+
90
+ }(window.jQuery);
@@ -0,0 +1,96 @@
1
+ /* ============================================================
2
+ * bootstrap-button.js v2.0.4
3
+ * http://twitter.github.com/bootstrap/javascript.html#buttons
4
+ * ============================================================
5
+ * Copyright 2012 Twitter, Inc.
6
+ *
7
+ * Licensed under the Apache License, Version 2.0 (the "License");
8
+ * you may not use this file except in compliance with the License.
9
+ * You may obtain a copy of the License at
10
+ *
11
+ * http://www.apache.org/licenses/LICENSE-2.0
12
+ *
13
+ * Unless required by applicable law or agreed to in writing, software
14
+ * distributed under the License is distributed on an "AS IS" BASIS,
15
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ * See the License for the specific language governing permissions and
17
+ * limitations under the License.
18
+ * ============================================================ */
19
+
20
+
21
+ !function ($) {
22
+
23
+ "use strict"; // jshint ;_;
24
+
25
+
26
+ /* BUTTON PUBLIC CLASS DEFINITION
27
+ * ============================== */
28
+
29
+ var Button = function (element, options) {
30
+ this.$element = $(element)
31
+ this.options = $.extend({}, $.fn.button.defaults, options)
32
+ }
33
+
34
+ Button.prototype.setState = function (state) {
35
+ var d = 'disabled'
36
+ , $el = this.$element
37
+ , data = $el.data()
38
+ , val = $el.is('input') ? 'val' : 'html'
39
+
40
+ state = state + 'Text'
41
+ data.resetText || $el.data('resetText', $el[val]())
42
+
43
+ $el[val](data[state] || this.options[state])
44
+
45
+ // push to event loop to allow forms to submit
46
+ setTimeout(function () {
47
+ state == 'loadingText' ?
48
+ $el.addClass(d).attr(d, d) :
49
+ $el.removeClass(d).removeAttr(d)
50
+ }, 0)
51
+ }
52
+
53
+ Button.prototype.toggle = function () {
54
+ var $parent = this.$element.parent('[data-toggle="buttons-radio"]')
55
+
56
+ $parent && $parent
57
+ .find('.active')
58
+ .removeClass('active')
59
+
60
+ this.$element.toggleClass('active')
61
+ }
62
+
63
+
64
+ /* BUTTON PLUGIN DEFINITION
65
+ * ======================== */
66
+
67
+ $.fn.button = function (option) {
68
+ return this.each(function () {
69
+ var $this = $(this)
70
+ , data = $this.data('button')
71
+ , options = typeof option == 'object' && option
72
+ if (!data) $this.data('button', (data = new Button(this, options)))
73
+ if (option == 'toggle') data.toggle()
74
+ else if (option) data.setState(option)
75
+ })
76
+ }
77
+
78
+ $.fn.button.defaults = {
79
+ loadingText: 'loading...'
80
+ }
81
+
82
+ $.fn.button.Constructor = Button
83
+
84
+
85
+ /* BUTTON DATA-API
86
+ * =============== */
87
+
88
+ $(function () {
89
+ $('body').on('click.button.data-api', '[data-toggle^=button]', function ( e ) {
90
+ var $btn = $(e.target)
91
+ if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn')
92
+ $btn.button('toggle')
93
+ })
94
+ })
95
+
96
+ }(window.jQuery);