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
@@ -4,11 +4,13 @@ Feature: Assets get a file hash appended to their and references to them are upd
4
4
  When I cd to "build"
5
5
  Then the following files should exist:
6
6
  | index.html |
7
+ | apple-touch-icon.png |
8
+ | favicon.ico |
7
9
  | images/100px-1242c368.png |
8
10
  | images/100px-5fd6fb90.jpg |
9
11
  | images/100px-5fd6fb90.gif |
10
- | javascripts/application-df677242.js |
11
- | stylesheets/site-ed8c2d12.css |
12
+ | javascripts/application-1d8d5276.js |
13
+ | stylesheets/site-50eaa978.css |
12
14
  | index.html |
13
15
  | subdir/index.html |
14
16
  | other/index.html |
@@ -19,53 +21,55 @@ Feature: Assets get a file hash appended to their and references to them are upd
19
21
  | javascripts/application.js |
20
22
  | stylesheets/site.css |
21
23
 
22
- And the file "javascripts/application-df677242.js" should contain "img.src = '/images/100px-5fd6fb90.jpg'"
23
- And the file "stylesheets/site-ed8c2d12.css" should contain "background-image: url('../images/100px-5fd6fb90.jpg')"
24
- And the file "index.html" should contain 'href="stylesheets/site-ed8c2d12.css"'
25
- And the file "index.html" should contain 'src="javascripts/application-df677242.js"'
24
+ And the file "javascripts/application-1d8d5276.js" should contain "img.src = '/images/100px-5fd6fb90.jpg'"
25
+ And the file "stylesheets/site-50eaa978.css" should contain "background-image: url('../images/100px-5fd6fb90.jpg')"
26
+ And the file "index.html" should contain 'href="apple-touch-icon.png"'
27
+ And the file "index.html" should contain 'href="stylesheets/site-50eaa978.css"'
28
+ And the file "index.html" should contain 'src="javascripts/application-1d8d5276.js"'
26
29
  And the file "index.html" should contain 'src="images/100px-5fd6fb90.jpg"'
27
- And the file "subdir/index.html" should contain 'href="../stylesheets/site-ed8c2d12.css"'
28
- And the file "subdir/index.html" should contain 'src="../javascripts/application-df677242.js"'
30
+ And the file "subdir/index.html" should contain 'href="../stylesheets/site-50eaa978.css"'
31
+ And the file "subdir/index.html" should contain 'src="../javascripts/application-1d8d5276.js"'
29
32
  And the file "subdir/index.html" should contain 'src="../images/100px-5fd6fb90.jpg"'
30
- And the file "other/index.html" should contain 'href="../stylesheets/site-ed8c2d12.css"'
31
- And the file "other/index.html" should contain 'src="../javascripts/application-df677242.js"'
33
+ And the file "other/index.html" should contain 'href="../stylesheets/site-50eaa978.css"'
34
+ And the file "other/index.html" should contain 'src="../javascripts/application-1d8d5276.js"'
32
35
  And the file "other/index.html" should contain 'src="../images/100px-5fd6fb90.jpg"'
33
36
 
34
37
  Scenario: Hashed assets work in preview server
35
38
  Given the Server is running at "asset-hash-app"
36
39
  When I go to "/"
37
- Then I should see 'href="stylesheets/site-ed8c2d12.css"'
38
- And I should see 'src="javascripts/application-df677242.js"'
40
+ Then I should see 'href="apple-touch-icon.png"'
41
+ And I should see 'href="stylesheets/site-50eaa978.css"'
42
+ And I should see 'src="javascripts/application-1d8d5276.js"'
39
43
  And I should see 'src="images/100px-5fd6fb90.jpg"'
40
44
  When I go to "/subdir/"
41
- Then I should see 'href="../stylesheets/site-ed8c2d12.css"'
42
- And I should see 'src="../javascripts/application-df677242.js"'
45
+ Then I should see 'href="../stylesheets/site-50eaa978.css"'
46
+ And I should see 'src="../javascripts/application-1d8d5276.js"'
43
47
  And I should see 'src="../images/100px-5fd6fb90.jpg"'
44
48
  When I go to "/other/"
