middleman-core 3.4.1 → 4.0.0.alpha.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (507) hide show
  1. checksums.yaml +4 -4
  2. data/{fixtures/asciidoc-app/config.rb → .gemtest} +0 -0
  3. data/.yardopts +2 -6
  4. data/Rakefile +5 -1
  5. data/features/asset_hash.feature +32 -61
  6. data/features/asset_host.feature +11 -23
  7. data/features/builder.feature +2 -0
  8. data/features/cache_buster.feature +1 -1
  9. data/features/chained_templates.feature +2 -92
  10. data/features/clean_build.feature +0 -18
  11. data/features/cli_init.feature +17 -111
  12. data/features/content_type.feature +2 -5
  13. data/features/custom_layouts.feature +24 -20
  14. data/features/data.feature +0 -28
  15. data/features/directory_index.feature +9 -9
  16. data/features/front-matter-neighbor.feature +0 -32
  17. data/features/front-matter.feature +0 -17
  18. data/features/helpers_content_tag.feature +2 -2
  19. data/features/helpers_form_tag.feature +4 -4
  20. data/features/helpers_link_to.feature +11 -29
  21. data/features/helpers_url_for.feature +11 -11
  22. data/features/i18n_builder.feature +5 -5
  23. data/features/i18n_preview.feature +8 -8
  24. data/features/markdown_kramdown.feature +1 -1
  25. data/features/markdown_kramdown_in_haml.feature +1 -2
  26. data/features/markdown_redcarpet.feature +23 -23
  27. data/features/minify_css.feature +9 -75
  28. data/features/minify_javascript.feature +12 -65
  29. data/features/mount_rack.feature +2 -4
  30. data/features/multiple-sources.feature +27 -0
  31. data/features/proxy_pages.feature +0 -10
  32. data/features/redirects.feature +6 -7
  33. data/features/relative_assets.feature +21 -66
  34. data/features/slim.feature +11 -7
  35. data/features/stylus.feature +1 -1
  36. data/features/support/env.rb +4 -4
  37. data/fixtures/asset-hash-app/config.rb +0 -2
  38. data/fixtures/asset-hash-app/source/index.html.erb +1 -1
  39. data/fixtures/asset-hash-host-app/config.rb +1 -3
  40. data/fixtures/asset-host-app/source/asset_host.html.erb +20 -1
  41. data/fixtures/asset-host-app/source/stylesheets/asset_host.css.sass +47 -2
  42. data/fixtures/auto-css-app/config.rb +8 -10
  43. data/fixtures/auto-js-app/config.rb +8 -10
  44. data/fixtures/basic-data-app/config.rb +2 -4
  45. data/fixtures/cache-buster-app/source/stylesheets/relative_assets.css.sass +0 -1
  46. data/fixtures/cache-buster-app/source/stylesheets/site.css.sass +3 -1
  47. data/fixtures/capture-html-app/config.rb +3 -5
  48. data/fixtures/clean-app/config-complications.rb +4 -6
  49. data/fixtures/clean-app/config.rb +4 -6
  50. data/fixtures/content-for-app/config.rb +3 -5
  51. data/fixtures/custom-layout-app/config.rb +1 -1
  52. data/fixtures/data-app/config.rb +1 -1
  53. data/fixtures/dynamic-pages-app/config.rb +20 -42
  54. data/fixtures/dynamic-pages-app/source/real/index.html.erb +3 -3
  55. data/fixtures/ember-cli-app/config.rb +5 -0
  56. data/fixtures/{compass-sprites-app/config.rb → ember-cli-app/source/javascripts/file.js} +0 -0
  57. data/fixtures/ember-cli-app/test-app/.bowerrc +3 -0
  58. data/fixtures/ember-cli-app/test-app/.gitignore +17 -0
  59. data/fixtures/ember-cli-app/test-app/.jshintrc +32 -0
  60. data/fixtures/ember-cli-app/test-app/Brocfile.js +20 -0
  61. data/fixtures/ember-cli-app/test-app/README.md +25 -0
  62. data/fixtures/ember-cli-app/test-app/app/app.js +14 -0
  63. data/fixtures/{implied-extensions-app/config.rb → ember-cli-app/test-app/app/components/.gitkeep} +0 -0
  64. data/fixtures/{javascript-app/config.rb → ember-cli-app/test-app/app/controllers/.gitkeep} +0 -0
  65. data/fixtures/{more-implied-extensions-app/config.rb → ember-cli-app/test-app/app/helpers/.gitkeep} +0 -0
  66. data/fixtures/ember-cli-app/test-app/app/index.html +26 -0
  67. data/fixtures/{partial-chained_templates-app/config.rb → ember-cli-app/test-app/app/models/.gitkeep} +0 -0
  68. data/fixtures/ember-cli-app/test-app/app/router.js +10 -0
  69. data/fixtures/{preview-server-app/config-empty.rb → ember-cli-app/test-app/app/routes/.gitkeep} +0 -0
  70. data/fixtures/{request-app/config.rb → ember-cli-app/test-app/app/styles/.gitkeep} +0 -0
  71. data/fixtures/ember-cli-app/test-app/app/styles/app.css +3 -0
  72. data/fixtures/{traversal-app/source/.htaccess → ember-cli-app/test-app/app/templates/.gitkeep} +0 -0
  73. data/fixtures/ember-cli-app/test-app/app/templates/application.hbs +3 -0
  74. data/{lib/middleman-core/templates/html5/source/img/.gitignore → fixtures/ember-cli-app/test-app/app/templates/components/.gitkeep} +0 -0
  75. data/{lib/middleman-core/templates/mobile/source/js/script.js → fixtures/ember-cli-app/test-app/app/views/.gitkeep} +0 -0
  76. data/fixtures/ember-cli-app/test-app/bower.json +16 -0
  77. data/fixtures/ember-cli-app/test-app/config/environment.js +38 -0
  78. data/fixtures/ember-cli-app/test-app/package.json +31 -0
  79. data/fixtures/ember-cli-app/test-app/public/.gitkeep +0 -0
  80. data/fixtures/ember-cli-app/test-app/testem.json +6 -0
  81. data/fixtures/ember-cli-app/test-app/tests/.jshintrc +73 -0
  82. data/fixtures/ember-cli-app/test-app/tests/helpers/resolver.js +9 -0
  83. data/fixtures/ember-cli-app/test-app/tests/helpers/start-app.js +30 -0
  84. data/fixtures/ember-cli-app/test-app/tests/index.html +50 -0
  85. data/fixtures/ember-cli-app/test-app/tests/test-helper.js +6 -0
  86. data/fixtures/ember-cli-app/test-app/tests/unit/.gitkeep +0 -0
  87. data/fixtures/env-app/config.rb +0 -0
  88. data/fixtures/env-app/environments/development.rb +1 -0
  89. data/fixtures/env-app/environments/production.rb +2 -0
  90. data/fixtures/env-app/source/index.html.erb +3 -0
  91. data/fixtures/env-app/source/stylesheets/site.css.scss +3 -0
  92. data/fixtures/external-helpers/config.rb +1 -1
  93. data/fixtures/feature-params-app/config.rb +10 -6
  94. data/fixtures/feature-params-app/source/index.html.erb +2 -3
  95. data/fixtures/fonts-app/source/stylesheets/fonts.css.scss +6 -0
  96. data/fixtures/frontmatter-neighbor-app/config.rb +30 -0
  97. data/fixtures/frontmatter-settings-app/config.rb +2 -2
  98. data/fixtures/frontmatter-settings-neighbor-app/config.rb +33 -3
  99. data/fixtures/generator-test/config.rb +5 -10
  100. data/fixtures/glob-app/config.rb +1 -1
  101. data/fixtures/i18n-force-locale/config.rb +2 -4
  102. data/fixtures/i18n-force-locale/source/{index.haml → index.html.haml} +0 -0
  103. data/fixtures/i18n-test-app/source/localizable/{one.en.md → one.en.html.md} +0 -0
  104. data/fixtures/i18n-test-app/source/localizable/{one.es.md → one.es.html.md} +0 -0
  105. data/fixtures/indexable-app/config.rb +2 -2
  106. data/fixtures/indexable-app/source/evil spaces.html +1 -1
  107. data/fixtures/large-build-app/config.rb +1 -5
  108. data/fixtures/large-build-app/source/spaces in file.html.erb +1 -1
  109. data/fixtures/manual-layout-override/config.rb +1 -1
  110. data/fixtures/markdown-app/config.rb +1 -1
  111. data/fixtures/markdown-frontmatter-options-app/config.rb +1 -1
  112. data/fixtures/minify-css-app/source/stylesheets/site.css.sass +3 -1
  113. data/fixtures/more-frontmatter-settings-app/config.rb +1 -1
  114. data/fixtures/more-markdown-app/source/{with_layout.markdown → with_layout.html.markdown} +0 -0
  115. data/fixtures/more-markdown-app/source/{with_layout_erb.markdown.erb → with_layout_erb.html.markdown.erb} +0 -0
  116. data/fixtures/more-traversal-app/config.rb +4 -4
  117. data/fixtures/more-traversal-app/source/layout.erb +1 -1
  118. data/fixtures/multiple-data-sources-app/config.rb +3 -0
  119. data/fixtures/multiple-data-sources-app/data/data.yml +1 -0
  120. data/fixtures/multiple-data-sources-app/data/two.yml +1 -0
  121. data/fixtures/multiple-data-sources-app/data0/one.yml +1 -0
  122. data/fixtures/multiple-data-sources-app/data1/data1.yml +1 -0
  123. data/fixtures/multiple-data-sources-app/data1/one.yml +1 -0
  124. data/fixtures/multiple-data-sources-app/data2/data2.yml +1 -0
  125. data/fixtures/multiple-data-sources-app/data2/two.yml +1 -0
  126. data/fixtures/multiple-data-sources-app/source/index.html.erb +10 -0
  127. data/fixtures/multiple-sources-app/config.rb +3 -0
  128. data/fixtures/multiple-sources-app/source/index.html.erb +1 -0
  129. data/fixtures/multiple-sources-app/source/override-in-two.html.erb +1 -0
  130. data/fixtures/multiple-sources-app/source0/override-in-one.html.erb +1 -0
  131. data/fixtures/multiple-sources-app/source1/index1.html.erb +1 -0
  132. data/fixtures/multiple-sources-app/source1/override-in-one.html.erb +1 -0
  133. data/fixtures/multiple-sources-app/source2/index2.html.erb +1 -0
  134. data/fixtures/multiple-sources-app/source2/override-in-two.html.erb +1 -0
  135. data/fixtures/padrino-helpers-app/source/former_padrino_test.html.erb +3 -3
  136. data/fixtures/page-classes-app/config.rb +2 -4
  137. data/fixtures/page-classes-app/source/2-starts-with-numeric-custom.html.erb +1 -1
  138. data/fixtures/page-helper-layout-block-app/config.rb +1 -1
  139. data/fixtures/partials-app/source/locals.html.erb +1 -1
  140. data/fixtures/partials-app/source/shared/{snippet.erb → _snippet.html.erb} +0 -0
  141. data/fixtures/partials-app/source/sub/index.html.erb +1 -1
  142. data/fixtures/passthrough-app/source/stylesheets/site.css.sass +5 -1
  143. data/fixtures/proxy-pages-app/config.rb +12 -15
  144. data/fixtures/relative-app/source/stylesheets/relative_assets.css.sass +1 -2
  145. data/fixtures/relative-assets-app/source/javascripts/application.js +8 -0
  146. data/fixtures/relative-assets-app/source/relative_image.html.erb +0 -1
  147. data/fixtures/relative-assets-app/source/stylesheets/relative_assets.css.sass +1 -2
  148. data/fixtures/scss-app/source/stylesheets/site_scss.css.scss +3 -1
  149. data/fixtures/stylus-preview-app/source/content.html.erb +4 -0
  150. data/fixtures/traversal-app/config.rb +4 -4
  151. data/fixtures/traversal-app/source/layout.erb +1 -1
  152. data/fixtures/v4-extension-callbacks/config.rb +21 -5
  153. data/fixtures/wildcard-app/config.rb +1 -1
  154. data/fixtures/wildcard-directory-index-app/config.rb +1 -1
  155. data/lib/middleman-core.rb +5 -2
  156. data/lib/middleman-core/application.rb +212 -131
  157. data/lib/middleman-core/builder.rb +255 -0
  158. data/lib/middleman-core/config_context.rb +103 -0
  159. data/lib/middleman-core/configuration.rb +15 -92
  160. data/lib/middleman-core/contracts.rb +149 -0
  161. data/lib/middleman-core/core_extensions.rb +86 -45
  162. data/lib/middleman-core/core_extensions/data.rb +82 -72
  163. data/lib/{middleman-more → middleman-core}/core_extensions/default_helpers.rb +34 -140
  164. data/lib/middleman-core/core_extensions/external_helpers.rb +23 -27
  165. data/lib/middleman-core/core_extensions/file_watcher.rb +59 -169
  166. data/lib/middleman-core/core_extensions/front_matter.rb +72 -131
  167. data/lib/middleman-core/core_extensions/i18n.rb +186 -0
  168. data/lib/middleman-core/core_extensions/rendering.rb +45 -533
  169. data/lib/middleman-core/core_extensions/routing.rb +53 -51
  170. data/lib/middleman-core/core_extensions/show_exceptions.rb +11 -18
  171. data/lib/middleman-core/extension.rb +183 -56
  172. data/lib/middleman-core/extension_manager.rb +80 -0
  173. data/lib/middleman-core/extensions.rb +96 -67
  174. data/lib/middleman-core/extensions/asset_hash.rb +92 -0
  175. data/lib/middleman-core/extensions/asset_host.rb +37 -0
  176. data/lib/{middleman-more → middleman-core}/extensions/automatic_alt_tags.rb +6 -5
  177. data/lib/{middleman-more → middleman-core}/extensions/automatic_image_sizes.rb +9 -13
  178. data/lib/middleman-core/extensions/cache_buster.rb +27 -0
  179. data/lib/{middleman-more → middleman-core}/extensions/directory_indexes.rb +9 -7
  180. data/lib/middleman-core/extensions/external_pipeline.rb +37 -0
  181. data/lib/{middleman-more → middleman-core}/extensions/gzip.rb +10 -3
  182. data/lib/{middleman-more → middleman-core}/extensions/lorem.rb +2 -2
  183. data/lib/middleman-core/extensions/minify_css.rb +86 -0
  184. data/lib/middleman-core/extensions/minify_javascript.rb +93 -0
  185. data/lib/middleman-core/extensions/relative_assets.rb +38 -0
  186. data/lib/middleman-core/file_renderer.rb +139 -0
  187. data/lib/middleman-core/load_paths.rb +21 -28
  188. data/lib/middleman-core/meta_pages.rb +9 -9
  189. data/lib/middleman-core/meta_pages/sitemap_resource.rb +3 -6
  190. data/lib/middleman-core/meta_pages/sitemap_tree.rb +1 -1
  191. data/lib/middleman-core/middleware/inline_url_rewriter.rb +96 -0
  192. data/lib/middleman-core/preview_server.rb +65 -196
  193. data/lib/middleman-core/profiling.rb +14 -15
  194. data/lib/middleman-core/rack.rb +138 -0
  195. data/lib/middleman-core/renderers/coffee_script.rb +10 -13
  196. data/lib/middleman-core/renderers/erb.rb +3 -15
  197. data/lib/middleman-core/renderers/haml.rb +33 -18
  198. data/lib/middleman-core/renderers/kramdown.rb +6 -4
  199. data/lib/middleman-core/renderers/less.rb +12 -18
  200. data/lib/middleman-core/renderers/liquid.rb +22 -18
  201. data/lib/middleman-core/renderers/markdown.rb +36 -49
  202. data/lib/middleman-core/renderers/redcarpet.rb +11 -4
  203. data/lib/middleman-core/renderers/sass.rb +36 -27
  204. data/lib/middleman-core/renderers/sass_functions.rb +116 -0
  205. data/lib/middleman-core/renderers/slim.rb +19 -26
  206. data/lib/middleman-core/renderers/stylus.rb +4 -14
  207. data/lib/middleman-core/sitemap/extensions/ignores.rb +35 -73
  208. data/lib/middleman-core/sitemap/extensions/on_disk.rb +29 -48
  209. data/lib/middleman-core/sitemap/extensions/proxies.rb +111 -133
  210. data/lib/middleman-core/sitemap/extensions/redirects.rb +68 -102
  211. data/lib/middleman-core/sitemap/extensions/request_endpoints.rb +59 -83
  212. data/lib/middleman-core/sitemap/extensions/traversal.rb +14 -15
  213. data/lib/middleman-core/sitemap/resource.rb +99 -71
  214. data/lib/middleman-core/sitemap/store.rb +79 -132
  215. data/lib/middleman-core/sources.rb +310 -0
  216. data/lib/middleman-core/sources/source_watcher.rb +268 -0
  217. data/lib/middleman-core/step_definitions.rb +2 -3
  218. data/lib/middleman-core/step_definitions/builder_steps.rb +15 -13
  219. data/lib/middleman-core/step_definitions/middleman_steps.rb +2 -18
  220. data/lib/middleman-core/step_definitions/server_steps.rb +43 -77
  221. data/lib/middleman-core/template_context.rb +181 -0
  222. data/lib/middleman-core/template_renderer.rb +213 -0
  223. data/lib/middleman-core/util.rb +319 -241
  224. data/lib/middleman-core/util/hash_with_indifferent_access.rb +103 -0
  225. data/lib/middleman-core/version.rb +1 -1
  226. data/lib/middleman/rack.rb +0 -1
  227. data/middleman-core.gemspec +36 -28
  228. data/spec/middleman-core/path_match_spec.rb +37 -0
  229. data/spec/spec_helper.rb +2 -25
  230. metadata +237 -454
  231. data/bin/middleman +0 -18
  232. data/cucumber.yml +0 -2
  233. data/features/asciidoc.feature +0 -155
  234. data/features/cli/preview_server-hook.feature +0 -17
  235. data/features/cli/preview_server.feature +0 -532
  236. data/features/compass-sprites.feature +0 -6
  237. data/features/console.feature +0 -10
  238. data/features/current_page_request_path_backwards.feature +0 -6
  239. data/features/fonts.feature +0 -15
  240. data/features/i18n_link_to.feature +0 -209
  241. data/features/image_srcset_paths.feature +0 -7
  242. data/features/implied_extensions.feature +0 -69
  243. data/features/instance_vars.feature +0 -9
  244. data/features/javascript-testing.feature +0 -18
  245. data/features/more-implied_extensions.feature +0 -44
  246. data/features/partials_dir.feature +0 -30
  247. data/features/queryable.feature +0 -35
  248. data/features/request_params.feature +0 -6
  249. data/features/static_server.feature +0 -6
  250. data/features/step_definitions/page_layout_steps.rb +0 -15
  251. data/features/step_definitions/queryable_steps.rb +0 -212
  252. data/features/support/preserve_mime_types.rb +0 -7
  253. data/features/v3_extensions.feature +0 -20
  254. data/features/working_directory.feature +0 -33
  255. data/fixtures/asciidoc-app/source/_include.adoc +0 -1
  256. data/fixtures/asciidoc-app/source/code.adoc +0 -3
  257. data/fixtures/asciidoc-app/source/custom-attribute.adoc +0 -3
  258. data/fixtures/asciidoc-app/source/gallery.adoc +0 -1
  259. data/fixtures/asciidoc-app/source/hello-no-layout.adoc +0 -2
  260. data/fixtures/asciidoc-app/source/hello-with-front-matter.adoc +0 -5
  261. data/fixtures/asciidoc-app/source/hello-with-layout.adoc +0 -2
  262. data/fixtures/asciidoc-app/source/hello-with-title.adoc +0 -5
  263. data/fixtures/asciidoc-app/source/hello.adoc +0 -4
  264. data/fixtures/asciidoc-app/source/images/tiger.gif +0 -0
  265. data/fixtures/asciidoc-app/source/layouts/default.erb +0 -9
  266. data/fixtures/asciidoc-app/source/master.adoc +0 -3
  267. data/fixtures/asset-hash-app/source/api.json.erb +0 -1
  268. data/fixtures/asset-hash-app/source/fonts/fontawesome-webfont.woff +0 -0
  269. data/fixtures/asset-hash-app/source/fonts/fontawesome-webfont.woff2 +0 -0
  270. data/fixtures/asset-hash-app/source/images/200px.jpg +0 -0
  271. data/fixtures/asset-hash-app/source/images/300px.jpg +0 -0
  272. data/fixtures/asset-hash-app/source/slim.html.slim +0 -8
  273. data/fixtures/asset-hash-app/source/stylesheets/uses_fonts.css +0 -4
  274. data/fixtures/asset-hash-app/source/subdir/api.json.erb +0 -1
  275. data/fixtures/chained-app/source/test.erb.combobreaker.str.erb +0 -8
  276. data/fixtures/clean-app/config-hidden-dir-after.rb +0 -5
  277. data/fixtures/clean-app/config-hidden-dir-before.rb +0 -1
  278. data/fixtures/compass-sprites-app/source/images/icon/arrow_down.png +0 -0
  279. data/fixtures/compass-sprites-app/source/images/icon/arrow_left.png +0 -0
  280. data/fixtures/compass-sprites-app/source/images/icon/arrow_right.png +0 -0
  281. data/fixtures/compass-sprites-app/source/images/icon/arrow_up.png +0 -0
  282. data/fixtures/compass-sprites-app/source/stylesheets/site.css.scss +0 -3
  283. data/fixtures/content-type-app/source/index.php +0 -1
  284. data/fixtures/current-page-app/config.rb +0 -3
  285. data/fixtures/current-page-app/source/request-path.html.erb +0 -1
  286. data/fixtures/default-partials-dir-app/source/_partial.html.erb +0 -1
  287. data/fixtures/default-partials-dir-app/source/index.html.erb +0 -2
  288. data/fixtures/fonts-app/source/stylesheets/fonts.css.sass +0 -5
  289. data/fixtures/frontmatter-app/source/front-matter-auto.erb +0 -6
  290. data/fixtures/frontmatter-app/source/front-matter-pandoc.html.md.erb +0 -13
  291. data/fixtures/frontmatter-app/source/json-front-matter-auto.erb +0 -6
  292. data/fixtures/frontmatter-neighbor-app/source/front-matter-auto.erb +0 -1
  293. data/fixtures/frontmatter-neighbor-app/source/front-matter-auto.erb.frontmatter +0 -4
  294. data/fixtures/frontmatter-neighbor-app/source/json-front-matter-auto.erb +0 -1
  295. data/fixtures/frontmatter-neighbor-app/source/json-front-matter-auto.erb.frontmatter +0 -4
  296. data/fixtures/image-srcset-paths-app/image-srcset-paths.html.erb +0 -1
  297. data/fixtures/image-srcset-paths-app/images/blank.gif +0 -0
  298. data/fixtures/implied-extensions-app/source/index.erb +0 -1
  299. data/fixtures/instance-vars-app/config.rb +0 -7
  300. data/fixtures/instance-vars-app/source/content.html.erb +0 -2
  301. data/fixtures/instance-vars-app/source/layout.erb +0 -1
  302. data/fixtures/javascript-app/source/index.html +0 -17
  303. data/fixtures/minify-css-app/source/inline-css.php +0 -8
  304. data/fixtures/minify-css-app/source/stylesheets/site.xcss.sass +0 -5
  305. data/fixtures/minify-js-app/source/inline-js.php +0 -22
  306. data/fixtures/minify-js-app/source/javascripts/js_test.xjs +0 -8
  307. data/fixtures/more-implied-extensions-app/source/javascripts/app.coffee +0 -1
  308. data/fixtures/more-implied-extensions-app/source/layouts/layout.erb +0 -3
  309. data/fixtures/more-implied-extensions-app/source/stylesheets/style.scss +0 -3
  310. data/fixtures/more-implied-extensions-app/source/stylesheets/style2.sass +0 -3
  311. data/fixtures/more-implied-extensions-app/source/test.haml +0 -4
  312. data/fixtures/more-implied-extensions-app/source/test2.markdown +0 -3
  313. data/fixtures/more-implied-extensions-app/source/test3.slim +0 -3
  314. data/fixtures/more-implied-extensions-app/source/test4.liquid +0 -1
  315. data/fixtures/partials-dir-app/source/index.html.erb +0 -2
  316. data/fixtures/partials-dir-app/source/nested/partials/_partial.html.erb +0 -1
  317. data/fixtures/partials-dir-app/source/partials/_partial.html.erb +0 -1
  318. data/fixtures/plain-app/index.html +0 -1
  319. data/fixtures/preview-server-app/bin/dns_server.rb +0 -33
  320. data/fixtures/preview-server-app/config-complications.rb +0 -11
  321. data/fixtures/preview-server-app/config.rb +0 -11
  322. data/fixtures/preview-server-app/source/index.html.erb +0 -1
  323. data/fixtures/preview-server-app/source/layout.erb +0 -9
  324. data/fixtures/preview-server-app/source/layouts/custom.erb +0 -8
  325. data/fixtures/preview-server-app/source/real.html +0 -1
  326. data/fixtures/preview-server-app/source/real/index.html.erb +0 -5
  327. data/fixtures/preview-server-app/source/should_be_ignored.html +0 -1
  328. data/fixtures/preview-server-app/source/should_be_ignored2.html +0 -1
  329. data/fixtures/preview-server-app/source/should_be_ignored3.html +0 -1
  330. data/fixtures/preview-server-app/source/static.html +0 -1
  331. data/fixtures/preview-server-hook-app/config.rb +0 -19
  332. data/fixtures/preview-server-hook-app/source/index.html.erb +0 -9
  333. data/fixtures/proxy-pages-app/source/real/index-ivars.html.erb +0 -6
  334. data/fixtures/relative-assets-app/source/absolute_image_relative_css.html.erb +0 -9
  335. data/fixtures/relative-assets-app/source/javascripts/app.js +0 -3
  336. data/fixtures/relative-assets-app/source/relative_image_absolute_css.html.erb +0 -9
  337. data/fixtures/request-app/source/index.html.erb +0 -3
  338. data/fixtures/stylus-preview-app/source/layout.erb +0 -1
  339. data/lib/middleman-core/cli.rb +0 -88
  340. data/lib/middleman-core/cli/build.rb +0 -300
  341. data/lib/middleman-core/cli/bundler.rb +0 -39
  342. data/lib/middleman-core/cli/console.rb +0 -52
  343. data/lib/middleman-core/cli/extension.rb +0 -47
  344. data/lib/middleman-core/cli/init.rb +0 -71
  345. data/lib/middleman-core/cli/server.rb +0 -99
  346. data/lib/middleman-core/core_extensions/data/file_loader.rb +0 -71
  347. data/lib/middleman-core/core_extensions/extensions.rb +0 -197
  348. data/lib/middleman-core/core_extensions/request.rb +0 -312
  349. data/lib/middleman-core/dns_resolver.rb +0 -73
  350. data/lib/middleman-core/dns_resolver/basic_network_resolver.rb +0 -52
  351. data/lib/middleman-core/dns_resolver/hosts_resolver.rb +0 -63
  352. data/lib/middleman-core/dns_resolver/local_link_resolver.rb +0 -44
  353. data/lib/middleman-core/dns_resolver/network_resolver.rb +0 -42
  354. data/lib/middleman-core/preview_server/checks.rb +0 -81
  355. data/lib/middleman-core/preview_server/information.rb +0 -273
  356. data/lib/middleman-core/preview_server/network_interface_inventory.rb +0 -65
  357. data/lib/middleman-core/preview_server/server_hostname.rb +0 -39
  358. data/lib/middleman-core/preview_server/server_information.rb +0 -153
  359. data/lib/middleman-core/preview_server/server_information_callback_proxy.rb +0 -35
  360. data/lib/middleman-core/preview_server/server_information_validator.rb +0 -18
  361. data/lib/middleman-core/preview_server/server_ip_address.rb +0 -55
  362. data/lib/middleman-core/preview_server/server_url.rb +0 -63
  363. data/lib/middleman-core/preview_server/tcp_port_prober.rb +0 -29
  364. data/lib/middleman-core/renderers/asciidoc.rb +0 -58
  365. data/lib/middleman-core/sitemap.rb +0 -76
  366. data/lib/middleman-core/sitemap/extensions/content_type.rb +0 -16
  367. data/lib/middleman-core/sitemap/queryable.rb +0 -151
  368. data/lib/middleman-core/step_definitions/commandline_steps.rb +0 -88
  369. data/lib/middleman-core/templates.rb +0 -101
  370. data/lib/middleman-core/templates/default.rb +0 -37
  371. data/lib/middleman-core/templates/default/source/images/background.png +0 -0
  372. data/lib/middleman-core/templates/default/source/images/middleman.png +0 -0
  373. data/lib/middleman-core/templates/default/source/index.html.erb +0 -10
  374. data/lib/middleman-core/templates/default/source/javascripts/all.js +0 -1
  375. data/lib/middleman-core/templates/default/source/layouts/layout.erb +0 -19
  376. data/lib/middleman-core/templates/default/source/stylesheets/all.css +0 -55
  377. data/lib/middleman-core/templates/default/source/stylesheets/normalize.css +0 -375
  378. data/lib/middleman-core/templates/empty.rb +0 -22
  379. data/lib/middleman-core/templates/empty/Gemfile.tt +0 -6
  380. data/lib/middleman-core/templates/extension/Gemfile +0 -18
  381. data/lib/middleman-core/templates/extension/Rakefile +0 -14
  382. data/lib/middleman-core/templates/extension/features/support/env.rb +0 -4
  383. data/lib/middleman-core/templates/extension/gemspec +0 -24
  384. data/lib/middleman-core/templates/extension/gitignore +0 -5
  385. data/lib/middleman-core/templates/extension/lib/lib.rb +0 -38
  386. data/lib/middleman-core/templates/extension/lib/middleman_extension.rb +0 -1
  387. data/lib/middleman-core/templates/html5.rb +0 -29
  388. data/lib/middleman-core/templates/html5/source/.htaccess +0 -542
  389. data/lib/middleman-core/templates/html5/source/404.html +0 -157
  390. data/lib/middleman-core/templates/html5/source/LICENSE.md +0 -19
  391. data/lib/middleman-core/templates/html5/source/README.md +0 -63
  392. data/lib/middleman-core/templates/html5/source/apple-touch-icon-114x114-precomposed.png +0 -0
  393. data/lib/middleman-core/templates/html5/source/apple-touch-icon-144x144-precomposed.png +0 -0
  394. data/lib/middleman-core/templates/html5/source/apple-touch-icon-57x57-precomposed.png +0 -0
  395. data/lib/middleman-core/templates/html5/source/apple-touch-icon-72x72-precomposed.png +0 -0
  396. data/lib/middleman-core/templates/html5/source/apple-touch-icon-precomposed.png +0 -0
  397. data/lib/middleman-core/templates/html5/source/apple-touch-icon.png +0 -0
  398. data/lib/middleman-core/templates/html5/source/crossdomain.xml +0 -15
  399. data/lib/middleman-core/templates/html5/source/css/main.css +0 -298
  400. data/lib/middleman-core/templates/html5/source/css/normalize.css +0 -504
  401. data/lib/middleman-core/templates/html5/source/favicon.ico +0 -0
  402. data/lib/middleman-core/templates/html5/source/humans.txt +0 -15
  403. data/lib/middleman-core/templates/html5/source/index.html.erb +0 -6
  404. data/lib/middleman-core/templates/html5/source/js/main.js +0 -1
  405. data/lib/middleman-core/templates/html5/source/js/plugins.js +0 -14
  406. data/lib/middleman-core/templates/html5/source/js/vendor/jquery-1.8.0.min.js +0 -2
  407. data/lib/middleman-core/templates/html5/source/js/vendor/modernizr-2.6.1.min.js +0 -4
  408. data/lib/middleman-core/templates/html5/source/layouts/layout.erb +0 -40
  409. data/lib/middleman-core/templates/html5/source/robots.txt +0 -3
  410. data/lib/middleman-core/templates/local.rb +0 -27
  411. data/lib/middleman-core/templates/mobile.rb +0 -24
  412. data/lib/middleman-core/templates/mobile/source/404.html +0 -37
  413. data/lib/middleman-core/templates/mobile/source/README.markdown +0 -21
  414. data/lib/middleman-core/templates/mobile/source/crossdomain.xml +0 -25
  415. data/lib/middleman-core/templates/mobile/source/css/style.css +0 -315
  416. data/lib/middleman-core/templates/mobile/source/humans.txt +0 -43
  417. data/lib/middleman-core/templates/mobile/source/img/h/apple-touch-icon.png +0 -0
  418. data/lib/middleman-core/templates/mobile/source/img/h/splash.png +0 -0
  419. data/lib/middleman-core/templates/mobile/source/img/l/apple-touch-icon-precomposed.png +0 -0
  420. data/lib/middleman-core/templates/mobile/source/img/l/apple-touch-icon.png +0 -0
  421. data/lib/middleman-core/templates/mobile/source/img/l/splash.png +0 -0
  422. data/lib/middleman-core/templates/mobile/source/img/m/apple-touch-icon.png +0 -0
  423. data/lib/middleman-core/templates/mobile/source/index.html +0 -92
  424. data/lib/middleman-core/templates/mobile/source/js/libs/modernizr-custom.js +0 -14
  425. data/lib/middleman-core/templates/mobile/source/js/libs/respond.min.js +0 -7
  426. data/lib/middleman-core/templates/mobile/source/js/mylibs/helper.js +0 -171
  427. data/lib/middleman-core/templates/mobile/source/js/plugins.js +0 -20
  428. data/lib/middleman-core/templates/mobile/source/robots.txt +0 -4
  429. data/lib/middleman-core/templates/mobile/source/sitemap.xml +0 -9
  430. data/lib/middleman-core/templates/mobile/source/test/index.html +0 -31
  431. data/lib/middleman-core/templates/mobile/source/test/qunit/qunit.css +0 -148
  432. data/lib/middleman-core/templates/mobile/source/test/qunit/qunit.js +0 -1265
  433. data/lib/middleman-core/templates/mobile/source/test/tests.js +0 -21
  434. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/Readme.PDF +0 -0
  435. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/aspx/aspx1.snippet +0 -31
  436. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/aspx/aspx2.snippet +0 -2
  437. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/aspx/ga.aspx +0 -195
  438. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/aspx/sample.aspx +0 -44
  439. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/jsp/ga.jsp +0 -225
  440. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/jsp/jsp1.snippet +0 -35
  441. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/jsp/jsp2.snippet +0 -2
  442. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/jsp/sample.jsp +0 -51
  443. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/php/ga.php +0 -176
  444. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/php/php1.snippet +0 -30
  445. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/php/php2.snippet +0 -4
  446. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/php/sample.php +0 -44
  447. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/pl/ga.pl +0 -195
  448. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/pl/perl1.snippet +0 -27
  449. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/pl/perl2.snippet +0 -1
  450. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/pl/sample.pl +0 -38
  451. data/lib/middleman-core/templates/mobile/source/tools/mobile-bookmark-bubble/COPYING +0 -202
  452. data/lib/middleman-core/templates/mobile/source/tools/mobile-bookmark-bubble/bookmark_bubble.js +0 -559
  453. data/lib/middleman-core/templates/mobile/source/tools/mobile-bookmark-bubble/example/example.html +0 -43
  454. data/lib/middleman-core/templates/mobile/source/tools/mobile-bookmark-bubble/example/example.js +0 -57
  455. data/lib/middleman-core/templates/mobile/source/tools/mobile-bookmark-bubble/images/arrow.png +0 -0
  456. data/lib/middleman-core/templates/mobile/source/tools/mobile-bookmark-bubble/images/close.png +0 -0
  457. data/lib/middleman-core/templates/mobile/source/tools/mobile-bookmark-bubble/images/generate_base64_images +0 -33
  458. data/lib/middleman-core/templates/mobile/source/tools/mobile-bookmark-bubble/images/icon_calendar.png +0 -0
  459. data/lib/middleman-core/templates/mobile/source/tools/wspl/README +0 -27
  460. data/lib/middleman-core/templates/mobile/source/tools/wspl/databasefactory.js +0 -45
  461. data/lib/middleman-core/templates/mobile/source/tools/wspl/dbworker.js +0 -324
  462. data/lib/middleman-core/templates/mobile/source/tools/wspl/dbworker_test.html +0 -393
  463. data/lib/middleman-core/templates/mobile/source/tools/wspl/dbworkerstarter.js +0 -32
  464. data/lib/middleman-core/templates/mobile/source/tools/wspl/dbwrapper_gears.js +0 -595
  465. data/lib/middleman-core/templates/mobile/source/tools/wspl/dbwrapper_gears_test.html +0 -404
  466. data/lib/middleman-core/templates/mobile/source/tools/wspl/dbwrapper_html5.js +0 -203
  467. data/lib/middleman-core/templates/mobile/source/tools/wspl/dbwrapper_html5_test.html +0 -468
  468. data/lib/middleman-core/templates/mobile/source/tools/wspl/dbwrapperapi.js +0 -202
  469. data/lib/middleman-core/templates/mobile/source/tools/wspl/dbwrapperapi_test.html +0 -51
  470. data/lib/middleman-core/templates/mobile/source/tools/wspl/gears_resultset.js +0 -71
  471. data/lib/middleman-core/templates/mobile/source/tools/wspl/gears_resultset_test.html +0 -86
  472. data/lib/middleman-core/templates/mobile/source/tools/wspl/gears_transaction.js +0 -196
  473. data/lib/middleman-core/templates/mobile/source/tools/wspl/gears_transaction_test.html +0 -221
  474. data/lib/middleman-core/templates/mobile/source/tools/wspl/gearsutils.js +0 -94
  475. data/lib/middleman-core/templates/mobile/source/tools/wspl/gearsutils_test.html +0 -84
  476. data/lib/middleman-core/templates/mobile/source/tools/wspl/global_functions.js +0 -72
  477. data/lib/middleman-core/templates/mobile/source/tools/wspl/simplenotes/index.html +0 -347
  478. data/lib/middleman-core/templates/mobile/source/tools/wspl/simplenotes/simplenotes.js +0 -503
  479. data/lib/middleman-core/templates/mobile/source/tools/wspl/simplenotes/styles.css +0 -66
  480. data/lib/middleman-core/templates/mobile/source/tools/wspl/simplenotes/template.js +0 -75
  481. data/lib/middleman-core/templates/shared/Gemfile.tt +0 -14
  482. data/lib/middleman-core/templates/shared/config.ru +0 -3
  483. data/lib/middleman-core/templates/shared/config.tt +0 -87
  484. data/lib/middleman-core/templates/shared/gitignore +0 -21
  485. data/lib/middleman-more/core_extensions/compass.rb +0 -75
  486. data/lib/middleman-more/core_extensions/i18n.rb +0 -312
  487. data/lib/middleman-more/extensions/asset_hash.rb +0 -128
  488. data/lib/middleman-more/extensions/asset_host.rb +0 -50
  489. data/lib/middleman-more/extensions/cache_buster.rb +0 -55
  490. data/lib/middleman-more/extensions/minify_css.rb +0 -112
  491. data/lib/middleman-more/extensions/minify_javascript.rb +0 -120
  492. data/lib/middleman-more/extensions/relative_assets.rb +0 -24
  493. data/lib/middleman-more/templates/smacss.rb +0 -29
  494. data/lib/middleman-more/templates/smacss/source/_footer.haml +0 -1
  495. data/lib/middleman-more/templates/smacss/source/index.html.haml +0 -1
  496. data/lib/middleman-more/templates/smacss/source/layouts/layout.haml +0 -13
  497. data/lib/middleman-more/templates/smacss/source/stylesheets/base/README.markdown +0 -11
  498. data/lib/middleman-more/templates/smacss/source/stylesheets/base/base.scss +0 -1
  499. data/lib/middleman-more/templates/smacss/source/stylesheets/base/normalize.scss +0 -375
  500. data/lib/middleman-more/templates/smacss/source/stylesheets/layout/README.markdown +0 -9
  501. data/lib/middleman-more/templates/smacss/source/stylesheets/modules/README.markdown +0 -9
  502. data/lib/middleman-more/templates/smacss/source/stylesheets/states/README.markdown +0 -12
  503. data/lib/middleman-more/templates/smacss/source/stylesheets/style.css.scss +0 -12
  504. data/lib/vendored-middleman-deps/fastimage.rb +0 -287
  505. data/spec/middleman-core/dns_resolver_spec.rb +0 -118
  506. data/spec/middleman-core/preview_server/server_hostname_spec.rb +0 -39
  507. data/spec/middleman-core/preview_server/server_ip_address_spec.rb +0 -43
