middleman-core 4.4.0 → 5.0.0.rc.1

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