middleman-core 4.4.3 → 5.0.0.rc.1

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