@@ -1,7 +1,38 @@
1
1
  # Used for merging results of metadata callbacks
2
2
  require 'active_support/core_ext/hash/deep_merge'
3
3
  require 'monitor'
4
- require 'middleman-core/sitemap/queryable'
4
+
5
+ # Ignores
6
+ Middleman::Extensions.register :sitemap_ignore, auto_activate: :before_configuration do
7
+ require 'middleman-core/sitemap/extensions/ignores'
8
+ Middleman::Sitemap::Extensions::Ignores
9
+ end
10
+
11
+ # Files on Disk
12
+ Middleman::Extensions.register :sitemap_ondisk, auto_activate: :before_configuration do
13
+ require 'middleman-core/sitemap/extensions/on_disk'
14
+ Middleman::Sitemap::Extensions::OnDisk
15
+ end
16
+
17
+ # Endpoints
18
+ Middleman::Extensions.register :sitemap_endpoint, auto_activate: :before_configuration do
19
+ require 'middleman-core/sitemap/extensions/request_endpoints'
20
+ Middleman::Sitemap::Extensions::RequestEndpoints
21
+ end
22
+
23
+ # Proxies
24
+ Middleman::Extensions.register :sitemap_proxies, auto_activate: :before_configuration do
25
+ require 'middleman-core/sitemap/extensions/proxies'
26
+ Middleman::Sitemap::Extensions::Proxies
27
+ end
28
+
29
+ # Redirects
30
+ Middleman::Extensions.register :sitemap_redirects, auto_activate: :before_configuration do
31
+ require 'middleman-core/sitemap/extensions/redirects'
32
+ Middleman::Sitemap::Extensions::Redirects
33
+ end
34
+
35
+ require 'middleman-core/contracts'
5
36
 
