middleman-core-with-external-sources-watch-fix 4.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1131) hide show
  1. checksums.yaml +7 -0
  2. data/.gemtest +0 -0
  3. data/.rspec +1 -0
  4. data/.simplecov +7 -0
  5. data/.yardopts +6 -0
  6. data/Rakefile +4 -0
  7. data/cucumber.yml +2 -0
  8. data/features/asset_hash.feature +287 -0
  9. data/features/asset_host.feature +54 -0
  10. data/features/auto_layout.feature +36 -0
  11. data/features/automatic_alt_tags.feature +8 -0
  12. data/features/automatic_directory_matcher.feature +32 -0
  13. data/features/automatic_image_sizes.feature +29 -0
  14. data/features/builder.feature +57 -0
  15. data/features/cache_buster.feature +56 -0
  16. data/features/capture_html.feature +18 -0
  17. data/features/chained_templates.feature +109 -0
  18. data/features/clean_build.feature +78 -0
  19. data/features/coffee-script.feature +22 -0
  20. data/features/collections.feature +238 -0
  21. data/features/console.feature +11 -0
  22. data/features/content_for.feature +16 -0
  23. data/features/content_type.feature +46 -0
  24. data/features/custom-source.feature +7 -0
  25. data/features/custom_layout_engines.feature +8 -0
  26. data/features/custom_layouts.feature +68 -0
  27. data/features/data.feature +60 -0
  28. data/features/default-layout.feature +90 -0
  29. data/features/directory_index.feature +82 -0
  30. data/features/dynamic_pages.feature +133 -0
  31. data/features/encoding_option.feature +28 -0
  32. data/features/extension_api_deprecations.feature +10 -0
  33. data/features/extension_hooks.feature +13 -0
  34. data/features/extensionless_text_files.feature +24 -0
  35. data/features/feature_params.feature +6 -0
  36. data/features/former_padrino_helpers.feature +27 -0
  37. data/features/front-matter-neighbor.feature +147 -0
  38. data/features/front-matter.feature +81 -0
  39. data/features/frontmatter_page_settings.feature +43 -0
  40. data/features/gzip.feature +51 -0
  41. data/features/helpers_auto_javascript_include_tag.feature +53 -0
  42. data/features/helpers_auto_stylesheet_link_tag.feature +48 -0
  43. data/features/helpers_content_tag.feature +16 -0
  44. data/features/helpers_external.feature +12 -0
  45. data/features/helpers_form_tag.feature +26 -0
  46. data/features/helpers_link_to.feature +185 -0
  47. data/features/helpers_lorem.feature +6 -0
  48. data/features/helpers_page_classes.feature +32 -0
  49. data/features/helpers_select_tag.feature +17 -0
  50. data/features/helpers_url_for.feature +152 -0
  51. data/features/i18n_builder.feature +164 -0
  52. data/features/i18n_force_locale.feature +13 -0
  53. data/features/i18n_link_to.feature +209 -0
  54. data/features/i18n_mixed_sources.feature +39 -0
  55. data/features/i18n_partials.feature +23 -0
  56. data/features/i18n_preview.feature +252 -0
  57. data/features/ignore.feature +150 -0
  58. data/features/ignore_already_minified.feature +47 -0
  59. data/features/image_srcset_paths.feature +7 -0
  60. data/features/import_files.feature +15 -0
  61. data/features/javascript-testing.feature +18 -0
  62. data/features/layouts_dir.feature +38 -0
  63. data/features/liquid.feature +11 -0
  64. data/features/markdown.feature +23 -0
  65. data/features/markdown_kramdown.feature +38 -0
  66. data/features/markdown_kramdown_in_haml.feature +42 -0
  67. data/features/markdown_kramdown_in_slim.feature +42 -0
  68. data/features/markdown_redcarpet.feature +167 -0
  69. data/features/markdown_redcarpet_in_haml.feature +41 -0
  70. data/features/minify_css.feature +205 -0
  71. data/features/minify_javascript.feature +266 -0
  72. data/features/missing-tilt-lib.feature +20 -0
  73. data/features/more-clean_build.feature +14 -0
  74. data/features/more-extensionless_text_files.feature +28 -0
  75. data/features/more-frontmatter_page_settings.feature +42 -0
  76. data/features/more-ignore.feature +62 -0
  77. data/features/more-sitemap_traversal.feature +83 -0
  78. data/features/more-wildcard_page_helper.feature +10 -0
  79. data/features/mount_rack.feature +65 -0
  80. data/features/move_files.feature +44 -0
  81. data/features/multiple-sources-reload.feature +40 -0
  82. data/features/multiple-sources.feature +35 -0
  83. data/features/nested_layouts.feature +58 -0
  84. data/features/paginate.feature +204 -0
  85. data/features/partials.feature +52 -0
  86. data/features/preview_changes.feature +29 -0
  87. data/features/proxy_pages.feature +84 -0
  88. data/features/redirects.feature +61 -0
  89. data/features/relative_assets.feature +148 -0
  90. data/features/sass-assets-paths.feature +11 -0
  91. data/features/sass_partials.feature +54 -0
  92. data/features/scss-support.feature +12 -0
  93. data/features/sitemap_traversal.feature +83 -0
  94. data/features/slim.feature +81 -0
  95. data/features/strip_url.feature +40 -0
  96. data/features/stylus.feature +54 -0
  97. data/features/support/env.rb +19 -0
  98. data/features/support/preserve_mime_types.rb +7 -0
  99. data/features/tilde_directories.feature +14 -0
  100. data/features/unicode_filecontents.feature +13 -0
  101. data/features/unicode_filenames.feature +36 -0
  102. data/features/v4_extension_callbacks.feature +8 -0
  103. data/features/wildcard_page_helper.feature +10 -0
  104. data/fixtures/asset-hash-app/config.rb +6 -0
  105. data/fixtures/asset-hash-app/lib/middleware.rb +16 -0
  106. data/fixtures/asset-hash-app/source/api.json.erb +1 -0
  107. data/fixtures/asset-hash-app/source/apple-touch-icon.png +0 -0
  108. data/fixtures/asset-hash-app/source/favicon.ico +0 -0
  109. data/fixtures/asset-hash-app/source/fonts/fontawesome-webfont.woff +0 -0
  110. data/fixtures/asset-hash-app/source/fonts/fontawesome-webfont.woff2 +0 -0
  111. data/fixtures/asset-hash-app/source/images/100px.gif +0 -0
  112. data/fixtures/asset-hash-app/source/images/100px.jpg +0 -0
  113. data/fixtures/asset-hash-app/source/images/100px.png +0 -0
  114. data/fixtures/asset-hash-app/source/images/200px.jpg +0 -0
  115. data/fixtures/asset-hash-app/source/images/300px.jpg +0 -0
  116. data/fixtures/asset-hash-app/source/index.html.erb +314 -0
  117. data/fixtures/asset-hash-app/source/javascripts/application.js +8 -0
  118. data/fixtures/asset-hash-app/source/layout.erb +18 -0
  119. data/fixtures/asset-hash-app/source/other.html.erb +5 -0
  120. data/fixtures/asset-hash-app/source/partials.html.erb +1 -0
  121. data/fixtures/asset-hash-app/source/slim.html.slim +8 -0
  122. data/fixtures/asset-hash-app/source/stylesheets/_partial.sass +2 -0
  123. data/fixtures/asset-hash-app/source/stylesheets/fragment.css.scss +7 -0
  124. data/fixtures/asset-hash-app/source/stylesheets/site.css.scss +4 -0
  125. data/fixtures/asset-hash-app/source/stylesheets/uses_fonts.css +4 -0
  126. data/fixtures/asset-hash-app/source/stylesheets/uses_partials.css.sass +4 -0
  127. data/fixtures/asset-hash-app/source/subdir/api.json.erb +1 -0
  128. data/fixtures/asset-hash-app/source/subdir/index.html.erb +317 -0
  129. data/fixtures/asset-hash-host-app/source/images/100px.gif +0 -0
  130. data/fixtures/asset-hash-host-app/source/images/100px.jpg +0 -0
  131. data/fixtures/asset-hash-host-app/source/images/100px.png +0 -0
  132. data/fixtures/asset-hash-host-app/source/index.html.erb +9 -0
  133. data/fixtures/asset-hash-host-app/source/layout.erb +17 -0
  134. data/fixtures/asset-hash-host-app/source/other.html.erb +5 -0
  135. data/fixtures/asset-hash-host-app/source/stylesheets/fragment.css.scss +7 -0
  136. data/fixtures/asset-hash-host-app/source/stylesheets/site.css.scss +4 -0
  137. data/fixtures/asset-hash-host-app/source/subdir/index.html.erb +6 -0
  138. data/fixtures/asset-hash-minified-app/config.rb +5 -0
  139. data/fixtures/asset-hash-minified-app/source/javascripts/jquery.min.js +5 -0
  140. data/fixtures/asset-host-app/config.rb +1 -0
  141. data/fixtures/asset-host-app/source/.htaccess +1 -0
  142. data/fixtures/asset-host-app/source/asset_host.html.erb +55 -0
  143. data/fixtures/asset-host-app/source/images/blank.gif +0 -0
  144. data/fixtures/asset-host-app/source/javascripts/asset_host.js +2 -0
  145. data/fixtures/asset-host-app/source/stylesheets/asset_host.css.sass +48 -0
  146. data/fixtures/auto-css-app/config.rb +9 -0
  147. data/fixtures/auto-css-app/source/auto-css.html.erb +1 -0
  148. data/fixtures/auto-css-app/source/auto-css/auto-css.html.erb +1 -0
  149. data/fixtures/auto-css-app/source/auto-css/index.html.erb +1 -0
  150. data/fixtures/auto-css-app/source/auto-css/sub/auto-css.html.erb +1 -0
  151. data/fixtures/auto-css-app/source/stylesheets/auto-css.css +3 -0
  152. data/fixtures/auto-css-app/source/stylesheets/auto-css/auto-css.css +3 -0
  153. data/fixtures/auto-css-app/source/stylesheets/auto-css/index.css +0 -0
  154. data/fixtures/auto-css-app/source/stylesheets/auto-css/sub/auto-css.css +3 -0
  155. data/fixtures/auto-js-app/config.rb +9 -0
  156. data/fixtures/auto-js-app/source/auto-js.html.erb +1 -0
  157. data/fixtures/auto-js-app/source/auto-js/auto-js.html.erb +1 -0
  158. data/fixtures/auto-js-app/source/auto-js/index.html.erb +1 -0
  159. data/fixtures/auto-js-app/source/auto-js/sub/auto-js.html.erb +1 -0
  160. data/fixtures/auto-js-app/source/javascripts/auto-js.js +1 -0
  161. data/fixtures/auto-js-app/source/javascripts/auto-js/auto-js.js +1 -0
  162. data/fixtures/auto-js-app/source/javascripts/auto-js/index.js +1 -0
  163. data/fixtures/auto-js-app/source/javascripts/auto-js/sub/auto-js.js +1 -0
  164. data/fixtures/auto-js-directory-index-app/config.rb +1 -0
  165. data/fixtures/auto-js-directory-index-app/source/auto-js.html.erb +1 -0
  166. data/fixtures/auto-js-directory-index-app/source/javascripts/auto-js.js +1 -0
  167. data/fixtures/automatic-alt-tags-app/config.rb +0 -0
  168. data/fixtures/automatic-alt-tags-app/source/auto-image-sizes.html.erb +1 -0
  169. data/fixtures/automatic-alt-tags-app/source/images/blank.gif +0 -0
  170. data/fixtures/automatic-directory-matcher-app/config.rb +1 -0
  171. data/fixtures/automatic-directory-matcher-app/source/root-plain.html +1 -0
  172. data/fixtures/automatic-directory-matcher-app/source/root.html.erb +1 -0
  173. data/fixtures/automatic-directory-matcher-app/source/sub--sub--sub-plain.html +1 -0
  174. data/fixtures/automatic-directory-matcher-app/source/sub--sub--sub.html.erb +1 -0
  175. data/fixtures/automatic-directory-matcher-app/source/sub--sub-plain.html +1 -0
  176. data/fixtures/automatic-directory-matcher-app/source/sub--sub.html.erb +1 -0
  177. data/fixtures/automatic-image-size-app/config.rb +0 -0
  178. data/fixtures/automatic-image-size-app/source/auto-image-sizes.html.erb +1 -0
  179. data/fixtures/automatic-image-size-app/source/images/blank.gif +0 -0
  180. data/fixtures/automatic-image-size-app/source/markdown-sizes.html.markdown +1 -0
  181. data/fixtures/basic-data-app/config.rb +2 -0
  182. data/fixtures/basic-data-app/data/test.yml +4 -0
  183. data/fixtures/basic-data-app/data/test2.json +4 -0
  184. data/fixtures/basic-data-app/source/data.html.erb +5 -0
  185. data/fixtures/basic-data-app/source/data3.html.erb +5 -0
  186. data/fixtures/build-with-errors-app/config.rb +1 -0
  187. data/fixtures/build-with-errors-app/source/index.html.erb +1 -0
  188. data/fixtures/cache-buster-app/config.rb +0 -0
  189. data/fixtures/cache-buster-app/source/cache-buster.html.erb +3 -0
  190. data/fixtures/cache-buster-app/source/images/blank.gif +0 -0
  191. data/fixtures/cache-buster-app/source/stylesheets/relative_assets.css.sass +2 -0
  192. data/fixtures/cache-buster-app/source/stylesheets/site.css.sass +3 -0
  193. data/fixtures/capture-html-app/config.rb +5 -0
  194. data/fixtures/capture-html-app/source/capture_html_erb.html.erb +5 -0
  195. data/fixtures/capture-html-app/source/capture_html_haml.html.haml +4 -0
  196. data/fixtures/capture-html-app/source/capture_html_slim.html.slim +4 -0
  197. data/fixtures/capture-html-app/source/layouts/capture_html.erb +4 -0
  198. data/fixtures/chained-app/config.rb +0 -0
  199. data/fixtures/chained-app/data/article.yml +2 -0
  200. data/fixtures/chained-app/source/index.html.str.erb +8 -0
  201. data/fixtures/chained-app/source/test.erb.combobreaker.str.erb +8 -0
  202. data/fixtures/clean-app/config-complications.rb +9 -0
  203. data/fixtures/clean-app/config-empty.rb +0 -0
  204. data/fixtures/clean-app/config-hidden-dir-after.rb +5 -0
  205. data/fixtures/clean-app/config-hidden-dir-before.rb +1 -0
  206. data/fixtures/clean-app/config.rb +9 -0
  207. data/fixtures/clean-app/source/index.html.erb +1 -0
  208. data/fixtures/clean-app/source/layout.erb +9 -0
  209. data/fixtures/clean-app/source/layouts/custom.erb +8 -0
  210. data/fixtures/clean-app/source/real.html +1 -0
  211. data/fixtures/clean-app/source/real/index.html.erb +5 -0
  212. data/fixtures/clean-app/source/should_be_ignored.html +1 -0
  213. data/fixtures/clean-app/source/should_be_ignored2.html +1 -0
  214. data/fixtures/clean-app/source/should_be_ignored3.html +1 -0
  215. data/fixtures/clean-app/source/static.html +1 -0
  216. data/fixtures/clean-dir-app/config.rb +2 -0
  217. data/fixtures/clean-dir-app/source/about.html +1 -0
  218. data/fixtures/clean-nested-app/config.rb +1 -0
  219. data/fixtures/clean-nested-app/source/about.html +1 -0
  220. data/fixtures/clean-nested-app/source/nested/nested.html +1 -0
  221. data/fixtures/coffeescript-app/config.rb +0 -0
  222. data/fixtures/coffeescript-app/source/inline-coffeescript.html.haml +3 -0
  223. data/fixtures/coffeescript-app/source/javascripts/broken-coffee.js.coffee +3 -0
  224. data/fixtures/coffeescript-app/source/javascripts/coffee_test.js.coffee +3 -0
  225. data/fixtures/collections-app/source/blog1/2011-01-01-new-article.html.markdown +7 -0
  226. data/fixtures/collections-app/source/blog1/2011-01-02-another-article.html.markdown +9 -0
  227. data/fixtures/collections-app/source/blog2/2011-01-01-new-article.html.markdown +9 -0
  228. data/fixtures/collections-app/source/blog2/2011-01-02-another-article.html.markdown +8 -0
  229. data/fixtures/content-for-app/config.rb +5 -0
  230. data/fixtures/content-for-app/source/content_for_erb.html.erb +5 -0
  231. data/fixtures/content-for-app/source/content_for_haml.html.haml +4 -0
  232. data/fixtures/content-for-app/source/content_for_slim.html.slim +5 -0
  233. data/fixtures/content-for-app/source/layouts/content_for.erb +4 -0
  234. data/fixtures/content-type-app/config.rb +1 -0
  235. data/fixtures/content-type-app/source/.htaccess +1 -0
  236. data/fixtures/content-type-app/source/README +1 -0
  237. data/fixtures/content-type-app/source/images/blank.gif +0 -0
  238. data/fixtures/content-type-app/source/index.html +1 -0
  239. data/fixtures/content-type-app/source/index.php +1 -0
  240. data/fixtures/content-type-app/source/javascripts/app.js +1 -0
  241. data/fixtures/content-type-app/source/override.html +5 -0
  242. data/fixtures/content-type-app/source/stylesheets/site.css +1 -0
  243. data/fixtures/csspie/config.rb +0 -0
  244. data/fixtures/csspie/source/stylesheets/PIE.htc +96 -0
  245. data/fixtures/custom-layout-app/config.rb +1 -0
  246. data/fixtures/custom-layout-app/source/index.html.erb +1 -0
  247. data/fixtures/custom-layout-app/source/layout.str +9 -0
  248. data/fixtures/custom-layout-app2/config.rb +0 -0
  249. data/fixtures/custom-layout-app2/source/custom-layout-dir/index.html.erb +1 -0
  250. data/fixtures/custom-layout-app2/source/custom-layout.html.erb +1 -0
  251. data/fixtures/custom-layout-app2/source/layouts/custom.erb +8 -0
  252. data/fixtures/custom-src-app/config.rb +1 -0
  253. data/fixtures/custom-src-app/src/index.html +0 -0
  254. data/fixtures/custom-src-app/src/layouts/layout.html.erb +1 -0
  255. data/fixtures/data-app/config.rb +3 -0
  256. data/fixtures/data-app/data/pages.yml +6 -0
  257. data/fixtures/data-app/source/index.html.erb +1 -0
  258. data/fixtures/data-app/source/layout.erb +5 -0
  259. data/fixtures/destination-dir-different-from-source-dir-name/external/page.html.erb +1 -0
  260. data/fixtures/destination-dir-different-from-source-dir-name/my-app/config.rb +2 -0
  261. data/fixtures/destination-dir-different-from-source-dir-name/my-app/source/index.html.erb +1 -0
  262. data/fixtures/different-engine-layout/config.rb +0 -0
  263. data/fixtures/different-engine-layout/source/index.haml +1 -0
  264. data/fixtures/different-engine-layout/source/index.html.str +1 -0
  265. data/fixtures/different-engine-layout/source/layout.erb +9 -0
  266. data/fixtures/different-engine-partial/config.rb +0 -0
  267. data/fixtures/different-engine-partial/source/index.html.erb +1 -0
  268. data/fixtures/different-engine-partial/source/layouts/layout.erb +7 -0
  269. data/fixtures/different-engine-partial/source/shared/_footer.str +1 -0
  270. data/fixtures/different-engine-partial/source/shared/_header.erb +1 -0
  271. data/fixtures/dynamic-pages-app/config.rb +30 -0
  272. data/fixtures/dynamic-pages-app/source/real.html +1 -0
  273. data/fixtures/dynamic-pages-app/source/real/index.html.erb +9 -0
  274. data/fixtures/dynamic-pages-app/source/should_be_ignored.html +1 -0
  275. data/fixtures/dynamic-pages-app/source/should_be_ignored2.html +1 -0
  276. data/fixtures/dynamic-pages-app/source/should_be_ignored3.html +1 -0
  277. data/fixtures/dynamic-pages-app/source/should_be_ignored4.html +1 -0
  278. data/fixtures/dynamic-pages-app/source/should_be_ignored5.html +1 -0
  279. data/fixtures/dynamic-pages-app/source/should_be_ignored6.html +1 -0
  280. data/fixtures/dynamic-pages-app/source/should_be_ignored7.html +1 -0
  281. data/fixtures/dynamic-pages-app/source/should_be_ignored8.html +1 -0
  282. data/fixtures/ember-cli-app/config.rb +5 -0
  283. data/fixtures/ember-cli-app/source/javascripts/file.js +0 -0
  284. data/fixtures/ember-cli-app/test-app/.bowerrc +3 -0
  285. data/fixtures/ember-cli-app/test-app/.gitignore +17 -0
  286. data/fixtures/ember-cli-app/test-app/.jshintrc +32 -0
  287. data/fixtures/ember-cli-app/test-app/Brocfile.js +20 -0
  288. data/fixtures/ember-cli-app/test-app/README.md +25 -0
  289. data/fixtures/ember-cli-app/test-app/app/app.js +14 -0
  290. data/fixtures/ember-cli-app/test-app/app/components/.gitkeep +0 -0
  291. data/fixtures/ember-cli-app/test-app/app/controllers/.gitkeep +0 -0
  292. data/fixtures/ember-cli-app/test-app/app/helpers/.gitkeep +0 -0
  293. data/fixtures/ember-cli-app/test-app/app/index.html +26 -0
  294. data/fixtures/ember-cli-app/test-app/app/models/.gitkeep +0 -0
  295. data/fixtures/ember-cli-app/test-app/app/router.js +10 -0
  296. data/fixtures/ember-cli-app/test-app/app/routes/.gitkeep +0 -0
  297. data/fixtures/ember-cli-app/test-app/app/styles/.gitkeep +0 -0
  298. data/fixtures/ember-cli-app/test-app/app/styles/app.css +3 -0
  299. data/fixtures/ember-cli-app/test-app/app/templates/.gitkeep +0 -0
  300. data/fixtures/ember-cli-app/test-app/app/templates/application.hbs +3 -0
  301. data/fixtures/ember-cli-app/test-app/app/templates/components/.gitkeep +0 -0
  302. data/fixtures/ember-cli-app/test-app/app/views/.gitkeep +0 -0
  303. data/fixtures/ember-cli-app/test-app/bower.json +16 -0
  304. data/fixtures/ember-cli-app/test-app/config/environment.js +38 -0
  305. data/fixtures/ember-cli-app/test-app/package.json +31 -0
  306. data/fixtures/ember-cli-app/test-app/public/.gitkeep +0 -0
  307. data/fixtures/ember-cli-app/test-app/testem.json +6 -0
  308. data/fixtures/ember-cli-app/test-app/tests/.jshintrc +73 -0
  309. data/fixtures/ember-cli-app/test-app/tests/helpers/resolver.js +9 -0
  310. data/fixtures/ember-cli-app/test-app/tests/helpers/start-app.js +30 -0
  311. data/fixtures/ember-cli-app/test-app/tests/index.html +50 -0
  312. data/fixtures/ember-cli-app/test-app/tests/test-helper.js +6 -0
  313. data/fixtures/ember-cli-app/test-app/tests/unit/.gitkeep +0 -0
  314. data/fixtures/empty-app/not-config.rb +0 -0
  315. data/fixtures/engine-matching-layout/config.rb +0 -0
  316. data/fixtures/engine-matching-layout/source/index.html.erb +1 -0
  317. data/fixtures/engine-matching-layout/source/layout.erb +9 -0
  318. data/fixtures/env-app/config.rb +0 -0
  319. data/fixtures/env-app/environments/development.rb +1 -0
  320. data/fixtures/env-app/environments/production.rb +2 -0
  321. data/fixtures/env-app/source/index.html.erb +3 -0
  322. data/fixtures/env-app/source/stylesheets/site.css.scss +3 -0
  323. data/fixtures/extension-api-deprecations-app/config.rb +11 -0
  324. data/fixtures/extension-api-deprecations-app/source/index.html.erb +1 -0
  325. data/fixtures/extension-api-deprecations-app/source/layouts/layout.erb +3 -0
  326. data/fixtures/extension-hooks-app/config.rb +39 -0
  327. data/fixtures/extension-hooks-app/source/index.html.erb +9 -0
  328. data/fixtures/extensionless-text-files-app/config.rb +0 -0
  329. data/fixtures/extensionless-text-files-app/source/CNAME +1 -0
  330. data/fixtures/extensionless-text-files-app/source/LICENSE +1 -0
  331. data/fixtures/extensionless-text-files-app/source/README +1 -0
  332. data/fixtures/extensionless-text-files-app/source/index.html +1 -0
  333. data/fixtures/external-helpers/config.rb +4 -0
  334. data/fixtures/external-helpers/helpers/derp.rb +3 -0
  335. data/fixtures/external-helpers/helpers/four_helpers.rb +3 -0
  336. data/fixtures/external-helpers/helpers/one_helper.rb +3 -0
  337. data/fixtures/external-helpers/helpers/yet_another_thingy.rb +3 -0
  338. data/fixtures/external-helpers/lib/hello_helper.rb +5 -0
  339. data/fixtures/external-helpers/source/automatic.html.erb +1 -0
  340. data/fixtures/external-helpers/source/index.html.erb +1 -0
  341. data/fixtures/feature-params-app/config.rb +16 -0
  342. data/fixtures/feature-params-app/source/index.html.erb +2 -0
  343. data/fixtures/fonts-app/config.rb +0 -0
  344. data/fixtures/fonts-app/source/fonts/StMarie-Thin.otf +0 -0
  345. data/fixtures/fonts-app/source/fonts/blank/blank.otf +0 -0
  346. data/fixtures/fonts-app/source/stylesheets/fonts.css.scss +6 -0
  347. data/fixtures/frontmatter-app/config.rb +1 -0
  348. data/fixtures/frontmatter-app/source/front-matter-2.php.erb +7 -0
  349. data/fixtures/frontmatter-app/source/front-matter-change.html.erb +5 -0
  350. data/fixtures/frontmatter-app/source/front-matter-encoding.html.erb +7 -0
  351. data/fixtures/frontmatter-app/source/front-matter-haml.html.haml +6 -0
  352. data/fixtures/frontmatter-app/source/front-matter-line-2.html.erb +10 -0
  353. data/fixtures/frontmatter-app/source/front-matter-pandoc.html.md.erb +13 -0
  354. data/fixtures/frontmatter-app/source/raw-front-matter.html +6 -0
  355. data/fixtures/frontmatter-app/source/raw-front-matter.php +6 -0
  356. data/fixtures/frontmatter-neighbor-app/config.rb +30 -0
  357. data/fixtures/frontmatter-neighbor-app/source/front-matter-2.php.erb +2 -0
  358. data/fixtures/frontmatter-neighbor-app/source/front-matter-2.php.erb.frontmatter +4 -0
  359. data/fixtures/frontmatter-neighbor-app/source/front-matter-change.html.erb +1 -0
  360. data/fixtures/frontmatter-neighbor-app/source/front-matter-change.html.erb.frontmatter +4 -0
  361. data/fixtures/frontmatter-neighbor-app/source/front-matter-encoding.html.erb +1 -0
  362. data/fixtures/frontmatter-neighbor-app/source/front-matter-encoding.html.erb.frontmatter +5 -0
  363. data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.html +1 -0
  364. data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.html.frontmatter +4 -0
  365. data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.php +1 -0
  366. data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.php.frontmatter +4 -0
  367. data/fixtures/frontmatter-settings-app/config.rb +4 -0
  368. data/fixtures/frontmatter-settings-app/source/alternate_layout.html.erb +5 -0
  369. data/fixtures/frontmatter-settings-app/source/ignored.html.erb +5 -0
  370. data/fixtures/frontmatter-settings-app/source/layouts/alternate.erb +3 -0
  371. data/fixtures/frontmatter-settings-app/source/layouts/override.erb +1 -0
  372. data/fixtures/frontmatter-settings-app/source/override_layout.html.erb +4 -0
  373. data/fixtures/frontmatter-settings-app/source/page_mentioned.html.erb +4 -0
  374. data/fixtures/frontmatter-settings-neighbor-app/config.rb +40 -0
  375. data/fixtures/frontmatter-settings-neighbor-app/source/alternate_layout.html.erb +1 -0
  376. data/fixtures/frontmatter-settings-neighbor-app/source/alternate_layout.html.erb.frontmatter +3 -0
  377. data/fixtures/frontmatter-settings-neighbor-app/source/ignored.html.erb +1 -0
  378. data/fixtures/frontmatter-settings-neighbor-app/source/ignored.html.erb.frontmatter +3 -0
  379. data/fixtures/frontmatter-settings-neighbor-app/source/layouts/alternate.erb +3 -0
  380. data/fixtures/frontmatter-settings-neighbor-app/source/layouts/override.erb +1 -0
  381. data/fixtures/frontmatter-settings-neighbor-app/source/override_layout.html.erb +1 -0
  382. data/fixtures/frontmatter-settings-neighbor-app/source/override_layout.html.erb.frontmatter +3 -0
  383. data/fixtures/frontmatter-settings-neighbor-app/source/page_mentioned.html.erb +1 -0
  384. data/fixtures/frontmatter-settings-neighbor-app/source/page_mentioned.html.erb.frontmatter +3 -0
  385. data/fixtures/generator-test/config.rb +70 -0
  386. data/fixtures/generator-test/source/index.html.erb +10 -0
  387. data/fixtures/glob-app/config.rb +1 -0
  388. data/fixtures/glob-app/source/index.html.erb +4 -0
  389. data/fixtures/glob-app/source/stylesheets/site.css.str +3 -0
  390. data/fixtures/gzip-app/config.rb +1 -0
  391. data/fixtures/gzip-app/source/index.html +0 -0
  392. data/fixtures/gzip-app/source/javascripts/test.js +1 -0
  393. data/fixtures/gzip-app/source/stylesheets/test.css +1 -0
  394. data/fixtures/i-8859-1-app/config.rb +1 -0
  395. data/fixtures/i-8859-1-app/source/index.html.erb +1 -0
  396. data/fixtures/i18n-alt-root-app/locales/en.yml +4 -0
  397. data/fixtures/i18n-alt-root-app/locales/es.yml +7 -0
  398. data/fixtures/i18n-alt-root-app/source/lang_data/hello.html.erb +1 -0
  399. data/fixtures/i18n-alt-root-app/source/lang_data/index.html.erb +1 -0
  400. data/fixtures/i18n-alt-root-app/source/layout.erb +1 -0
  401. data/fixtures/i18n-default-app/locales/en.yml +4 -0
  402. data/fixtures/i18n-default-app/locales/es.yml +8 -0
  403. data/fixtures/i18n-default-app/source/localizable/index.html.erb +5 -0
  404. data/fixtures/i18n-force-locale/config.rb +11 -0
  405. data/fixtures/i18n-force-locale/locales/en.yml +3 -0
  406. data/fixtures/i18n-force-locale/locales/es.yml +3 -0
  407. data/fixtures/i18n-force-locale/locales/fr.yml +3 -0
  408. data/fixtures/i18n-force-locale/source/index.html.haml +2 -0
  409. data/fixtures/i18n-mixed-sources/config.rb +1 -0
  410. data/fixtures/i18n-mixed-sources/locales/en.yml +4 -0
  411. data/fixtures/i18n-mixed-sources/locales/es.yml +4 -0
  412. data/fixtures/i18n-mixed-sources/source/a/sub.html.erb +9 -0
  413. data/fixtures/i18n-mixed-sources/source/b/index.html.erb +9 -0
  414. data/fixtures/i18n-mixed-sources/source/index.html.erb +9 -0
  415. data/fixtures/i18n-mixed-sources/source/localizable/a/index.html.erb +9 -0
  416. data/fixtures/i18n-mixed-sources/source/localizable/b/sub.html.erb +9 -0
  417. data/fixtures/i18n-mixed-sources/source/localizable/index.html.erb +9 -0
  418. data/fixtures/i18n-nested-app/locales/en.yml +4 -0
  419. data/fixtures/i18n-nested-app/locales/en/more.yml +3 -0
  420. data/fixtures/i18n-nested-app/locales/es.yml +4 -0
  421. data/fixtures/i18n-nested-app/locales/es/mucho.yml +3 -0
  422. data/fixtures/i18n-nested-app/source/localizable/index.html.erb +3 -0
  423. data/fixtures/i18n-test-app/data/defaults_en.yml +0 -0
  424. data/fixtures/i18n-test-app/data/defaults_es.yml +0 -0
  425. data/fixtures/i18n-test-app/data/en_defaults.yml +0 -0
  426. data/fixtures/i18n-test-app/locales/en.yml +4 -0
  427. data/fixtures/i18n-test-app/locales/es.yml +9 -0
  428. data/fixtures/i18n-test-app/source/CNAME +1 -0
  429. data/fixtures/i18n-test-app/source/_country.en.erb +1 -0
  430. data/fixtures/i18n-test-app/source/_country.es.erb +1 -0
  431. data/fixtures/i18n-test-app/source/_site.erb +1 -0
  432. data/fixtures/i18n-test-app/source/images/president.en.svg +1 -0
  433. data/fixtures/i18n-test-app/source/images/president.es.svg +1 -0
  434. data/fixtures/i18n-test-app/source/layouts/layout.erb +8 -0
  435. data/fixtures/i18n-test-app/source/localizable/_state.en.erb +1 -0
  436. data/fixtures/i18n-test-app/source/localizable/_state.es.erb +1 -0
  437. data/fixtures/i18n-test-app/source/localizable/hello.html.erb +1 -0
  438. data/fixtures/i18n-test-app/source/localizable/images/flag.en.svg +1 -0
  439. data/fixtures/i18n-test-app/source/localizable/images/flag.es.svg +1 -0
  440. data/fixtures/i18n-test-app/source/localizable/index.html.erb +1 -0
  441. data/fixtures/i18n-test-app/source/localizable/morning.en.html.erb +1 -0
  442. data/fixtures/i18n-test-app/source/localizable/morning.es.html.erb +1 -0
  443. data/fixtures/i18n-test-app/source/localizable/one.en.html.md +1 -0
  444. data/fixtures/i18n-test-app/source/localizable/one.es.html.md +1 -0
  445. data/fixtures/i18n-test-app/source/localizable/partials/_greeting.en.erb +1 -0
  446. data/fixtures/i18n-test-app/source/localizable/partials/_greeting.es.erb +1 -0
  447. data/fixtures/i18n-test-app/source/localizable/partials/index.html.erb +8 -0
  448. data/fixtures/i18n-test-app/source/password.txt +1 -0
  449. data/fixtures/i18n-test-app/source/stylesheets/site.css +3 -0
  450. data/fixtures/ignore-app/source/about.html.erb +1 -0
  451. data/fixtures/ignore-app/source/images/icon/messages.png +0 -0
  452. data/fixtures/ignore-app/source/images/pic.png +0 -0
  453. data/fixtures/ignore-app/source/images/portrait.jpg +0 -0
  454. data/fixtures/ignore-app/source/index.html.erb +0 -0
  455. data/fixtures/ignore-app/source/plain.html +1 -0
  456. data/fixtures/ignore-app/source/reports/another.html +0 -0
  457. data/fixtures/ignore-app/source/reports/index.html +0 -0
  458. data/fixtures/image-srcset-paths-app/image-srcset-paths.html.erb +1 -0
  459. data/fixtures/image-srcset-paths-app/images/blank.gif +0 -0
  460. data/fixtures/import-app/bower.json +21 -0
  461. data/fixtures/import-app/bower_components/jquery/.bower.json +39 -0
  462. data/fixtures/import-app/bower_components/jquery/MIT-LICENSE.txt +21 -0
  463. data/fixtures/import-app/bower_components/jquery/bower.json +28 -0
  464. data/fixtures/import-app/bower_components/jquery/dist/jquery.js +9210 -0
  465. data/fixtures/import-app/bower_components/jquery/dist/jquery.min.js +5 -0
  466. data/fixtures/import-app/bower_components/jquery/dist/jquery.min.map +1 -0
  467. data/fixtures/import-app/bower_components/jquery/src/ajax.js +786 -0
  468. data/fixtures/import-app/bower_components/jquery/src/ajax/jsonp.js +89 -0
  469. data/fixtures/import-app/bower_components/jquery/src/ajax/load.js +75 -0
  470. data/fixtures/import-app/bower_components/jquery/src/ajax/parseJSON.js +13 -0
  471. data/fixtures/import-app/bower_components/jquery/src/ajax/parseXML.js +28 -0
  472. data/fixtures/import-app/bower_components/jquery/src/ajax/script.js +64 -0
  473. data/fixtures/import-app/bower_components/jquery/src/ajax/var/nonce.js +5 -0
  474. data/fixtures/import-app/bower_components/jquery/src/ajax/var/rquery.js +3 -0
  475. data/fixtures/import-app/bower_components/jquery/src/ajax/xhr.js +136 -0
  476. data/fixtures/import-app/bower_components/jquery/src/attributes.js +11 -0
  477. data/fixtures/import-app/bower_components/jquery/src/attributes/attr.js +141 -0
  478. data/fixtures/import-app/bower_components/jquery/src/attributes/classes.js +158 -0
  479. data/fixtures/import-app/bower_components/jquery/src/attributes/prop.js +94 -0
  480. data/fixtures/import-app/bower_components/jquery/src/attributes/support.js +35 -0
  481. data/fixtures/import-app/bower_components/jquery/src/attributes/val.js +161 -0
  482. data/fixtures/import-app/bower_components/jquery/src/callbacks.js +205 -0
  483. data/fixtures/import-app/bower_components/jquery/src/core.js +502 -0
  484. data/fixtures/import-app/bower_components/jquery/src/core/access.js +60 -0
  485. data/fixtures/import-app/bower_components/jquery/src/core/init.js +123 -0
  486. data/fixtures/import-app/bower_components/jquery/src/core/parseHTML.js +39 -0
  487. data/fixtures/import-app/bower_components/jquery/src/core/ready.js +97 -0
  488. data/fixtures/import-app/bower_components/jquery/src/core/var/rsingleTag.js +4 -0
  489. data/fixtures/import-app/bower_components/jquery/src/css.js +450 -0
  490. data/fixtures/import-app/bower_components/jquery/src/css/addGetHookIf.js +22 -0
  491. data/fixtures/import-app/bower_components/jquery/src/css/curCSS.js +57 -0
  492. data/fixtures/import-app/bower_components/jquery/src/css/defaultDisplay.js +70 -0
  493. data/fixtures/import-app/bower_components/jquery/src/css/hiddenVisibleSelectors.js +15 -0
  494. data/fixtures/import-app/bower_components/jquery/src/css/support.js +96 -0
  495. data/fixtures/import-app/bower_components/jquery/src/css/swap.js +28 -0
  496. data/fixtures/import-app/bower_components/jquery/src/css/var/cssExpand.js +3 -0
  497. data/fixtures/import-app/bower_components/jquery/src/css/var/getStyles.js +12 -0
  498. data/fixtures/import-app/bower_components/jquery/src/css/var/isHidden.js +13 -0
  499. data/fixtures/import-app/bower_components/jquery/src/css/var/rmargin.js +3 -0
  500. data/fixtures/import-app/bower_components/jquery/src/css/var/rnumnonpx.js +5 -0
  501. data/fixtures/import-app/bower_components/jquery/src/data.js +178 -0
  502. data/fixtures/import-app/bower_components/jquery/src/data/Data.js +181 -0
  503. data/fixtures/import-app/bower_components/jquery/src/data/accepts.js +20 -0
  504. data/fixtures/import-app/bower_components/jquery/src/data/var/data_priv.js +5 -0
  505. data/fixtures/import-app/bower_components/jquery/src/data/var/data_user.js +5 -0
  506. data/fixtures/import-app/bower_components/jquery/src/deferred.js +149 -0
  507. data/fixtures/import-app/bower_components/jquery/src/deprecated.js +13 -0
  508. data/fixtures/import-app/bower_components/jquery/src/dimensions.js +50 -0
  509. data/fixtures/import-app/bower_components/jquery/src/effects.js +648 -0
  510. data/fixtures/import-app/bower_components/jquery/src/effects/Tween.js +114 -0
  511. data/fixtures/import-app/bower_components/jquery/src/effects/animatedSelector.js +13 -0
  512. data/fixtures/import-app/bower_components/jquery/src/event.js +868 -0
  513. data/fixtures/import-app/bower_components/jquery/src/event/ajax.js +13 -0
  514. data/fixtures/import-app/bower_components/jquery/src/event/alias.js +39 -0
  515. data/fixtures/import-app/bower_components/jquery/src/event/support.js +9 -0
  516. data/fixtures/import-app/bower_components/jquery/src/exports/amd.js +24 -0
  517. data/fixtures/import-app/bower_components/jquery/src/exports/global.js +32 -0
  518. data/fixtures/import-app/bower_components/jquery/src/intro.js +44 -0
  519. data/fixtures/import-app/bower_components/jquery/src/jquery.js +37 -0
  520. data/fixtures/import-app/bower_components/jquery/src/manipulation.js +580 -0
  521. data/fixtures/import-app/bower_components/jquery/src/manipulation/_evalUrl.js +18 -0
  522. data/fixtures/import-app/bower_components/jquery/src/manipulation/support.js +32 -0
  523. data/fixtures/import-app/bower_components/jquery/src/manipulation/var/rcheckableType.js +3 -0
  524. data/fixtures/import-app/bower_components/jquery/src/offset.js +207 -0
  525. data/fixtures/import-app/bower_components/jquery/src/outro.js +1 -0
  526. data/fixtures/import-app/bower_components/jquery/src/queue.js +142 -0
  527. data/fixtures/import-app/bower_components/jquery/src/queue/delay.js +22 -0
  528. data/fixtures/import-app/bower_components/jquery/src/selector-native.js +172 -0
  529. data/fixtures/import-app/bower_components/jquery/src/selector-sizzle.js +14 -0
  530. data/fixtures/import-app/bower_components/jquery/src/selector.js +1 -0
  531. data/fixtures/import-app/bower_components/jquery/src/serialize.js +111 -0
  532. data/fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.js +2067 -0
  533. data/fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.min.js +3 -0
  534. data/fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.min.map +1 -0
  535. data/fixtures/import-app/bower_components/jquery/src/traversing.js +199 -0
  536. data/fixtures/import-app/bower_components/jquery/src/traversing/findFilter.js +100 -0
  537. data/fixtures/import-app/bower_components/jquery/src/traversing/var/rneedsContext.js +6 -0
  538. data/fixtures/import-app/bower_components/jquery/src/var/arr.js +3 -0
  539. data/fixtures/import-app/bower_components/jquery/src/var/class2type.js +4 -0
  540. data/fixtures/import-app/bower_components/jquery/src/var/concat.js +5 -0
  541. data/fixtures/import-app/bower_components/jquery/src/var/hasOwn.js +5 -0
  542. data/fixtures/import-app/bower_components/jquery/src/var/indexOf.js +5 -0
  543. data/fixtures/import-app/bower_components/jquery/src/var/pnum.js +3 -0
  544. data/fixtures/import-app/bower_components/jquery/src/var/push.js +5 -0
  545. data/fixtures/import-app/bower_components/jquery/src/var/rnotwhite.js +3 -0
  546. data/fixtures/import-app/bower_components/jquery/src/var/slice.js +5 -0
  547. data/fixtures/import-app/bower_components/jquery/src/var/strundefined.js +3 -0
  548. data/fixtures/import-app/bower_components/jquery/src/var/support.js +4 -0
  549. data/fixtures/import-app/bower_components/jquery/src/var/toString.js +5 -0
  550. data/fixtures/import-app/bower_components/jquery/src/wrap.js +79 -0
  551. data/fixtures/import-app/config.rb +7 -0
  552. data/fixtures/import-app/source/test.html +0 -0
  553. data/fixtures/import-app/static.html +1 -0
  554. data/fixtures/indexable-app/config.rb +5 -0
  555. data/fixtures/indexable-app/source/.htaccess +1 -0
  556. data/fixtures/indexable-app/source/.htpasswd +1 -0
  557. data/fixtures/indexable-app/source/.nojekyll +0 -0
  558. data/fixtures/indexable-app/source/a_folder/needs_index.html +1 -0
  559. data/fixtures/indexable-app/source/evil spaces.html +1 -0
  560. data/fixtures/indexable-app/source/leave_me_alone.html +1 -0
  561. data/fixtures/indexable-app/source/needs_index.html +1 -0
  562. data/fixtures/indexable-app/source/regex_leave_me_alone2.html +1 -0
  563. data/fixtures/indexable-app/source/regular/index.html +1 -0
  564. data/fixtures/indexable-app/source/wildcard_leave_me_alone.html +1 -0
  565. data/fixtures/javascript-app/config.rb +0 -0
  566. data/fixtures/javascript-app/source/index.html +17 -0
  567. data/fixtures/large-build-app/config.rb +3 -0
  568. data/fixtures/large-build-app/source/.htaccess +1 -0
  569. data/fixtures/large-build-app/source/.htpasswd +1 -0
  570. data/fixtures/large-build-app/source/_partial.erb +1 -0
  571. data/fixtures/large-build-app/source/feed.xml.builder +4 -0
  572. data/fixtures/large-build-app/source/images/Child folder/regular_file(example).txt +1 -0
  573. data/fixtures/large-build-app/source/images/Read me (example).txt +1 -0
  574. data/fixtures/large-build-app/source/images/blank.gif +0 -0
  575. data/fixtures/large-build-app/source/index.html.erb +1 -0
  576. data/fixtures/large-build-app/source/layout.erb +9 -0
  577. data/fixtures/large-build-app/source/layouts/content_for.erb +4 -0
  578. data/fixtures/large-build-app/source/layouts/custom.erb +8 -0
  579. data/fixtures/large-build-app/source/link_test.html.erb +5 -0
  580. data/fixtures/large-build-app/source/other_layout.erb +1 -0
  581. data/fixtures/large-build-app/source/services/index.html.erb +1 -0
  582. data/fixtures/large-build-app/source/spaces in file.html.erb +1 -0
  583. data/fixtures/large-build-app/source/static.html +1 -0
  584. data/fixtures/large-build-app/source/stylesheets/static.css +2 -0
  585. data/fixtures/layouts-dir-app/source/ambiguous.html.erb +5 -0
  586. data/fixtures/layouts-dir-app/source/index.html.erb +2 -0
  587. data/fixtures/layouts-dir-app/source/layouts/layout.erb +3 -0
  588. data/fixtures/layouts-dir-app/source/layouts/other.erb +3 -0
  589. data/fixtures/layouts-dir-app/source/layouts2/layout.erb +3 -0
  590. data/fixtures/layouts-dir-app/source/nested/layouts2/layout.erb +3 -0
  591. data/fixtures/layouts-dir-app/source/other.erb +3 -0
  592. data/fixtures/link-to-app/config.rb +0 -0
  593. data/fixtures/link-to-app/source/link_to_erb.html.erb +3 -0
  594. data/fixtures/link-to-app/source/link_to_haml.html.haml +2 -0
  595. data/fixtures/link-to-app/source/link_to_slim.html.slim +2 -0
  596. data/fixtures/liquid-app/config.rb +0 -0
  597. data/fixtures/liquid-app/data/test.yml +4 -0
  598. data/fixtures/liquid-app/data/test2.json +4 -0
  599. data/fixtures/liquid-app/source/_liquid_partial.liquid +1 -0
  600. data/fixtures/liquid-app/source/data2.html.liquid +2 -0
  601. data/fixtures/liquid-app/source/liquid_master.html.liquid +1 -0
  602. data/fixtures/lorem-app/config.rb +1 -0
  603. data/fixtures/lorem-app/source/lorem.html.erb +13 -0
  604. data/fixtures/manual-layout-missing/config.rb +1 -0
  605. data/fixtures/manual-layout-missing/source/index.html.erb +1 -0
  606. data/fixtures/manual-layout-override/config.rb +3 -0
  607. data/fixtures/manual-layout-override/source/index.html.erb +1 -0
  608. data/fixtures/manual-layout-override/source/layouts/another.erb +9 -0
  609. data/fixtures/manual-layout-override/source/layouts/custom.erb +9 -0
  610. data/fixtures/manual-layout/config.rb +1 -0
  611. data/fixtures/manual-layout/source/index.html.erb +1 -0
  612. data/fixtures/manual-layout/source/layouts/custom.erb +9 -0
  613. data/fixtures/markdown-app/config.rb +1 -0
  614. data/fixtures/markdown-app/source/autolink.html.markdown +5 -0
  615. data/fixtures/markdown-app/source/fenced_code_blocks.html.markdown +7 -0
  616. data/fixtures/markdown-app/source/filter_html.html.markdown +1 -0
  617. data/fixtures/markdown-app/source/footnote.html.markdown +3 -0
  618. data/fixtures/markdown-app/source/hard_wrap.html.markdown +2 -0
  619. data/fixtures/markdown-app/source/highlighted.html.markdown +1 -0
  620. data/fixtures/markdown-app/source/images/blank.gif +0 -0
  621. data/fixtures/markdown-app/source/img.html.markdown +1 -0
  622. data/fixtures/markdown-app/source/indented_code_blocks.html.markdown +5 -0
  623. data/fixtures/markdown-app/source/index.html.markdown +4 -0
  624. data/fixtures/markdown-app/source/lax_spacing.html.markdown +3 -0
  625. data/fixtures/markdown-app/source/link.html.markdown +1 -0
  626. data/fixtures/markdown-app/source/mailto.html.markdown +1 -0
  627. data/fixtures/markdown-app/source/no_intra_emphasis.html.markdown +5 -0
  628. data/fixtures/markdown-app/source/prettify.html.markdown +3 -0
  629. data/fixtures/markdown-app/source/quote.html.markdown +1 -0
  630. data/fixtures/markdown-app/source/safe_links.html.markdown +1 -0
  631. data/fixtures/markdown-app/source/smarty_pants.html.markdown +5 -0
  632. data/fixtures/markdown-app/source/space_after_headers.html.markdown +5 -0
  633. data/fixtures/markdown-app/source/strikethrough.html.markdown +5 -0
  634. data/fixtures/markdown-app/source/superscript.html.markdown +5 -0
  635. data/fixtures/markdown-app/source/tables.html.markdown +8 -0
  636. data/fixtures/markdown-app/source/underline.html.markdown +1 -0
  637. data/fixtures/markdown-app/source/with_toc_data.html.markdown +3 -0
  638. data/fixtures/markdown-frontmatter-options-app/config.rb +1 -0
  639. data/fixtures/markdown-frontmatter-options-app/source/smarty_pants-default.html.markdown +5 -0
  640. data/fixtures/markdown-frontmatter-options-app/source/smarty_pants-off.html.markdown +7 -0
  641. data/fixtures/markdown-frontmatter-options-app/source/smarty_pants-on.html.markdown +7 -0
  642. data/fixtures/markdown-frontmatter-options-app/source/tables-default.html.markdown +8 -0
  643. data/fixtures/markdown-frontmatter-options-app/source/tables-off.html.markdown +10 -0
  644. data/fixtures/markdown-frontmatter-options-app/source/tables-on.html.markdown +10 -0
  645. data/fixtures/markdown-in-haml-app/config.rb +0 -0
  646. data/fixtures/markdown-in-haml-app/source/images/blank.gif +0 -0
  647. data/fixtures/markdown-in-haml-app/source/link_target.html.markdown +4 -0
  648. data/fixtures/markdown-in-slim-app/config.rb +0 -0
  649. data/fixtures/markdown-in-slim-app/source/images/blank.gif +0 -0
  650. data/fixtures/markdown-in-slim-app/source/link_target.html.markdown +4 -0
  651. data/fixtures/minify-css-app/source/inline-css.html.haml +5 -0
  652. data/fixtures/minify-css-app/source/inline-css.php +8 -0
  653. data/fixtures/minify-css-app/source/more-css/site.css +3 -0
  654. data/fixtures/minify-css-app/source/stylesheets/base/_base.scss +15 -0
  655. data/fixtures/minify-css-app/source/stylesheets/base/_buttons.scss +35 -0
  656. data/fixtures/minify-css-app/source/stylesheets/base/_forms.scss +90 -0
  657. data/fixtures/minify-css-app/source/stylesheets/base/_grid-settings.scss +14 -0
  658. data/fixtures/minify-css-app/source/stylesheets/base/_lists.scss +31 -0
  659. data/fixtures/minify-css-app/source/stylesheets/base/_tables.scss +25 -0
  660. data/fixtures/minify-css-app/source/stylesheets/base/_typography.scss +49 -0
  661. data/fixtures/minify-css-app/source/stylesheets/base/_variables.scss +42 -0
  662. data/fixtures/minify-css-app/source/stylesheets/bourbon/_bourbon-deprecated-upcoming.scss +411 -0
  663. data/fixtures/minify-css-app/source/stylesheets/bourbon/_bourbon.scss +87 -0
  664. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-color.scss +26 -0
  665. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-radius.scss +48 -0
  666. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-style.scss +25 -0
  667. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-width.scss +25 -0
  668. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_buttons.scss +64 -0
  669. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_clearfix.scss +25 -0
  670. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_ellipsis.scss +30 -0
  671. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_font-stacks.scss +31 -0
  672. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_hide-text.scss +27 -0
  673. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_margin.scss +26 -0
  674. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_padding.scss +26 -0
  675. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_position.scss +48 -0
  676. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_prefixer.scss +66 -0
  677. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_retina-image.scss +25 -0
  678. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_size.scss +51 -0
  679. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_text-inputs.scss +113 -0
  680. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_timing-functions.scss +34 -0
  681. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_triangle.scss +63 -0
  682. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_word-wrap.scss +29 -0
  683. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_animation.scss +43 -0
  684. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_appearance.scss +3 -0
  685. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_backface-visibility.scss +3 -0
  686. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_background-image.scss +42 -0
  687. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_background.scss +55 -0
  688. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_border-image.scss +59 -0
  689. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_calc.scss +4 -0
  690. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_columns.scss +47 -0
  691. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_filter.scss +4 -0
  692. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_flex-box.scss +287 -0
  693. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_font-face.scss +24 -0
  694. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_font-feature-settings.scss +4 -0
  695. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_hidpi-media-query.scss +10 -0
  696. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_hyphens.scss +4 -0
  697. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_image-rendering.scss +14 -0
  698. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_keyframes.scss +36 -0
  699. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_linear-gradient.scss +38 -0
  700. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_perspective.scss +8 -0
  701. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_placeholder.scss +8 -0
  702. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_radial-gradient.scss +39 -0
  703. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_selection.scss +42 -0
  704. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_text-decoration.scss +19 -0
  705. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_transform.scss +15 -0
  706. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_transition.scss +71 -0
  707. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_user-select.scss +3 -0
  708. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_assign-inputs.scss +11 -0
  709. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_contains-falsy.scss +20 -0
  710. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_contains.scss +26 -0
  711. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-length.scss +11 -0
  712. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-light.scss +21 -0
  713. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-number.scss +11 -0
  714. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-size.scss +13 -0
  715. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_modular-scale.scss +69 -0
  716. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_px-to-em.scss +13 -0
  717. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_px-to-rem.scss +15 -0
  718. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_shade.scss +24 -0
  719. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_strip-units.scss +17 -0
  720. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_tint.scss +24 -0
  721. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_transition-property-name.scss +22 -0
  722. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_unpack.scss +27 -0
  723. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_convert-units.scss +21 -0
  724. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_directional-values.scss +96 -0
  725. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_font-source-declaration.scss +43 -0
  726. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_gradient-positions-parser.scss +13 -0
  727. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-angle-parser.scss +25 -0
  728. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-gradient-parser.scss +41 -0
  729. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-positions-parser.scss +61 -0
  730. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-side-corner-parser.scss +31 -0
  731. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-arg-parser.scss +69 -0
  732. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-gradient-parser.scss +50 -0
  733. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-positions-parser.scss +18 -0
  734. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_render-gradients.scss +26 -0
  735. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_shape-size-stripper.scss +10 -0
  736. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_str-to-num.scss +50 -0
  737. data/fixtures/minify-css-app/source/stylesheets/bourbon/settings/_asset-pipeline.scss +7 -0
  738. data/fixtures/minify-css-app/source/stylesheets/bourbon/settings/_prefixer.scss +9 -0
  739. data/fixtures/minify-css-app/source/stylesheets/bourbon/settings/_px-to-em.scss +1 -0
  740. data/fixtures/minify-css-app/source/stylesheets/report.css +1 -0
  741. data/fixtures/minify-css-app/source/stylesheets/site.css.sass +7 -0
  742. data/fixtures/minify-css-app/source/stylesheets/site.xcss.sass +6 -0
  743. data/fixtures/minify-js-app/config.rb +0 -0
  744. data/fixtures/minify-js-app/source/inline-coffeescript.html.haml +3 -0
  745. data/fixtures/minify-js-app/source/inline-js.html.haml +28 -0
  746. data/fixtures/minify-js-app/source/inline-js.php +22 -0
  747. data/fixtures/minify-js-app/source/javascripts/coffee_test.js.coffee +3 -0
  748. data/fixtures/minify-js-app/source/javascripts/js_test.js +8 -0
  749. data/fixtures/minify-js-app/source/javascripts/js_test.xjs +8 -0
  750. data/fixtures/minify-js-app/source/more-js/other.js +8 -0
  751. data/fixtures/missing-tilt-library-app/config.rb +2 -0
  752. data/fixtures/missing-tilt-library-app/source/danger-zone/more-wiki.html.wiki +1 -0
  753. data/fixtures/missing-tilt-library-app/source/safe-zone/my-wiki.html.wiki +1 -0
  754. data/fixtures/missing-tilt-library-app/source/textile-source.html.textile +1 -0
  755. data/fixtures/missing-tilt-library-app/source/wiki-source.html.wiki +1 -0
  756. data/fixtures/more-extensionless-text-files-app/config.rb +1 -0
  757. data/fixtures/more-extensionless-text-files-app/source/CNAME +1 -0
  758. data/fixtures/more-extensionless-text-files-app/source/LICENSE +1 -0
  759. data/fixtures/more-extensionless-text-files-app/source/README +1 -0
  760. data/fixtures/more-extensionless-text-files-app/source/index.html +1 -0
  761. data/fixtures/more-frontmatter-settings-app/config.rb +4 -0
  762. data/fixtures/more-frontmatter-settings-app/source/alternate_layout.html.erb +5 -0
  763. data/fixtures/more-frontmatter-settings-app/source/ignored.html.erb +5 -0
  764. data/fixtures/more-frontmatter-settings-app/source/layouts/alternate.erb +3 -0
  765. data/fixtures/more-frontmatter-settings-app/source/no_index.html.erb +5 -0
  766. data/fixtures/more-ignore-app/source/about.html.erb +1 -0
  767. data/fixtures/more-ignore-app/source/images/icon/messages.png +0 -0
  768. data/fixtures/more-ignore-app/source/images/pic.png +0 -0
  769. data/fixtures/more-ignore-app/source/images/portrait.jpg +0 -0
  770. data/fixtures/more-ignore-app/source/index.html.erb +0 -0
  771. data/fixtures/more-ignore-app/source/plain.html +1 -0
  772. data/fixtures/more-ignore-app/source/reports/another.html +0 -0
  773. data/fixtures/more-ignore-app/source/reports/index.html +0 -0
  774. data/fixtures/more-markdown-app/source/layouts/layout.erb +13 -0
  775. data/fixtures/more-markdown-app/source/with_layout.html.markdown +4 -0
  776. data/fixtures/more-markdown-app/source/with_layout_erb.html.markdown.erb +4 -0
  777. data/fixtures/more-preview-app/config.rb +0 -0
  778. data/fixtures/more-preview-app/source/content.html.erb +1 -0
  779. data/fixtures/more-preview-app/source/layout.erb +1 -0
  780. data/fixtures/more-preview-app/source/stylesheets/_partial.sass +2 -0
  781. data/fixtures/more-preview-app/source/stylesheets/_partial2.css.sass +2 -0
  782. data/fixtures/more-preview-app/source/stylesheets/main.css.sass +4 -0
  783. data/fixtures/more-preview-app/source/stylesheets/main2.css.sass +4 -0
  784. data/fixtures/more-preview-app/source/stylesheets/plain.css.sass +2 -0
  785. data/fixtures/more-traversal-app/config.rb +7 -0
  786. data/fixtures/more-traversal-app/source/directory-indexed.html.erb +0 -0
  787. data/fixtures/more-traversal-app/source/directory-indexed/sibling.html.erb +3 -0
  788. data/fixtures/more-traversal-app/source/directory-indexed/sibling2.html.erb +3 -0
  789. data/fixtures/more-traversal-app/source/directory-indexed/sub2/index.html.erb +0 -0
  790. data/fixtures/more-traversal-app/source/directory-indexed/sub3/deep.html.erb +0 -0
  791. data/fixtures/more-traversal-app/source/index.html.erb +0 -0
  792. data/fixtures/more-traversal-app/source/layout.erb +21 -0
  793. data/fixtures/more-traversal-app/source/proxied.html.erb +0 -0
  794. data/fixtures/more-traversal-app/source/root.html.erb +0 -0
  795. data/fixtures/more-traversal-app/source/sub/index.html.erb +0 -0
  796. data/fixtures/more-traversal-app/source/sub/sibling.html.erb +0 -0
  797. data/fixtures/more-traversal-app/source/sub/sibling2.html.erb +0 -0
  798. data/fixtures/more-traversal-app/source/sub/sub2/index.html.erb +0 -0
  799. data/fixtures/more-traversal-app/source/sub/sub3/deep.html.erb +0 -0
  800. data/fixtures/multiple-data-sources-app/config.rb +3 -0
  801. data/fixtures/multiple-data-sources-app/data/data.yml +1 -0
  802. data/fixtures/multiple-data-sources-app/data/two.yml +1 -0
  803. data/fixtures/multiple-data-sources-app/data0/one.yml +1 -0
  804. data/fixtures/multiple-data-sources-app/data1/data1.yml +1 -0
  805. data/fixtures/multiple-data-sources-app/data1/one.yml +1 -0
  806. data/fixtures/multiple-data-sources-app/data2/data2.yml +1 -0
  807. data/fixtures/multiple-data-sources-app/data2/two.yml +1 -0
  808. data/fixtures/multiple-data-sources-app/source/index.html.erb +5 -0
  809. data/fixtures/multiple-layouts/config.rb +0 -0
  810. data/fixtures/multiple-layouts/source/index.html.erb +1 -0
  811. data/fixtures/multiple-layouts/source/layout.erb +9 -0
  812. data/fixtures/multiple-layouts/source/layout.str +9 -0
  813. data/fixtures/multiple-sources-app/config.rb +3 -0
  814. data/fixtures/multiple-sources-app/source/index.html.erb +1 -0
  815. data/fixtures/multiple-sources-app/source/override-in-two.html.erb +1 -0
  816. data/fixtures/multiple-sources-app/source0/override-in-one.html.erb +1 -0
  817. data/fixtures/multiple-sources-app/source1/index1.html.erb +1 -0
  818. data/fixtures/multiple-sources-app/source1/override-in-one.html.erb +1 -0
  819. data/fixtures/multiple-sources-app/source2/index2.html.erb +1 -0
  820. data/fixtures/multiple-sources-app/source2/override-in-two.html.erb +1 -0
  821. data/fixtures/multiple-sources-with-destination-dir/config.rb +2 -0
  822. data/fixtures/multiple-sources-with-destination-dir/external/page.html.erb +1 -0
  823. data/fixtures/multiple-sources-with-destination-dir/source/index.html.erb +1 -0
  824. data/fixtures/multiple-sources-with-duplicate-file-names-app/config.rb +2 -0
  825. data/fixtures/multiple-sources-with-duplicate-file-names-app/source/index.html.erb +1 -0
  826. data/fixtures/multiple-sources-with-duplicate-file-names-app/source2/index.html.erb +1 -0
  827. data/fixtures/multiple-sources-without-destination-dir/config.rb +1 -0
  828. data/fixtures/multiple-sources-without-destination-dir/external/page.html.erb +1 -0
  829. data/fixtures/multiple-sources-without-destination-dir/source/index.html.erb +1 -0
  830. data/fixtures/nested-data-app/config.rb +1 -0
  831. data/fixtures/nested-data-app/data/examples/deeper/stuff.yml +1 -0
  832. data/fixtures/nested-data-app/data/examples/more.yml +1 -0
  833. data/fixtures/nested-data-app/data/examples/test.yml +1 -0
  834. data/fixtures/nested-data-app/data/examples/withcontent.yaml +11 -0
  835. data/fixtures/nested-data-app/source/extracontent.html.haml.erb +4 -0
  836. data/fixtures/nested-data-app/source/test.html.erb +3 -0
  837. data/fixtures/nested-layout-app/config.rb +1 -0
  838. data/fixtures/nested-layout-app/source/another.html.markdown +7 -0
  839. data/fixtures/nested-layout-app/source/data-one.html.erb +5 -0
  840. data/fixtures/nested-layout-app/source/data-two.html.erb +5 -0
  841. data/fixtures/nested-layout-app/source/haml-test.html.markdown +7 -0
  842. data/fixtures/nested-layout-app/source/index.html.erb +6 -0
  843. data/fixtures/nested-layout-app/source/layouts/inner.erb +7 -0
  844. data/fixtures/nested-layout-app/source/layouts/inner_haml.haml +7 -0
  845. data/fixtures/nested-layout-app/source/layouts/inner_slim.slim +7 -0
  846. data/fixtures/nested-layout-app/source/layouts/master.erb +9 -0
  847. data/fixtures/nested-layout-app/source/layouts/master_haml.haml +7 -0
  848. data/fixtures/nested-layout-app/source/layouts/master_slim.slim +7 -0
  849. data/fixtures/nested-layout-app/source/layouts/outer.erb +8 -0
  850. data/fixtures/nested-layout-app/source/layouts/outer_haml.haml +7 -0
  851. data/fixtures/nested-layout-app/source/layouts/outer_slim.slim +7 -0
  852. data/fixtures/nested-layout-app/source/slim-test.html.markdown +7 -0
  853. data/fixtures/no-layout/config.rb +0 -0
  854. data/fixtures/no-layout/source/index.html.erb +1 -0
  855. data/fixtures/padrino-helpers-app/config.rb +7 -0
  856. data/fixtures/padrino-helpers-app/source/former_padrino_test.html.erb +6 -0
  857. data/fixtures/page-classes-app/config.rb +2 -0
  858. data/fixtures/page-classes-app/source/1-folder/1-inside-with-numeric.html.erb +1 -0
  859. data/fixtures/page-classes-app/source/1-starts-with-numeric.html.erb +1 -0
  860. data/fixtures/page-classes-app/source/2-starts-with-numeric-custom.html.erb +1 -0
  861. data/fixtures/page-classes-app/source/page-classes.html.erb +1 -0
  862. data/fixtures/page-classes-app/source/sub1/page-classes.html.erb +1 -0
  863. data/fixtures/page-classes-app/source/sub1/sub2/page-classes.html.erb +1 -0
  864. data/fixtures/page-helper-layout-block-app/config.rb +6 -0
  865. data/fixtures/page-helper-layout-block-app/source/index.html.erb +1 -0
  866. data/fixtures/page-helper-layout-block-app/source/layouts/alt.erb +3 -0
  867. data/fixtures/page-helper-layout-block-app/source/layouts/layout.erb +3 -0
  868. data/fixtures/page-helper-layout-block-app/source/path/child.html.erb +1 -0
  869. data/fixtures/page-helper-layout-block-app/source/path/index.html.erb +1 -0
  870. data/fixtures/paginate-app/config.rb +0 -0
  871. data/fixtures/paginate-app/source/archive/2011/index.html.erb +20 -0
  872. data/fixtures/paginate-app/source/blog/2011-01-01-test-article.html.markdown +6 -0
  873. data/fixtures/paginate-app/source/blog/2011-01-02-test-article.html.markdown +6 -0
  874. data/fixtures/paginate-app/source/blog/2011-01-03-test-article.html.markdown +6 -0
  875. data/fixtures/paginate-app/source/blog/2011-01-04-test-article.html.markdown +6 -0
  876. data/fixtures/paginate-app/source/blog/2011-01-05-test-article.html.markdown +6 -0
  877. data/fixtures/paginate-app/source/blog/2011-02-01-test-article.html.markdown +6 -0
  878. data/fixtures/paginate-app/source/blog/2011-02-02-test-article.html.markdown +6 -0
  879. data/fixtures/paginate-app/source/index.html.erb +15 -0
  880. data/fixtures/paginate-app/source/tag.html.erb +23 -0
  881. data/fixtures/partial-chained_templates-app/config.rb +0 -0
  882. data/fixtures/partials-app/config.rb +0 -0
  883. data/fixtures/partials-app/source/_code_snippet.html +1 -0
  884. data/fixtures/partials-app/source/_locals.erb +1 -0
  885. data/fixtures/partials-app/source/_main.erb +1 -0
  886. data/fixtures/partials-app/source/_main.str +1 -0
  887. data/fixtures/partials-app/source/images/tiger.svg +725 -0
  888. data/fixtures/partials-app/source/index.html.erb +3 -0
  889. data/fixtures/partials-app/source/locals.html.erb +1 -0
  890. data/fixtures/partials-app/source/second.html.str +3 -0
  891. data/fixtures/partials-app/source/shared/_footer.erb +1 -0
  892. data/fixtures/partials-app/source/shared/_header.erb +1 -0
  893. data/fixtures/partials-app/source/shared/_snippet.html.erb +1 -0
  894. data/fixtures/partials-app/source/static_underscore.html.erb +1 -0
  895. data/fixtures/partials-app/source/sub/_local.erb +1 -0
  896. data/fixtures/partials-app/source/sub/index.html.erb +3 -0
  897. data/fixtures/partials-app/source/svg.html.erb +1 -0
  898. data/fixtures/partials-app/source/using_snippet.html.erb +1 -0
  899. data/fixtures/passthrough-app/source/.htaccess +1 -0
  900. data/fixtures/passthrough-app/source/inline-coffeescript.html.haml +3 -0
  901. data/fixtures/passthrough-app/source/inline-css.html.haml +4 -0
  902. data/fixtures/passthrough-app/source/inline-js.html.haml +28 -0
  903. data/fixtures/passthrough-app/source/javascripts/coffee_test.js.coffee +3 -0
  904. data/fixtures/passthrough-app/source/javascripts/js_test.js +8 -0
  905. data/fixtures/passthrough-app/source/stylesheets/site.css.sass +5 -0
  906. data/fixtures/preview-app/config.rb +0 -0
  907. data/fixtures/preview-app/source/content.html.erb +1 -0
  908. data/fixtures/preview-app/source/layout.erb +1 -0
  909. data/fixtures/proxy-pages-app/config.rb +18 -0
  910. data/fixtures/proxy-pages-app/source/real.html +1 -0
  911. data/fixtures/proxy-pages-app/source/real/index.html.erb +5 -0
  912. data/fixtures/proxy-pages-app/source/should_be_ignored3.html +1 -0
  913. data/fixtures/proxy-pages-app/source/should_be_ignored6.html +1 -0
  914. data/fixtures/proxy-pages-app/source/should_be_ignored7.html +1 -0
  915. data/fixtures/proxy-pages-app/source/should_be_ignored8.html +1 -0
  916. data/fixtures/queryable-app/config.rb +0 -0
  917. data/fixtures/queryable-app/source/2010-08-08-test-document-file.html.markdown +8 -0
  918. data/fixtures/queryable-app/source/2010-08-09-another-test-document.html.markdown +10 -0
  919. data/fixtures/queryable-app/source/2011-12-26-some-test-document.html.markdown +6 -0
  920. data/fixtures/queryable-app/source/document_with_date_in_yaml.html.markdown +7 -0
  921. data/fixtures/queryable-app/source/document_without_date.html.markdown +7 -0
  922. data/fixtures/related-files-app/config.rb +0 -0
  923. data/fixtures/related-files-app/source/index.html.erb +0 -0
  924. data/fixtures/related-files-app/source/partials/_test.erb +0 -0
  925. data/fixtures/related-files-app/source/partials/_test2.haml +0 -0
  926. data/fixtures/related-files-app/source/stylesheets/_include3.sass +0 -0
  927. data/fixtures/related-files-app/source/stylesheets/_include4.scss +0 -0
  928. data/fixtures/related-files-app/source/stylesheets/include1.css +0 -0
  929. data/fixtures/related-files-app/source/stylesheets/include2.css.scss +0 -0
  930. data/fixtures/related-files-app/source/stylesheets/site.css.scss +0 -0
  931. data/fixtures/relative-app/config.rb +0 -0
  932. data/fixtures/relative-app/source/images/blank.gif +0 -0
  933. data/fixtures/relative-app/source/stylesheets/relative_assets.css.sass +2 -0
  934. data/fixtures/relative-assets-app/config.rb +5 -0
  935. data/fixtures/relative-assets-app/source/absolute_image_relative_css.html.erb +9 -0
  936. data/fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.eot +0 -0
  937. data/fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.svg +0 -0
  938. data/fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.ttf +0 -0
  939. data/fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.woff +0 -0
  940. data/fixtures/relative-assets-app/source/images/blank.gif +0 -0
  941. data/fixtures/relative-assets-app/source/img/blank.gif +0 -0
  942. data/fixtures/relative-assets-app/source/javascripts/app.js +3 -0
  943. data/fixtures/relative-assets-app/source/javascripts/application.js +8 -0
  944. data/fixtures/relative-assets-app/source/relative_image.html.erb +9 -0
  945. data/fixtures/relative-assets-app/source/relative_image_absolute_css.html.erb +9 -0
  946. data/fixtures/relative-assets-app/source/stylesheets/fonts.css +10 -0
  947. data/fixtures/relative-assets-app/source/stylesheets/fonts2.css.scss +10 -0
  948. data/fixtures/relative-assets-app/source/stylesheets/relative_assets.css.sass +2 -0
  949. data/fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset-sass.sass +1 -0
  950. data/fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset.scss +1 -0
  951. data/fixtures/sass-assets-path-app/config.rb +4 -0
  952. data/fixtures/sass-assets-path-app/my-vendor/stylesheets/_partial.sass +2 -0
  953. data/fixtures/sass-assets-path-app/source/stylesheets/plain.css.sass +16 -0
  954. data/fixtures/scss-app/config.rb +0 -0
  955. data/fixtures/scss-app/source/stylesheets/layout.css.sass +2 -0
  956. data/fixtures/scss-app/source/stylesheets/site_scss.css.scss +3 -0
  957. data/fixtures/sinatra-app/config.rb +14 -0
  958. data/fixtures/sinatra-app/source/index.html.erb +5 -0
  959. data/fixtures/slim-content-for-app/config.rb +0 -0
  960. data/fixtures/slim-content-for-app/source/index.html.slim +7 -0
  961. data/fixtures/slim-content-for-app/source/layouts/layout.slim +15 -0
  962. data/fixtures/strip-url-app/config.rb +0 -0
  963. data/fixtures/strip-url-app/source/index.html.erb +1 -0
  964. data/fixtures/strip-url-app/source/other.html.erb +1 -0
  965. data/fixtures/strip-url-app/source/subdir/index.html.erb +1 -0
  966. data/fixtures/stylus-preview-app/config.rb +0 -0
  967. data/fixtures/stylus-preview-app/source/content.html.erb +5 -0
  968. data/fixtures/stylus-preview-app/source/stylesheets/_partial.styl +2 -0
  969. data/fixtures/stylus-preview-app/source/stylesheets/_partial2.css.styl +2 -0
  970. data/fixtures/stylus-preview-app/source/stylesheets/main.css.styl +4 -0
  971. data/fixtures/stylus-preview-app/source/stylesheets/main2.css.styl +4 -0
  972. data/fixtures/stylus-preview-app/source/stylesheets/plain.css.styl +2 -0
  973. data/fixtures/traversal-app/config.rb +5 -0
  974. data/fixtures/traversal-app/source/.htaccess +0 -0
  975. data/fixtures/traversal-app/source/directory-indexed.html.erb +0 -0
  976. data/fixtures/traversal-app/source/directory-indexed/sibling.html.erb +3 -0
  977. data/fixtures/traversal-app/source/directory-indexed/sibling2.html.erb +3 -0
  978. data/fixtures/traversal-app/source/directory-indexed/sub2/index.html.erb +0 -0
  979. data/fixtures/traversal-app/source/directory-indexed/sub3/deep.html.erb +0 -0
  980. data/fixtures/traversal-app/source/index.html.erb +0 -0
  981. data/fixtures/traversal-app/source/layout.erb +21 -0
  982. data/fixtures/traversal-app/source/proxied.html.erb +0 -0
  983. data/fixtures/traversal-app/source/root.html.erb +0 -0
  984. data/fixtures/traversal-app/source/sub/index.html.erb +0 -0
  985. data/fixtures/traversal-app/source/sub/sibling.html.erb +0 -0
  986. data/fixtures/traversal-app/source/sub/sibling2.html.erb +0 -0
  987. data/fixtures/traversal-app/source/sub/sub2/index.html.erb +0 -0
  988. data/fixtures/traversal-app/source/sub/sub3/deep.html.erb +0 -0
  989. data/fixtures/v4-extension-callbacks/config.rb +42 -0
  990. data/fixtures/v4-extension-callbacks/source/index.html.erb +2 -0
  991. data/fixtures/wildcard-app/config.rb +1 -0
  992. data/fixtures/wildcard-app/source/admin/index.html.erb +1 -0
  993. data/fixtures/wildcard-app/source/admin/page.html.erb +1 -0
  994. data/fixtures/wildcard-app/source/index.html.erb +1 -0
  995. data/fixtures/wildcard-app/source/layouts/admin.erb +2 -0
  996. data/fixtures/wildcard-app/source/layouts/layout.erb +2 -0
  997. data/fixtures/wildcard-directory-index-app/config.rb +2 -0
  998. data/fixtures/wildcard-directory-index-app/source/admin/index.html.erb +1 -0
  999. data/fixtures/wildcard-directory-index-app/source/admin/page.html.erb +1 -0
  1000. data/fixtures/wildcard-directory-index-app/source/index.html.erb +1 -0
  1001. data/fixtures/wildcard-directory-index-app/source/layouts/admin.erb +2 -0
  1002. data/fixtures/wildcard-directory-index-app/source/layouts/layout.erb +2 -0
  1003. data/lib/middleman-core.rb +14 -0
  1004. data/lib/middleman-core/application.rb +433 -0
  1005. data/lib/middleman-core/builder.rb +297 -0
  1006. data/lib/middleman-core/callback_manager.rb +68 -0
  1007. data/lib/middleman-core/config_context.rb +63 -0
  1008. data/lib/middleman-core/configuration.rb +157 -0
  1009. data/lib/middleman-core/contracts.rb +112 -0
  1010. data/lib/middleman-core/core_extensions.rb +146 -0
  1011. data/lib/middleman-core/core_extensions/collections.rb +110 -0
  1012. data/lib/middleman-core/core_extensions/collections/lazy_root.rb +30 -0
  1013. data/lib/middleman-core/core_extensions/collections/lazy_step.rb +48 -0
  1014. data/lib/middleman-core/core_extensions/collections/pagination.rb +59 -0
  1015. data/lib/middleman-core/core_extensions/collections/step_context.rb +27 -0
  1016. data/lib/middleman-core/core_extensions/data.rb +223 -0
  1017. data/lib/middleman-core/core_extensions/default_helpers.rb +289 -0
  1018. data/lib/middleman-core/core_extensions/external_helpers.rb +30 -0
  1019. data/lib/middleman-core/core_extensions/file_watcher.rb +78 -0
  1020. data/lib/middleman-core/core_extensions/front_matter.rb +91 -0
  1021. data/lib/middleman-core/core_extensions/i18n.rb +295 -0
  1022. data/lib/middleman-core/core_extensions/inline_url_rewriter.rb +150 -0
  1023. data/lib/middleman-core/core_extensions/rendering.rb +55 -0
  1024. data/lib/middleman-core/core_extensions/routing.rb +66 -0
  1025. data/lib/middleman-core/core_extensions/show_exceptions.rb +12 -0
  1026. data/lib/middleman-core/dns_resolver.rb +73 -0
  1027. data/lib/middleman-core/dns_resolver/basic_network_resolver.rb +52 -0
  1028. data/lib/middleman-core/dns_resolver/hosts_resolver.rb +63 -0
  1029. data/lib/middleman-core/dns_resolver/local_link_resolver.rb +44 -0
  1030. data/lib/middleman-core/dns_resolver/network_resolver.rb +42 -0
  1031. data/lib/middleman-core/extension.rb +523 -0
  1032. data/lib/middleman-core/extension_manager.rb +95 -0
  1033. data/lib/middleman-core/extensions.rb +137 -0
  1034. data/lib/middleman-core/extensions/asset_hash.rb +101 -0
  1035. data/lib/middleman-core/extensions/asset_host.rb +40 -0
  1036. data/lib/middleman-core/extensions/automatic_alt_tags.rb +28 -0
  1037. data/lib/middleman-core/extensions/automatic_image_sizes.rb +48 -0
  1038. data/lib/middleman-core/extensions/cache_buster.rb +23 -0
  1039. data/lib/middleman-core/extensions/directory_indexes.rb +26 -0
  1040. data/lib/middleman-core/extensions/external_pipeline.rb +42 -0
  1041. data/lib/middleman-core/extensions/gzip.rb +114 -0
  1042. data/lib/middleman-core/extensions/lorem.rb +176 -0
  1043. data/lib/middleman-core/extensions/minify_css.rb +118 -0
  1044. data/lib/middleman-core/extensions/minify_javascript.rb +123 -0
  1045. data/lib/middleman-core/extensions/relative_assets.rb +53 -0
  1046. data/lib/middleman-core/file_renderer.rb +136 -0
  1047. data/lib/middleman-core/load_paths.rb +47 -0
  1048. data/lib/middleman-core/logger.rb +47 -0
  1049. data/lib/middleman-core/meta_pages.rb +112 -0
  1050. data/lib/middleman-core/meta_pages/assets/config.css +49 -0
  1051. data/lib/middleman-core/meta_pages/assets/glyphicons-halflings.png +0 -0
  1052. data/lib/middleman-core/meta_pages/assets/jquery-1.8.2.min.js +2 -0
  1053. data/lib/middleman-core/meta_pages/assets/jquery.details-1.6.min.js +6 -0
  1054. data/lib/middleman-core/meta_pages/assets/meta.css +384 -0
  1055. data/lib/middleman-core/meta_pages/assets/sitemap.css +652 -0
  1056. data/lib/middleman-core/meta_pages/assets/sitemap.js +0 -0
  1057. data/lib/middleman-core/meta_pages/config_setting.rb +37 -0
  1058. data/lib/middleman-core/meta_pages/sitemap_resource.rb +65 -0
  1059. data/lib/middleman-core/meta_pages/sitemap_tree.rb +77 -0
  1060. data/lib/middleman-core/meta_pages/templates/config.html.erb +57 -0
  1061. data/lib/middleman-core/meta_pages/templates/index.html.erb +31 -0
  1062. data/lib/middleman-core/meta_pages/templates/sitemap.html.erb +30 -0
  1063. data/lib/middleman-core/preview_server.rb +328 -0
  1064. data/lib/middleman-core/preview_server/checks.rb +81 -0
  1065. data/lib/middleman-core/preview_server/information.rb +273 -0
  1066. data/lib/middleman-core/preview_server/network_interface_inventory.rb +65 -0
  1067. data/lib/middleman-core/preview_server/server_hostname.rb +39 -0
  1068. data/lib/middleman-core/preview_server/server_information.rb +153 -0
  1069. data/lib/middleman-core/preview_server/server_information_callback_proxy.rb +35 -0
  1070. data/lib/middleman-core/preview_server/server_information_validator.rb +18 -0
  1071. data/lib/middleman-core/preview_server/server_ip_address.rb +55 -0
  1072. data/lib/middleman-core/preview_server/server_url.rb +63 -0
  1073. data/lib/middleman-core/preview_server/tcp_port_prober.rb +29 -0
  1074. data/lib/middleman-core/profiling.rb +55 -0
  1075. data/lib/middleman-core/rack.rb +147 -0
  1076. data/lib/middleman-core/renderers/coffee_script.rb +42 -0
  1077. data/lib/middleman-core/renderers/erb.rb +21 -0
  1078. data/lib/middleman-core/renderers/haml.rb +76 -0
  1079. data/lib/middleman-core/renderers/kramdown.rb +52 -0
  1080. data/lib/middleman-core/renderers/less.rb +36 -0
  1081. data/lib/middleman-core/renderers/liquid.rb +54 -0
  1082. data/lib/middleman-core/renderers/markdown.rb +43 -0
  1083. data/lib/middleman-core/renderers/redcarpet.rb +100 -0
  1084. data/lib/middleman-core/renderers/sass.rb +114 -0
  1085. data/lib/middleman-core/renderers/sass_functions.rb +114 -0
  1086. data/lib/middleman-core/renderers/slim.rb +52 -0
  1087. data/lib/middleman-core/renderers/stylus.rb +10 -0
  1088. data/lib/middleman-core/sitemap/extensions/ignores.rb +60 -0
  1089. data/lib/middleman-core/sitemap/extensions/import.rb +65 -0
  1090. data/lib/middleman-core/sitemap/extensions/move_file.rb +39 -0
  1091. data/lib/middleman-core/sitemap/extensions/on_disk.rb +74 -0
  1092. data/lib/middleman-core/sitemap/extensions/proxies.rb +119 -0
  1093. data/lib/middleman-core/sitemap/extensions/redirects.rb +84 -0
  1094. data/lib/middleman-core/sitemap/extensions/request_endpoints.rb +68 -0
  1095. data/lib/middleman-core/sitemap/extensions/traversal.rb +107 -0
  1096. data/lib/middleman-core/sitemap/resource.rb +216 -0
  1097. data/lib/middleman-core/sitemap/store.rb +260 -0
  1098. data/lib/middleman-core/sources.rb +373 -0
  1099. data/lib/middleman-core/sources/source_watcher.rb +342 -0
  1100. data/lib/middleman-core/step_definitions.rb +21 -0
  1101. data/lib/middleman-core/step_definitions/builder_steps.rb +31 -0
  1102. data/lib/middleman-core/step_definitions/commandline_steps.rb +88 -0
  1103. data/lib/middleman-core/step_definitions/middleman_steps.rb +60 -0
  1104. data/lib/middleman-core/step_definitions/server_steps.rb +124 -0
  1105. data/lib/middleman-core/template_context.rb +204 -0
  1106. data/lib/middleman-core/template_renderer.rb +241 -0
  1107. data/lib/middleman-core/util.rb +24 -0
  1108. data/lib/middleman-core/util/binary.rb +79 -0
  1109. data/lib/middleman-core/util/data.rb +135 -0
  1110. data/lib/middleman-core/util/files.rb +134 -0
  1111. data/lib/middleman-core/util/paths.rb +251 -0
  1112. data/lib/middleman-core/util/rack.rb +52 -0
  1113. data/lib/middleman-core/util/uri_templates.rb +97 -0
  1114. data/lib/middleman-core/version.rb +5 -0
  1115. data/lib/middleman/rack.rb +5 -0
  1116. data/middleman-core.gemspec +60 -0
  1117. data/spec/middleman-core/binary_spec/middleman +0 -0
  1118. data/spec/middleman-core/binary_spec/middleman.png +0 -0
  1119. data/spec/middleman-core/binary_spec/plain.txt +1 -0
  1120. data/spec/middleman-core/binary_spec/stars.svgz +0 -0
  1121. data/spec/middleman-core/binary_spec/unicode +1 -0
  1122. data/spec/middleman-core/binary_spec/unicode.txt +1 -0
  1123. data/spec/middleman-core/callbacks_spec.rb +132 -0
  1124. data/spec/middleman-core/core_extensions/data_spec.rb +41 -0
  1125. data/spec/middleman-core/dns_resolver_spec.rb +118 -0
  1126. data/spec/middleman-core/preview_server/server_hostname_spec.rb +39 -0
  1127. data/spec/middleman-core/preview_server/server_ip_address_spec.rb +43 -0
  1128. data/spec/middleman-core/util_spec.rb +193 -0
  1129. data/spec/spec_helper.rb +36 -0
  1130. data/spec/support/given.rb +42 -0
  1131. metadata +2463 -0
