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
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 0ca25c0db0b5bbd38dc2315422909ca0034eaf222e85be89942a43c31ea48a4e
4
+ data.tar.gz: 7668aabc3404f8a2e87cc1e268e46be098c55611bc52ffaa7d79f30bef68a298
5
+ SHA512:
6
+ metadata.gz: a6f20b541a9d3ae4a5682ff003c527e8889cba45897d04bd5e7d74249a3a92f13ac36db17afad94c19958f82977836296fc950d23c8c1e03b98700787b85e0f3
7
+ data.tar.gz: 2de2bf773efc53b5836d0e41133394d25003fccd7a4b06f6a41921fa21e5851de121504550fb441e5ad1c91421b8a8f04b8866f040c2106d4b5d54276d9a99ca
data/.gemtest ADDED
File without changes
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color
data/.simplecov ADDED
@@ -0,0 +1,7 @@
1
+ SimpleCov.start do
2
+ add_filter '/fixtures/'
3
+ add_filter '/features/'
4
+ add_filter '/spec/'
5
+ add_filter '/step_definitions/'
6
+ add_filter '/lib/vendored-middleman-deps/'
7
+ end
data/.yardopts ADDED
@@ -0,0 +1,6 @@
1
+ lib/**/*.rb
2
+ --exclude lib/vendored-middleman-deps/
3
+ --exclude lib/middleman-core/step_definitions
4
+ --no-private
5
+ --hide-void-return
6
+ --markup=markdown
data/Rakefile ADDED
@@ -0,0 +1,4 @@
1
+ # coding:utf-8
2
+ RAKE_ROOT = __FILE__.freeze
3
+ GEM_NAME = ENV['NAME'] || 'middleman-core'
4
+ require File.expand_path(File.dirname(__FILE__) + '/../gem_rake_helper')
data/cucumber.yml ADDED
@@ -0,0 +1,2 @@
1
+ default: --require features --tags ~@wip
2
+ wip: --require features --tags @wip
@@ -0,0 +1,287 @@
1
+ Feature: Assets get file hashes appended to them and references to them are updated
2
+ Scenario: Hashed-asset files are produced, and HTML, CSS, JSON and JavaScript gets rewritten to reference the new files
3
+ Given a successfully built app at "asset-hash-app"
4
+ When I cd to "build"
5
+ Then the following files should exist:
6
+ | index.html |
7
+ | apple-touch-icon.png |
8
+ | favicon.ico |
9
+ | images/100px-1242c368.png |
10
+ | images/100px-5fd6fb90.jpg |
11
+ | images/200px-c11eb203.jpg |
12
+ | images/300px-59adce76.jpg |
13
+ | images/100px-5fd6fb90.gif |
14
+ | javascripts/application-1d8d5276.js |
15
+ | stylesheets/site-8bc55985.css |
16
+ | index.html |
17
+ | subdir/index.html |
18
+ | other/index.html |
19
+ | api.json |
20
+ | subdir/api.json |
21
+ And the following files should not exist:
22
+ | images/100px.png |
23
+ | images/100px.jpg |
24
+ | images/100px.gif |
25
+ | javascripts/application.js |
26
+ | stylesheets/site.css |
27
+
28
+ And the file "javascripts/application-1d8d5276.js" should contain "img.src = '/images/100px-5fd6fb90.jpg'"
29
+ And the file "stylesheets/site-8bc55985.css" should contain:
30
+ """
31
+ background-image: url("../images/100px-5fd6fb90.jpg")
32
+ """
33
+ And the file "index.html" should contain 'href="apple-touch-icon.png"'
34
+ And the file "index.html" should contain 'href="stylesheets/site-8bc55985.css"'
35
+ And the file "index.html" should contain 'src="javascripts/application-1d8d5276.js"'
36
+ And the file "index.html" should contain 'src="images/100px-5fd6fb90.jpg"'
37
+ And the file "subdir/index.html" should contain 'href="../stylesheets/site-8bc55985.css"'
38
+ And the file "index.html" should contain 'srcset="images/100px-5fd6fb90.jpg 1x, images/200px-c11eb203.jpg 2x, images/300px-59adce76.jpg 3x"'
39
+ And the file "index.html" should contain 'src="images/100px-5fd6fb90.gif"'
40
+ And the file "index.html" should contain 'src="images/100px-1242c368.png"'
41
+ And the file "subdir/index.html" should contain 'src="../javascripts/application-1d8d5276.js"'
42
+ And the file "subdir/index.html" should contain 'src="../images/100px-5fd6fb90.jpg"'
43
+ And the file "other/index.html" should contain 'href="../stylesheets/site-8bc55985.css"'
44
+ And the file "other/index.html" should contain 'src="../javascripts/application-1d8d5276.js"'
45
+ And the file "other/index.html" should contain 'src="../images/100px-5fd6fb90.jpg"'
46
+ And the file "api.json" should contain 'images/100px-5fd6fb90.gif'
47
+ And the file "api.json" should contain 'images/100px-5fd6fb90.jpg'
48
+ And the file "api.json" should contain 'images/100px-1242c368.png'
49
+ And the file "subdir/api.json" should contain 'images/100px-5fd6fb90.gif'
50
+ And the file "subdir/api.json" should contain 'images/100px-5fd6fb90.jpg'
51
+ And the file "subdir/api.json" should contain 'images/100px-1242c368.png'
52
+
53
+ Scenario: Hashed fonts assets work with woff and woff2 extension
54
+ Given a successfully built app at "asset-hash-app"
55
+ When I cd to "build"
56
+ Then the following files should exist:
57
+ | fonts/fontawesome-webfont-56ce13e7.woff |
58
+ | fonts/fontawesome-webfont-10752316.woff2 |
59
+ And the file "stylesheets/uses_fonts-88aa3e2b.css" should contain "src: url('../fonts/fontawesome-webfont-10752316.woff2')"
60
+ And the file "stylesheets/uses_fonts-88aa3e2b.css" should contain "url('../fonts/fontawesome-webfont-56ce13e7.woff')"
61
+
62
+ Scenario: Hashed assets work in preview server
63
+ Given the Server is running at "asset-hash-app"
64
+ When I go to "/"
65
+ Then I should see 'href="apple-touch-icon.png"'
66
+ And I should see 'href="stylesheets/site-d1a750ca.css"'
67
+ And I should see 'href="stylesheets/fragment-99b76247.css"'
68
+ And I should see 'src="javascripts/application-1d8d5276.js"'
69
+ And I should see 'src="images/100px-5fd6fb90.jpg"'
70
+ And I should see 'srcset="images/100px-5fd6fb90.jpg 1x, images/200px-c11eb203.jpg 2x, images/300px-59adce76.jpg 3x"'
71
+ And I should see 'src="images/100px-5fd6fb90.jpg?test"'
72
+ And I should see 'src="images/100px-5fd6fb90.jpg?#test"'
73
+ And I should see 'src="images/100px-5fd6fb90.jpg#test"'
74
+ When I go to "/subdir/"
75
+ Then I should see 'href="../stylesheets/site-d1a750ca.css"'
76
+ And I should see 'src="../javascripts/application-1d8d5276.js"'
77
+ And I should see 'src="../images/100px-5fd6fb90.jpg"'
78
+ When I go to "/other/"
79
+ Then I should see 'href="../stylesheets/site-d1a750ca.css"'
80
+ And I should see 'src="../javascripts/application-1d8d5276.js"'
81
+ And I should see 'src="../images/100px-5fd6fb90.jpg"'
82
+ And I should see 'src="../images/100px-5fd6fb90.jpg?test"'
83
+ And I should see 'src="../images/100px-5fd6fb90.jpg?#test"'
84
+ And I should see 'src="../images/100px-5fd6fb90.jpg#test"'
85
+ When I go to "/javascripts/application-1d8d5276.js"
86
+ Then I should see "img.src = '/images/100px-5fd6fb90.jpg'"
87
+ When I go to "/stylesheets/site-d1a750ca.css"
88
+ Then I should see 'background-image: url("../images/100px-5fd6fb90.jpg");'
89
+ When I go to "/api.json"
90
+ Then I should see 'images/100px-5fd6fb90.gif'
91
+ And I should see 'images/100px-5fd6fb90.jpg'
92
+ And I should see 'images/100px-1242c368.png'
93
+ When I go to "/subdir/api.json"
94
+ Then I should see 'images/100px-5fd6fb90.gif'
95
+ And I should see 'images/100px-5fd6fb90.jpg'
96
+ And I should see 'images/100px-1242c368.png'
97
+ When I go to "/stylesheets/fragment-99b76247.css"
98
+ And I should see 'url("../images/100px-5fd6fb90.jpg");'
99
+ And I should see 'url("../images/100px-5fd6fb90.jpg?test");'
100
+ And I should see 'url("../images/100px-5fd6fb90.jpg?#test");'
101
+ And I should see 'url("../images/100px-5fd6fb90.jpg#test");'
102
+
103
+ Scenario: Hashed assets work with Slim
104
+ Given the Server is running at "asset-hash-app"
105
+ When I go to "/slim.html"
106
+ And I should see 'src="images/300px-59adce76.jpg"'
107
+ And I should see 'src="images/100px-5fd6fb90.jpg"'
108
+ And I should see 'srcset="images/100px-5fd6fb90.jpg 1x, images/200px-c11eb203.jpg 2x, images/300px-59adce76.jpg 3x"'
109
+
110
+ Scenario: Enabling an asset host still produces hashed files and references (hash first)
111
+ Given a fixture app "asset-hash-host-app"
112
+ And a file named "config.rb" with:
113
+ """
114
+ activate :asset_hash
115
+ activate :directory_indexes
116
+ activate :asset_host, host: 'http://middlemanapp.com'
117
+ """
118
+ Given the Server is running at "asset-hash-host-app"
119
+ When I go to "/"
120
+ Then I should see 'href="http://middlemanapp.com/stylesheets/site-210612a0.css"'
121
+ Then I should see 'href="http://middlemanapp.com/stylesheets/fragment-7000b132.css"'
122
+ And I should see 'src="http://middlemanapp.com/images/100px-5fd6fb90.jpg"'
123
+ And I should see 'src="http://middlemanapp.com/images/100px-5fd6fb90.jpg?test"'
124
+ And I should see 'src="http://middlemanapp.com/images/100px-5fd6fb90.jpg?#test"'
125
+ And I should see 'src="http://middlemanapp.com/images/100px-5fd6fb90.jpg#test"'
126
+ When I go to "/subdir/"
127
+ Then I should see 'href="http://middlemanapp.com/stylesheets/site-210612a0.css"'
128
+ And I should see 'src="http://middlemanapp.com/images/100px-5fd6fb90.jpg"'
129
+ When I go to "/other/"
130
+ Then I should see 'href="http://middlemanapp.com/stylesheets/site-210612a0.css"'
131
+ And I should see 'src="http://middlemanapp.com/images/100px-5fd6fb90.jpg"'
132
+ And I should see 'src="http://middlemanapp.com/images/100px-5fd6fb90.jpg?test"'
133
+ And I should see 'src="http://middlemanapp.com/images/100px-5fd6fb90.jpg?#test"'
134
+ And I should see 'src="http://middlemanapp.com/images/100px-5fd6fb90.jpg#test"'
135
+ When I go to "/stylesheets/fragment-7000b132.css"
136
+ And I should see 'url("http://middlemanapp.com/images/100px-5fd6fb90.jpg");'
137
+ And I should see 'url("http://middlemanapp.com/images/100px-5fd6fb90.jpg?test");'
138
+ And I should see 'url("http://middlemanapp.com/images/100px-5fd6fb90.jpg?#test");'
139
+ And I should see 'url("http://middlemanapp.com/images/100px-5fd6fb90.jpg#test");'
140
+
141
+ Scenario: Enabling an asset host still produces hashed files and references (host first)
142
+ Given a fixture app "asset-hash-host-app"
143
+ And a file named "config.rb" with:
144
+ """
145
+ activate :asset_host, host: 'http://middlemanapp.com'
146
+ activate :directory_indexes
147
+ activate :asset_hash
148
+ """
149
+ Given the Server is running at "asset-hash-host-app"
150
+ When I go to "/"
151
+ Then I should see 'href="http://middlemanapp.com/stylesheets/site-210612a0.css"'
152
+ Then I should see 'href="http://middlemanapp.com/stylesheets/fragment-7000b132.css"'
153
+ And I should see 'src="http://middlemanapp.com/images/100px-5fd6fb90.jpg"'
154
+ And I should see 'src="http://middlemanapp.com/images/100px-5fd6fb90.jpg?test"'
155
+ And I should see 'src="http://middlemanapp.com/images/100px-5fd6fb90.jpg?#test"'
156
+ And I should see 'src="http://middlemanapp.com/images/100px-5fd6fb90.jpg#test"'
157
+ When I go to "/subdir/"
158
+ Then I should see 'href="http://middlemanapp.com/stylesheets/site-210612a0.css"'
159
+ And I should see 'src="http://middlemanapp.com/images/100px-5fd6fb90.jpg"'
160
+ When I go to "/other/"
161
+ Then I should see 'href="http://middlemanapp.com/stylesheets/site-210612a0.css"'
162
+ And I should see 'src="http://middlemanapp.com/images/100px-5fd6fb90.jpg"'
163
+ And I should see 'src="http://middlemanapp.com/images/100px-5fd6fb90.jpg?test"'
164
+ And I should see 'src="http://middlemanapp.com/images/100px-5fd6fb90.jpg?#test"'
165
+ And I should see 'src="http://middlemanapp.com/images/100px-5fd6fb90.jpg#test"'
166
+ When I go to "/stylesheets/fragment-7000b132.css"
167
+ And I should see 'url("http://middlemanapp.com/images/100px-5fd6fb90.jpg")'
168
+ And I should see 'url("http://middlemanapp.com/images/100px-5fd6fb90.jpg?test")'
169
+ And I should see 'url("http://middlemanapp.com/images/100px-5fd6fb90.jpg?#test")'
170
+ And I should see 'url("http://middlemanapp.com/images/100px-5fd6fb90.jpg#test")'
171
+
172
+ Scenario: The asset hash should change when a SASS partial changes
173
+ Given the Server is running at "asset-hash-app"
174
+ And the file "source/stylesheets/_partial.sass" has the contents
175
+ """
176
+ body
177
+ font-size: 14px
178
+ """
179
+ When I go to "/partials/"
180
+ Then I should see 'href="../stylesheets/uses_partials-4d4e34e6.css'
181
+ And the file "source/stylesheets/_partial.sass" has the contents
182
+ """
183
+ body
184
+ font-size: 18px !important
185
+ """
186
+ When I go to "/partials/"
187
+ Then I should see 'href="../stylesheets/uses_partials-ec347271.css'
188
+
189
+ Scenario: The asset hash should change when a Rack-based filter changes
190
+ Given a fixture app "asset-hash-app"
191
+ And a file named "config.rb" with:
192
+ """
193
+ activate :asset_hash
194
+ activate :relative_assets
195
+ activate :directory_indexes
196
+ require 'lib/middleware.rb'
197
+ use ::Middleware
198
+ """
199
+ Given the Server is running at "asset-hash-app"
200
+ When I go to "/"
201
+ Then I should see 'href="stylesheets/site-5ad7def0.css'
202
+ When I go to "stylesheets/site-5ad7def0.css"
203
+ Then I should see 'background-image: url("../images/100px-5fd6fb90.jpg")'
204
+ Then I should see 'Added by Rack filter'
205
+
206
+ Scenario: Hashed-asset files are not produced for ignored paths
207
+ Given a fixture app "asset-hash-app"
208
+ And a file named "config.rb" with:
209
+ """
210
+ is_stylesheet = proc { |path| path.start_with? 'stylesheets' }
211
+ activate :asset_hash, ignore: [
212
+ %r(javascripts/*),
213
+ 'images/*',
214
+ is_stylesheet
215
+ ]
216
+ activate :relative_assets
217
+ activate :directory_indexes
218
+ """
219
+ And a successfully built app at "asset-hash-app"
220
+ When I cd to "build"
221
+ Then the following files should exist:
222
+ | index.html |
223
+ | apple-touch-icon.png |
224
+ | favicon.ico |
225
+ | images/100px.png |
226
+ | images/100px.jpg |
227
+ | images/100px.gif |
228
+ | javascripts/application.js |
229
+ | stylesheets/site.css |
230
+ | index.html |
231
+ | subdir/index.html |
232
+ | other/index.html |
233
+ | api.json |
234
+ | subdir/api.json |
235
+ And the following files should not exist:
236
+ | images/100px-1242c368.png |
237
+ | images/100px-5fd6fb90.jpg |
238
+ | images/100px-5fd6fb90.gif |
239
+ | javascripts/application-1d8d5276.js |
240
+ | stylesheets/site-7474cadd.css |
241
+
242
+ Scenario: Hashed-asset files are not replaced for rewrite ignored paths
243
+ Given a fixture app "asset-hash-app"
244
+ And a file named "config.rb" with:
245
+ """
246
+ is_stylesheet = proc { |path| path.start_with? '/stylesheets' }
247
+ activate :asset_hash, rewrite_ignore: [
248
+ %r(javascripts/*),
249
+ '/subdir/*',
250
+ is_stylesheet
251
+ ]
252
+ activate :relative_assets
253
+ activate :directory_indexes
254
+ """
255
+ And a successfully built app at "asset-hash-app"
256
+ When I cd to "build"
257
+ Then the following files should exist:
258
+ | index.html |
259
+ | subdir/index.html |
260
+ | images/100px-5fd6fb90.jpg |
261
+ | javascripts/application-1d8d5276.js |
262
+ | stylesheets/site-8bc55985.css |
263
+ And the following files should not exist:
264
+ | images/100px.jpg |
265
+ | javascripts/application.js |
266
+ | stylesheets/site.css |
267
+ And the file "javascripts/application-1d8d5276.js" should contain "img.src = '/images/100px.jpg'"
268
+ And the file "stylesheets/site-8bc55985.css" should contain:
269
+ """
270
+ background-image: url("../images/100px.jpg")
271
+ """
272
+ And the file "index.html" should contain 'href="stylesheets/site-8bc55985.css"'
273
+ And the file "index.html" should contain 'src="javascripts/application-1d8d5276.js"'
274
+ And the file "index.html" should contain 'src="images/100px-5fd6fb90.jpg"'
275
+ And the file "subdir/index.html" should contain:
276
+ """
277
+ <h2>Image url3:</h2>
278
+ <p><img src="../images/100px.jpg"></p>
279
+ """
280
+
281
+ Scenario: Already minified files should still be hashed
282
+ Given a successfully built app at "asset-hash-minified-app"
283
+ When I cd to "build"
284
+ Then the following files should exist:
285
+ | javascripts/jquery.min-276c87ff.js |
286
+ And the following files should not exist:
287
+ | javascripts/jquery.min.js |
@@ -0,0 +1,54 @@
1
+ Feature: Alternate between multiple asset hosts
2
+
3
+ Scenario: Set single host with inline-option
4
+ Given a fixture app "asset-host-app"
5
+ And a file named "config.rb" with:
6
+ """
7
+ activate :asset_host, host: "http://assets1.example.com"
8
+ """
9
+ And the Server is running
10
+ When I go to "/asset_host.html"
11
+ Then I should see "'.google-analytics.com/ga.js'"
12
+ Then I should see 'src="https://code.jquery.com/jquery-2.1.3.min.js"'
13
+ Then I should see content matching %r{http://assets1.example.com/}
14
+ Then I should not see content matching %r{http://assets1.example.com//}
15
+ Then I should see content matching %r{<a href="https://github.com/angular/angular.js">Angular.js</a>}
16
+ Then I should see content matching %r{'//www.example.com/script.js'}
17
+ When I go to "/stylesheets/asset_host.css"
18
+ Then I should see content matching %r{http://assets1.example.com/}
19
+ Then I should not see content matching %r{http://assets1.example.com//}
20
+ When I go to "/javascripts/asset_host.js"
21
+ Then I should not see content matching %r{http://assets1.example.com/}
22
+
23
+ Scenario: Set proc host with inline-option
24
+ Given a fixture app "asset-host-app"
25
+ And a file named "config.rb" with:
26
+ """
27
+ activate :asset_host, host: Proc.new { |asset|
28
+ "http://assets%d.example.com" % (asset.hash % 4)
29
+ }
30
+ """
31
+ And the Server is running
32
+ When I go to "/asset_host.html"
33
+ Then I should see 'src="https://code.jquery.com/jquery-2.1.3.min.js"'
34
+ Then I should see content matching %r{http://assets1.example.com/}
35
+ Then I should not see content matching %r{http://assets1.example.com//}
36
+ Then I should see content matching %r{<a href="https://github.com/angular/angular.js">Angular.js</a>}
37
+ Then I should see content matching %r{'//www.example.com/script.js'}
38
+ When I go to "/stylesheets/asset_host.css"
39
+ Then I should see content matching %r{http://assets1.example.com/}
40
+ Then I should not see content matching %r{http://assets1.example.com//}
41
+
42
+ Scenario: Hosts are not rewritten for rewrite ignored paths
43
+ Given a fixture app "asset-host-app"
44
+ And a file named "config.rb" with:
45
+ """
46
+ activate :asset_host, host: "http://assets1.example.com", rewrite_ignore: [
47
+ '/stylesheets/asset_host.css',
48
+ ]
49
+ """
50
+ And the Server is running
51
+ When I go to "/asset_host.html"
52
+ Then I should see content matching %r{http://assets1.example.com/}
53
+ When I go to "/stylesheets/asset_host.css"
54
+ Then I should not see content matching %r{http://assets1.example.com/}
@@ -0,0 +1,36 @@
1
+ Feature: Provide Sane Defaults for Layout Behavior
2
+
3
+ Scenario: Template and Layout of same engine exist
4
+ Given the Server is running at "engine-matching-layout"
5
+ When I go to "/index.html"
6
+ Then I should see "Comment in layout"
7
+
8
+ Scenario: Template and Layout of different engine
9
+ Given the Server is running at "different-engine-layout"
10
+ When I go to "/index.html"
11
+ Then I should see "Comment in layout"
12
+
13
+ Scenario: Multiple layouts exist, prefer same engine
14
+ Given the Server is running at "multiple-layouts"
15
+ When I go to "/index.html"
16
+ Then I should see "ERb Comment in layout"
17
+
18
+ Scenario: No layout exists
19
+ Given the Server is running at "no-layout"
20
+ When I go to "/index.html"
21
+ Then I should not see "Comment in layout"
22
+
23
+ Scenario: Manually set default layout in config (exists)
24
+ Given the Server is running at "manual-layout"
25
+ When I go to "/index.html"
26
+ Then I should see "Custom Comment in layout"
27
+
28
+ Scenario: Manually set default layout in config (does not exist)
29
+ Given the Server is running at "manual-layout-missing"
30
+ When I go to "/index.html"
31
+ Then I should see "Error"
32
+
33
+ Scenario: Overwrite manual layout
34
+ Given the Server is running at "manual-layout-override"
35
+ When I go to "/index.html"
36
+ Then I should see "Another Comment in layout"
@@ -0,0 +1,8 @@
1
+ Feature: Automatically detect and insert image dimensions into tags
2
+ In order to speed up development and appease YSlow
3
+
4
+ Scenario: Rendering an image with the feature enabled
5
+ Given "automatic_alt_tags" feature is "enabled"
6
+ And the Server is running at "automatic-alt-tags-app"
7
+ When I go to "/auto-image-sizes.html"
8
+ Then I should see 'alt="Blank"'
@@ -0,0 +1,32 @@
1
+ Feature: Map special characters to automatically put files in a directory
2
+
3
+ Scenario: Building files with special character escape
4
+ Given a successfully built app at "automatic-directory-matcher-app"
5
+ When I cd to "build"
6
+ Then the following files should exist:
7
+ | root.html |
8
+ | root-plain.html |
9
+ | sub/sub.html |
10
+ | sub/sub-plain.html |
11
+ | sub/sub/sub.html |
12
+ | sub/sub/sub-plain.html |
13
+ Then the following files should not exist:
14
+ | sub--sub.html |
15
+ | sub--sub-plain.html |
16
+ | sub--sub--sub.html |
17
+ | sub--sub--sub-plain.html |
18
+
19
+ Scenario: Previewing files with special character escape
20
+ Given the Server is running at "automatic-directory-matcher-app"
21
+ When I go to "/root.html"
22
+ Then I should see "Root Erb"
23
+ When I go to "/root-plain.html"
24
+ Then I should see "Root Plain"
25
+ When I go to "/sub/sub.html"
26
+ Then I should see "Sub1 Erb"
27
+ When I go to "/sub/sub-plain.html"
28
+ Then I should see "Sub1 Plain"
29
+ When I go to "/sub/sub/sub.html"
30
+ Then I should see "Sub2 Erb"
31
+ When I go to "/sub/sub/sub-plain.html"
32
+ Then I should see "Sub2 Plain"