6
37
  module Middleman
7
38
  # Sitemap namespace
@@ -13,51 +44,51 @@ module Middleman
13
44
  # which is the path relative to the source directory, minus any template
14
45
  # extensions. All "path" parameters used in this class are source paths.
15
46
  class Store
16
- # @return [Middleman::Application]
17
- attr_accessor :app
47
+ include Contracts
18
48
 
19
- include ::Middleman::Sitemap::Queryable::API
49
+ # @return [Middleman::Application]
50
+ attr_reader :app
20
51
 
21
52
  # Initialize with parent app
22
53
  # @param [Middleman::Application] app
23
54
  def initialize(app)
24
55
  @app = app
25
56
  @resources = []
26
- @_cached_metadata = {}
57
+ # TODO: Should this be a set or hash?
27
58
  @resource_list_manipulators = []
28
59
  @needs_sitemap_rebuild = true
29
- @lock = Monitor.new
30
60
 
61
+ @lock = Monitor.new
31
62
  reset_lookup_cache!
32
63
 
33
- # Register classes which can manipulate the main site map list
34
- register_resource_list_manipulator(:on_disk, Middleman::Sitemap::Extensions::OnDisk.new(self))
35
-
36
- # Request Endpoints
37
- register_resource_list_manipulator(:request_endpoints, @app.endpoint_manager)
38
-
39
- # Proxies
40
- register_resource_list_manipulator(:proxies, @app.proxy_manager)
41
-
42
- # Redirects
43
- register_resource_list_manipulator(:redirects, @app.redirect_manager)
64
+ @app.config_context.class.send :def_delegator, :app, :sitemap
44
65
  end