45
- Then I should see 'href="../stylesheets/site-ed8c2d12.css"'
46
- And I should see 'src="../javascripts/application-df677242.js"'
49
+ Then I should see 'href="../stylesheets/site-50eaa978.css"'
50
+ And I should see 'src="../javascripts/application-1d8d5276.js"'
47
51
  And I should see 'src="../images/100px-5fd6fb90.jpg"'
48
- When I go to "/javascripts/application-df677242.js"
52
+ When I go to "/javascripts/application-1d8d5276.js"
49
53
  Then I should see "img.src = '/images/100px-5fd6fb90.jpg'"
50
- When I go to "/stylesheets/site-ed8c2d12.css"
54
+ When I go to "/stylesheets/site-50eaa978.css"
51
55
  Then I should see "background-image: url('../images/100px-5fd6fb90.jpg')"
52
56
 
53
57
  Scenario: Enabling an asset host still produces hashed files and references
54
58
  Given the Server is running at "asset-hash-host-app"
55
59
  When I go to "/"
56
- Then I should see 'href="http://middlemanapp.com/stylesheets/site-e5a31a3e.css"'
60
+ Then I should see 'href="http://middlemanapp.com/stylesheets/site-171eb3c0.css"'
57
61
  And I should see 'src="http://middlemanapp.com/images/100px-5fd6fb90.jpg"'
58
62
  When I go to "/subdir/"
59
- Then I should see 'href="http://middlemanapp.com/stylesheets/site-e5a31a3e.css"'
63
+ Then I should see 'href="http://middlemanapp.com/stylesheets/site-171eb3c0.css"'
60
64
  And I should see 'src="http://middlemanapp.com/images/100px-5fd6fb90.jpg"'
61
65
  When I go to "/other/"
62
- Then I should see 'href="http://middlemanapp.com/stylesheets/site-e5a31a3e.css"'
66
+ Then I should see 'href="http://middlemanapp.com/stylesheets/site-171eb3c0.css"'
63
67
  And I should see 'src="http://middlemanapp.com/images/100px-5fd6fb90.jpg"'
64
68
  # Asset helpers don't appear to work from Compass right now
65
69
  # When I go to "/stylesheets/site-e5a31a3e.css"
66
70
  # Then I should see "background-image: url('http://middlemanapp.com/images/100px-5fd6fb90.jpg')"
67
71
 
68
- Scenario: The asset hash should change when a SASS or Sprockets partial changes
72
+ Scenario: The asset hash should change when a SASS partial changes
69
73
  Given the Server is running at "asset-hash-app"
70
74
  And the file "source/stylesheets/_partial.sass" has the contents
71
75
  """
@@ -73,12 +77,11 @@ Feature: Assets get a file hash appended to their and references to them are upd
73
77
  font-size: 14px
74
78
  """
75
79
  When I go to "/partials/"
76
- Then I should see 'href="../stylesheets/uses_partials-8b948098.css'
80
+ Then I should see 'href="../stylesheets/uses_partials-423a00f7.css'
77
81
  And the file "source/stylesheets/_partial.sass" has the contents
78
82
  """
79
83
  body
80
84
  font-size: 18px !important
81
85
  """
82
86
  When I go to "/partials/"
