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

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1131) hide show
  1. checksums.yaml +7 -0
  2. data/.gemtest +0 -0
  3. data/.rspec +1 -0
  4. data/.simplecov +7 -0
  5. data/.yardopts +6 -0
  6. data/Rakefile +4 -0
  7. data/cucumber.yml +2 -0
  8. data/features/asset_hash.feature +287 -0
  9. data/features/asset_host.feature +54 -0
  10. data/features/auto_layout.feature +36 -0
  11. data/features/automatic_alt_tags.feature +8 -0
  12. data/features/automatic_directory_matcher.feature +32 -0
  13. data/features/automatic_image_sizes.feature +29 -0
  14. data/features/builder.feature +57 -0
  15. data/features/cache_buster.feature +56 -0
  16. data/features/capture_html.feature +18 -0
  17. data/features/chained_templates.feature +109 -0
  18. data/features/clean_build.feature +78 -0
  19. data/features/coffee-script.feature +22 -0
  20. data/features/collections.feature +238 -0
  21. data/features/console.feature +11 -0
  22. data/features/content_for.feature +16 -0
  23. data/features/content_type.feature +46 -0
  24. data/features/custom-source.feature +7 -0
  25. data/features/custom_layout_engines.feature +8 -0
  26. data/features/custom_layouts.feature +68 -0
  27. data/features/data.feature +60 -0
  28. data/features/default-layout.feature +90 -0
  29. data/features/directory_index.feature +82 -0
  30. data/features/dynamic_pages.feature +133 -0
  31. data/features/encoding_option.feature +28 -0
  32. data/features/extension_api_deprecations.feature +10 -0
  33. data/features/extension_hooks.feature +13 -0
  34. data/features/extensionless_text_files.feature +24 -0
  35. data/features/feature_params.feature +6 -0
  36. data/features/former_padrino_helpers.feature +27 -0
  37. data/features/front-matter-neighbor.feature +147 -0
  38. data/features/front-matter.feature +81 -0
  39. data/features/frontmatter_page_settings.feature +43 -0
  40. data/features/gzip.feature +51 -0
  41. data/features/helpers_auto_javascript_include_tag.feature +53 -0
  42. data/features/helpers_auto_stylesheet_link_tag.feature +48 -0
  43. data/features/helpers_content_tag.feature +16 -0
  44. data/features/helpers_external.feature +12 -0
  45. data/features/helpers_form_tag.feature +26 -0
  46. data/features/helpers_link_to.feature +185 -0
  47. data/features/helpers_lorem.feature +6 -0
  48. data/features/helpers_page_classes.feature +32 -0
  49. data/features/helpers_select_tag.feature +17 -0
  50. data/features/helpers_url_for.feature +152 -0
  51. data/features/i18n_builder.feature +164 -0
  52. data/features/i18n_force_locale.feature +13 -0
  53. data/features/i18n_link_to.feature +209 -0
  54. data/features/i18n_mixed_sources.feature +39 -0
  55. data/features/i18n_partials.feature +23 -0
  56. data/features/i18n_preview.feature +252 -0
  57. data/features/ignore.feature +150 -0
  58. data/features/ignore_already_minified.feature +47 -0
  59. data/features/image_srcset_paths.feature +7 -0
  60. data/features/import_files.feature +15 -0
  61. data/features/javascript-testing.feature +18 -0
  62. data/features/layouts_dir.feature +38 -0
  63. data/features/liquid.feature +11 -0
  64. data/features/markdown.feature +23 -0
  65. data/features/markdown_kramdown.feature +38 -0
  66. data/features/markdown_kramdown_in_haml.feature +42 -0
  67. data/features/markdown_kramdown_in_slim.feature +42 -0
  68. data/features/markdown_redcarpet.feature +167 -0
  69. data/features/markdown_redcarpet_in_haml.feature +41 -0
  70. data/features/minify_css.feature +205 -0
  71. data/features/minify_javascript.feature +266 -0
  72. data/features/missing-tilt-lib.feature +20 -0
  73. data/features/more-clean_build.feature +14 -0
  74. data/features/more-extensionless_text_files.feature +28 -0
  75. data/features/more-frontmatter_page_settings.feature +42 -0
  76. data/features/more-ignore.feature +62 -0
  77. data/features/more-sitemap_traversal.feature +83 -0
  78. data/features/more-wildcard_page_helper.feature +10 -0
  79. data/features/mount_rack.feature +65 -0
  80. data/features/move_files.feature +44 -0
  81. data/features/multiple-sources-reload.feature +40 -0
  82. data/features/multiple-sources.feature +35 -0
  83. data/features/nested_layouts.feature +58 -0
  84. data/features/paginate.feature +204 -0
  85. data/features/partials.feature +52 -0
  86. data/features/preview_changes.feature +29 -0
  87. data/features/proxy_pages.feature +84 -0
  88. data/features/redirects.feature +61 -0
  89. data/features/relative_assets.feature +148 -0
  90. data/features/sass-assets-paths.feature +11 -0
  91. data/features/sass_partials.feature +54 -0
  92. data/features/scss-support.feature +12 -0
  93. data/features/sitemap_traversal.feature +83 -0
  94. data/features/slim.feature +81 -0
  95. data/features/strip_url.feature +40 -0
  96. data/features/stylus.feature +54 -0
  97. data/features/support/env.rb +19 -0
  98. data/features/support/preserve_mime_types.rb +7 -0
  99. data/features/tilde_directories.feature +14 -0
  100. data/features/unicode_filecontents.feature +13 -0
  101. data/features/unicode_filenames.feature +36 -0
  102. data/features/v4_extension_callbacks.feature +8 -0
  103. data/features/wildcard_page_helper.feature +10 -0
  104. data/fixtures/asset-hash-app/config.rb +6 -0
  105. data/fixtures/asset-hash-app/lib/middleware.rb +16 -0
  106. data/fixtures/asset-hash-app/source/api.json.erb +1 -0
  107. data/fixtures/asset-hash-app/source/apple-touch-icon.png +0 -0
  108. data/fixtures/asset-hash-app/source/favicon.ico +0 -0
  109. data/fixtures/asset-hash-app/source/fonts/fontawesome-webfont.woff +0 -0
  110. data/fixtures/asset-hash-app/source/fonts/fontawesome-webfont.woff2 +0 -0
  111. data/fixtures/asset-hash-app/source/images/100px.gif +0 -0
  112. data/fixtures/asset-hash-app/source/images/100px.jpg +0 -0
  113. data/fixtures/asset-hash-app/source/images/100px.png +0 -0
  114. data/fixtures/asset-hash-app/source/images/200px.jpg +0 -0
  115. data/fixtures/asset-hash-app/source/images/300px.jpg +0 -0
  116. data/fixtures/asset-hash-app/source/index.html.erb +314 -0
  117. data/fixtures/asset-hash-app/source/javascripts/application.js +8 -0
  118. data/fixtures/asset-hash-app/source/layout.erb +18 -0
  119. data/fixtures/asset-hash-app/source/other.html.erb +5 -0
  120. data/fixtures/asset-hash-app/source/partials.html.erb +1 -0
  121. data/fixtures/asset-hash-app/source/slim.html.slim +8 -0
  122. data/fixtures/asset-hash-app/source/stylesheets/_partial.sass +2 -0
  123. data/fixtures/asset-hash-app/source/stylesheets/fragment.css.scss +7 -0
  124. data/fixtures/asset-hash-app/source/stylesheets/site.css.scss +4 -0
  125. data/fixtures/asset-hash-app/source/stylesheets/uses_fonts.css +4 -0
  126. data/fixtures/asset-hash-app/source/stylesheets/uses_partials.css.sass +4 -0
  127. data/fixtures/asset-hash-app/source/subdir/api.json.erb +1 -0
  128. data/fixtures/asset-hash-app/source/subdir/index.html.erb +317 -0
  129. data/fixtures/asset-hash-host-app/source/images/100px.gif +0 -0
  130. data/fixtures/asset-hash-host-app/source/images/100px.jpg +0 -0
  131. data/fixtures/asset-hash-host-app/source/images/100px.png +0 -0
  132. data/fixtures/asset-hash-host-app/source/index.html.erb +9 -0
  133. data/fixtures/asset-hash-host-app/source/layout.erb +17 -0
  134. data/fixtures/asset-hash-host-app/source/other.html.erb +5 -0
  135. data/fixtures/asset-hash-host-app/source/stylesheets/fragment.css.scss +7 -0
  136. data/fixtures/asset-hash-host-app/source/stylesheets/site.css.scss +4 -0
  137. data/fixtures/asset-hash-host-app/source/subdir/index.html.erb +6 -0
  138. data/fixtures/asset-hash-minified-app/config.rb +5 -0
  139. data/fixtures/asset-hash-minified-app/source/javascripts/jquery.min.js +5 -0
  140. data/fixtures/asset-host-app/config.rb +1 -0
  141. data/fixtures/asset-host-app/source/.htaccess +1 -0
  142. data/fixtures/asset-host-app/source/asset_host.html.erb +55 -0
  143. data/fixtures/asset-host-app/source/images/blank.gif +0 -0
  144. data/fixtures/asset-host-app/source/javascripts/asset_host.js +2 -0
  145. data/fixtures/asset-host-app/source/stylesheets/asset_host.css.sass +48 -0
  146. data/fixtures/auto-css-app/config.rb +9 -0
  147. data/fixtures/auto-css-app/source/auto-css.html.erb +1 -0
  148. data/fixtures/auto-css-app/source/auto-css/auto-css.html.erb +1 -0
  149. data/fixtures/auto-css-app/source/auto-css/index.html.erb +1 -0
  150. data/fixtures/auto-css-app/source/auto-css/sub/auto-css.html.erb +1 -0
  151. data/fixtures/auto-css-app/source/stylesheets/auto-css.css +3 -0
  152. data/fixtures/auto-css-app/source/stylesheets/auto-css/auto-css.css +3 -0
  153. data/fixtures/auto-css-app/source/stylesheets/auto-css/index.css +0 -0
  154. data/fixtures/auto-css-app/source/stylesheets/auto-css/sub/auto-css.css +3 -0
  155. data/fixtures/auto-js-app/config.rb +9 -0
  156. data/fixtures/auto-js-app/source/auto-js.html.erb +1 -0
  157. data/fixtures/auto-js-app/source/auto-js/auto-js.html.erb +1 -0
  158. data/fixtures/auto-js-app/source/auto-js/index.html.erb +1 -0
  159. data/fixtures/auto-js-app/source/auto-js/sub/auto-js.html.erb +1 -0
  160. data/fixtures/auto-js-app/source/javascripts/auto-js.js +1 -0
  161. data/fixtures/auto-js-app/source/javascripts/auto-js/auto-js.js +1 -0
  162. data/fixtures/auto-js-app/source/javascripts/auto-js/index.js +1 -0
  163. data/fixtures/auto-js-app/source/javascripts/auto-js/sub/auto-js.js +1 -0
  164. data/fixtures/auto-js-directory-index-app/config.rb +1 -0
  165. data/fixtures/auto-js-directory-index-app/source/auto-js.html.erb +1 -0
  166. data/fixtures/auto-js-directory-index-app/source/javascripts/auto-js.js +1 -0
  167. data/fixtures/automatic-alt-tags-app/config.rb +0 -0
  168. data/fixtures/automatic-alt-tags-app/source/auto-image-sizes.html.erb +1 -0
  169. data/fixtures/automatic-alt-tags-app/source/images/blank.gif +0 -0
  170. data/fixtures/automatic-directory-matcher-app/config.rb +1 -0
  171. data/fixtures/automatic-directory-matcher-app/source/root-plain.html +1 -0
  172. data/fixtures/automatic-directory-matcher-app/source/root.html.erb +1 -0
  173. data/fixtures/automatic-directory-matcher-app/source/sub--sub--sub-plain.html +1 -0
  174. data/fixtures/automatic-directory-matcher-app/source/sub--sub--sub.html.erb +1 -0
  175. data/fixtures/automatic-directory-matcher-app/source/sub--sub-plain.html +1 -0
  176. data/fixtures/automatic-directory-matcher-app/source/sub--sub.html.erb +1 -0
  177. data/fixtures/automatic-image-size-app/config.rb +0 -0
  178. data/fixtures/automatic-image-size-app/source/auto-image-sizes.html.erb +1 -0
  179. data/fixtures/automatic-image-size-app/source/images/blank.gif +0 -0
  180. data/fixtures/automatic-image-size-app/source/markdown-sizes.html.markdown +1 -0
  181. data/fixtures/basic-data-app/config.rb +2 -0
  182. data/fixtures/basic-data-app/data/test.yml +4 -0
  183. data/fixtures/basic-data-app/data/test2.json +4 -0
  184. data/fixtures/basic-data-app/source/data.html.erb +5 -0
  185. data/fixtures/basic-data-app/source/data3.html.erb +5 -0
  186. data/fixtures/build-with-errors-app/config.rb +1 -0
  187. data/fixtures/build-with-errors-app/source/index.html.erb +1 -0
  188. data/fixtures/cache-buster-app/config.rb +0 -0
  189. data/fixtures/cache-buster-app/source/cache-buster.html.erb +3 -0
  190. data/fixtures/cache-buster-app/source/images/blank.gif +0 -0
  191. data/fixtures/cache-buster-app/source/stylesheets/relative_assets.css.sass +2 -0
  192. data/fixtures/cache-buster-app/source/stylesheets/site.css.sass +3 -0
  193. data/fixtures/capture-html-app/config.rb +5 -0
  194. data/fixtures/capture-html-app/source/capture_html_erb.html.erb +5 -0
  195. data/fixtures/capture-html-app/source/capture_html_haml.html.haml +4 -0
  196. data/fixtures/capture-html-app/source/capture_html_slim.html.slim +4 -0
  197. data/fixtures/capture-html-app/source/layouts/capture_html.erb +4 -0
  198. data/fixtures/chained-app/config.rb +0 -0
  199. data/fixtures/chained-app/data/article.yml +2 -0
  200. data/fixtures/chained-app/source/index.html.str.erb +8 -0
  201. data/fixtures/chained-app/source/test.erb.combobreaker.str.erb +8 -0
  202. data/fixtures/clean-app/config-complications.rb +9 -0
  203. data/fixtures/clean-app/config-empty.rb +0 -0
  204. data/fixtures/clean-app/config-hidden-dir-after.rb +5 -0
  205. data/fixtures/clean-app/config-hidden-dir-before.rb +1 -0
  206. data/fixtures/clean-app/config.rb +9 -0
  207. data/fixtures/clean-app/source/index.html.erb +1 -0
  208. data/fixtures/clean-app/source/layout.erb +9 -0
  209. data/fixtures/clean-app/source/layouts/custom.erb +8 -0
  210. data/fixtures/clean-app/source/real.html +1 -0
  211. data/fixtures/clean-app/source/real/index.html.erb +5 -0
  212. data/fixtures/clean-app/source/should_be_ignored.html +1 -0
  213. data/fixtures/clean-app/source/should_be_ignored2.html +1 -0
  214. data/fixtures/clean-app/source/should_be_ignored3.html +1 -0
  215. data/fixtures/clean-app/source/static.html +1 -0
  216. data/fixtures/clean-dir-app/config.rb +2 -0
  217. data/fixtures/clean-dir-app/source/about.html +1 -0
  218. data/fixtures/clean-nested-app/config.rb +1 -0
  219. data/fixtures/clean-nested-app/source/about.html +1 -0
  220. data/fixtures/clean-nested-app/source/nested/nested.html +1 -0
  221. data/fixtures/coffeescript-app/config.rb +0 -0
  222. data/fixtures/coffeescript-app/source/inline-coffeescript.html.haml +3 -0
  223. data/fixtures/coffeescript-app/source/javascripts/broken-coffee.js.coffee +3 -0
  224. data/fixtures/coffeescript-app/source/javascripts/coffee_test.js.coffee +3 -0
  225. data/fixtures/collections-app/source/blog1/2011-01-01-new-article.html.markdown +7 -0
  226. data/fixtures/collections-app/source/blog1/2011-01-02-another-article.html.markdown +9 -0
  227. data/fixtures/collections-app/source/blog2/2011-01-01-new-article.html.markdown +9 -0
  228. data/fixtures/collections-app/source/blog2/2011-01-02-another-article.html.markdown +8 -0
  229. data/fixtures/content-for-app/config.rb +5 -0
  230. data/fixtures/content-for-app/source/content_for_erb.html.erb +5 -0
  231. data/fixtures/content-for-app/source/content_for_haml.html.haml +4 -0
  232. data/fixtures/content-for-app/source/content_for_slim.html.slim +5 -0
  233. data/fixtures/content-for-app/source/layouts/content_for.erb +4 -0
  234. data/fixtures/content-type-app/config.rb +1 -0
  235. data/fixtures/content-type-app/source/.htaccess +1 -0
  236. data/fixtures/content-type-app/source/README +1 -0
  237. data/fixtures/content-type-app/source/images/blank.gif +0 -0
  238. data/fixtures/content-type-app/source/index.html +1 -0
  239. data/fixtures/content-type-app/source/index.php +1 -0
  240. data/fixtures/content-type-app/source/javascripts/app.js +1 -0
  241. data/fixtures/content-type-app/source/override.html +5 -0
  242. data/fixtures/content-type-app/source/stylesheets/site.css +1 -0
  243. data/fixtures/csspie/config.rb +0 -0
  244. data/fixtures/csspie/source/stylesheets/PIE.htc +96 -0
  245. data/fixtures/custom-layout-app/config.rb +1 -0
  246. data/fixtures/custom-layout-app/source/index.html.erb +1 -0
  247. data/fixtures/custom-layout-app/source/layout.str +9 -0
  248. data/fixtures/custom-layout-app2/config.rb +0 -0
  249. data/fixtures/custom-layout-app2/source/custom-layout-dir/index.html.erb +1 -0
  250. data/fixtures/custom-layout-app2/source/custom-layout.html.erb +1 -0
  251. data/fixtures/custom-layout-app2/source/layouts/custom.erb +8 -0
  252. data/fixtures/custom-src-app/config.rb +1 -0
  253. data/fixtures/custom-src-app/src/index.html +0 -0
  254. data/fixtures/custom-src-app/src/layouts/layout.html.erb +1 -0
  255. data/fixtures/data-app/config.rb +3 -0
  256. data/fixtures/data-app/data/pages.yml +6 -0
  257. data/fixtures/data-app/source/index.html.erb +1 -0
  258. data/fixtures/data-app/source/layout.erb +5 -0
  259. data/fixtures/destination-dir-different-from-source-dir-name/external/page.html.erb +1 -0
  260. data/fixtures/destination-dir-different-from-source-dir-name/my-app/config.rb +2 -0
  261. data/fixtures/destination-dir-different-from-source-dir-name/my-app/source/index.html.erb +1 -0
  262. data/fixtures/different-engine-layout/config.rb +0 -0
  263. data/fixtures/different-engine-layout/source/index.haml +1 -0
  264. data/fixtures/different-engine-layout/source/index.html.str +1 -0
  265. data/fixtures/different-engine-layout/source/layout.erb +9 -0
  266. data/fixtures/different-engine-partial/config.rb +0 -0
  267. data/fixtures/different-engine-partial/source/index.html.erb +1 -0
  268. data/fixtures/different-engine-partial/source/layouts/layout.erb +7 -0
  269. data/fixtures/different-engine-partial/source/shared/_footer.str +1 -0
  270. data/fixtures/different-engine-partial/source/shared/_header.erb +1 -0
  271. data/fixtures/dynamic-pages-app/config.rb +30 -0
  272. data/fixtures/dynamic-pages-app/source/real.html +1 -0
  273. data/fixtures/dynamic-pages-app/source/real/index.html.erb +9 -0
  274. data/fixtures/dynamic-pages-app/source/should_be_ignored.html +1 -0
  275. data/fixtures/dynamic-pages-app/source/should_be_ignored2.html +1 -0
  276. data/fixtures/dynamic-pages-app/source/should_be_ignored3.html +1 -0
  277. data/fixtures/dynamic-pages-app/source/should_be_ignored4.html +1 -0
  278. data/fixtures/dynamic-pages-app/source/should_be_ignored5.html +1 -0
  279. data/fixtures/dynamic-pages-app/source/should_be_ignored6.html +1 -0
  280. data/fixtures/dynamic-pages-app/source/should_be_ignored7.html +1 -0
  281. data/fixtures/dynamic-pages-app/source/should_be_ignored8.html +1 -0
  282. data/fixtures/ember-cli-app/config.rb +5 -0
  283. data/fixtures/ember-cli-app/source/javascripts/file.js +0 -0
  284. data/fixtures/ember-cli-app/test-app/.bowerrc +3 -0
  285. data/fixtures/ember-cli-app/test-app/.gitignore +17 -0
  286. data/fixtures/ember-cli-app/test-app/.jshintrc +32 -0
  287. data/fixtures/ember-cli-app/test-app/Brocfile.js +20 -0
  288. data/fixtures/ember-cli-app/test-app/README.md +25 -0
  289. data/fixtures/ember-cli-app/test-app/app/app.js +14 -0
  290. data/fixtures/ember-cli-app/test-app/app/components/.gitkeep +0 -0
  291. data/fixtures/ember-cli-app/test-app/app/controllers/.gitkeep +0 -0
  292. data/fixtures/ember-cli-app/test-app/app/helpers/.gitkeep +0 -0
  293. data/fixtures/ember-cli-app/test-app/app/index.html +26 -0
  294. data/fixtures/ember-cli-app/test-app/app/models/.gitkeep +0 -0
  295. data/fixtures/ember-cli-app/test-app/app/router.js +10 -0
  296. data/fixtures/ember-cli-app/test-app/app/routes/.gitkeep +0 -0
  297. data/fixtures/ember-cli-app/test-app/app/styles/.gitkeep +0 -0
  298. data/fixtures/ember-cli-app/test-app/app/styles/app.css +3 -0
  299. data/fixtures/ember-cli-app/test-app/app/templates/.gitkeep +0 -0
  300. data/fixtures/ember-cli-app/test-app/app/templates/application.hbs +3 -0
  301. data/fixtures/ember-cli-app/test-app/app/templates/components/.gitkeep +0 -0
  302. data/fixtures/ember-cli-app/test-app/app/views/.gitkeep +0 -0
  303. data/fixtures/ember-cli-app/test-app/bower.json +16 -0
  304. data/fixtures/ember-cli-app/test-app/config/environment.js +38 -0
  305. data/fixtures/ember-cli-app/test-app/package.json +31 -0
  306. data/fixtures/ember-cli-app/test-app/public/.gitkeep +0 -0
  307. data/fixtures/ember-cli-app/test-app/testem.json +6 -0
  308. data/fixtures/ember-cli-app/test-app/tests/.jshintrc +73 -0
  309. data/fixtures/ember-cli-app/test-app/tests/helpers/resolver.js +9 -0
  310. data/fixtures/ember-cli-app/test-app/tests/helpers/start-app.js +30 -0
  311. data/fixtures/ember-cli-app/test-app/tests/index.html +50 -0
  312. data/fixtures/ember-cli-app/test-app/tests/test-helper.js +6 -0
  313. data/fixtures/ember-cli-app/test-app/tests/unit/.gitkeep +0 -0
  314. data/fixtures/empty-app/not-config.rb +0 -0
  315. data/fixtures/engine-matching-layout/config.rb +0 -0
  316. data/fixtures/engine-matching-layout/source/index.html.erb +1 -0
  317. data/fixtures/engine-matching-layout/source/layout.erb +9 -0
  318. data/fixtures/env-app/config.rb +0 -0
  319. data/fixtures/env-app/environments/development.rb +1 -0
  320. data/fixtures/env-app/environments/production.rb +2 -0
  321. data/fixtures/env-app/source/index.html.erb +3 -0
  322. data/fixtures/env-app/source/stylesheets/site.css.scss +3 -0
  323. data/fixtures/extension-api-deprecations-app/config.rb +11 -0
  324. data/fixtures/extension-api-deprecations-app/source/index.html.erb +1 -0
  325. data/fixtures/extension-api-deprecations-app/source/layouts/layout.erb +3 -0
  326. data/fixtures/extension-hooks-app/config.rb +39 -0
  327. data/fixtures/extension-hooks-app/source/index.html.erb +9 -0
  328. data/fixtures/extensionless-text-files-app/config.rb +0 -0
  329. data/fixtures/extensionless-text-files-app/source/CNAME +1 -0
  330. data/fixtures/extensionless-text-files-app/source/LICENSE +1 -0
  331. data/fixtures/extensionless-text-files-app/source/README +1 -0
  332. data/fixtures/extensionless-text-files-app/source/index.html +1 -0
  333. data/fixtures/external-helpers/config.rb +4 -0
  334. data/fixtures/external-helpers/helpers/derp.rb +3 -0
  335. data/fixtures/external-helpers/helpers/four_helpers.rb +3 -0
  336. data/fixtures/external-helpers/helpers/one_helper.rb +3 -0
  337. data/fixtures/external-helpers/helpers/yet_another_thingy.rb +3 -0
  338. data/fixtures/external-helpers/lib/hello_helper.rb +5 -0
  339. data/fixtures/external-helpers/source/automatic.html.erb +1 -0
  340. data/fixtures/external-helpers/source/index.html.erb +1 -0
  341. data/fixtures/feature-params-app/config.rb +16 -0
  342. data/fixtures/feature-params-app/source/index.html.erb +2 -0
  343. data/fixtures/fonts-app/config.rb +0 -0
  344. data/fixtures/fonts-app/source/fonts/StMarie-Thin.otf +0 -0
  345. data/fixtures/fonts-app/source/fonts/blank/blank.otf +0 -0
  346. data/fixtures/fonts-app/source/stylesheets/fonts.css.scss +6 -0
  347. data/fixtures/frontmatter-app/config.rb +1 -0
  348. data/fixtures/frontmatter-app/source/front-matter-2.php.erb +7 -0
  349. data/fixtures/frontmatter-app/source/front-matter-change.html.erb +5 -0
  350. data/fixtures/frontmatter-app/source/front-matter-encoding.html.erb +7 -0
  351. data/fixtures/frontmatter-app/source/front-matter-haml.html.haml +6 -0
  352. data/fixtures/frontmatter-app/source/front-matter-line-2.html.erb +10 -0
  353. data/fixtures/frontmatter-app/source/front-matter-pandoc.html.md.erb +13 -0
  354. data/fixtures/frontmatter-app/source/raw-front-matter.html +6 -0
  355. data/fixtures/frontmatter-app/source/raw-front-matter.php +6 -0
  356. data/fixtures/frontmatter-neighbor-app/config.rb +30 -0
  357. data/fixtures/frontmatter-neighbor-app/source/front-matter-2.php.erb +2 -0
  358. data/fixtures/frontmatter-neighbor-app/source/front-matter-2.php.erb.frontmatter +4 -0
  359. data/fixtures/frontmatter-neighbor-app/source/front-matter-change.html.erb +1 -0
  360. data/fixtures/frontmatter-neighbor-app/source/front-matter-change.html.erb.frontmatter +4 -0
  361. data/fixtures/frontmatter-neighbor-app/source/front-matter-encoding.html.erb +1 -0
  362. data/fixtures/frontmatter-neighbor-app/source/front-matter-encoding.html.erb.frontmatter +5 -0
  363. data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.html +1 -0
  364. data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.html.frontmatter +4 -0
  365. data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.php +1 -0
  366. data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.php.frontmatter +4 -0
  367. data/fixtures/frontmatter-settings-app/config.rb +4 -0
  368. data/fixtures/frontmatter-settings-app/source/alternate_layout.html.erb +5 -0
  369. data/fixtures/frontmatter-settings-app/source/ignored.html.erb +5 -0
  370. data/fixtures/frontmatter-settings-app/source/layouts/alternate.erb +3 -0
  371. data/fixtures/frontmatter-settings-app/source/layouts/override.erb +1 -0
  372. data/fixtures/frontmatter-settings-app/source/override_layout.html.erb +4 -0
  373. data/fixtures/frontmatter-settings-app/source/page_mentioned.html.erb +4 -0
  374. data/fixtures/frontmatter-settings-neighbor-app/config.rb +40 -0
  375. data/fixtures/frontmatter-settings-neighbor-app/source/alternate_layout.html.erb +1 -0
  376. data/fixtures/frontmatter-settings-neighbor-app/source/alternate_layout.html.erb.frontmatter +3 -0
  377. data/fixtures/frontmatter-settings-neighbor-app/source/ignored.html.erb +1 -0
  378. data/fixtures/frontmatter-settings-neighbor-app/source/ignored.html.erb.frontmatter +3 -0
  379. data/fixtures/frontmatter-settings-neighbor-app/source/layouts/alternate.erb +3 -0
  380. data/fixtures/frontmatter-settings-neighbor-app/source/layouts/override.erb +1 -0
  381. data/fixtures/frontmatter-settings-neighbor-app/source/override_layout.html.erb +1 -0
  382. data/fixtures/frontmatter-settings-neighbor-app/source/override_layout.html.erb.frontmatter +3 -0
  383. data/fixtures/frontmatter-settings-neighbor-app/source/page_mentioned.html.erb +1 -0
  384. data/fixtures/frontmatter-settings-neighbor-app/source/page_mentioned.html.erb.frontmatter +3 -0
  385. data/fixtures/generator-test/config.rb +70 -0
  386. data/fixtures/generator-test/source/index.html.erb +10 -0
  387. data/fixtures/glob-app/config.rb +1 -0
  388. data/fixtures/glob-app/source/index.html.erb +4 -0
  389. data/fixtures/glob-app/source/stylesheets/site.css.str +3 -0
  390. data/fixtures/gzip-app/config.rb +1 -0
  391. data/fixtures/gzip-app/source/index.html +0 -0
  392. data/fixtures/gzip-app/source/javascripts/test.js +1 -0
  393. data/fixtures/gzip-app/source/stylesheets/test.css +1 -0
  394. data/fixtures/i-8859-1-app/config.rb +1 -0
  395. data/fixtures/i-8859-1-app/source/index.html.erb +1 -0
  396. data/fixtures/i18n-alt-root-app/locales/en.yml +4 -0
  397. data/fixtures/i18n-alt-root-app/locales/es.yml +7 -0
  398. data/fixtures/i18n-alt-root-app/source/lang_data/hello.html.erb +1 -0
  399. data/fixtures/i18n-alt-root-app/source/lang_data/index.html.erb +1 -0
  400. data/fixtures/i18n-alt-root-app/source/layout.erb +1 -0
  401. data/fixtures/i18n-default-app/locales/en.yml +4 -0
  402. data/fixtures/i18n-default-app/locales/es.yml +8 -0
  403. data/fixtures/i18n-default-app/source/localizable/index.html.erb +5 -0
  404. data/fixtures/i18n-force-locale/config.rb +11 -0
  405. data/fixtures/i18n-force-locale/locales/en.yml +3 -0
  406. data/fixtures/i18n-force-locale/locales/es.yml +3 -0
  407. data/fixtures/i18n-force-locale/locales/fr.yml +3 -0
  408. data/fixtures/i18n-force-locale/source/index.html.haml +2 -0
  409. data/fixtures/i18n-mixed-sources/config.rb +1 -0
  410. data/fixtures/i18n-mixed-sources/locales/en.yml +4 -0
  411. data/fixtures/i18n-mixed-sources/locales/es.yml +4 -0
  412. data/fixtures/i18n-mixed-sources/source/a/sub.html.erb +9 -0
  413. data/fixtures/i18n-mixed-sources/source/b/index.html.erb +9 -0
  414. data/fixtures/i18n-mixed-sources/source/index.html.erb +9 -0
  415. data/fixtures/i18n-mixed-sources/source/localizable/a/index.html.erb +9 -0
  416. data/fixtures/i18n-mixed-sources/source/localizable/b/sub.html.erb +9 -0
  417. data/fixtures/i18n-mixed-sources/source/localizable/index.html.erb +9 -0
  418. data/fixtures/i18n-nested-app/locales/en.yml +4 -0
  419. data/fixtures/i18n-nested-app/locales/en/more.yml +3 -0
  420. data/fixtures/i18n-nested-app/locales/es.yml +4 -0
  421. data/fixtures/i18n-nested-app/locales/es/mucho.yml +3 -0
  422. data/fixtures/i18n-nested-app/source/localizable/index.html.erb +3 -0
  423. data/fixtures/i18n-test-app/data/defaults_en.yml +0 -0
  424. data/fixtures/i18n-test-app/data/defaults_es.yml +0 -0
  425. data/fixtures/i18n-test-app/data/en_defaults.yml +0 -0
  426. data/fixtures/i18n-test-app/locales/en.yml +4 -0
  427. data/fixtures/i18n-test-app/locales/es.yml +9 -0
  428. data/fixtures/i18n-test-app/source/CNAME +1 -0
  429. data/fixtures/i18n-test-app/source/_country.en.erb +1 -0
  430. data/fixtures/i18n-test-app/source/_country.es.erb +1 -0
  431. data/fixtures/i18n-test-app/source/_site.erb +1 -0
  432. data/fixtures/i18n-test-app/source/images/president.en.svg +1 -0
  433. data/fixtures/i18n-test-app/source/images/president.es.svg +1 -0
  434. data/fixtures/i18n-test-app/source/layouts/layout.erb +8 -0
  435. data/fixtures/i18n-test-app/source/localizable/_state.en.erb +1 -0
  436. data/fixtures/i18n-test-app/source/localizable/_state.es.erb +1 -0
  437. data/fixtures/i18n-test-app/source/localizable/hello.html.erb +1 -0
  438. data/fixtures/i18n-test-app/source/localizable/images/flag.en.svg +1 -0
  439. data/fixtures/i18n-test-app/source/localizable/images/flag.es.svg +1 -0
  440. data/fixtures/i18n-test-app/source/localizable/index.html.erb +1 -0
  441. data/fixtures/i18n-test-app/source/localizable/morning.en.html.erb +1 -0
  442. data/fixtures/i18n-test-app/source/localizable/morning.es.html.erb +1 -0
  443. data/fixtures/i18n-test-app/source/localizable/one.en.html.md +1 -0
  444. data/fixtures/i18n-test-app/source/localizable/one.es.html.md +1 -0
  445. data/fixtures/i18n-test-app/source/localizable/partials/_greeting.en.erb +1 -0
  446. data/fixtures/i18n-test-app/source/localizable/partials/_greeting.es.erb +1 -0
  447. data/fixtures/i18n-test-app/source/localizable/partials/index.html.erb +8 -0
  448. data/fixtures/i18n-test-app/source/password.txt +1 -0
  449. data/fixtures/i18n-test-app/source/stylesheets/site.css +3 -0
  450. data/fixtures/ignore-app/source/about.html.erb +1 -0
  451. data/fixtures/ignore-app/source/images/icon/messages.png +0 -0
  452. data/fixtures/ignore-app/source/images/pic.png +0 -0
  453. data/fixtures/ignore-app/source/images/portrait.jpg +0 -0
  454. data/fixtures/ignore-app/source/index.html.erb +0 -0
  455. data/fixtures/ignore-app/source/plain.html +1 -0
  456. data/fixtures/ignore-app/source/reports/another.html +0 -0
  457. data/fixtures/ignore-app/source/reports/index.html +0 -0
  458. data/fixtures/image-srcset-paths-app/image-srcset-paths.html.erb +1 -0
  459. data/fixtures/image-srcset-paths-app/images/blank.gif +0 -0
  460. data/fixtures/import-app/bower.json +21 -0
  461. data/fixtures/import-app/bower_components/jquery/.bower.json +39 -0
  462. data/fixtures/import-app/bower_components/jquery/MIT-LICENSE.txt +21 -0
  463. data/fixtures/import-app/bower_components/jquery/bower.json +28 -0
  464. data/fixtures/import-app/bower_components/jquery/dist/jquery.js +9210 -0
  465. data/fixtures/import-app/bower_components/jquery/dist/jquery.min.js +5 -0
  466. data/fixtures/import-app/bower_components/jquery/dist/jquery.min.map +1 -0
  467. data/fixtures/import-app/bower_components/jquery/src/ajax.js +786 -0
  468. data/fixtures/import-app/bower_components/jquery/src/ajax/jsonp.js +89 -0
  469. data/fixtures/import-app/bower_components/jquery/src/ajax/load.js +75 -0
  470. data/fixtures/import-app/bower_components/jquery/src/ajax/parseJSON.js +13 -0
  471. data/fixtures/import-app/bower_components/jquery/src/ajax/parseXML.js +28 -0
  472. data/fixtures/import-app/bower_components/jquery/src/ajax/script.js +64 -0
  473. data/fixtures/import-app/bower_components/jquery/src/ajax/var/nonce.js +5 -0
  474. data/fixtures/import-app/bower_components/jquery/src/ajax/var/rquery.js +3 -0
  475. data/fixtures/import-app/bower_components/jquery/src/ajax/xhr.js +136 -0
  476. data/fixtures/import-app/bower_components/jquery/src/attributes.js +11 -0
  477. data/fixtures/import-app/bower_components/jquery/src/attributes/attr.js +141 -0
  478. data/fixtures/import-app/bower_components/jquery/src/attributes/classes.js +158 -0
  479. data/fixtures/import-app/bower_components/jquery/src/attributes/prop.js +94 -0
  480. data/fixtures/import-app/bower_components/jquery/src/attributes/support.js +35 -0
  481. data/fixtures/import-app/bower_components/jquery/src/attributes/val.js +161 -0
  482. data/fixtures/import-app/bower_components/jquery/src/callbacks.js +205 -0
  483. data/fixtures/import-app/bower_components/jquery/src/core.js +502 -0
  484. data/fixtures/import-app/bower_components/jquery/src/core/access.js +60 -0
  485. data/fixtures/import-app/bower_components/jquery/src/core/init.js +123 -0
  486. data/fixtures/import-app/bower_components/jquery/src/core/parseHTML.js +39 -0
  487. data/fixtures/import-app/bower_components/jquery/src/core/ready.js +97 -0
  488. data/fixtures/import-app/bower_components/jquery/src/core/var/rsingleTag.js +4 -0
  489. data/fixtures/import-app/bower_components/jquery/src/css.js +450 -0
  490. data/fixtures/import-app/bower_components/jquery/src/css/addGetHookIf.js +22 -0
  491. data/fixtures/import-app/bower_components/jquery/src/css/curCSS.js +57 -0
  492. data/fixtures/import-app/bower_components/jquery/src/css/defaultDisplay.js +70 -0
  493. data/fixtures/import-app/bower_components/jquery/src/css/hiddenVisibleSelectors.js +15 -0
  494. data/fixtures/import-app/bower_components/jquery/src/css/support.js +96 -0
  495. data/fixtures/import-app/bower_components/jquery/src/css/swap.js +28 -0
  496. data/fixtures/import-app/bower_components/jquery/src/css/var/cssExpand.js +3 -0
  497. data/fixtures/import-app/bower_components/jquery/src/css/var/getStyles.js +12 -0
  498. data/fixtures/import-app/bower_components/jquery/src/css/var/isHidden.js +13 -0
  499. data/fixtures/import-app/bower_components/jquery/src/css/var/rmargin.js +3 -0
  500. data/fixtures/import-app/bower_components/jquery/src/css/var/rnumnonpx.js +5 -0
  501. data/fixtures/import-app/bower_components/jquery/src/data.js +178 -0
  502. data/fixtures/import-app/bower_components/jquery/src/data/Data.js +181 -0
  503. data/fixtures/import-app/bower_components/jquery/src/data/accepts.js +20 -0
  504. data/fixtures/import-app/bower_components/jquery/src/data/var/data_priv.js +5 -0
  505. data/fixtures/import-app/bower_components/jquery/src/data/var/data_user.js +5 -0
  506. data/fixtures/import-app/bower_components/jquery/src/deferred.js +149 -0
  507. data/fixtures/import-app/bower_components/jquery/src/deprecated.js +13 -0
  508. data/fixtures/import-app/bower_components/jquery/src/dimensions.js +50 -0
  509. data/fixtures/import-app/bower_components/jquery/src/effects.js +648 -0
  510. data/fixtures/import-app/bower_components/jquery/src/effects/Tween.js +114 -0
  511. data/fixtures/import-app/bower_components/jquery/src/effects/animatedSelector.js +13 -0
  512. data/fixtures/import-app/bower_components/jquery/src/event.js +868 -0
  513. data/fixtures/import-app/bower_components/jquery/src/event/ajax.js +13 -0
  514. data/fixtures/import-app/bower_components/jquery/src/event/alias.js +39 -0
  515. data/fixtures/import-app/bower_components/jquery/src/event/support.js +9 -0
  516. data/fixtures/import-app/bower_components/jquery/src/exports/amd.js +24 -0
  517. data/fixtures/import-app/bower_components/jquery/src/exports/global.js +32 -0
  518. data/fixtures/import-app/bower_components/jquery/src/intro.js +44 -0
  519. data/fixtures/import-app/bower_components/jquery/src/jquery.js +37 -0
  520. data/fixtures/import-app/bower_components/jquery/src/manipulation.js +580 -0
  521. data/fixtures/import-app/bower_components/jquery/src/manipulation/_evalUrl.js +18 -0
  522. data/fixtures/import-app/bower_components/jquery/src/manipulation/support.js +32 -0
  523. data/fixtures/import-app/bower_components/jquery/src/manipulation/var/rcheckableType.js +3 -0
  524. data/fixtures/import-app/bower_components/jquery/src/offset.js +207 -0
  525. data/fixtures/import-app/bower_components/jquery/src/outro.js +1 -0
  526. data/fixtures/import-app/bower_components/jquery/src/queue.js +142 -0
  527. data/fixtures/import-app/bower_components/jquery/src/queue/delay.js +22 -0
  528. data/fixtures/import-app/bower_components/jquery/src/selector-native.js +172 -0
  529. data/fixtures/import-app/bower_components/jquery/src/selector-sizzle.js +14 -0
  530. data/fixtures/import-app/bower_components/jquery/src/selector.js +1 -0
  531. data/fixtures/import-app/bower_components/jquery/src/serialize.js +111 -0
  532. data/fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.js +2067 -0
  533. data/fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.min.js +3 -0
  534. data/fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.min.map +1 -0
  535. data/fixtures/import-app/bower_components/jquery/src/traversing.js +199 -0
  536. data/fixtures/import-app/bower_components/jquery/src/traversing/findFilter.js +100 -0
  537. data/fixtures/import-app/bower_components/jquery/src/traversing/var/rneedsContext.js +6 -0
  538. data/fixtures/import-app/bower_components/jquery/src/var/arr.js +3 -0
  539. data/fixtures/import-app/bower_components/jquery/src/var/class2type.js +4 -0
  540. data/fixtures/import-app/bower_components/jquery/src/var/concat.js +5 -0
  541. data/fixtures/import-app/bower_components/jquery/src/var/hasOwn.js +5 -0
  542. data/fixtures/import-app/bower_components/jquery/src/var/indexOf.js +5 -0
  543. data/fixtures/import-app/bower_components/jquery/src/var/pnum.js +3 -0
  544. data/fixtures/import-app/bower_components/jquery/src/var/push.js +5 -0
  545. data/fixtures/import-app/bower_components/jquery/src/var/rnotwhite.js +3 -0
  546. data/fixtures/import-app/bower_components/jquery/src/var/slice.js +5 -0
  547. data/fixtures/import-app/bower_components/jquery/src/var/strundefined.js +3 -0
  548. data/fixtures/import-app/bower_components/jquery/src/var/support.js +4 -0
  549. data/fixtures/import-app/bower_components/jquery/src/var/toString.js +5 -0
  550. data/fixtures/import-app/bower_components/jquery/src/wrap.js +79 -0
  551. data/fixtures/import-app/config.rb +7 -0
  552. data/fixtures/import-app/source/test.html +0 -0
  553. data/fixtures/import-app/static.html +1 -0
  554. data/fixtures/indexable-app/config.rb +5 -0
  555. data/fixtures/indexable-app/source/.htaccess +1 -0
  556. data/fixtures/indexable-app/source/.htpasswd +1 -0
  557. data/fixtures/indexable-app/source/.nojekyll +0 -0
  558. data/fixtures/indexable-app/source/a_folder/needs_index.html +1 -0
  559. data/fixtures/indexable-app/source/evil spaces.html +1 -0
  560. data/fixtures/indexable-app/source/leave_me_alone.html +1 -0
  561. data/fixtures/indexable-app/source/needs_index.html +1 -0
  562. data/fixtures/indexable-app/source/regex_leave_me_alone2.html +1 -0
  563. data/fixtures/indexable-app/source/regular/index.html +1 -0
  564. data/fixtures/indexable-app/source/wildcard_leave_me_alone.html +1 -0
  565. data/fixtures/javascript-app/config.rb +0 -0
  566. data/fixtures/javascript-app/source/index.html +17 -0
  567. data/fixtures/large-build-app/config.rb +3 -0
  568. data/fixtures/large-build-app/source/.htaccess +1 -0
  569. data/fixtures/large-build-app/source/.htpasswd +1 -0
  570. data/fixtures/large-build-app/source/_partial.erb +1 -0
  571. data/fixtures/large-build-app/source/feed.xml.builder +4 -0
  572. data/fixtures/large-build-app/source/images/Child folder/regular_file(example).txt +1 -0
  573. data/fixtures/large-build-app/source/images/Read me (example).txt +1 -0
  574. data/fixtures/large-build-app/source/images/blank.gif +0 -0
  575. data/fixtures/large-build-app/source/index.html.erb +1 -0
  576. data/fixtures/large-build-app/source/layout.erb +9 -0
  577. data/fixtures/large-build-app/source/layouts/content_for.erb +4 -0
  578. data/fixtures/large-build-app/source/layouts/custom.erb +8 -0
  579. data/fixtures/large-build-app/source/link_test.html.erb +5 -0
  580. data/fixtures/large-build-app/source/other_layout.erb +1 -0
  581. data/fixtures/large-build-app/source/services/index.html.erb +1 -0
  582. data/fixtures/large-build-app/source/spaces in file.html.erb +1 -0
  583. data/fixtures/large-build-app/source/static.html +1 -0
  584. data/fixtures/large-build-app/source/stylesheets/static.css +2 -0
  585. data/fixtures/layouts-dir-app/source/ambiguous.html.erb +5 -0
  586. data/fixtures/layouts-dir-app/source/index.html.erb +2 -0
  587. data/fixtures/layouts-dir-app/source/layouts/layout.erb +3 -0
  588. data/fixtures/layouts-dir-app/source/layouts/other.erb +3 -0
  589. data/fixtures/layouts-dir-app/source/layouts2/layout.erb +3 -0
  590. data/fixtures/layouts-dir-app/source/nested/layouts2/layout.erb +3 -0
  591. data/fixtures/layouts-dir-app/source/other.erb +3 -0
  592. data/fixtures/link-to-app/config.rb +0 -0
  593. data/fixtures/link-to-app/source/link_to_erb.html.erb +3 -0
  594. data/fixtures/link-to-app/source/link_to_haml.html.haml +2 -0
  595. data/fixtures/link-to-app/source/link_to_slim.html.slim +2 -0
  596. data/fixtures/liquid-app/config.rb +0 -0
  597. data/fixtures/liquid-app/data/test.yml +4 -0
  598. data/fixtures/liquid-app/data/test2.json +4 -0
  599. data/fixtures/liquid-app/source/_liquid_partial.liquid +1 -0
  600. data/fixtures/liquid-app/source/data2.html.liquid +2 -0
  601. data/fixtures/liquid-app/source/liquid_master.html.liquid +1 -0
  602. data/fixtures/lorem-app/config.rb +1 -0
  603. data/fixtures/lorem-app/source/lorem.html.erb +13 -0
  604. data/fixtures/manual-layout-missing/config.rb +1 -0
  605. data/fixtures/manual-layout-missing/source/index.html.erb +1 -0
  606. data/fixtures/manual-layout-override/config.rb +3 -0
  607. data/fixtures/manual-layout-override/source/index.html.erb +1 -0
  608. data/fixtures/manual-layout-override/source/layouts/another.erb +9 -0
  609. data/fixtures/manual-layout-override/source/layouts/custom.erb +9 -0
  610. data/fixtures/manual-layout/config.rb +1 -0
  611. data/fixtures/manual-layout/source/index.html.erb +1 -0
  612. data/fixtures/manual-layout/source/layouts/custom.erb +9 -0
  613. data/fixtures/markdown-app/config.rb +1 -0
  614. data/fixtures/markdown-app/source/autolink.html.markdown +5 -0
  615. data/fixtures/markdown-app/source/fenced_code_blocks.html.markdown +7 -0
  616. data/fixtures/markdown-app/source/filter_html.html.markdown +1 -0
  617. data/fixtures/markdown-app/source/footnote.html.markdown +3 -0
  618. data/fixtures/markdown-app/source/hard_wrap.html.markdown +2 -0
  619. data/fixtures/markdown-app/source/highlighted.html.markdown +1 -0
  620. data/fixtures/markdown-app/source/images/blank.gif +0 -0
  621. data/fixtures/markdown-app/source/img.html.markdown +1 -0
  622. data/fixtures/markdown-app/source/indented_code_blocks.html.markdown +5 -0
  623. data/fixtures/markdown-app/source/index.html.markdown +4 -0
  624. data/fixtures/markdown-app/source/lax_spacing.html.markdown +3 -0
  625. data/fixtures/markdown-app/source/link.html.markdown +1 -0
  626. data/fixtures/markdown-app/source/mailto.html.markdown +1 -0
  627. data/fixtures/markdown-app/source/no_intra_emphasis.html.markdown +5 -0
  628. data/fixtures/markdown-app/source/prettify.html.markdown +3 -0
  629. data/fixtures/markdown-app/source/quote.html.markdown +1 -0
  630. data/fixtures/markdown-app/source/safe_links.html.markdown +1 -0
  631. data/fixtures/markdown-app/source/smarty_pants.html.markdown +5 -0
  632. data/fixtures/markdown-app/source/space_after_headers.html.markdown +5 -0
  633. data/fixtures/markdown-app/source/strikethrough.html.markdown +5 -0
  634. data/fixtures/markdown-app/source/superscript.html.markdown +5 -0
  635. data/fixtures/markdown-app/source/tables.html.markdown +8 -0
  636. data/fixtures/markdown-app/source/underline.html.markdown +1 -0
  637. data/fixtures/markdown-app/source/with_toc_data.html.markdown +3 -0
  638. data/fixtures/markdown-frontmatter-options-app/config.rb +1 -0
  639. data/fixtures/markdown-frontmatter-options-app/source/smarty_pants-default.html.markdown +5 -0
  640. data/fixtures/markdown-frontmatter-options-app/source/smarty_pants-off.html.markdown +7 -0
  641. data/fixtures/markdown-frontmatter-options-app/source/smarty_pants-on.html.markdown +7 -0
  642. data/fixtures/markdown-frontmatter-options-app/source/tables-default.html.markdown +8 -0
  643. data/fixtures/markdown-frontmatter-options-app/source/tables-off.html.markdown +10 -0
  644. data/fixtures/markdown-frontmatter-options-app/source/tables-on.html.markdown +10 -0
  645. data/fixtures/markdown-in-haml-app/config.rb +0 -0
  646. data/fixtures/markdown-in-haml-app/source/images/blank.gif +0 -0
  647. data/fixtures/markdown-in-haml-app/source/link_target.html.markdown +4 -0
  648. data/fixtures/markdown-in-slim-app/config.rb +0 -0
  649. data/fixtures/markdown-in-slim-app/source/images/blank.gif +0 -0
  650. data/fixtures/markdown-in-slim-app/source/link_target.html.markdown +4 -0
  651. data/fixtures/minify-css-app/source/inline-css.html.haml +5 -0
  652. data/fixtures/minify-css-app/source/inline-css.php +8 -0
  653. data/fixtures/minify-css-app/source/more-css/site.css +3 -0
  654. data/fixtures/minify-css-app/source/stylesheets/base/_base.scss +15 -0
  655. data/fixtures/minify-css-app/source/stylesheets/base/_buttons.scss +35 -0
  656. data/fixtures/minify-css-app/source/stylesheets/base/_forms.scss +90 -0
  657. data/fixtures/minify-css-app/source/stylesheets/base/_grid-settings.scss +14 -0
  658. data/fixtures/minify-css-app/source/stylesheets/base/_lists.scss +31 -0
  659. data/fixtures/minify-css-app/source/stylesheets/base/_tables.scss +25 -0
  660. data/fixtures/minify-css-app/source/stylesheets/base/_typography.scss +49 -0
  661. data/fixtures/minify-css-app/source/stylesheets/base/_variables.scss +42 -0
  662. data/fixtures/minify-css-app/source/stylesheets/bourbon/_bourbon-deprecated-upcoming.scss +411 -0
  663. data/fixtures/minify-css-app/source/stylesheets/bourbon/_bourbon.scss +87 -0
  664. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-color.scss +26 -0
  665. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-radius.scss +48 -0
  666. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-style.scss +25 -0
  667. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-width.scss +25 -0
  668. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_buttons.scss +64 -0
  669. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_clearfix.scss +25 -0
  670. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_ellipsis.scss +30 -0
  671. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_font-stacks.scss +31 -0
  672. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_hide-text.scss +27 -0
  673. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_margin.scss +26 -0
  674. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_padding.scss +26 -0
  675. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_position.scss +48 -0
  676. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_prefixer.scss +66 -0
  677. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_retina-image.scss +25 -0
  678. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_size.scss +51 -0
  679. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_text-inputs.scss +113 -0
  680. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_timing-functions.scss +34 -0
  681. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_triangle.scss +63 -0
  682. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_word-wrap.scss +29 -0
  683. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_animation.scss +43 -0
  684. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_appearance.scss +3 -0
  685. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_backface-visibility.scss +3 -0
  686. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_background-image.scss +42 -0
  687. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_background.scss +55 -0
  688. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_border-image.scss +59 -0
  689. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_calc.scss +4 -0
  690. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_columns.scss +47 -0
  691. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_filter.scss +4 -0
  692. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_flex-box.scss +287 -0
  693. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_font-face.scss +24 -0
  694. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_font-feature-settings.scss +4 -0
  695. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_hidpi-media-query.scss +10 -0
  696. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_hyphens.scss +4 -0
  697. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_image-rendering.scss +14 -0
  698. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_keyframes.scss +36 -0
  699. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_linear-gradient.scss +38 -0
  700. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_perspective.scss +8 -0
  701. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_placeholder.scss +8 -0
  702. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_radial-gradient.scss +39 -0
  703. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_selection.scss +42 -0
  704. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_text-decoration.scss +19 -0
  705. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_transform.scss +15 -0
  706. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_transition.scss +71 -0
  707. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_user-select.scss +3 -0
  708. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_assign-inputs.scss +11 -0
  709. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_contains-falsy.scss +20 -0
  710. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_contains.scss +26 -0
  711. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-length.scss +11 -0
  712. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-light.scss +21 -0
  713. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-number.scss +11 -0
  714. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-size.scss +13 -0
  715. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_modular-scale.scss +69 -0
  716. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_px-to-em.scss +13 -0
  717. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_px-to-rem.scss +15 -0
  718. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_shade.scss +24 -0
  719. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_strip-units.scss +17 -0
  720. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_tint.scss +24 -0
  721. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_transition-property-name.scss +22 -0
  722. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_unpack.scss +27 -0
  723. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_convert-units.scss +21 -0
  724. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_directional-values.scss +96 -0
  725. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_font-source-declaration.scss +43 -0
  726. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_gradient-positions-parser.scss +13 -0
  727. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-angle-parser.scss +25 -0
  728. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-gradient-parser.scss +41 -0
  729. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-positions-parser.scss +61 -0
  730. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-side-corner-parser.scss +31 -0
  731. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-arg-parser.scss +69 -0
  732. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-gradient-parser.scss +50 -0
  733. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-positions-parser.scss +18 -0
  734. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_render-gradients.scss +26 -0
  735. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_shape-size-stripper.scss +10 -0
  736. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_str-to-num.scss +50 -0
  737. data/fixtures/minify-css-app/source/stylesheets/bourbon/settings/_asset-pipeline.scss +7 -0
  738. data/fixtures/minify-css-app/source/stylesheets/bourbon/settings/_prefixer.scss +9 -0
  739. data/fixtures/minify-css-app/source/stylesheets/bourbon/settings/_px-to-em.scss +1 -0
  740. data/fixtures/minify-css-app/source/stylesheets/report.css +1 -0
  741. data/fixtures/minify-css-app/source/stylesheets/site.css.sass +7 -0
  742. data/fixtures/minify-css-app/source/stylesheets/site.xcss.sass +6 -0
  743. data/fixtures/minify-js-app/config.rb +0 -0
  744. data/fixtures/minify-js-app/source/inline-coffeescript.html.haml +3 -0
  745. data/fixtures/minify-js-app/source/inline-js.html.haml +28 -0
  746. data/fixtures/minify-js-app/source/inline-js.php +22 -0
  747. data/fixtures/minify-js-app/source/javascripts/coffee_test.js.coffee +3 -0
  748. data/fixtures/minify-js-app/source/javascripts/js_test.js +8 -0
  749. data/fixtures/minify-js-app/source/javascripts/js_test.xjs +8 -0
  750. data/fixtures/minify-js-app/source/more-js/other.js +8 -0
  751. data/fixtures/missing-tilt-library-app/config.rb +2 -0
  752. data/fixtures/missing-tilt-library-app/source/danger-zone/more-wiki.html.wiki +1 -0
  753. data/fixtures/missing-tilt-library-app/source/safe-zone/my-wiki.html.wiki +1 -0
  754. data/fixtures/missing-tilt-library-app/source/textile-source.html.textile +1 -0
  755. data/fixtures/missing-tilt-library-app/source/wiki-source.html.wiki +1 -0
  756. data/fixtures/more-extensionless-text-files-app/config.rb +1 -0
  757. data/fixtures/more-extensionless-text-files-app/source/CNAME +1 -0
  758. data/fixtures/more-extensionless-text-files-app/source/LICENSE +1 -0
  759. data/fixtures/more-extensionless-text-files-app/source/README +1 -0
  760. data/fixtures/more-extensionless-text-files-app/source/index.html +1 -0
  761. data/fixtures/more-frontmatter-settings-app/config.rb +4 -0
  762. data/fixtures/more-frontmatter-settings-app/source/alternate_layout.html.erb +5 -0
  763. data/fixtures/more-frontmatter-settings-app/source/ignored.html.erb +5 -0
  764. data/fixtures/more-frontmatter-settings-app/source/layouts/alternate.erb +3 -0
  765. data/fixtures/more-frontmatter-settings-app/source/no_index.html.erb +5 -0
  766. data/fixtures/more-ignore-app/source/about.html.erb +1 -0
  767. data/fixtures/more-ignore-app/source/images/icon/messages.png +0 -0
  768. data/fixtures/more-ignore-app/source/images/pic.png +0 -0
  769. data/fixtures/more-ignore-app/source/images/portrait.jpg +0 -0
  770. data/fixtures/more-ignore-app/source/index.html.erb +0 -0
  771. data/fixtures/more-ignore-app/source/plain.html +1 -0
  772. data/fixtures/more-ignore-app/source/reports/another.html +0 -0
  773. data/fixtures/more-ignore-app/source/reports/index.html +0 -0
  774. data/fixtures/more-markdown-app/source/layouts/layout.erb +13 -0
  775. data/fixtures/more-markdown-app/source/with_layout.html.markdown +4 -0
  776. data/fixtures/more-markdown-app/source/with_layout_erb.html.markdown.erb +4 -0
  777. data/fixtures/more-preview-app/config.rb +0 -0
  778. data/fixtures/more-preview-app/source/content.html.erb +1 -0
  779. data/fixtures/more-preview-app/source/layout.erb +1 -0
  780. data/fixtures/more-preview-app/source/stylesheets/_partial.sass +2 -0
  781. data/fixtures/more-preview-app/source/stylesheets/_partial2.css.sass +2 -0
  782. data/fixtures/more-preview-app/source/stylesheets/main.css.sass +4 -0
  783. data/fixtures/more-preview-app/source/stylesheets/main2.css.sass +4 -0
  784. data/fixtures/more-preview-app/source/stylesheets/plain.css.sass +2 -0
  785. data/fixtures/more-traversal-app/config.rb +7 -0
  786. data/fixtures/more-traversal-app/source/directory-indexed.html.erb +0 -0
  787. data/fixtures/more-traversal-app/source/directory-indexed/sibling.html.erb +3 -0
  788. data/fixtures/more-traversal-app/source/directory-indexed/sibling2.html.erb +3 -0
  789. data/fixtures/more-traversal-app/source/directory-indexed/sub2/index.html.erb +0 -0
  790. data/fixtures/more-traversal-app/source/directory-indexed/sub3/deep.html.erb +0 -0
  791. data/fixtures/more-traversal-app/source/index.html.erb +0 -0
  792. data/fixtures/more-traversal-app/source/layout.erb +21 -0
  793. data/fixtures/more-traversal-app/source/proxied.html.erb +0 -0
  794. data/fixtures/more-traversal-app/source/root.html.erb +0 -0
  795. data/fixtures/more-traversal-app/source/sub/index.html.erb +0 -0
  796. data/fixtures/more-traversal-app/source/sub/sibling.html.erb +0 -0
  797. data/fixtures/more-traversal-app/source/sub/sibling2.html.erb +0 -0
  798. data/fixtures/more-traversal-app/source/sub/sub2/index.html.erb +0 -0
  799. data/fixtures/more-traversal-app/source/sub/sub3/deep.html.erb +0 -0
  800. data/fixtures/multiple-data-sources-app/config.rb +3 -0
  801. data/fixtures/multiple-data-sources-app/data/data.yml +1 -0
  802. data/fixtures/multiple-data-sources-app/data/two.yml +1 -0
  803. data/fixtures/multiple-data-sources-app/data0/one.yml +1 -0
  804. data/fixtures/multiple-data-sources-app/data1/data1.yml +1 -0
  805. data/fixtures/multiple-data-sources-app/data1/one.yml +1 -0
  806. data/fixtures/multiple-data-sources-app/data2/data2.yml +1 -0
  807. data/fixtures/multiple-data-sources-app/data2/two.yml +1 -0
  808. data/fixtures/multiple-data-sources-app/source/index.html.erb +5 -0
  809. data/fixtures/multiple-layouts/config.rb +0 -0
  810. data/fixtures/multiple-layouts/source/index.html.erb +1 -0
  811. data/fixtures/multiple-layouts/source/layout.erb +9 -0
  812. data/fixtures/multiple-layouts/source/layout.str +9 -0
  813. data/fixtures/multiple-sources-app/config.rb +3 -0
  814. data/fixtures/multiple-sources-app/source/index.html.erb +1 -0
  815. data/fixtures/multiple-sources-app/source/override-in-two.html.erb +1 -0
  816. data/fixtures/multiple-sources-app/source0/override-in-one.html.erb +1 -0
  817. data/fixtures/multiple-sources-app/source1/index1.html.erb +1 -0
  818. data/fixtures/multiple-sources-app/source1/override-in-one.html.erb +1 -0
  819. data/fixtures/multiple-sources-app/source2/index2.html.erb +1 -0
  820. data/fixtures/multiple-sources-app/source2/override-in-two.html.erb +1 -0
  821. data/fixtures/multiple-sources-with-destination-dir/config.rb +2 -0
  822. data/fixtures/multiple-sources-with-destination-dir/external/page.html.erb +1 -0
  823. data/fixtures/multiple-sources-with-destination-dir/source/index.html.erb +1 -0
  824. data/fixtures/multiple-sources-with-duplicate-file-names-app/config.rb +2 -0
  825. data/fixtures/multiple-sources-with-duplicate-file-names-app/source/index.html.erb +1 -0
  826. data/fixtures/multiple-sources-with-duplicate-file-names-app/source2/index.html.erb +1 -0
  827. data/fixtures/multiple-sources-without-destination-dir/config.rb +1 -0
  828. data/fixtures/multiple-sources-without-destination-dir/external/page.html.erb +1 -0
  829. data/fixtures/multiple-sources-without-destination-dir/source/index.html.erb +1 -0
  830. data/fixtures/nested-data-app/config.rb +1 -0
  831. data/fixtures/nested-data-app/data/examples/deeper/stuff.yml +1 -0
  832. data/fixtures/nested-data-app/data/examples/more.yml +1 -0
  833. data/fixtures/nested-data-app/data/examples/test.yml +1 -0
  834. data/fixtures/nested-data-app/data/examples/withcontent.yaml +11 -0
  835. data/fixtures/nested-data-app/source/extracontent.html.haml.erb +4 -0
  836. data/fixtures/nested-data-app/source/test.html.erb +3 -0
  837. data/fixtures/nested-layout-app/config.rb +1 -0
  838. data/fixtures/nested-layout-app/source/another.html.markdown +7 -0
  839. data/fixtures/nested-layout-app/source/data-one.html.erb +5 -0
  840. data/fixtures/nested-layout-app/source/data-two.html.erb +5 -0
  841. data/fixtures/nested-layout-app/source/haml-test.html.markdown +7 -0
  842. data/fixtures/nested-layout-app/source/index.html.erb +6 -0
  843. data/fixtures/nested-layout-app/source/layouts/inner.erb +7 -0
  844. data/fixtures/nested-layout-app/source/layouts/inner_haml.haml +7 -0
  845. data/fixtures/nested-layout-app/source/layouts/inner_slim.slim +7 -0
  846. data/fixtures/nested-layout-app/source/layouts/master.erb +9 -0
  847. data/fixtures/nested-layout-app/source/layouts/master_haml.haml +7 -0
  848. data/fixtures/nested-layout-app/source/layouts/master_slim.slim +7 -0
  849. data/fixtures/nested-layout-app/source/layouts/outer.erb +8 -0
  850. data/fixtures/nested-layout-app/source/layouts/outer_haml.haml +7 -0
  851. data/fixtures/nested-layout-app/source/layouts/outer_slim.slim +7 -0
  852. data/fixtures/nested-layout-app/source/slim-test.html.markdown +7 -0
  853. data/fixtures/no-layout/config.rb +0 -0
  854. data/fixtures/no-layout/source/index.html.erb +1 -0
  855. data/fixtures/padrino-helpers-app/config.rb +7 -0
  856. data/fixtures/padrino-helpers-app/source/former_padrino_test.html.erb +6 -0
  857. data/fixtures/page-classes-app/config.rb +2 -0
  858. data/fixtures/page-classes-app/source/1-folder/1-inside-with-numeric.html.erb +1 -0
  859. data/fixtures/page-classes-app/source/1-starts-with-numeric.html.erb +1 -0
  860. data/fixtures/page-classes-app/source/2-starts-with-numeric-custom.html.erb +1 -0
  861. data/fixtures/page-classes-app/source/page-classes.html.erb +1 -0
  862. data/fixtures/page-classes-app/source/sub1/page-classes.html.erb +1 -0
  863. data/fixtures/page-classes-app/source/sub1/sub2/page-classes.html.erb +1 -0
  864. data/fixtures/page-helper-layout-block-app/config.rb +6 -0
  865. data/fixtures/page-helper-layout-block-app/source/index.html.erb +1 -0
  866. data/fixtures/page-helper-layout-block-app/source/layouts/alt.erb +3 -0
  867. data/fixtures/page-helper-layout-block-app/source/layouts/layout.erb +3 -0
  868. data/fixtures/page-helper-layout-block-app/source/path/child.html.erb +1 -0
  869. data/fixtures/page-helper-layout-block-app/source/path/index.html.erb +1 -0
  870. data/fixtures/paginate-app/config.rb +0 -0
  871. data/fixtures/paginate-app/source/archive/2011/index.html.erb +20 -0
  872. data/fixtures/paginate-app/source/blog/2011-01-01-test-article.html.markdown +6 -0
  873. data/fixtures/paginate-app/source/blog/2011-01-02-test-article.html.markdown +6 -0
  874. data/fixtures/paginate-app/source/blog/2011-01-03-test-article.html.markdown +6 -0
  875. data/fixtures/paginate-app/source/blog/2011-01-04-test-article.html.markdown +6 -0
  876. data/fixtures/paginate-app/source/blog/2011-01-05-test-article.html.markdown +6 -0
  877. data/fixtures/paginate-app/source/blog/2011-02-01-test-article.html.markdown +6 -0
  878. data/fixtures/paginate-app/source/blog/2011-02-02-test-article.html.markdown +6 -0
  879. data/fixtures/paginate-app/source/index.html.erb +15 -0
  880. data/fixtures/paginate-app/source/tag.html.erb +23 -0
  881. data/fixtures/partial-chained_templates-app/config.rb +0 -0
  882. data/fixtures/partials-app/config.rb +0 -0
  883. data/fixtures/partials-app/source/_code_snippet.html +1 -0
  884. data/fixtures/partials-app/source/_locals.erb +1 -0
  885. data/fixtures/partials-app/source/_main.erb +1 -0
  886. data/fixtures/partials-app/source/_main.str +1 -0
  887. data/fixtures/partials-app/source/images/tiger.svg +725 -0
  888. data/fixtures/partials-app/source/index.html.erb +3 -0
  889. data/fixtures/partials-app/source/locals.html.erb +1 -0
  890. data/fixtures/partials-app/source/second.html.str +3 -0
  891. data/fixtures/partials-app/source/shared/_footer.erb +1 -0
  892. data/fixtures/partials-app/source/shared/_header.erb +1 -0
  893. data/fixtures/partials-app/source/shared/_snippet.html.erb +1 -0
  894. data/fixtures/partials-app/source/static_underscore.html.erb +1 -0
  895. data/fixtures/partials-app/source/sub/_local.erb +1 -0
  896. data/fixtures/partials-app/source/sub/index.html.erb +3 -0
  897. data/fixtures/partials-app/source/svg.html.erb +1 -0
  898. data/fixtures/partials-app/source/using_snippet.html.erb +1 -0
  899. data/fixtures/passthrough-app/source/.htaccess +1 -0
  900. data/fixtures/passthrough-app/source/inline-coffeescript.html.haml +3 -0
  901. data/fixtures/passthrough-app/source/inline-css.html.haml +4 -0
  902. data/fixtures/passthrough-app/source/inline-js.html.haml +28 -0
  903. data/fixtures/passthrough-app/source/javascripts/coffee_test.js.coffee +3 -0
  904. data/fixtures/passthrough-app/source/javascripts/js_test.js +8 -0
  905. data/fixtures/passthrough-app/source/stylesheets/site.css.sass +5 -0
  906. data/fixtures/preview-app/config.rb +0 -0
  907. data/fixtures/preview-app/source/content.html.erb +1 -0
  908. data/fixtures/preview-app/source/layout.erb +1 -0
  909. data/fixtures/proxy-pages-app/config.rb +18 -0
  910. data/fixtures/proxy-pages-app/source/real.html +1 -0
  911. data/fixtures/proxy-pages-app/source/real/index.html.erb +5 -0
  912. data/fixtures/proxy-pages-app/source/should_be_ignored3.html +1 -0
  913. data/fixtures/proxy-pages-app/source/should_be_ignored6.html +1 -0
  914. data/fixtures/proxy-pages-app/source/should_be_ignored7.html +1 -0
  915. data/fixtures/proxy-pages-app/source/should_be_ignored8.html +1 -0
  916. data/fixtures/queryable-app/config.rb +0 -0
  917. data/fixtures/queryable-app/source/2010-08-08-test-document-file.html.markdown +8 -0
  918. data/fixtures/queryable-app/source/2010-08-09-another-test-document.html.markdown +10 -0
  919. data/fixtures/queryable-app/source/2011-12-26-some-test-document.html.markdown +6 -0
  920. data/fixtures/queryable-app/source/document_with_date_in_yaml.html.markdown +7 -0
  921. data/fixtures/queryable-app/source/document_without_date.html.markdown +7 -0
  922. data/fixtures/related-files-app/config.rb +0 -0
  923. data/fixtures/related-files-app/source/index.html.erb +0 -0
  924. data/fixtures/related-files-app/source/partials/_test.erb +0 -0
  925. data/fixtures/related-files-app/source/partials/_test2.haml +0 -0
  926. data/fixtures/related-files-app/source/stylesheets/_include3.sass +0 -0
  927. data/fixtures/related-files-app/source/stylesheets/_include4.scss +0 -0
  928. data/fixtures/related-files-app/source/stylesheets/include1.css +0 -0
  929. data/fixtures/related-files-app/source/stylesheets/include2.css.scss +0 -0
  930. data/fixtures/related-files-app/source/stylesheets/site.css.scss +0 -0
  931. data/fixtures/relative-app/config.rb +0 -0
  932. data/fixtures/relative-app/source/images/blank.gif +0 -0
  933. data/fixtures/relative-app/source/stylesheets/relative_assets.css.sass +2 -0
  934. data/fixtures/relative-assets-app/config.rb +5 -0
  935. data/fixtures/relative-assets-app/source/absolute_image_relative_css.html.erb +9 -0
  936. data/fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.eot +0 -0
  937. data/fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.svg +0 -0
  938. data/fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.ttf +0 -0
  939. data/fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.woff +0 -0
  940. data/fixtures/relative-assets-app/source/images/blank.gif +0 -0
  941. data/fixtures/relative-assets-app/source/img/blank.gif +0 -0
  942. data/fixtures/relative-assets-app/source/javascripts/app.js +3 -0
  943. data/fixtures/relative-assets-app/source/javascripts/application.js +8 -0
  944. data/fixtures/relative-assets-app/source/relative_image.html.erb +9 -0
  945. data/fixtures/relative-assets-app/source/relative_image_absolute_css.html.erb +9 -0
  946. data/fixtures/relative-assets-app/source/stylesheets/fonts.css +10 -0
  947. data/fixtures/relative-assets-app/source/stylesheets/fonts2.css.scss +10 -0
  948. data/fixtures/relative-assets-app/source/stylesheets/relative_assets.css.sass +2 -0
  949. data/fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset-sass.sass +1 -0
  950. data/fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset.scss +1 -0
  951. data/fixtures/sass-assets-path-app/config.rb +4 -0
  952. data/fixtures/sass-assets-path-app/my-vendor/stylesheets/_partial.sass +2 -0
  953. data/fixtures/sass-assets-path-app/source/stylesheets/plain.css.sass +16 -0
  954. data/fixtures/scss-app/config.rb +0 -0
  955. data/fixtures/scss-app/source/stylesheets/layout.css.sass +2 -0
  956. data/fixtures/scss-app/source/stylesheets/site_scss.css.scss +3 -0
  957. data/fixtures/sinatra-app/config.rb +14 -0
  958. data/fixtures/sinatra-app/source/index.html.erb +5 -0
  959. data/fixtures/slim-content-for-app/config.rb +0 -0
  960. data/fixtures/slim-content-for-app/source/index.html.slim +7 -0
  961. data/fixtures/slim-content-for-app/source/layouts/layout.slim +15 -0
  962. data/fixtures/strip-url-app/config.rb +0 -0
  963. data/fixtures/strip-url-app/source/index.html.erb +1 -0
  964. data/fixtures/strip-url-app/source/other.html.erb +1 -0
  965. data/fixtures/strip-url-app/source/subdir/index.html.erb +1 -0
  966. data/fixtures/stylus-preview-app/config.rb +0 -0
  967. data/fixtures/stylus-preview-app/source/content.html.erb +5 -0
  968. data/fixtures/stylus-preview-app/source/stylesheets/_partial.styl +2 -0
  969. data/fixtures/stylus-preview-app/source/stylesheets/_partial2.css.styl +2 -0
  970. data/fixtures/stylus-preview-app/source/stylesheets/main.css.styl +4 -0
  971. data/fixtures/stylus-preview-app/source/stylesheets/main2.css.styl +4 -0
  972. data/fixtures/stylus-preview-app/source/stylesheets/plain.css.styl +2 -0
  973. data/fixtures/traversal-app/config.rb +5 -0
  974. data/fixtures/traversal-app/source/.htaccess +0 -0
  975. data/fixtures/traversal-app/source/directory-indexed.html.erb +0 -0
  976. data/fixtures/traversal-app/source/directory-indexed/sibling.html.erb +3 -0
  977. data/fixtures/traversal-app/source/directory-indexed/sibling2.html.erb +3 -0
  978. data/fixtures/traversal-app/source/directory-indexed/sub2/index.html.erb +0 -0
  979. data/fixtures/traversal-app/source/directory-indexed/sub3/deep.html.erb +0 -0
  980. data/fixtures/traversal-app/source/index.html.erb +0 -0
  981. data/fixtures/traversal-app/source/layout.erb +21 -0
  982. data/fixtures/traversal-app/source/proxied.html.erb +0 -0
  983. data/fixtures/traversal-app/source/root.html.erb +0 -0
  984. data/fixtures/traversal-app/source/sub/index.html.erb +0 -0
  985. data/fixtures/traversal-app/source/sub/sibling.html.erb +0 -0
  986. data/fixtures/traversal-app/source/sub/sibling2.html.erb +0 -0
  987. data/fixtures/traversal-app/source/sub/sub2/index.html.erb +0 -0
  988. data/fixtures/traversal-app/source/sub/sub3/deep.html.erb +0 -0
  989. data/fixtures/v4-extension-callbacks/config.rb +42 -0
  990. data/fixtures/v4-extension-callbacks/source/index.html.erb +2 -0
  991. data/fixtures/wildcard-app/config.rb +1 -0
  992. data/fixtures/wildcard-app/source/admin/index.html.erb +1 -0
  993. data/fixtures/wildcard-app/source/admin/page.html.erb +1 -0
  994. data/fixtures/wildcard-app/source/index.html.erb +1 -0
  995. data/fixtures/wildcard-app/source/layouts/admin.erb +2 -0
  996. data/fixtures/wildcard-app/source/layouts/layout.erb +2 -0
  997. data/fixtures/wildcard-directory-index-app/config.rb +2 -0
  998. data/fixtures/wildcard-directory-index-app/source/admin/index.html.erb +1 -0
  999. data/fixtures/wildcard-directory-index-app/source/admin/page.html.erb +1 -0
  1000. data/fixtures/wildcard-directory-index-app/source/index.html.erb +1 -0
  1001. data/fixtures/wildcard-directory-index-app/source/layouts/admin.erb +2 -0
  1002. data/fixtures/wildcard-directory-index-app/source/layouts/layout.erb +2 -0
  1003. data/lib/middleman-core.rb +14 -0
  1004. data/lib/middleman-core/application.rb +433 -0
  1005. data/lib/middleman-core/builder.rb +297 -0
  1006. data/lib/middleman-core/callback_manager.rb +68 -0
  1007. data/lib/middleman-core/config_context.rb +63 -0
  1008. data/lib/middleman-core/configuration.rb +157 -0
  1009. data/lib/middleman-core/contracts.rb +112 -0
  1010. data/lib/middleman-core/core_extensions.rb +146 -0
  1011. data/lib/middleman-core/core_extensions/collections.rb +110 -0
  1012. data/lib/middleman-core/core_extensions/collections/lazy_root.rb +30 -0
  1013. data/lib/middleman-core/core_extensions/collections/lazy_step.rb +48 -0
  1014. data/lib/middleman-core/core_extensions/collections/pagination.rb +59 -0
  1015. data/lib/middleman-core/core_extensions/collections/step_context.rb +27 -0
  1016. data/lib/middleman-core/core_extensions/data.rb +223 -0
  1017. data/lib/middleman-core/core_extensions/default_helpers.rb +289 -0
  1018. data/lib/middleman-core/core_extensions/external_helpers.rb +30 -0
  1019. data/lib/middleman-core/core_extensions/file_watcher.rb +78 -0
  1020. data/lib/middleman-core/core_extensions/front_matter.rb +91 -0
  1021. data/lib/middleman-core/core_extensions/i18n.rb +295 -0
  1022. data/lib/middleman-core/core_extensions/inline_url_rewriter.rb +150 -0
  1023. data/lib/middleman-core/core_extensions/rendering.rb +55 -0
  1024. data/lib/middleman-core/core_extensions/routing.rb +66 -0
  1025. data/lib/middleman-core/core_extensions/show_exceptions.rb +12 -0
  1026. data/lib/middleman-core/dns_resolver.rb +73 -0
  1027. data/lib/middleman-core/dns_resolver/basic_network_resolver.rb +52 -0
  1028. data/lib/middleman-core/dns_resolver/hosts_resolver.rb +63 -0
  1029. data/lib/middleman-core/dns_resolver/local_link_resolver.rb +44 -0
  1030. data/lib/middleman-core/dns_resolver/network_resolver.rb +42 -0
  1031. data/lib/middleman-core/extension.rb +523 -0
  1032. data/lib/middleman-core/extension_manager.rb +95 -0
  1033. data/lib/middleman-core/extensions.rb +137 -0
  1034. data/lib/middleman-core/extensions/asset_hash.rb +101 -0
  1035. data/lib/middleman-core/extensions/asset_host.rb +40 -0
  1036. data/lib/middleman-core/extensions/automatic_alt_tags.rb +28 -0
  1037. data/lib/middleman-core/extensions/automatic_image_sizes.rb +48 -0
  1038. data/lib/middleman-core/extensions/cache_buster.rb +23 -0
  1039. data/lib/middleman-core/extensions/directory_indexes.rb +26 -0
  1040. data/lib/middleman-core/extensions/external_pipeline.rb +42 -0
  1041. data/lib/middleman-core/extensions/gzip.rb +114 -0
  1042. data/lib/middleman-core/extensions/lorem.rb +176 -0
  1043. data/lib/middleman-core/extensions/minify_css.rb +118 -0
  1044. data/lib/middleman-core/extensions/minify_javascript.rb +123 -0
  1045. data/lib/middleman-core/extensions/relative_assets.rb +53 -0
  1046. data/lib/middleman-core/file_renderer.rb +136 -0
  1047. data/lib/middleman-core/load_paths.rb +47 -0
  1048. data/lib/middleman-core/logger.rb +47 -0
  1049. data/lib/middleman-core/meta_pages.rb +112 -0
  1050. data/lib/middleman-core/meta_pages/assets/config.css +49 -0
  1051. data/lib/middleman-core/meta_pages/assets/glyphicons-halflings.png +0 -0
  1052. data/lib/middleman-core/meta_pages/assets/jquery-1.8.2.min.js +2 -0
  1053. data/lib/middleman-core/meta_pages/assets/jquery.details-1.6.min.js +6 -0
  1054. data/lib/middleman-core/meta_pages/assets/meta.css +384 -0
  1055. data/lib/middleman-core/meta_pages/assets/sitemap.css +652 -0
  1056. data/lib/middleman-core/meta_pages/assets/sitemap.js +0 -0
  1057. data/lib/middleman-core/meta_pages/config_setting.rb +37 -0
  1058. data/lib/middleman-core/meta_pages/sitemap_resource.rb +65 -0
  1059. data/lib/middleman-core/meta_pages/sitemap_tree.rb +77 -0
  1060. data/lib/middleman-core/meta_pages/templates/config.html.erb +57 -0
  1061. data/lib/middleman-core/meta_pages/templates/index.html.erb +31 -0
  1062. data/lib/middleman-core/meta_pages/templates/sitemap.html.erb +30 -0
  1063. data/lib/middleman-core/preview_server.rb +328 -0
  1064. data/lib/middleman-core/preview_server/checks.rb +81 -0
  1065. data/lib/middleman-core/preview_server/information.rb +273 -0
  1066. data/lib/middleman-core/preview_server/network_interface_inventory.rb +65 -0
  1067. data/lib/middleman-core/preview_server/server_hostname.rb +39 -0
  1068. data/lib/middleman-core/preview_server/server_information.rb +153 -0
  1069. data/lib/middleman-core/preview_server/server_information_callback_proxy.rb +35 -0
  1070. data/lib/middleman-core/preview_server/server_information_validator.rb +18 -0
  1071. data/lib/middleman-core/preview_server/server_ip_address.rb +55 -0
  1072. data/lib/middleman-core/preview_server/server_url.rb +63 -0
  1073. data/lib/middleman-core/preview_server/tcp_port_prober.rb +29 -0
  1074. data/lib/middleman-core/profiling.rb +55 -0
  1075. data/lib/middleman-core/rack.rb +147 -0
  1076. data/lib/middleman-core/renderers/coffee_script.rb +42 -0
  1077. data/lib/middleman-core/renderers/erb.rb +21 -0
  1078. data/lib/middleman-core/renderers/haml.rb +76 -0
  1079. data/lib/middleman-core/renderers/kramdown.rb +52 -0
  1080. data/lib/middleman-core/renderers/less.rb +36 -0
  1081. data/lib/middleman-core/renderers/liquid.rb +54 -0
  1082. data/lib/middleman-core/renderers/markdown.rb +43 -0
  1083. data/lib/middleman-core/renderers/redcarpet.rb +100 -0
  1084. data/lib/middleman-core/renderers/sass.rb +114 -0
  1085. data/lib/middleman-core/renderers/sass_functions.rb +114 -0
  1086. data/lib/middleman-core/renderers/slim.rb +52 -0
  1087. data/lib/middleman-core/renderers/stylus.rb +10 -0
  1088. data/lib/middleman-core/sitemap/extensions/ignores.rb +60 -0
  1089. data/lib/middleman-core/sitemap/extensions/import.rb +65 -0
  1090. data/lib/middleman-core/sitemap/extensions/move_file.rb +39 -0
  1091. data/lib/middleman-core/sitemap/extensions/on_disk.rb +74 -0
  1092. data/lib/middleman-core/sitemap/extensions/proxies.rb +119 -0
  1093. data/lib/middleman-core/sitemap/extensions/redirects.rb +84 -0
  1094. data/lib/middleman-core/sitemap/extensions/request_endpoints.rb +68 -0
  1095. data/lib/middleman-core/sitemap/extensions/traversal.rb +107 -0
  1096. data/lib/middleman-core/sitemap/resource.rb +216 -0
  1097. data/lib/middleman-core/sitemap/store.rb +260 -0
  1098. data/lib/middleman-core/sources.rb +373 -0
  1099. data/lib/middleman-core/sources/source_watcher.rb +342 -0
  1100. data/lib/middleman-core/step_definitions.rb +21 -0
  1101. data/lib/middleman-core/step_definitions/builder_steps.rb +31 -0
  1102. data/lib/middleman-core/step_definitions/commandline_steps.rb +88 -0
  1103. data/lib/middleman-core/step_definitions/middleman_steps.rb +60 -0
  1104. data/lib/middleman-core/step_definitions/server_steps.rb +124 -0
  1105. data/lib/middleman-core/template_context.rb +204 -0
  1106. data/lib/middleman-core/template_renderer.rb +241 -0
  1107. data/lib/middleman-core/util.rb +24 -0
  1108. data/lib/middleman-core/util/binary.rb +79 -0
  1109. data/lib/middleman-core/util/data.rb +135 -0
  1110. data/lib/middleman-core/util/files.rb +134 -0
  1111. data/lib/middleman-core/util/paths.rb +251 -0
  1112. data/lib/middleman-core/util/rack.rb +52 -0
  1113. data/lib/middleman-core/util/uri_templates.rb +97 -0
  1114. data/lib/middleman-core/version.rb +5 -0
  1115. data/lib/middleman/rack.rb +5 -0
  1116. data/middleman-core.gemspec +60 -0
  1117. data/spec/middleman-core/binary_spec/middleman +0 -0
  1118. data/spec/middleman-core/binary_spec/middleman.png +0 -0
  1119. data/spec/middleman-core/binary_spec/plain.txt +1 -0
  1120. data/spec/middleman-core/binary_spec/stars.svgz +0 -0
  1121. data/spec/middleman-core/binary_spec/unicode +1 -0
  1122. data/spec/middleman-core/binary_spec/unicode.txt +1 -0
  1123. data/spec/middleman-core/callbacks_spec.rb +132 -0
  1124. data/spec/middleman-core/core_extensions/data_spec.rb +41 -0
  1125. data/spec/middleman-core/dns_resolver_spec.rb +118 -0
  1126. data/spec/middleman-core/preview_server/server_hostname_spec.rb +39 -0
  1127. data/spec/middleman-core/preview_server/server_ip_address_spec.rb +43 -0
  1128. data/spec/middleman-core/util_spec.rb +193 -0
  1129. data/spec/spec_helper.rb +36 -0
  1130. data/spec/support/given.rb +42 -0
  1131. metadata +2463 -0