45
66
 
46
- # Register a klass which can manipulate the main site map list. Best to register
47
- # these in a before_configuration or after_configuration hook.
67
+ # Register an object which can transform the sitemap resource list. Best to register
68
+ # these in a `before_configuration` or `after_configuration` hook.
48
69
  #
49
70
  # @param [Symbol] name Name of the manipulator for debugging
50
- # @param [Class, Module] inst Abstract namespace which can update the resource list
71
+ # @param [#manipulate_resource_list] manipulator Resource list manipulator
72
+ # @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.
51
73
  # @return [void]
52
- def register_resource_list_manipulator(name, inst, *)
53
- @resource_list_manipulators << [name, inst]
74
+ Contract Symbol, RespondTo['manipulate_resource_list'], Maybe[Num] => Any
75
+ def register_resource_list_manipulator(name, manipulator, priority=50)
76
+ # The third argument used to be a boolean - handle those who still pass one
77
+ priority = 50 unless priority.is_a? Numeric
78
+ @resource_list_manipulators << [name, manipulator, priority]
79
+ # The index trick is used so that the sort is stable - manipulators with the same priority
80
+ # will always be ordered in the same order as they were registered.
81
+ n = 0
82
+ @resource_list_manipulators = @resource_list_manipulators.sort_by do |m|
83
+ n += 1
84
+ [m[2], n]
85
+ end
54
86
  rebuild_resource_list!(:registered_new)