83
- Then I should see 'href="../stylesheets/uses_partials-1f9f0ed2.css'
84
-
87
+ Then I should see 'href="../stylesheets/uses_partials-e8c3d4eb.css'
@@ -0,0 +1,7 @@
1
+ Feature: Alternate between multiple asset hosts
2
+ In order to speed up page loading
3
+
4
+ Scenario: Rendering html with the feature enabled
5
+ Given the Server is running at "asset-host-app"
6
+ When I go to "/asset_host.html"
7
+ Then I should see "http://assets"
@@ -0,0 +1,16 @@
1
+ Feature: Automatically detect and insert image dimensions into tags
2
+ In order to speed up development and appease YSlow
3
+
4
+ Scenario: Rendering an image with the feature disabled
5
+ Given "automatic_image_sizes" feature is "disabled"
6
+ And the Server is running at "automatic-image-size-app"
7
+ When I go to "/auto-image-sizes.html"
8
+ Then I should not see "width="
9
+ And I should not see "height="
10
+
11
+ Scenario: Rendering an image with the feature enabled
12
+ Given "automatic_image_sizes" feature is "enabled"
13
+ And the Server is running at "automatic-image-size-app"
14
+ When I go to "/auto-image-sizes.html"
15
+ Then I should see "width="
16
+ And I should see "height="
@@ -0,0 +1,14 @@
1
+ Feature: Build Clean
2
+
3
+ Scenario: Clean an app with directory indexes
4
+ Given a successfully built app at "clean-dir-app"
5
+ Then the following files should exist:
6
+ | build/about/index.html |
7
+ Given a successfully built app at "clean-dir-app" with flags "--clean"
8
+ Then the following files should exist:
9
+ | build/about/index.html |
10
+
11
+ Scenario: Clean build an app that's never been built
12
+ Given a successfully built app at "clean-dir-app" with flags "--clean"
13
+ Then the following files should exist:
14
+ | build/about/index.html |
@@ -14,4 +14,4 @@ Feature: Support coffee-script
14
14
  Scenario: Rendering broken coffee
15
15
  Given the Server is running at "coffeescript-app"
16
16
  When I go to "/javascripts/broken-coffee.js"
17
- Then I should see "Error"
17
+ Then I should see "reserved word"
@@ -1,4 +1,9 @@
1
1
  Feature: Support content_for and yield_content helpers
2
+
3
+ Scenario: content_for works as expected in erb
4
+ Given the Server is running at "content-for-app"
5
+ When I go to "/content_for_erb.html"
6
+ Then I should see "In Layout: I am the yielded content erb"
2
7
 
3
8
  Scenario: content_for works as expected in haml
4
9
  Given the Server is running at "content-for-app"