@@ -0,0 +1,260 @@
1
+ # Used for merging results of metadata callbacks
2
+ require 'active_support/core_ext/hash/deep_merge'
3
+ require 'monitor'
4
+ require 'hamster'
5
+
6
+ require 'middleman-core/extensions'
7
+
8
+ # Files on Disk
9
+ ::Middleman::Extensions.register :sitemap_ondisk, auto_activate: :before_configuration do
10
+ require 'middleman-core/sitemap/extensions/on_disk'
11
+ ::Middleman::Sitemap::Extensions::OnDisk
12
+ end
13
+
14
+ # Files on Disk (outside the project root)
15
+ ::Middleman::Extensions.register :sitemap_import, auto_activate: :before_configuration do
16
+ require 'middleman-core/sitemap/extensions/import'
17
+ ::Middleman::Sitemap::Extensions::Import
18
+ end
19
+
20
+ # Endpoints
21
+ ::Middleman::Extensions.register :sitemap_endpoint, auto_activate: :before_configuration do
22
+ require 'middleman-core/sitemap/extensions/request_endpoints'
23
+ ::Middleman::Sitemap::Extensions::RequestEndpoints
24
+ end
25
+
26
+ # Proxies
27
+ ::Middleman::Extensions.register :sitemap_proxies, auto_activate: :before_configuration do
28
+ require 'middleman-core/sitemap/extensions/proxies'
29
+ ::Middleman::Sitemap::Extensions::Proxies
30
+ end
31
+
32
+ # Redirects
33
+ ::Middleman::Extensions.register :sitemap_redirects, auto_activate: :before_configuration do
34
+ require 'middleman-core/sitemap/extensions/redirects'
35
+ ::Middleman::Sitemap::Extensions::Redirects
36
+ end
37
+
38
+ # Move Files
39
+ ::Middleman::Extensions.register :sitemap_move_files, auto_activate: :before_configuration do
40
+ require 'middleman-core/sitemap/extensions/move_file'
41
+ ::Middleman::Sitemap::Extensions::MoveFile
42
+ end
43
+
44
+ # Ignores
45
+ ::Middleman::Extensions.register :sitemap_ignore, auto_activate: :before_configuration do
46
+ require 'middleman-core/sitemap/extensions/ignores'
47
+ ::Middleman::Sitemap::Extensions::Ignores
48
+ end
49
+
50
+ require 'middleman-core/contracts'
51
+
52
+ module Middleman
53
+ # Sitemap namespace
54
+ module Sitemap
55
+ ManipulatorDescriptor = Struct.new :name, :manipulator, :priority, :custom_name
56
+
57
+ # The Store class
58
+ #
59
+ # The Store manages a collection of Resource objects, which represent
60
+ # individual items in the sitemap. Resources are indexed by "source path",
61
+ # which is the path relative to the source directory, minus any template
62
+ # extensions. All "path" parameters used in this class are source paths.
63
+ class Store
64
+ include Contracts
65
+
66
+ Contract IsA['Middleman::Application']
67
+ attr_reader :app
68
+
69
+ Contract Num
70
+ attr_reader :update_count
71
+
72
+ # Initialize with parent app
73
+ # @param [Middleman::Application] app
74
+ Contract IsA['Middleman::Application'] => Any
75
+ def initialize(app)
76
+ @app = app
77
+ @resources = []
78
+ @rebuild_reasons = [:first_run]
79
+ @update_count = 0
80
+
81
+ @resource_list_manipulators = ::Hamster::Vector.empty
82
+ @needs_sitemap_rebuild = true
83
+
84
+ @lock = Monitor.new
85
+ reset_lookup_cache!
86
+
87
+ @app.config_context.class.send :def_delegator, :app, :sitemap
88
+ end
89
+
90
+ # Register an object which can transform the sitemap resource list. Best to register
91
+ # these in a `before_configuration` or `after_configuration` hook.
92
+ #
93
+ # @param [Symbol] name Name of the manipulator for debugging
94
+ # @param [#manipulate_resource_list] manipulator Resource list manipulator
95
+ # @param [Numeric] priority Sets the order of this resource list manipulator relative to the rest. By default this is 50, and manipulators run in the order they are registered, but if a priority is provided then this will run ahead of or behind other manipulators.
96
+ # @param [Symbol] custom_name The method name to execute.
97
+ # @return [void]
98
+ Contract Symbol, RespondTo[:manipulate_resource_list], Maybe[Num], Maybe[Symbol] => Any
99
+ def register_resource_list_manipulator(name, manipulator, priority=50, custom_name=nil)
100
+ # The third argument used to be a boolean - handle those who still pass one
101
+ priority = 50 unless priority.is_a? Numeric
102
+ @resource_list_manipulators = @resource_list_manipulators.push(
103
+ ManipulatorDescriptor.new(name, manipulator, priority, custom_name)
104
+ )
105
+
106
+ # The index trick is used so that the sort is stable - manipulators with the same priority
107
+ # will always be ordered in the same order as they were registered.
108
+ n = 0
109
+ @resource_list_manipulators = @resource_list_manipulators.sort_by do |m|
110
+ n += 1
111
+ [m[:priority], n]
112
+ end
113
+
114
+ rebuild_resource_list!(:"registered_new_manipulator_#{name}")
115
+ end
116
+
117
+ # Rebuild the list of resources from scratch, using registed manipulators
118
+ # @return [void]
119
+ Contract Symbol => Any
120
+ def rebuild_resource_list!(name)
121
+ @lock.synchronize do
122
+ @rebuild_reasons << name
123
+ @app.logger.debug "== Requesting resource list rebuilding: #{name}"
124
+ @needs_sitemap_rebuild = true
125
+ end
126
+ end
127
+
128
+ # Find a resource given its original path
129
+ # @param [String] request_path The original path of a resource.
130
+ # @return [Middleman::Sitemap::Resource]
131
+ Contract String => Maybe[IsA['Middleman::Sitemap::Resource']]
132
+ def find_resource_by_path(request_path)
133
+ @lock.synchronize do
134
+ request_path = ::Middleman::Util.normalize_path(request_path)
135
+ ensure_resource_list_updated!
136
+ @_lookup_by_path[request_path]
137
+ end
138
+ end
139
+
140
+ # Find a resource given its destination path
141
+ # @param [String] request_path The destination (output) path of a resource.
142
+ # @return [Middleman::Sitemap::Resource]
143
+ Contract String => Maybe[IsA['Middleman::Sitemap::Resource']]
144
+ def find_resource_by_destination_path(request_path)
145
+ @lock.synchronize do
146
+ request_path = ::Middleman::Util.normalize_path(request_path)
147
+ ensure_resource_list_updated!
148
+ @_lookup_by_destination_path[request_path]
149
+ end
150
+ end
151
+
152
+ # Get the array of all resources
153
+ # @param [Boolean] include_ignored Whether to include ignored resources
154
+ # @return [Array<Middleman::Sitemap::Resource>]
155
+ Contract Bool => ResourceList
156
+ def resources(include_ignored=false)
157
+ @lock.synchronize do
158
+ ensure_resource_list_updated!
159
+ if include_ignored
160
+ @resources
161
+ else
162
+ @resources_not_ignored ||= @resources.reject(&:ignored?)
163
+ end
164
+ end
165
+ end
166
+
167
+ # Invalidate our cached view of resource that are not ignored. If your extension
168
+ # adds ways to ignore files, you should call this to make sure #resources works right.
169
+ def invalidate_resources_not_ignored_cache!
170
+ @resources_not_ignored = nil
171
+ end
172
+
173
+ # Get the URL path for an on-disk file
174
+ # @param [String] file
175
+ # @return [String]
176
+ Contract Or[Pathname, IsA['Middleman::SourceFile']] => String
177
+ def file_to_path(file)
178
+ relative_path = file.is_a?(Pathname) ? file.to_s : file[:relative_path].to_s
179
+
180
+ # Replace a file name containing automatic_directory_matcher with a folder
181
+ unless @app.config[:automatic_directory_matcher].nil?
182
+ relative_path = relative_path.gsub(@app.config[:automatic_directory_matcher], '/')
183
+ end
184
+
185
+ extensionless_path(relative_path)
186
+ end
187
+
188
+ # Get a path without templating extensions
189
+ # @param [String] file
190
+ # @return [String]
191
+ Contract String => String
192
+ def extensionless_path(file)
193
+ path = file.dup
194
+ ::Middleman::Util.remove_templating_extensions(path)
195
+ end
196
+
197
+ # Actually update the resource list, assuming anything has called
198
+ # rebuild_resource_list! since the last time it was run. This is
199
+ # very expensive!
200
+ def ensure_resource_list_updated!
201
+ @lock.synchronize do
202
+ return unless @needs_sitemap_rebuild
203
+
204
+ ::Middleman::Util.instrument 'sitemap.update', reasons: @rebuild_reasons.uniq do
205
+ @needs_sitemap_rebuild = false
206
+
207
+ @app.logger.debug '== Rebuilding resource list'
208
+
209
+ @resources = []
210
+
211
+ @resource_list_manipulators.each do |m|
212
+ ::Middleman::Util.instrument 'sitemap.manipulator', name: m[:name] do
213
+ @app.logger.debug "== Running manipulator: #{m[:name]}"
214
+ @resources = m[:manipulator].send(m[:custom_name] || :manipulate_resource_list, @resources)
215
+
216
+ # Reset lookup cache
217
+ reset_lookup_cache!
218
+
219
+ # Rebuild cache
220
+ @resources.each do |resource|
221
+ @_lookup_by_path[resource.path] = resource
222
+ @_lookup_by_destination_path[resource.destination_path] = resource
223
+ end
224
+
225
+ invalidate_resources_not_ignored_cache!
226
+ end
227
+ end
228
+
229
+ @update_count += 1
230
+
231
+ @rebuild_reasons = []
232
+ end
233
+ end
234
+ end
235
+
236
+ private
237
+
238
+ def reset_lookup_cache!
239
+ @lock.synchronize do
240
+ @_lookup_by_path = {}
241
+ @_lookup_by_destination_path = {}
242
+ end
243
+ end
244
+
245
+ # Remove the locale token from the end of the path
246
+ # @param [String] path
247
+ # @return [String]
248
+ Contract String => String
249
+ def strip_away_locale(path)
250
+ if @app.extensions[:i18n]
251
+ path_bits = path.split('.')
252
+ lang = path_bits.last
253
+ return path_bits[0..-2].join('.') if @app.extensions[:i18n].langs.include?(lang.to_sym)
254
+ end
255
+
256
+ path
257
+ end
258
+ end
259
+ end
260
+ end
@@ -0,0 +1,373 @@
1
+ require 'hamster'
2
+ require 'middleman-core/contracts'
3
+
4
+ module Middleman
5
+ # The standard "record" that contains information about a file on disk.
6
+ SourceFile = Struct.new(:relative_path, :full_path, :directory, :types, :version) do
7
+ def read
8
+ ::Middleman::Sources.file_cache[full_path] ||= {}
9
+ ::Middleman::Sources.file_cache[full_path][version] ||= ::File.read(full_path)
10
+ end
11
+ end
12
+
13
+ # Sources handle multiple on-disk collections of files which make up
14
+ # a Middleman project. They are separated by `type` which can then be
15
+ # queried. For example, the `source` type represents all content that
16
+ # the sitemap uses to build a project. The `data` type represents YAML
17
+ # data. The `locales` type represents localization YAML, and so on.
18
+ class Sources
19
+ extend Forwardable
20
+ include Contracts
21
+
22
+ # Types which could cause output to change.
23
+ OUTPUT_TYPES = [:source, :locales, :data].freeze
24
+
25
+ # Types which require a reload to eval ruby
26
+ CODE_TYPES = [:reload].freeze
27
+
28
+ Matcher = Or[Regexp, RespondTo[:call]]
29
+
30
+ # A reference to the current app.
31
+ Contract IsA['Middleman::Application']
32
+ attr_reader :app
33
+
34
+ # Duck-typed definition of a valid source watcher
35
+ HANDLER = RespondTo[:on_change]
36
+
37
+ # Config
38
+ Contract Hash
39
+ attr_reader :options
40
+
41
+ # Reference to the global logger.
42
+ def_delegator :@app, :logger
43
+
44
+ cattr_accessor :file_cache
45
+
46
+ # Built-in types
47
+ # :source, :data, :locales, :reload
48
+
49
+ # Create a new collection of sources.
50
+ #
51
+ # @param [Middleman::Application] app The parent app.
52
+ # @param [Hash] options Global options.
53
+ # @param [Array] watchers Default watchers.
54
+ Contract IsA['Middleman::Application'], Maybe[Hash], Maybe[Array] => Any
55
+ def initialize(app, options={}, watchers=[])
56
+ @app = app
57
+ @watchers = watchers
58
+ @sorted_watchers = @watchers.dup.freeze
59
+
60
+ ::Middleman::Sources.file_cache = {}
61
+
62
+ @options = options
63
+
64
+ # Set of procs wanting to be notified of changes
65
+ @on_change_callbacks = ::Hamster::Vector.empty
66
+
67
+ # Global ignores
68
+ @ignores = ::Hamster::Hash.empty
69
+
70
+ # Whether we're "running", which means we're in a stable
71
+ # watch state after all initialization and config.
72
+ @running = false
73
+
74
+ @update_count = 0
75
+ @last_update_count = -1
76
+
77
+ # When the app is about to shut down, stop our watchers.
78
+ @app.before_shutdown(&method(:stop!))
79
+ end
80
+
81
+ # Add a proc to ignore paths with either a regex or block.
82
+ #
83
+ # @param [Symbol] name A name for the ignore.
84
+ # @param [Symbol] type The type of content to apply the ignore to.
85
+ # @param [Regexp] regex Ignore by path regex.
86
+ # @param [Proc] block Ignore by block evaluation.
87
+ # @return [void]
88
+ Contract Symbol, Symbol, Or[Regexp, Proc] => Any
89
+ def ignore(name, type, regex=nil, &block)
90
+ @ignores = @ignores.put(name, type: type,
91
+ validator: (block_given? ? block : regex))
92
+
93
+ bump_count
94
+ poll_once! if @running
95
+ end
96
+
97
+ # Whether this path is ignored.
98
+ #
99
+ # @param [Middleman::SourceFile] file The file to check.
100
+ # @return [Boolean]
101
+ Contract SourceFile => Bool
102
+ def globally_ignored?(file)
103
+ @ignores.values.any? do |descriptor|
104
+ ((descriptor[:type] == :all) || file[:types].include?(descriptor[:type])) &&
105
+ matches?(descriptor[:validator], file)
106
+ end
107
+ end
108
+
109
+ # Connect a new watcher. Can either be a type with options, which will
110
+ # create a `SourceWatcher` or you can pass in an instantiated class which
111
+ # responds to #changed and #deleted
112
+ #
113
+ # @param [Symbol, #changed, #deleted] type_or_handler The handler.
114
+ # @param [Hash] options The watcher options.
115
+ # @return [#changed, #deleted]
116
+ Contract Or[Symbol, HANDLER], Maybe[Hash] => HANDLER
117
+ def watch(type_or_handler, options={})
118
+ handler = if type_or_handler.is_a? Symbol
119
+ SourceWatcher.new(self, type_or_handler, options.delete(:path), options)
120
+ else
121
+ type_or_handler
122
+ end
123
+
124
+ @watchers << handler
125
+
126
+ # The index trick is used so that the sort is stable - watchers with the same priority
127
+ # will always be ordered in the same order as they were registered.
128
+ n = 0
129
+ @sorted_watchers = @watchers.sort_by do |w|
130
+ priority = w.options.fetch(:priority, 50)
131
+ n += 1
132
+ [priority, n]
133
+ end.reverse.freeze
134
+
135
+ handler.on_change(&method(:did_change))
136
+
137
+ if @running
138
+ handler.poll_once!
139
+ handler.listen!
140
+ end
141
+
142
+ handler
143
+ end
144
+
145
+ # A list of registered watchers
146
+ Contract ArrayOf[HANDLER]
147
+ def watchers
148
+ @sorted_watchers
149
+ end
150
+
151
+ # Disconnect a specific watcher.
152
+ #
153
+ # @param [SourceWatcher] watcher The watcher to remove.
154
+ # @return [void]
155
+ Contract RespondTo[:on_change] => Any
156
+ def unwatch(watcher)
157
+ @watchers.delete(watcher)
158
+
159
+ watcher.unwatch
160
+
161
+ bump_count
162
+ end
163
+
164
+ # Filter the collection of watchers by a type.
165
+ #
166
+ # @param [Symbol] type The watcher type.
167
+ # @return [Middleman::Sources]
168
+ Contract Symbol => ::Middleman::Sources
169
+ def by_type(type)
170
+ self.class.new @app, @options, watchers.select { |d| d.type == type }
171
+ end
172
+
173
+ # Get all files for this collection of watchers.
174
+ #
175
+ # @return [Array<Middleman::SourceFile>]
176
+ Contract ArrayOf[SourceFile]
177
+ def files
178
+ watchers.flat_map(&:files).uniq { |f| f[:relative_path] }
179
+ end
180
+
181
+ # Find a file given a type and path.
182
+ #
183
+ # @param [Symbol,Array<Symbol>] types A list of file "type".
184
+ # @param [String] path The file path.
185
+ # @param [Boolean] glob If the path contains wildcard or glob characters.
186
+ # @return [Middleman::SourceFile, nil]
187
+ Contract Or[Symbol, ArrayOf[Symbol], SetOf[Symbol]], Or[Pathname, String], Maybe[Bool] => Maybe[SourceFile]
188
+ def find(types, path, glob=false)
189
+ array_of_types = Array(types)
190
+
191
+ watchers
192
+ .lazy
193
+ .select { |d| array_of_types.include?(d.type) }
194
+ .map { |d| d.find(path, glob) }
195
+ .reject(&:nil?)
196
+ .first
197
+ end
198
+
199
+ # Check if a file for a given type exists.
200
+ #
201
+ # @param [Symbol,Array<Symbol>] types The list of file "type".
202
+ # @param [String] path The file path relative to it's source root.
203
+ # @return [Boolean]
204
+ Contract Or[Symbol, ArrayOf[Symbol], SetOf[Symbol]], String => Bool
205
+ def exists?(types, path)
206
+ watchers.any? { |d| Array(types).include?(d.type) && d.exists?(path) }
207
+ end
208
+
209
+ # Check if a file for a given type exists.
210
+ #
211
+ # @param [Symbol,Array<Symbol>] types The list of file "type".
212
+ # @param [String] path The file path relative to it's source root.
213
+ # @return [Boolean]
214
+ Contract Or[Symbol, ArrayOf[Symbol], SetOf[Symbol]], String => Maybe[HANDLER]
215
+ def watcher_for_path(types, path)
216
+ watchers.detect { |d| Array(types).include?(d.type) && d.exists?(path) }
217
+ end
218
+
219
+ # Manually check for new files
220
+ #
221
+ # @return [void]
222
+ Contract ArrayOf[Pathname]
223
+ def find_new_files!
224
+ return [] unless @update_count != @last_update_count
225
+
226
+ @last_update_count = @update_count
227
+ watchers.reduce([]) { |sum, w| sum + w.find_new_files! }
228
+ end
229
+
230
+ # Manually poll all watchers for new content.
231
+ #
232
+ # @return [void]
233
+ Contract ArrayOf[Pathname]
234
+ def poll_once!
235
+ return [] unless @update_count != @last_update_count
236
+
237
+ @last_update_count = @update_count
238
+ watchers.reduce([]) { |sum, w| sum + w.poll_once! }
239
+ end
240
+
241
+ # Start up all listeners.
242
+ #
243
+ # @return [void]
244
+ Contract Any
245
+ def start!
246
+ watchers.each(&:listen!)
247
+ @running = true
248
+ end
249
+
250
+ # Stop the watchers.
251
+ #
252
+ # @return [void]
253
+ Contract Any
254
+ def stop!
255
+ watchers.each(&:stop_listener!)
256
+ @running = false
257
+ end
258
+
259
+ # A callback requires a type and the proc to execute.
260
+ CallbackDescriptor = Struct.new :type, :proc
261
+
262
+ # Add callback to be run on file change or deletion
263
+ #
264
+ # @param [Symbol,Array<Symbol>] types The change types to register the callback.
265
+ # @return [void]
266
+ Contract Or[Symbol, ArrayOf[Symbol], SetOf[Symbol]], Proc => Any
267
+ def on_change(types, &block)
268
+ Array(types).each do |type|
269
+ @on_change_callbacks = @on_change_callbacks.push(CallbackDescriptor.new(type, block))
270
+ end
271
+ end
272
+
273
+ # Backwards compatible change handler.
274
+ #
275
+ # @param [nil,Regexp] matcher A Regexp to match the change path against
276
+ Contract Maybe[Matcher] => Any
277
+ def changed(matcher=nil, &_block)
278
+ on_change OUTPUT_TYPES do |updated, _removed|
279
+ updated
280
+ .select { |f| matcher.nil? ? true : matches?(matcher, f) }
281
+ .each { |f| yield f[:relative_path] }
282
+ end
283
+ end
284
+
285
+ # Backwards compatible delete handler.
286
+ #
287
+ # @param [nil,Regexp] matcher A Regexp to match the change path against
288
+ Contract Maybe[Matcher] => Any
289
+ def deleted(matcher=nil, &_block)
290
+ on_change OUTPUT_TYPES do |_updated, removed|
291
+ removed
292
+ .select { |f| matcher.nil? ? true : matches?(matcher, f) }
293
+ .each { |f| yield f[:relative_path] }
294
+ end
295
+ end
296
+
297
+ # Backwards compatible ignored check.
298
+ #
299
+ # @param [Pathname,String] path The path to check.
300
+ Contract Or[Pathname, String] => Bool
301
+ def ignored?(path)
302
+ descriptor = find(OUTPUT_TYPES, path)
303
+ !descriptor || globally_ignored?(descriptor)
304
+ end
305
+
306
+ protected
307
+
308
+ # Whether a validator matches a file.
309
+ #
310
+ # @param [Regexp, #call] validator The match validator.
311
+ # @param [Middleman::SourceFile] file The file to check.
312
+ # @return [Boolean]
313
+ Contract Matcher, SourceFile => Bool
314
+ def matches?(validator, file)
315
+ path = file[:relative_path]
316
+ if validator.is_a? Regexp
317
+ !!(path.to_s =~ validator)
318
+ else
319
+ !!validator.call(path, @app)
320
+ end
321
+ end
322
+
323
+ # Increment the internal counter for changes.
324
+ #
325
+ # @return [void]
326
+ Contract Any
327
+ def bump_count
328
+ @update_count += 1
329
+ end
330
+
331
+ # Notify callbacks that a file changed
332
+ #
333
+ # @param [Middleman::SourceFile] file The file that changed
334
+ # @return [void]
335
+ Contract ArrayOf[SourceFile], ArrayOf[SourceFile], HANDLER => Any
336
+ def did_change(updated_files, removed_files, watcher)
337
+ valid_updated = updated_files.select do |file|
338
+ watcher_for_path(file[:types], file[:relative_path].to_s) == watcher
339
+ end
340
+
341
+ valid_removed = removed_files.select do |file|
342
+ watcher_for_path(file[:types], file[:relative_path].to_s).nil?
343
+ end
344
+
345
+ return if valid_updated.empty? && valid_removed.empty?
346
+
347
+ bump_count
348
+ run_callbacks(@on_change_callbacks, valid_updated, valid_removed)
349
+ end
350
+
351
+ # Notify callbacks for a file given a set of callbacks
352
+ #
353
+ # @param [Set] callback_descriptors The registered callbacks.
354
+ # @param [Array<Middleman::SourceFile>] files The files that were changed.
355
+ # @return [void]
356
+ Contract VectorOf[CallbackDescriptor], ArrayOf[SourceFile], ArrayOf[SourceFile] => Any
357
+ def run_callbacks(callback_descriptors, updated_files, removed_files)
358
+ callback_descriptors.each do |callback|
359
+ if callback[:type] == :all
360
+ callback[:proc].call(updated_files, removed_files)
361
+ else
362
+ valid_updated = updated_files.select { |f| f[:types].include?(callback[:type]) }
363
+ valid_removed = removed_files.select { |f| f[:types].include?(callback[:type]) }
364
+
365
+ callback[:proc].call(valid_updated, valid_removed) unless valid_updated.empty? && valid_removed.empty?
366
+ end
367
+ end
368
+ end
369
+ end
370
+ end
371
+
372
+ # And, require the actual default implementation for a watcher.
373
+ require 'middleman-core/sources/source_watcher'