55
87
  end
56
88
 
57
- # Rebuild the list of resources from scratch, using registered manipulators
58
- # rubocop:disable UnusedMethodArgument
89
+ # Rebuild the list of resources from scratch, using registed manipulators
59
90
  # @return [void]
60
- def rebuild_resource_list!(reason=nil)
91
+ def rebuild_resource_list!(_=nil)
61
92
  @lock.synchronize do
62
93
  @needs_sitemap_rebuild = true
63
94
  end
@@ -66,6 +97,7 @@ module Middleman
66
97
  # Find a resource given its original path
67
98
  # @param [String] request_path The original path of a resource.
68
99
  # @return [Middleman::Sitemap::Resource]
100
+ Contract String => Maybe[IsA['Middleman::Sitemap::Resource']]
69
101
  def find_resource_by_path(request_path)
70
102
  @lock.synchronize do
71
103
  request_path = ::Middleman::Util.normalize_path(request_path)
@@ -77,6 +109,7 @@ module Middleman
77
109
  # Find a resource given its destination path
78
110
  # @param [String] request_path The destination (output) path of a resource.
79
111
  # @return [Middleman::Sitemap::Resource]
112
+ Contract String => Maybe[IsA['Middleman::Sitemap::Resource']]
80
113
  def find_resource_by_destination_path(request_path)