@@ -0,0 +1,20 @@
1
+ Feature: Tilt missing support libraries
2
+
3
+ Scenario: Rendering Textile and Wiki files
4
+ Given the Server is running at "missing-tilt-library-app"
5
+ When I go to "/danger-zone/more-wiki.html.wiki"
6
+ Then I should see "File Not Found"
7
+ When I go to "/danger-zone/more-wiki.html"
8
+ Then I should see "File Not Found"
9
+ When I go to "/safe-zone/my-wiki.html.wiki"
10
+ Then I should see "Safe"
11
+ When I go to "/safe-zone/my-wiki.html"
12
+ Then I should see "File Not Found"
13
+ When I go to "/textile-source.html.textile"
14
+ Then I should see "File Not Found"
15
+ When I go to "/textile-source.html"
16
+ Then I should see "File Not Found"
17
+ When I go to "/wiki-source.html.wiki"
18
+ Then I should see "Hola"
19
+ When I go to "/wiki-source.html"
20
+ Then I should see "File Not Found"
@@ -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" with flags "--no-clean"
5
+ Then the following files should exist:
6
+ | build/about/index.html |
7
+ Given a successfully built app at "clean-dir-app"
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"
13
+ Then the following files should exist:
14
+ | build/about/index.html |
@@ -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 "more-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 "more-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,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 "more-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 "more-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 "more-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,62 @@
1
+ Feature: Ignoring paths
2
+ Scenario: Ignore with directory indexes (source file, build)
3
+ Given a fixture app "more-ignore-app"
4
+ And a file named "config.rb" with:
5
+ """
6
+ activate :directory_indexes
7
+ ignore 'about.html.erb'
8
+ ignore 'plain.html'
9
+ """
10
+ And a successfully built app at "more-ignore-app"
11
+ Then the following files should exist:
12
+ | build/index.html |
13
+ And the following files should not exist:
14
+ | build/about/index.html |
15
+ | build/plain/index.html |
16
+
17
+ Scenario: Ignore with directory indexes (source file, server)
18
+ Given a fixture app "more-ignore-app"
19
+ And a file named "config.rb" with:
20
+ """
21
+ activate :directory_indexes
22
+ ignore 'about.html.erb'
23
+ ignore 'plain.html'
24
+ """
25
+ And the Server is running
26
+ When I go to "/index.html"
27
+ Then I should not see "File Not Found"
28
+ When I go to "/about/index.html"
29
+ Then I should see "File Not Found"
30
+ When I go to "/plain/index.html"
31
+ Then I should see "File Not Found"
32
+
33
+ Scenario: Ignore with directory indexes (output path splat, build)
34
+ Given a fixture app "more-ignore-app"
35
+ And a file named "config.rb" with:
36
+ """
37
+ activate :directory_indexes
38
+ ignore 'about*'
39
+ ignore 'plain*'
40
+ """
41
+ And a successfully built app at "more-ignore-app"
42
+ Then the following files should exist:
43
+ | build/index.html |
44
+ And the following files should not exist:
45
+ | build/about/index.html |
46
+ | build/plain/index.html |
47
+
48
+ Scenario: Ignore with directory indexes (output path splat, server)
49
+ Given a fixture app "more-ignore-app"
50
+ And a file named "config.rb" with:
51
+ """
52
+ activate :directory_indexes
53
+ ignore 'about*'
54
+ ignore 'plain*'
55
+ """
56
+ And the Server is running
57
+ When I go to "/index.html"
58
+ Then I should not see "File Not Found"
59
+ When I go to "/about/index.html"
60
+ Then I should see "File Not Found"
61
+ When I go to "/plain/index.html"
62
+ Then I should see "File Not Found"
@@ -0,0 +1,83 @@
1
+ Feature: Step through sitemap as a tree (more)
2
+
3
+ Scenario: Root
4
+ Given the Server is running at "more-traversal-app"
5
+ When I go to "/index.html"
6
+ Then I should see "Path: index.html"
7
+ Then I should not see "Parent: index.html"
8
+ Then I should see "Child: sub/index.html"
9
+ Then I should see "Child: root.html"
10
+ Then I should not see "Child: proxied.html"
11
+
12
+ Scenario: Directories have children and a parent
13
+ Given the Server is running at "more-traversal-app"
14
+ When I go to "/sub/index.html"
15
+ Then I should see "Path: sub/index.html"
16
+ Then I should see "Parent: index.html"
17
+ Then I should see "Child: sub/fake.html"
18
+ Then I should see "Child: sub/fake2.html"
19
+ Then I should see "Child: sub/sibling.html"
20
+ Then I should see "Child: sub/sibling2.html"
21
+ Then I should see "Child: sub/sub2/index.html"
22
+ Then I should see "Sibling: root.html"
23
+
24
+ Scenario: Directory accessed without index.html
25
+ Given the Server is running at "more-traversal-app"
26
+ When I go to "/sub/"
27
+ Then I should see "Path: sub/index.html"
28
+ Then I should see "Parent: index.html"
29
+ Then I should see "Child: sub/fake.html"
30
+ Then I should see "Child: sub/fake2.html"
31
+ Then I should see "Child: sub/sibling.html"
32
+ Then I should see "Child: sub/sibling2.html"
33
+ Then I should see "Child: sub/sub2/index.html"
34
+ Then I should see "Sibling: root.html"
35
+
36
+ Scenario: Page has siblings, parent, and source file
37
+ Given the Server is running at "more-traversal-app"
38
+ When I go to "/sub/sibling/"
39
+ Then I should see "Parent: sub/index.html"
40
+ Then I should see "Sibling: sub/fake.html"
41
+ Then I should see "Sibling: sub/fake2.html"
42
+ Then I should see "Sibling: sub/sibling2.html"
43
+ Then I should see "Sibling: sub/sub2/index.html"
44
+ Then I should see "Source: source/sub/sibling.html.erb"
45
+
46
+ Scenario: Proxied page has siblings, parent, and source file
47
+ Given the Server is running at "more-traversal-app"
48
+ When I go to "/sub/fake/"
49
+ Then I should see "Path: sub/fake.html"
50
+ Then I should see "Parent: sub/index.html"
51
+ Then I should see "Sibling: sub/fake2.html"
52
+ Then I should see "Sibling: sub/sibling.html"
53
+ Then I should see "Sibling: sub/sibling2.html"
54
+ Then I should see "Sibling: sub/sub2/index.html"
55
+ Then I should see "Source: source/proxied.html.erb"
56
+
57
+ Scenario: Child pages have data
58
+ Given the Server is running at "more-traversal-app"
59
+ When I go to "/directory-indexed"
60
+ Then I should see "Title of Sibling One"
61
+ Then I should see "Title of Sibling Two"
62
+
63
+ Scenario: When directory_index extension is active, child pages are found in named directory
64
+ Given the Server is running at "more-traversal-app"
65
+ When I go to "/directory-indexed"
66
+ Then I should see "Path: directory-indexed.html"
67
+ Then I should see "Parent: index.html"
68
+ Then I should see "Child: directory-indexed/fake.html"
69
+ Then I should see "Child: directory-indexed/fake2.html"
70
+ Then I should see "Child: directory-indexed/sibling.html"
71
+ Then I should see "Child: directory-indexed/sibling2.html"
72
+ Then I should see "Child: directory-indexed/sub2/index.html"
73
+ Then I should see "Sibling: root.html"
74
+
75
+ Scenario: Child pages can see their parent and siblings too in named directory
76
+ Given the Server is running at "more-traversal-app"
77
+ When I go to "/directory-indexed/sibling"
78
+ Then I should see "Path: directory-indexed/sibling.html"
79
+ Then I should see "Parent: directory-indexed.html"
80
+ Then I should see "Sibling: directory-indexed/fake.html"
81
+ Then I should see "Sibling: directory-indexed/fake2.html"
82
+ Then I should see "Sibling: directory-indexed/sibling2.html"
83
+ Then I should see "Sibling: directory-indexed/sub2/index.html"
@@ -0,0 +1,10 @@
1
+ Feature: Wildcards in Page helper
2
+
3
+ Scenario: Setting the layout for a folder
4
+ Given the Server is running at "wildcard-directory-index-app"
5
+ When I go to "/"
6
+ Then I should see "Normal Layout"
7
+ When I go to "/admin/"
8
+ Then I should see "Admin Layout"
9
+ When I go to "/admin/page/"
10
+ Then I should see "Admin Layout"
@@ -0,0 +1,65 @@
1
+ Feature: Support Rack apps mounted using map
2
+
3
+ Scenario: Mounted Rack App at /sinatra
4
+ Given the Server is running at "sinatra-app"
5
+ When I go to "/"
6
+ Then I should see "Hello World (Middleman)"
7
+ When I go to "/sinatra/"
8
+ Then I should see "Hello World (Sinatra)"
9
+
10
+ Scenario: Built Mounted Rack App at /sinatra
11
+ Given a successfully built app at "sinatra-app"
12
+ When I cd to "build"
13
+ Then the following files should exist:
14
+ | index.html |
15
+ Then the following files should not exist:
16
+ | sinatra/index.html |
17
+ | sinatra/index2.html |
18
+
19
+ Scenario: Static Ruby Endpoints
20
+ Given a fixture app "sinatra-app"
21
+ And a file named "config.rb" with:
22
+ """
23
+ endpoint "hello.html" do
24
+ "world"
25
+ end
26
+ """
27
+ And the Server is running at "sinatra-app"
28
+ When I go to "/hello.html"
29
+ Then I should see "world"
30
+
31
+ Scenario: Built Mounted Rack App at /sinatra (including rack endpoints)
32
+ Given a fixture app "sinatra-app"
33
+ And a file named "config.rb" with:
34
+ """
35
+ require "sinatra"
36
+
37
+ class MySinatra < Sinatra::Base
38
+ get "/" do
39
+ "Hello World (Sinatra)"
40
+ end
41
+ get "/derp.html" do
42
+ "De doo"
43
+ end
44
+ end
45
+
46
+ map "/sinatra" do
47
+ run MySinatra
48
+ end
49
+
50
+ endpoint "sinatra/index2.html", path: "/sinatra/"
51
+
52
+ endpoint "dedoo.html", path: "/sinatra/derp.html"
53
+
54
+ endpoint "hello.html" do
55
+ "world"
56
+ end
57
+ """
58
+ And a successfully built app at "sinatra-app"
59
+ When I cd to "build"
60
+ Then the following files should exist:
61
+ | index.html |
62
+ | sinatra/index2.html |
63
+ | dedoo.html |
64
+ And the file "sinatra/index2.html" should contain 'Hello World (Sinatra)'
65
+ And the file "dedoo.html" should contain 'De doo'
@@ -0,0 +1,44 @@
1
+ Feature: Move files
2
+
3
+ Scenario: Move one path to another
4
+ Given a fixture app "large-build-app"
5
+ And a file named "config.rb" with:
6
+ """
7
+ move_file "/static.html", "/static2.html"
8
+ """
9
+ And the Server is running at "large-build-app"
10
+ When I go to "/static.html"
11
+ Then I should see 'Not Found'
12
+ When I go to "/static2.html"
13
+ Then I should see 'Static, no code!'
14
+
15
+ Scenario: Move one path to another with directory indexes
16
+ Given a fixture app "large-build-app"
17
+ And a file named "config.rb" with:
18
+ """
19
+ activate :directory_indexes
20
+ move_file "/static.html", "/static2.html"
21
+ """
22
+ And the Server is running at "large-build-app"
23
+ When I go to "/static.html"
24
+ Then I should see 'Not Found'
25
+ When I go to "/static/index.html"
26
+ Then I should see 'Not Found'
27
+ When I go to "/static2.html"
28
+ Then I should see 'Static, no code!'
29
+
30
+ Scenario: Move one path to another with directory indexes (using dest path)
31
+ Given a fixture app "large-build-app"
32
+ And a file named "config.rb" with:
33
+ """
34
+ activate :directory_indexes
35
+ move_file "/static/index.html", "/static2.html"
36
+ """
37
+ And the Server is running at "large-build-app"
38
+ When I go to "/static.html"
39
+ Then I should see 'Not Found'
40
+ When I go to "/static/index.html"
41
+ Then I should see 'Not Found'
42
+ When I go to "/static2.html"
43
+ Then I should see 'Static, no code!'
44
+
@@ -0,0 +1,40 @@
1
+ Feature: Allow content with multiple sources to reload
2
+ Scenario: With source that does not specify a destination directory
3
+ Given the Server is running at "multiple-sources-without-destination-dir"
4
+ When I go to "/page.html"
5
+ Then I should see "Before edit"
6
+
7
+ When the file "external/page.html.erb" has the contents
8
+ """
9
+ After edit
10
+ """
11
+ And I go to "/page.html"
12
+ Then I should see "After edit"
13
+
14
+
15
+ Scenario: With source that specifies destination directory
16
+ Given the Server is running at "multiple-sources-with-destination-dir"
17
+ When I go to "/external/page.html"
18
+ Then I should see "Before edit"
19
+
20
+ When the file "external/page.html.erb" has the contents
21
+ """
22
+ After edit
23
+ """
24
+ And I go to "/external/page.html"
25
+ Then I should see "After edit"
26
+
27
+ Scenario: With external source and a destination directory name different from source directory name
28
+ Given a fixture app "destination-dir-different-from-source-dir-name"
29
+ And I cd to "my-app"
30
+ And the Server is running
31
+
32
+ When I go to "/my_dir/page.html"
33
+ Then I should see "Before edit"
34
+
35
+ When the file "../external/page.html.erb" has the contents
36
+ """
37
+ After edit
38
+ """
39
+ And I go to "/my_dir/page.html"
40
+ Then I should see "After edit"
@@ -0,0 +1,35 @@
1
+ Feature: Allow multiple sources to be setup.
2
+
3
+ Scenario: Three source directories.
4
+ Given the Server is running at "multiple-sources-app"
5
+ When I go to "/index.html"
6
+ Then I should see "Default Source"
7
+
8
+ When I go to "/index1.html"
9
+ Then I should see "Source 1"
10
+
11
+ When I go to "/index2.html"
12
+ Then I should see "Source 2"
13
+
14
+ When I go to "/override-in-two.html"
15
+ Then I should see "Overridden 2"
16
+
17
+ When I go to "/override-in-one.html"
18
+ Then I should see "Opposite 2"
19
+
20
+ Scenario: Three data directories.
21
+ Given the Server is running at "multiple-data-sources-app"
22
+ When I go to "/index.html"
23
+ Then I should see "Default: Data Default"
24
+ Then I should see "Data 1: Data 1"
25
+ Then I should see "Data 2: Data 2"
26
+ Then I should see "Override in Two: Overridden 2"
27
+ Then I should see "Override in One: Opposite 2"
28
+
29
+ Scenario: Set source with destination_dir
30
+ Given the Server is running at "multiple-sources-with-duplicate-file-names-app"
31
+ When I go to "/index.html"
32
+ Then I should see "Default Source"
33
+
34
+ When I go to "/source2/index.html"
35
+ Then I should see "Second Source"