@@ -0,0 +1,66 @@
1
+ Feature: Directory Index
2
+ In order output Apache-friendly directories and indexes
3
+
4
+ Scenario: Checking built folder for content
5
+ Given a successfully built app at "indexable-app"
6
+ When I cd to "build"
7
+ Then the following files should exist:
8
+ | needs_index/index.html |
9
+ | a_folder/needs_index/index.html |
10
+ | leave_me_alone.html |
11
+ | wildcard_leave_me_alone.html |
12
+ | regular/index.html |
13
+ | .htaccess |
14
+ Then the following files should not exist:
15
+ | egular/index/index.html |
16
+ | needs_index.html |
17
+ | a_folder/needs_index.html |
18
+ | leave_me_alone/index.html |
19
+ | wildcard_leave_me_alone/index.html |
20
+ And the file "needs_index/index.html" should contain "Indexable"
21
+ And the file "a_folder/needs_index/index.html" should contain "Indexable"
22
+ And the file "leave_me_alone.html" should contain "Stay away"
23
+ And the file "regular/index.html" should contain "Regular"
24
+
25
+ Scenario: Preview normal file
26
+ Given the Server is running at "indexable-app"
27
+ When I go to "/needs_index/"
28
+ Then I should see "Indexable"
29
+
30
+ Scenario: Preview normal file subdirectory
31
+ Given the Server is running at "indexable-app"
32
+ When I go to "/a_folder/needs_index/"
33
+ Then I should see "Indexable"
34
+
35
+ Scenario: Preview ignored file
36
+ Given the Server is running at "indexable-app"
37
+ When I go to "/leave_me_alone/"
38
+ Then I should see "File Not Found"
39
+
40
+ Scenario: Link_to knows about directory indexes
41
+ Given a fixture app "indexable-app"
42
+ And a file named "source/link_to.html.erb" with:
43
+ """
44
+ link_to: <%= link_to "Needs Index", "/needs_index.html" %>
45
+ explicit_link_to: <%= link_to "Explicit", "/needs_index/index.html" %>
46
+ unknown_link_to: <%= link_to "Unknown", "/unknown.html" %>
47
+ relative_link_to: <%= link_to "Relative", "needs_index.html" %>
48
+ """
49
+ And a file named "source/link_to/sub.html.erb" with:
50
+ """
51
+ link_to: <%= link_to "Needs Index", "/needs_index.html" %>
52
+ explicit_link_to: <%= link_to "Explicit", "/needs_index/index.html" %>
53
+ unknown_link_to: <%= link_to "Unknown", "/unknown.html" %>
54
+ relative_link_to: <%= link_to "Relative", "../needs_index.html" %>
55
+ """
56
+ And the Server is running at "indexable-app"
57
+ When I go to "/link_to/"
58
+ Then I should see 'link_to: <a href="/needs_index/">Needs Index</a>'
59
+ Then I should see 'explicit_link_to: <a href="/needs_index/index.html">Explicit</a>'
60
+ Then I should see 'unknown_link_to: <a href="/unknown.html">Unknown</a>'
61
+ Then I should see 'relative_link_to: <a href="/needs_index/">Relative</a>'
62
+ When I go to "/link_to/sub/"
63
+ Then I should see 'link_to: <a href="/needs_index/">Needs Index</a>'
64
+ Then I should see 'explicit_link_to: <a href="/needs_index/index.html">Explicit</a>'
65
+ Then I should see 'unknown_link_to: <a href="/unknown.html">Unknown</a>'
66
+ Then I should see 'relative_link_to: <a href="/needs_index/">Relative</a>'
@@ -0,0 +1,28 @@
1
+ Feature: Text Files Without Extensions Should Build and Preview
2
+
3
+ Scenario: Building Text Files with directory indexes
4
+ Given a successfully built app at "extensionless-text-files-app"
5
+ When I cd to "build"
6
+ Then the following files should exist:
7
+ | CNAME |
8
+ | LICENSE |
9
+ | README |
10
+ Then the following files should not exist:
11
+ | CNAME/index.html |
12
+ | LICENSE/index.html |
13
+ | README/index.html |
14
+
15
+ Scenario: Previewing Text Files
16
+ Given the Server is running at "extensionless-text-files-app"
17
+ When I go to "/CNAME"
18
+ Then I should see "test.github.com"
19
+ When I go to "/LICENSE"
20
+ Then I should see "You have the right to remain classy."
21
+ When I go to "/README"
22
+ Then I should see "Bork bork bork"
23
+ # When I go to "/CNAME/index.html"
24
+ # Then I should see "File Not Found"
25
+ # When I go to "/LICENSE/index.html"
26
+ # Then I should see "File Not Found"
27
+ # When I go to "/README/index.html"
28
+ # Then I should see "File Not Found"
@@ -0,0 +1,12 @@
1
+ Feature: Built-in macro view helpers
2
+ In order to simplify generating HTML
3
+
4
+ Scenario: Using the padrino helpers
5
+ Given the Server is running at "padrino-helpers-app"
6
+ When I go to "/former_padrino_test.html"
7
+ And I should see 'href="test2.com"'
8
+ And I should see 'src="/images/test2.png"'
9
+ And I should see 'src="/javascripts/test1.js"'
10
+ And I should see 'href="/stylesheets/test1.css"'
11
+ And I should see '1 KB'
12
+
@@ -0,0 +1,42 @@
1
+ Feature: Setting page settings through frontmatter
2
+ Scenario: Setting layout, ignoring, and disabling directory indexes through frontmatter (build)
3
+ Given a successfully built app at "frontmatter-settings-app"
4
+ Then the following files should exist:
5
+ | build/proxied/index.html |
6
+ | build/no_index.html |
7
+ And the file "build/alternate_layout/index.html" should contain "Alternate layout"
8
+ And the following files should not exist:
9
+ | build/ignored/index.html |
10
+ | build/no_index/index.html |
11
+
12
+
13
+ Scenario: Setting layout, ignoring, and disabling directory indexes through frontmatter (preview)
14
+ Given the Server is running at "frontmatter-settings-app"
15
+ # When I go to "/proxied/"
16
+ # Then I should not see "File Not Found"
17
+ When I go to "/no_index.html"
18
+ Then I should not see "File Not Found"
19
+ When I go to "/alternate_layout/"
20
+ Then I should not see "File Not Found"
21
+ And I should see "Alternate layout"
22
+ When I go to "/ignored.html"
23
+ Then I should see "File Not Found"
24
+ When I go to "/ignored/index.html"
25
+ Then I should see "File Not Found"
26
+ When I go to "/no_index/index.html"
27
+ Then I should see "File Not Found"
28
+
29
+ Scenario: Changing frontmatter in preview server
30
+ Given the Server is running at "frontmatter-settings-app"
31
+ When I go to "/ignored/index.html"
32
+ Then I should see "File Not Found"
33
+ And the file "source/ignored.html.erb" has the contents
34
+ """
35
+ ---
36
+ ignored: false
37
+ ---
38
+
39
+ This file is no longer ignored.
40
+ """
41
+ When I go to "/ignored/index.html"
42
+ Then I should see "This file is no longer ignored."
@@ -0,0 +1,27 @@
1
+ Feature: Built-in auto_javascript_include_tag view helper
2
+ In order to simplify including javascript files
3
+
4
+ Scenario: Viewing the root path
5
+ Given the Server is running at "auto-js-app"
6
+ When I go to "/auto-js.html"
7
+ Then I should see "javascripts/auto-js.js"
8
+
9
+ Scenario: Viewing a tier-1 path
10
+ Given the Server is running at "auto-js-app"
11
+ When I go to "/auto-js/auto-js.html"
12
+ Then I should see "javascripts/auto-js/auto-js.js"
13
+
14
+ Scenario: Viewing the index file of a tier-1 path, without filename
15
+ Given the Server is running at "auto-js-app"
16
+ When I go to "/auto-js"
17
+ Then I should see "javascripts/auto-js/index.js"
18
+
19
+ Scenario: Viewing the index file of a tier-1 path, without filename, with a trailing slash
20
+ Given the Server is running at "auto-js-app"
21
+ When I go to "/auto-js/"
22
+ Then I should see "javascripts/auto-js/index.js"
23
+
24
+ Scenario: Viewing a tier-2 path
25
+ Given the Server is running at "auto-js-app"
26
+ When I go to "/auto-js/sub/auto-js.html"
27
+ Then I should see "javascripts/auto-js/sub/auto-js.js"
@@ -0,0 +1,27 @@
1
+ Feature: Built-in auto_stylesheet_link_tag view helper
2
+ In order to simplify including css files
3
+
4
+ Scenario: Viewing the root path
5
+ Given the Server is running at "auto-css-app"
6
+ When I go to "/auto-css.html"
7
+ Then I should see "stylesheets/auto-css.css"
8
+
9
+ Scenario: Viewing a tier-1 path
10
+ Given the Server is running at "auto-css-app"
11
+ When I go to "/auto-css/auto-css.html"
12
+ Then I should see "stylesheets/auto-css/auto-css.css"
13
+
14
+ Scenario: Viewing the index file of a tier-1 path, without filename
15
+ Given the Server is running at "auto-css-app"
16
+ When I go to "/auto-css"
17
+ Then I should see "stylesheets/auto-css/index.css"
18
+
19
+ Scenario: Viewing the index file of a tier-1 path, without filename, with a trailing slash
20
+ Given the Server is running at "auto-css-app"
21
+ When I go to "/auto-css/"
22
+ Then I should see "stylesheets/auto-css/index.css"
23
+
24
+ Scenario: Viewing a tier-2 path
25
+ Given the Server is running at "auto-css-app"
26
+ When I go to "/auto-css/sub/auto-css.html"
27
+ Then I should see "stylesheets/auto-css/sub/auto-css.css"
@@ -0,0 +1,6 @@
1
+ Feature: Lorem generating helper
2
+
3
+ Scenario: Lorem Helper
4
+ Given the Server is running at "lorem-app"
5
+ Then going to "/lorem.html" should not raise an exception
6
+ And I should see "http://placekitten.com/100"
@@ -0,0 +1,17 @@
1
+ Feature: Built-in page_classes view helper
2
+ In order to generate body classes for views
3
+
4
+ Scenario: Viewing the root path
5
+ Given the Server is running at "page-classes-app"
6
+ When I go to "/page-classes.html"
7
+ Then I should see "page-classes"
8
+
9
+ Scenario: Viewing a tier-1 path
10
+ Given the Server is running at "page-classes-app"
11
+ When I go to "/sub1/page-classes.html"
12
+ Then I should see "sub1 sub1_page-classes"
13
+
14
+ Scenario: Viewing a tier-2 path
15
+ Given the Server is running at "page-classes-app"
16
+ When I go to "/sub1/sub2/page-classes.html"
17
+ Then I should see "sub1 sub1_sub2 sub1_sub2_page-classes"
@@ -0,0 +1,68 @@
1
+ Feature: relative_link_to helper
2
+
3
+ Scenario: relative_link_to produces relative links
4
+ Given a fixture app "indexable-app"
5
+ And an empty file named "config.rb"
6
+ And a file named "source/link_to.html.erb" with:
7
+ """
8
+ absolute: <%= link_to "Needs Index", "/needs_index.html", :relative => true %>
9
+ relative: <%= link_to "Relative", "needs_index.html", :relative => true %>
10
+ """
11
+ And a file named "source/link_to/sub.html.erb" with:
12
+ """
13
+ absolute: <%= link_to "Needs Index", "/needs_index.html", :relative => true %>
14
+ relative: <%= link_to "Relative", "../needs_index.html", :relative => true %>
15
+ """
16
+ And the Server is running at "indexable-app"
17
+ When I go to "/link_to.html"
18
+ Then I should see 'absolute: <a href="needs_index.html">Needs Index</a>'
19
+ Then I should see 'relative: <a href="needs_index.html">Relative</a>'
20
+ When I go to "/link_to/sub.html"
21
+ Then I should see 'absolute: <a href="../needs_index.html">Needs Index</a>'
22
+ Then I should see 'relative: <a href="../needs_index.html">Relative</a>'
23
+
24
+ Scenario: relative_link_to produces relative links when :relative_links is set to true
25
+ Given a fixture app "indexable-app"
26
+ And a file named "config.rb" with:
27
+ """
28
+ set :relative_links, true
29
+ """
30
+ And a file named "source/link_to.html.erb" with:
31
+ """
32
+ absolute: <%= link_to "Needs Index", "/needs_index.html" %>
33
+ relative: <%= link_to "Relative", "needs_index.html", :relative => false %>
34
+ unknown: <%= link_to "Unknown", "foo.html" %>
35
+ """
36
+ And a file named "source/link_to/sub.html.erb" with:
37
+ """
38
+ absolute: <%= link_to "Needs Index", "/needs_index.html" %>
39
+ relative: <%= link_to "Relative", "../needs_index.html" %>
40
+ """
41
+ And the Server is running at "indexable-app"
42
+ When I go to "/link_to.html"
43
+ Then I should see 'absolute: <a href="needs_index.html">Needs Index</a>'
44
+ Then I should see 'relative: <a href="/needs_index.html">Relative</a>'
45
+ Then I should see 'unknown: <a href="foo.html">Unknown</a>'
46
+ When I go to "/link_to/sub.html"
47
+ Then I should see 'absolute: <a href="../needs_index.html">Needs Index</a>'
48
+ Then I should see 'relative: <a href="../needs_index.html">Relative</a>'
49
+
50
+ Scenario: relative_link_to knows about directory indexes
51
+ Given a fixture app "indexable-app"
52
+ And a file named "source/link_to.html.erb" with:
53
+ """
54
+ absolute: <%= link_to "Needs Index", "/needs_index.html", :relative => true %>
55
+ relative: <%= link_to "Relative", "needs_index.html", :relative => true %>
56
+ """
57
+ And a file named "source/link_to/sub.html.erb" with:
58
+ """
59
+ absolute: <%= link_to "Needs Index", "/needs_index.html", :relative => true %>
60
+ relative: <%= link_to "Relative", "../needs_index.html", :relative => true %>
61
+ """
62
+ And the Server is running at "indexable-app"
63
+ When I go to "/link_to/"
64
+ Then I should see 'absolute: <a href="needs_index/">Needs Index</a>'
65
+ Then I should see 'relative: <a href="needs_index/">Relative</a>'
66
+ When I go to "/link_to/sub/"
67
+ Then I should see 'absolute: <a href="../needs_index/">Needs Index</a>'
68
+ Then I should see 'relative: <a href="../needs_index/">Relative</a>'