81
114
  @lock.synchronize do
82
115
  request_path = ::Middleman::Util.normalize_path(request_path)
@@ -88,6 +121,7 @@ module Middleman
88
121
  # Get the array of all resources
89
122
  # @param [Boolean] include_ignored Whether to include ignored resources
90
123
  # @return [Array<Middleman::Sitemap::Resource>]
124
+ Contract Bool => ResourceList
91
125
  def resources(include_ignored=false)
92
126
  @lock.synchronize do
93
127
  ensure_resource_list_updated!
@@ -99,106 +133,34 @@ module Middleman
99
133
  end
100
134
  end
101
135
 
102
- # Invalidate our cached view of resource that are not ignored. If your extension
136
+ # Invalidate our cached view of resource that are not ingnored. If your extension
103
137
  # adds ways to ignore files, you should call this to make sure #resources works right.
104
138
  def invalidate_resources_not_ignored_cache!
105
139
  @resources_not_ignored = nil
106
140
  end
107
141
 
108
- # Register a handler to provide metadata on a file path
109
- # @param [Regexp] matcher
110
- # @return [Array<Array<Proc, Regexp>>]
111
- def provides_metadata(matcher=nil, &block)
112
- @_provides_metadata ||= []
113
- @_provides_metadata << [block, matcher] if block_given?
114
- @_provides_metadata
115
- end
116
-
117
- # Get the metadata for a specific file
118
- # @param [String] source_file
119
- # @return [Hash]
120
- def metadata_for_file(source_file)
121
- blank_metadata = { options: {}, locals: {}, page: {}, blocks: [] }
122
-
123
- provides_metadata.reduce(blank_metadata) do |result, (callback, matcher)|
124
- next result if matcher && !source_file.match(matcher)
125
-
126
- metadata = callback.call(source_file).dup
127
-
128
- if metadata.key?(:blocks)
129
- result[:blocks] << metadata[:blocks]
130
- metadata.delete(:blocks)
131
- end
132
-
133
- result.deep_merge(metadata)
134
- end
135
- end
136
-
137
- # Register a handler to provide metadata on a url path
138
- # @param [Regexp] matcher
139
- # @return [Array<Array<Proc, Regexp>>]
140
- def provides_metadata_for_path(matcher=nil, &block)
141
- @_provides_metadata_for_path ||= []
142
- if block_given?
143
- @_provides_metadata_for_path << [block, matcher]
144
- @_cached_metadata = {}
145
- end
146
- @_provides_metadata_for_path
147
- end
148
-
149
- # Get the metadata for a specific URL
150
- # @param [String] request_path
151
- # @return [Hash]
152
- def metadata_for_path(request_path)
153
- return @_cached_metadata[request_path] if @_cached_metadata[request_path]
154
-
155
- blank_metadata = { options: {}, locals: {}, page: {}, blocks: [] }
156
-
157
- @_cached_metadata[request_path] = provides_metadata_for_path.reduce(blank_metadata) do |result, (callback, matcher)|
158
- case matcher
159
- when Regexp
160
- next result unless request_path =~ matcher
161
- when String
162
- next result unless File.fnmatch('/' + Util.strip_leading_slash(matcher), "/#{request_path}")
163
- end
164
-
165
- metadata = callback.call(request_path).dup
166
-
167
- result[:blocks] += Array(metadata.delete(:blocks))
168
-
169
- result.deep_merge(metadata)
170
- end
171
- end
172
-
173
142
  # Get the URL path for an on-disk file
174
143
  # @param [String] file
175
144
  # @return [String]
145
+ Contract IsA['Middleman::SourceFile'] => String
176
146
  def file_to_path(file)
177
- file = File.expand_path(file, @app.root)
178
-
179
- prefix = @app.source_dir.sub(/\/$/, '') + '/'
180
- return false unless file.start_with?(prefix)
181
-
182
- path = file.sub(prefix, '')
147
+ relative_path = file[:relative_path].to_s
183
148
 
184
149
  # Replace a file name containing automatic_directory_matcher with a folder
185
150
  unless @app.config[:automatic_directory_matcher].nil?
186
- path = path.gsub(@app.config[:automatic_directory_matcher], '/')
151
+ relative_path = relative_path.gsub(@app.config[:automatic_directory_matcher], '/')
187
152
  end
188
153
 
189
- extensionless_path(path)
154
+ extensionless_path(relative_path)
190
155
  end
191
156
 
192
157
  # Get a path without templating extensions
193
158
  # @param [String] file
194
159
  # @return [String]
160
+ Contract String => String
195
161
  def extensionless_path(file)
196
162
  path = file.dup
197
- path = remove_templating_extensions(path)
198
-
199
- # If there is no extension, look for one
200
- path = find_extension(path, file) if File.extname(strip_away_locale(path)).empty?
201
- path
163
+ remove_templating_extensions(path)
202
164
  end
203
165
 
204
166
  # Actually update the resource list, assuming anything has called
@@ -211,66 +173,51 @@ module Middleman
211
173
 
212
174
  @app.logger.debug '== Rebuilding resource list'
213
175
 
214
- @resources = []
215
-
216
- @resource_list_manipulators.each do |(_, inst)|
217
- @resources = inst.manipulate_resource_list(@resources)
176
+ @resources = @resource_list_manipulators.reduce([]) do |result, (_, manipulator, _)|
177
+ newres = manipulator.manipulate_resource_list(result)
218
178
 
219
179
  # Reset lookup cache
220
180
  reset_lookup_cache!
221
-
222
- @resources.each do |resource|
181
+ newres.each do |resource|
223
182
  @_lookup_by_path[resource.path] = resource
224
183
  @_lookup_by_destination_path[resource.destination_path] = resource
225
184
  end
226
185
 
227
- invalidate_resources_not_ignored_cache!
186
+ newres
228
187
  end
188
+
189
+ invalidate_resources_not_ignored_cache!
229
190
  end
230
191
  end
231
192
 
232
193
  private
233
194
 
234
195
  def reset_lookup_cache!
235
- @lock.synchronize do
196
+ @lock.synchronize {
236
197
  @_lookup_by_path = {}
237
198
  @_lookup_by_destination_path = {}
238
- end
199
+ }
239
200
  end
240
201
 
241
202
  # Removes the templating extensions, while keeping the others
242
203
  # @param [String] path
243
204
  # @return [String]
205
+ Contract String => String
244
206
  def remove_templating_extensions(path)
245
207
  # Strip templating extensions as long as Tilt knows them
246
- path = path.sub(/#{::Regexp.escape(File.extname(path))}$/, '') while ::Tilt[path]
208
+ path = path.sub(File.extname(path), '') while ::Tilt[path]
247
209
  path
248
210
  end
249
211
 
250
212
  # Remove the locale token from the end of the path
251
213
  # @param [String] path
252
214
  # @return [String]
215
+ Contract String => String
253
216
  def strip_away_locale(path)
254
- if @app.respond_to? :langs
217
+ if @app.extensions[:i18n]
255
218
  path_bits = path.split('.')
256
219
  lang = path_bits.last
257
- return path_bits[0..-2].join('.') if @app.langs.include?(lang.to_sym)
258
- end
259
-
260
- path
261
- end
262
-
263
- # Finds an extension for path according to file's extension
264
- # @param [String] path without extension
265
- # @param [String] file path with original extensions
266
- def find_extension(path, file)
267
- input_ext = File.extname(file)
268
-
269
- unless input_ext.empty?
270
- input_ext = input_ext.split('.').last.to_sym
271
- if @app.template_extensions.key?(input_ext)
272
- path << ".#{@app.template_extensions[input_ext]}"
273
- end
220
+ return path_bits[0..-2].join('.') if @app.extensions[:i18n].langs.include?(lang.to_sym)
274
221
  end
275
222
 
276
223
  path
@@ -0,0 +1,310 @@
1
+ require 'middleman-core/contracts'
2
+
3
+ module Middleman
4
+ # The standard "record" that contains information about a file on disk.
5
+ SourceFile = Struct.new :relative_path, :full_path, :directory, :type
6
+
7
+ # Sources handle multiple on-disk collections of files which make up
8
+ # a Middleman project. They are separated by `type` which can then be
9
+ # queried. For example, the `source` type represents all content that
10
+ # the sitemap uses to build a project. The `data` type represents YAML
11
+ # data. The `locales` type represents localization YAML, and so on.
12
+ class Sources
13
+ extend Forwardable
14
+ include Contracts
15
+
16
+ # A reference to the current app.
17
+ Contract None => IsA['Middleman::Application']
18
+ attr_reader :app
19
+
20
+ # Duck-typed definition of a valid source watcher
21
+ HANDLER = RespondTo[:changed]
22
+
23
+ # Config
24
+ Contract None => Hash
25
+ attr_reader :options
26
+
27
+ # Reference to the global logger.
28
+ def_delegator :@app, :logger
29
+
30
+ # Built-in types
31
+ # :source, :data, :locales, :reload
32
+
33
+ # Create a new collection of sources.
34
+ #
35
+ # @param [Middleman::Application] app The parent app.
36
+ # @param [Hash] options Global options.
37
+ # @param [Array] watchers Default watchers.
38
+ Contract IsA['Middleman::Application'], Maybe[Hash], Maybe[Array] => Any
39
+ def initialize(app, options={}, watchers=[])
40
+ @app = app
41
+ @watchers = watchers
42
+ @sorted_watchers = @watchers.dup.freeze
43
+
44
+ @options = options
45
+
46
+ # Set of procs wanting to be notified of changes
47
+ @on_change_callbacks = []
48
+
49
+ # Global ignores
50
+ @ignores = {}
51
+
52
+ # Whether we're "running", which means we're in a stable
53
+ # watch state after all initialization and config.
54
+ @running = false
55
+
56
+ @update_count = 0
57
+ @last_update_count = -1
58
+
59
+ # When the app is about to shut down, stop our watchers.
60
+ @app.before_shutdown(&method(:stop!))
61
+ end
62
+
63
+ # Add a proc to ignore paths with either a regex or block.
64
+ #
65
+ # @param [Symbol] name A name for the ignore.
66
+ # @param [Symbol] type The type of content to apply the ignore to.
67
+ # @param [Regexp] regex Ignore by path regex.
68
+ # @param [Proc] block Ignore by block evaluation.
69
+ # @return [void]
70
+ Contract Symbol, Symbol, Or[Regexp, Proc] => Any
71
+ def ignore(name, type, regex=nil, &block)
72
+ @ignores[name] = { type: type, validator: (block_given? ? block : regex) }
73
+
74
+ bump_count
75
+ find_new_files! if @running
76
+ end
77
+
78
+ # Whether this path is ignored.
79
+ #
80
+ # @param [Middleman::SourceFile] file The file to check.
81
+ # @return [Boolean]
82
+ Contract SourceFile => Bool
83
+ def globally_ignored?(file)
84
+ @ignores.values.any? do |descriptor|
85
+ ((descriptor[:type] == :all) || (file[:type] == descriptor[:type])) &&
86
+ matches?(descriptor[:validator], file)
87
+ end
88
+ end
89
+
90
+ # Connect a new watcher. Can either be a type with options, which will
91
+ # create a `SourceWatcher` or you can pass in an instantiated class which
92
+ # responds to #changed and #deleted
93
+ #
94
+ # @param [Symbol, #changed, #deleted] type_or_handler The handler.
95
+ # @param [Hash] options The watcher options.
96
+ # @return [#changed, #deleted]
97
+ Contract Or[Symbol, HANDLER], Maybe[Hash] => HANDLER
98
+ def watch(type_or_handler, options={})
99
+ handler = if type_or_handler.is_a? Symbol
100
+ SourceWatcher.new(self, type_or_handler, options.delete(:path), options)
101
+ else
102
+ type_or_handler
103
+ end
104
+
105
+ @watchers << handler
106
+
107
+ # The index trick is used so that the sort is stable - watchers with the same priority
108
+ # will always be ordered in the same order as they were registered.
109
+ n = 0
110
+ @sorted_watchers = @watchers.sort_by do |w|
111
+ priority = w.options.fetch(:priority, 50)
112
+ n += 1
113
+ [priority, n]
114
+ end.reverse.freeze
115
+
116
+ handler.changed(&method(:did_change))
117
+
118
+ if @running
119
+ handler.poll_once!
120
+ handler.listen!
121
+ end
122
+
123
+ handler
124
+ end
125
+
126
+ # A list of registered watchers
127
+ Contract None => ArrayOf[HANDLER]
128
+ def watchers
129
+ @sorted_watchers
130
+ end
131
+
132
+ # Disconnect a specific watcher.
133
+ #
134
+ # @param [SourceWatcher] watcher The watcher to remove.
135
+ # @return [void]
136
+ Contract RespondTo[:changed] => Any
137
+ def unwatch(watcher)
138
+ @watchers.delete(watcher)
139
+
140
+ watcher.unwatch
141
+
142
+ bump_count
143
+ end
144
+
145
+ # Filter the collection of watchers by a type.
146
+ #
147
+ # @param [Symbol] type The watcher type.
148
+ # @return [Middleman::Sources]
149
+ Contract Symbol => ::Middleman::Sources
150
+ def by_type(type)
151
+ self.class.new @app, @options, watchers.select { |d| d.type == type }
152
+ end
153
+
154
+ # Get all files for this collection of watchers.
155
+ #
156
+ # @return [Array<Middleman::SourceFile>]
157
+ Contract None => ArrayOf[SourceFile]
158
+ def files
159
+ watchers.map(&:files).flatten.uniq { |f| f[:relative_path] }
160
+ end
161
+
162
+ # Find a file given a type and path.
163
+ #
164
+ # @param [Symbol] type The file "type".
165
+ # @param [String] path The file path.
166
+ # @param [Boolean] glob If the path contains wildcard or glob characters.
167
+ # @return [Middleman::SourceFile, nil]
168
+ Contract Symbol, String, Maybe[Bool] => Maybe[SourceFile]
169
+ def find(type, path, glob=false)
170
+ watchers
171
+ .select { |d| d.type == type }
172
+ .map { |d| d.find(path, glob) }
173
+ .compact
174
+ .first
175
+ end
176
+
177
+ # Check if a file for a given type exists.
178
+ #
179
+ # @param [Symbol] type The file "type".
180
+ # @param [String] path The file path relative to it's source root.
181
+ # @return [Boolean]
182
+ Contract Symbol, String => Bool
183
+ def exists?(type, path)
184
+ watchers
185
+ .select { |d| d.type == type }
186
+ .any? { |d| d.exists?(path) }
187
+ end
188
+
189
+ # Check if a file for a given type exists.
190
+ #
191
+ # @param [Symbol] type The file "type".
192
+ # @param [String] path The file path relative to it's source root.
193
+ # @return [Boolean]
194
+ Contract Symbol, String => Maybe[HANDLER]
195
+ def watcher_for_path(type, path)
196
+ watchers
197
+ .select { |d| d.type == type }
198
+ .find { |d| d.exists?(path) }
199
+ end
200
+
201
+ # Manually poll all watchers for new content.
202
+ #
203
+ # @return [void]
204
+ Contract None => Any
205
+ def find_new_files!
206
+ return unless @update_count != @last_update_count
207
+
208
+ @last_update_count = @update_count
209
+ watchers.each(&:poll_once!)
210
+ end
211
+
212
+ # Start up all listeners.
213
+ #
214
+ # @return [void]
215
+ Contract None => Any
216
+ def start!
217
+ watchers.each(&:listen!)
218
+ @running = true
219
+ end
220
+
221
+ # Stop the watchers.
222
+ #
223
+ # @return [void]
224
+ Contract None => Any
225
+ def stop!
226
+ watchers.each(&:stop_listener!)
227
+ @running = false
228
+ end
229
+
230
+ # A callback requires a type and the proc to execute.
231
+ CallbackDescriptor = Struct.new :type, :proc
232
+
233
+ # Add callback to be run on file change
234
+ #
235
+ # @param [nil,Regexp] matcher A Regexp to match the change path against
236
+ # @return [Set<CallbackDescriptor>]
237
+ Contract Symbol, Proc => ArrayOf[CallbackDescriptor]
238
+ def changed(type, &block)
239
+ @on_change_callbacks << CallbackDescriptor.new(type, block)
240
+ @on_change_callbacks
241
+ end
242
+
243
+ protected
244
+
245
+ # Whether a validator matches a file.
246
+ #
247
+ # @param [Regexp, #call] validator The match validator.
248
+ # @param [Middleman::SourceFile] file The file to check.
249
+ # @return [Boolean]
250
+ Contract Or[Regexp, RespondTo[:call]], SourceFile => Bool
251
+ def matches?(validator, file)
252
+ path = file[:relative_path]
253
+ if validator.is_a? Regexp
254
+ !!validator.match(path.to_s)
255
+ else
256
+ !!validator.call(path, @app)
257
+ end
258
+ end
259
+
260
+ # Increment the internal counter for changes.
261
+ #
262
+ # @return [void]
263
+ Contract None => Any
264
+ def bump_count
265
+ @update_count += 1
266
+ end
267
+
268
+ # Notify callbacks that a file changed
269
+ #
270
+ # @param [Middleman::SourceFile] file The file that changed
271
+ # @return [void]
272
+ Contract ArrayOf[SourceFile], ArrayOf[SourceFile], HANDLER => Any
273
+ def did_change(updated_files, removed_files, watcher)
274
+ valid_updated = updated_files.select do |file|
275
+ watcher_for_path(file[:type], file[:relative_path].to_s) == watcher
276
+ end
277
+
278
+ valid_removed = removed_files.select do |file|
279
+ watcher_for_path(file[:type], file[:relative_path].to_s).nil?
280
+ end
281
+
282
+ return if valid_updated.empty? && valid_removed.empty?
283
+
284
+ bump_count
285
+ run_callbacks(@on_change_callbacks, valid_updated, valid_removed)
286
+ end
287
+
288
+ # Notify callbacks for a file given a set of callbacks
289
+ #
290
+ # @param [Set] callback_descriptors The registered callbacks.
291
+ # @param [Array<Middleman::SourceFile>] files The files that were changed.
292
+ # @return [void]
293
+ Contract ArrayOf[CallbackDescriptor], ArrayOf[SourceFile], ArrayOf[SourceFile] => Any
294
+ def run_callbacks(callback_descriptors, updated_files, removed_files)
295
+ callback_descriptors.each do |callback|
296
+ if callback[:type] == :all
297
+ callback[:proc].call(updated_files, removed_files)
298
+ else
299
+ valid_updated = updated_files.select { |f| callback[:type] == f[:type] }
300
+ valid_removed = removed_files.select { |f| callback[:type] == f[:type] }
301
+
302
+ callback[:proc].call(valid_updated, valid_removed)
303
+ end
304
+ end
305
+ end
306
+ end
307
+ end
308
+
309
+ # And, require the actual default implementation for a watcher.
310
+ require 'middleman-core/sources/source_watcher.rb'