middleman-core 4.5.1 → 5.0.0.rc.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1201) hide show
  1. checksums.yaml +4 -4
  2. data/.simplecov +2 -2
  3. data/cucumber.yml +2 -2
  4. data/lib/middleman-core/application.rb +22 -24
  5. data/lib/middleman-core/builder.rb +221 -85
  6. data/lib/middleman-core/callback_manager.rb +1 -1
  7. data/lib/middleman-core/config_context.rb +3 -3
  8. data/lib/middleman-core/configuration.rb +20 -8
  9. data/lib/middleman-core/contracts.rb +38 -3
  10. data/lib/middleman-core/core_extensions/collections/lazy_root.rb +1 -1
  11. data/lib/middleman-core/core_extensions/collections/lazy_step.rb +9 -9
  12. data/lib/middleman-core/core_extensions/collections/pagination.rb +6 -7
  13. data/lib/middleman-core/core_extensions/collections.rb +7 -9
  14. data/lib/middleman-core/core_extensions/data/controller.rb +109 -0
  15. data/lib/middleman-core/core_extensions/data/proxies/array.rb +74 -0
  16. data/lib/middleman-core/core_extensions/data/proxies/base.rb +82 -0
  17. data/lib/middleman-core/core_extensions/data/proxies/hash.rb +32 -0
  18. data/lib/middleman-core/core_extensions/data/stores/base.rb +42 -0
  19. data/lib/middleman-core/core_extensions/data/stores/in_memory.rb +52 -0
  20. data/lib/middleman-core/core_extensions/data/stores/local_file.rb +92 -0
  21. data/lib/middleman-core/core_extensions/data.rb +33 -204
  22. data/lib/middleman-core/core_extensions/default_helpers.rb +37 -46
  23. data/lib/middleman-core/core_extensions/external_helpers.rb +1 -1
  24. data/lib/middleman-core/core_extensions/file_watcher.rb +2 -4
  25. data/lib/middleman-core/core_extensions/front_matter.rb +28 -17
  26. data/lib/middleman-core/core_extensions/i18n.rb +55 -51
  27. data/lib/middleman-core/core_extensions/rendering.rb +6 -0
  28. data/lib/middleman-core/core_extensions/routing.rb +21 -18
  29. data/lib/middleman-core/core_extensions.rb +3 -9
  30. data/lib/middleman-core/data_proxy.rb +69 -0
  31. data/lib/middleman-core/dependencies/edge.rb +27 -0
  32. data/lib/middleman-core/dependencies/graph.rb +144 -0
  33. data/lib/middleman-core/dependencies/vertices/data_collection_path_vertex.rb +78 -0
  34. data/lib/middleman-core/dependencies/vertices/data_collection_vertex.rb +67 -0
  35. data/lib/middleman-core/dependencies/vertices/file_vertex.rb +65 -0
  36. data/lib/middleman-core/dependencies/vertices/vertex.rb +82 -0
  37. data/lib/middleman-core/dependencies/vertices.rb +18 -0
  38. data/lib/middleman-core/dependencies.rb +131 -0
  39. data/lib/middleman-core/dns_resolver/basic_network_resolver.rb +6 -4
  40. data/lib/middleman-core/dns_resolver/hosts_resolver.rb +2 -2
  41. data/lib/middleman-core/dns_resolver/local_link_resolver.rb +3 -3
  42. data/lib/middleman-core/dns_resolver/network_resolver.rb +2 -2
  43. data/lib/middleman-core/dns_resolver.rb +7 -5
  44. data/lib/middleman-core/extension.rb +39 -42
  45. data/lib/middleman-core/extension_manager.rb +8 -4
  46. data/lib/middleman-core/extensions/asset_hash.rb +48 -52
  47. data/lib/middleman-core/extensions/asset_host.rb +30 -18
  48. data/lib/middleman-core/extensions/automatic_alt_tags.rb +6 -4
  49. data/lib/middleman-core/extensions/automatic_image_sizes.rb +9 -7
  50. data/lib/middleman-core/extensions/cache_buster.rb +21 -8
  51. data/lib/middleman-core/extensions/directory_indexes.rb +14 -14
  52. data/lib/middleman-core/extensions/external_pipeline.rb +15 -11
  53. data/lib/middleman-core/extensions/gzip.rb +16 -11
  54. data/lib/middleman-core/extensions/lorem.rb +15 -14
  55. data/lib/middleman-core/extensions/minify_css.rb +58 -96
  56. data/lib/middleman-core/extensions/minify_javascript.rb +65 -109
  57. data/lib/middleman-core/extensions/relative_assets.rb +30 -19
  58. data/lib/middleman-core/extensions.rb +14 -16
  59. data/lib/middleman-core/file_renderer.rb +20 -24
  60. data/lib/middleman-core/filter.rb +56 -0
  61. data/lib/middleman-core/inline_url_filter.rb +76 -0
  62. data/lib/middleman-core/load_paths.rb +13 -14
  63. data/lib/middleman-core/logger.rb +6 -13
  64. data/lib/middleman-core/meta_pages/sitemap_resource.rb +0 -2
  65. data/lib/middleman-core/meta_pages/sitemap_tree.rb +1 -1
  66. data/lib/middleman-core/meta_pages.rb +2 -2
  67. data/lib/middleman-core/preview_server/checks.rb +15 -4
  68. data/lib/middleman-core/preview_server/information.rb +22 -23
  69. data/lib/middleman-core/preview_server/network_interface_inventory.rb +3 -3
  70. data/lib/middleman-core/preview_server/server_information.rb +5 -5
  71. data/lib/middleman-core/preview_server/server_information_callback_proxy.rb +1 -1
  72. data/lib/middleman-core/preview_server/server_ip_address.rb +15 -6
  73. data/lib/middleman-core/preview_server/server_url.rb +39 -11
  74. data/lib/middleman-core/preview_server/tcp_port_prober.rb +1 -1
  75. data/lib/middleman-core/preview_server.rb +37 -31
  76. data/lib/middleman-core/rack.rb +7 -12
  77. data/lib/middleman-core/renderers/coffee_script.rb +2 -2
  78. data/lib/middleman-core/renderers/erb.rb +1 -1
  79. data/lib/middleman-core/renderers/haml.rb +11 -45
  80. data/lib/middleman-core/renderers/kramdown.rb +0 -4
  81. data/lib/middleman-core/renderers/less.rb +1 -1
  82. data/lib/middleman-core/renderers/liquid.rb +9 -12
  83. data/lib/middleman-core/renderers/markdown.rb +8 -10
  84. data/lib/middleman-core/renderers/redcarpet.rb +3 -4
  85. data/lib/middleman-core/renderers/sass.rb +20 -7
  86. data/lib/middleman-core/renderers/sass_functions.rb +14 -8
  87. data/lib/middleman-core/renderers/slim.rb +2 -2
  88. data/lib/middleman-core/renderers/stylus.rb +10 -0
  89. data/lib/middleman-core/sitemap/extensions/ignores.rb +5 -9
  90. data/lib/middleman-core/sitemap/extensions/import.rb +16 -17
  91. data/lib/middleman-core/sitemap/extensions/move_file.rb +7 -5
  92. data/lib/middleman-core/sitemap/extensions/on_disk.rb +10 -9
  93. data/lib/middleman-core/sitemap/extensions/proxies.rb +27 -20
  94. data/lib/middleman-core/sitemap/extensions/redirects.rb +4 -4
  95. data/lib/middleman-core/sitemap/extensions/request_endpoints.rb +4 -5
  96. data/lib/middleman-core/sitemap/extensions/traversal.rb +75 -29
  97. data/lib/middleman-core/sitemap/resource.rb +169 -54
  98. data/lib/middleman-core/sitemap/resource_list_container.rb +248 -0
  99. data/lib/middleman-core/sitemap/store.rb +29 -103
  100. data/lib/middleman-core/sources/source_watcher.rb +27 -21
  101. data/lib/middleman-core/sources.rb +40 -27
  102. data/lib/middleman-core/step_definitions/builder_steps.rb +73 -12
  103. data/lib/middleman-core/step_definitions/commandline_steps.rb +10 -6
  104. data/lib/middleman-core/step_definitions/middleman_steps.rb +24 -14
  105. data/lib/middleman-core/step_definitions/server_steps.rb +19 -18
  106. data/lib/middleman-core/template_context.rb +55 -23
  107. data/lib/middleman-core/template_renderer.rb +68 -42
  108. data/lib/middleman-core/util/binary.rb +307 -3
  109. data/lib/middleman-core/util/data.rb +14 -50
  110. data/lib/middleman-core/util/empty_hash.rb +3 -0
  111. data/lib/middleman-core/util/files.rb +35 -9
  112. data/lib/middleman-core/util/paths.rb +75 -70
  113. data/lib/middleman-core/util/rack.rb +8 -7
  114. data/lib/middleman-core/util/uri_templates.rb +2 -5
  115. data/lib/middleman-core/util.rb +2 -4
  116. data/lib/middleman-core/version.rb +1 -1
  117. data/lib/middleman-core.rb +5 -3
  118. data/middleman-core.gemspec +16 -16
  119. metadata +74 -1161
  120. data/features/asset_hash.feature +0 -340
  121. data/features/asset_host.feature +0 -55
  122. data/features/auto_layout.feature +0 -36
  123. data/features/automatic_alt_tags.feature +0 -8
  124. data/features/automatic_directory_matcher.feature +0 -32
  125. data/features/automatic_image_sizes.feature +0 -29
  126. data/features/builder.feature +0 -61
  127. data/features/cache_buster.feature +0 -56
  128. data/features/capture_html.feature +0 -18
  129. data/features/chained_templates.feature +0 -109
  130. data/features/clean_build.feature +0 -78
  131. data/features/coffee-script.feature +0 -22
  132. data/features/collections.feature +0 -265
  133. data/features/console.feature +0 -11
  134. data/features/content_for.feature +0 -16
  135. data/features/content_type.feature +0 -46
  136. data/features/custom-source.feature +0 -7
  137. data/features/custom_layout_engines.feature +0 -8
  138. data/features/custom_layouts.feature +0 -84
  139. data/features/data.feature +0 -111
  140. data/features/default-layout.feature +0 -90
  141. data/features/default_alt_tag.feature +0 -11
  142. data/features/directory_index.feature +0 -82
  143. data/features/dynamic_pages.feature +0 -136
  144. data/features/encoding_option.feature +0 -28
  145. data/features/extension_api_deprecations.feature +0 -10
  146. data/features/extension_hooks.feature +0 -13
  147. data/features/extensionless_text_files.feature +0 -24
  148. data/features/feature_params.feature +0 -6
  149. data/features/former_padrino_helpers.feature +0 -27
  150. data/features/front-matter-neighbor.feature +0 -157
  151. data/features/front-matter.feature +0 -87
  152. data/features/frontmatter_page_settings.feature +0 -43
  153. data/features/gzip.feature +0 -51
  154. data/features/helpers_auto_javascript_include_tag.feature +0 -53
  155. data/features/helpers_auto_stylesheet_link_tag.feature +0 -48
  156. data/features/helpers_content_tag.feature +0 -16
  157. data/features/helpers_external.feature +0 -12
  158. data/features/helpers_form_tag.feature +0 -26
  159. data/features/helpers_link_to.feature +0 -195
  160. data/features/helpers_lorem.feature +0 -6
  161. data/features/helpers_page_classes.feature +0 -32
  162. data/features/helpers_select_tag.feature +0 -17
  163. data/features/helpers_url_for.feature +0 -152
  164. data/features/i18n_builder.feature +0 -166
  165. data/features/i18n_force_locale.feature +0 -13
  166. data/features/i18n_link_to.feature +0 -307
  167. data/features/i18n_mixed_sources.feature +0 -39
  168. data/features/i18n_partials.feature +0 -23
  169. data/features/i18n_preview.feature +0 -252
  170. data/features/ignore.feature +0 -206
  171. data/features/ignore_already_minified.feature +0 -47
  172. data/features/image_srcset_paths.feature +0 -7
  173. data/features/import_files.feature +0 -15
  174. data/features/layouts_dir.feature +0 -38
  175. data/features/liquid.feature +0 -14
  176. data/features/markdown.feature +0 -23
  177. data/features/markdown_kramdown.feature +0 -55
  178. data/features/markdown_kramdown_in_haml.feature +0 -42
  179. data/features/markdown_kramdown_in_slim.feature +0 -42
  180. data/features/markdown_redcarpet.feature +0 -167
  181. data/features/markdown_redcarpet_in_haml.feature +0 -41
  182. data/features/markdown_redcarpet_in_slim.feature +0 -41
  183. data/features/minify_css.feature +0 -205
  184. data/features/minify_javascript.feature +0 -266
  185. data/features/missing-tilt-lib.feature +0 -20
  186. data/features/more-clean_build.feature +0 -14
  187. data/features/more-extensionless_text_files.feature +0 -28
  188. data/features/more-frontmatter_page_settings.feature +0 -42
  189. data/features/more-ignore.feature +0 -62
  190. data/features/more-sitemap_traversal.feature +0 -83
  191. data/features/more-wildcard_page_helper.feature +0 -10
  192. data/features/mount_rack.feature +0 -65
  193. data/features/move_files.feature +0 -44
  194. data/features/multiple-sources.feature +0 -35
  195. data/features/nested_layouts.feature +0 -58
  196. data/features/page-id.feature +0 -74
  197. data/features/paginate.feature +0 -204
  198. data/features/partials.feature +0 -64
  199. data/features/preview_changes.feature +0 -29
  200. data/features/proxy_pages.feature +0 -84
  201. data/features/redirects.feature +0 -61
  202. data/features/relative_assets.feature +0 -148
  203. data/features/relative_assets_helpers_only.feature +0 -125
  204. data/features/sass-assets-paths.feature +0 -11
  205. data/features/sass_in_slim.feature +0 -40
  206. data/features/sass_partials.feature +0 -54
  207. data/features/scss-support.feature +0 -17
  208. data/features/sitemap_traversal.feature +0 -83
  209. data/features/slim.feature +0 -81
  210. data/features/strip_url.feature +0 -40
  211. data/features/support/env.rb +0 -12
  212. data/features/support/preserve_mime_types.rb +0 -7
  213. data/features/template-key-collision.feature +0 -26
  214. data/features/tilde_directories.feature +0 -14
  215. data/features/unicode_filecontents.feature +0 -13
  216. data/features/unicode_filenames.feature +0 -36
  217. data/features/v4_extension_callbacks.feature +0 -8
  218. data/features/wildcard_page_helper.feature +0 -10
  219. data/fixtures/asset-hash-app/config.rb +0 -6
  220. data/fixtures/asset-hash-app/lib/middleware.rb +0 -16
  221. data/fixtures/asset-hash-app/source/api.json.erb +0 -1
  222. data/fixtures/asset-hash-app/source/apple-touch-icon.png +0 -0
  223. data/fixtures/asset-hash-app/source/favicon.ico +0 -0
  224. data/fixtures/asset-hash-app/source/fonts/fontawesome-webfont.woff +0 -0
  225. data/fixtures/asset-hash-app/source/fonts/fontawesome-webfont.woff2 +0 -0
  226. data/fixtures/asset-hash-app/source/images/100px.gif +0 -0
  227. data/fixtures/asset-hash-app/source/images/100px.jpg +0 -0
  228. data/fixtures/asset-hash-app/source/images/100px.png +0 -0
  229. data/fixtures/asset-hash-app/source/images/200px.jpg +0 -0
  230. data/fixtures/asset-hash-app/source/images/300px.jpg +0 -0
  231. data/fixtures/asset-hash-app/source/index.html.erb +0 -314
  232. data/fixtures/asset-hash-app/source/javascripts/application.js +0 -8
  233. data/fixtures/asset-hash-app/source/layout.erb +0 -18
  234. data/fixtures/asset-hash-app/source/other.html.erb +0 -5
  235. data/fixtures/asset-hash-app/source/partials.html.erb +0 -1
  236. data/fixtures/asset-hash-app/source/slim.html.slim +0 -8
  237. data/fixtures/asset-hash-app/source/stylesheets/_partial.sass +0 -2
  238. data/fixtures/asset-hash-app/source/stylesheets/fragment.css.scss +0 -7
  239. data/fixtures/asset-hash-app/source/stylesheets/site.css.scss +0 -4
  240. data/fixtures/asset-hash-app/source/stylesheets/uses_fonts.css +0 -4
  241. data/fixtures/asset-hash-app/source/stylesheets/uses_partials.css.sass +0 -4
  242. data/fixtures/asset-hash-app/source/subdir/api.json.erb +0 -1
  243. data/fixtures/asset-hash-app/source/subdir/index.html.erb +0 -317
  244. data/fixtures/asset-hash-host-app/source/images/100px.gif +0 -0
  245. data/fixtures/asset-hash-host-app/source/images/100px.jpg +0 -0
  246. data/fixtures/asset-hash-host-app/source/images/100px.png +0 -0
  247. data/fixtures/asset-hash-host-app/source/index.html.erb +0 -9
  248. data/fixtures/asset-hash-host-app/source/layout.erb +0 -17
  249. data/fixtures/asset-hash-host-app/source/other.html.erb +0 -5
  250. data/fixtures/asset-hash-host-app/source/stylesheets/fragment.css.scss +0 -7
  251. data/fixtures/asset-hash-host-app/source/stylesheets/site.css.scss +0 -4
  252. data/fixtures/asset-hash-host-app/source/subdir/index.html.erb +0 -6
  253. data/fixtures/asset-hash-minified-app/config.rb +0 -5
  254. data/fixtures/asset-hash-minified-app/source/images/100px.jpg +0 -0
  255. data/fixtures/asset-hash-minified-app/source/javascripts/jquery.min.js +0 -5
  256. data/fixtures/asset-hash-minified-app/source/stylesheets/test.css +0 -3
  257. data/fixtures/asset-hash-prefix/config.rb +0 -7
  258. data/fixtures/asset-hash-prefix/lib/middleware.rb +0 -16
  259. data/fixtures/asset-hash-prefix/source/index.html.erb +0 -6
  260. data/fixtures/asset-hash-prefix/source/javascripts/application.js +0 -2
  261. data/fixtures/asset-hash-prefix/source/javascripts/application.js.map +0 -1
  262. data/fixtures/asset-hash-prefix/source/layout.erb +0 -17
  263. data/fixtures/asset-hash-remove-filename/config.rb +0 -9
  264. data/fixtures/asset-hash-remove-filename/source/index.html.erb +0 -6
  265. data/fixtures/asset-hash-remove-filename/source/javascripts/application.js +0 -2
  266. data/fixtures/asset-hash-remove-filename/source/javascripts/application.js.map +0 -1
  267. data/fixtures/asset-hash-remove-filename/source/layout.erb +0 -17
  268. data/fixtures/asset-hash-source-map/config.rb +0 -6
  269. data/fixtures/asset-hash-source-map/lib/middleware.rb +0 -16
  270. data/fixtures/asset-hash-source-map/source/index.html.erb +0 -6
  271. data/fixtures/asset-hash-source-map/source/javascripts/application.js +0 -2
  272. data/fixtures/asset-hash-source-map/source/javascripts/application.js.map +0 -1
  273. data/fixtures/asset-hash-source-map/source/layout.erb +0 -17
  274. data/fixtures/asset-host-app/config.rb +0 -1
  275. data/fixtures/asset-host-app/source/.htaccess +0 -1
  276. data/fixtures/asset-host-app/source/asset_host.html.erb +0 -55
  277. data/fixtures/asset-host-app/source/images/blank.gif +0 -0
  278. data/fixtures/asset-host-app/source/images/blank0.gif +0 -0
  279. data/fixtures/asset-host-app/source/images/blank1.gif +0 -0
  280. data/fixtures/asset-host-app/source/images/blank10.gif +0 -0
  281. data/fixtures/asset-host-app/source/images/blank100.gif +0 -0
  282. data/fixtures/asset-host-app/source/images/blank101.gif +0 -0
  283. data/fixtures/asset-host-app/source/images/blank1010.gif +0 -0
  284. data/fixtures/asset-host-app/source/images/blank102.gif +0 -0
  285. data/fixtures/asset-host-app/source/images/blank1020.gif +0 -0
  286. data/fixtures/asset-host-app/source/images/blank1021.gif +0 -0
  287. data/fixtures/asset-host-app/source/images/blank1022.gif +0 -0
  288. data/fixtures/asset-host-app/source/images/blank1023.gif +0 -0
  289. data/fixtures/asset-host-app/source/images/blank1024.gif +0 -0
  290. data/fixtures/asset-host-app/source/images/blank103.gif +0 -0
  291. data/fixtures/asset-host-app/source/images/blank1030.gif +0 -0
  292. data/fixtures/asset-host-app/source/images/blank1031.gif +0 -0
  293. data/fixtures/asset-host-app/source/images/blank1032.gif +0 -0
  294. data/fixtures/asset-host-app/source/images/blank1033.gif +0 -0
  295. data/fixtures/asset-host-app/source/images/blank1034.gif +0 -0
  296. data/fixtures/asset-host-app/source/images/blank104.gif +0 -0
  297. data/fixtures/asset-host-app/source/images/blank1043.gif +0 -0
  298. data/fixtures/asset-host-app/source/images/blank1054.gif +0 -0
  299. data/fixtures/asset-host-app/source/images/blank2.gif +0 -0
  300. data/fixtures/asset-host-app/source/images/blank20.gif +0 -0
  301. data/fixtures/asset-host-app/source/images/blank21.gif +0 -0
  302. data/fixtures/asset-host-app/source/images/blank22.gif +0 -0
  303. data/fixtures/asset-host-app/source/images/blank23.gif +0 -0
  304. data/fixtures/asset-host-app/source/images/blank24.gif +0 -0
  305. data/fixtures/asset-host-app/source/images/blank3.gif +0 -0
  306. data/fixtures/asset-host-app/source/images/blank30.gif +0 -0
  307. data/fixtures/asset-host-app/source/images/blank31.gif +0 -0
  308. data/fixtures/asset-host-app/source/images/blank32.gif +0 -0
  309. data/fixtures/asset-host-app/source/images/blank33.gif +0 -0
  310. data/fixtures/asset-host-app/source/images/blank34.gif +0 -0
  311. data/fixtures/asset-host-app/source/images/blank4.gif +0 -0
  312. data/fixtures/asset-host-app/source/images/blank43.gif +0 -0
  313. data/fixtures/asset-host-app/source/images/blank54.gif +0 -0
  314. data/fixtures/asset-host-app/source/javascripts/asset_host.js +0 -2
  315. data/fixtures/asset-host-app/source/stylesheets/asset_host.css.sass +0 -48
  316. data/fixtures/auto-css-app/config.rb +0 -9
  317. data/fixtures/auto-css-app/source/auto-css/auto-css.html.erb +0 -1
  318. data/fixtures/auto-css-app/source/auto-css/index.html.erb +0 -1
  319. data/fixtures/auto-css-app/source/auto-css/sub/auto-css.html.erb +0 -1
  320. data/fixtures/auto-css-app/source/auto-css.html.erb +0 -1
  321. data/fixtures/auto-css-app/source/stylesheets/auto-css/auto-css.css +0 -3
  322. data/fixtures/auto-css-app/source/stylesheets/auto-css/index.css +0 -0
  323. data/fixtures/auto-css-app/source/stylesheets/auto-css/sub/auto-css.css +0 -3
  324. data/fixtures/auto-css-app/source/stylesheets/auto-css.css +0 -3
  325. data/fixtures/auto-js-app/config.rb +0 -9
  326. data/fixtures/auto-js-app/source/auto-js/auto-js.html.erb +0 -1
  327. data/fixtures/auto-js-app/source/auto-js/index.html.erb +0 -1
  328. data/fixtures/auto-js-app/source/auto-js/sub/auto-js.html.erb +0 -1
  329. data/fixtures/auto-js-app/source/auto-js.html.erb +0 -1
  330. data/fixtures/auto-js-app/source/javascripts/auto-js/auto-js.js +0 -1
  331. data/fixtures/auto-js-app/source/javascripts/auto-js/index.js +0 -1
  332. data/fixtures/auto-js-app/source/javascripts/auto-js/sub/auto-js.js +0 -1
  333. data/fixtures/auto-js-app/source/javascripts/auto-js.js +0 -1
  334. data/fixtures/auto-js-directory-index-app/config.rb +0 -1
  335. data/fixtures/auto-js-directory-index-app/source/auto-js.html.erb +0 -1
  336. data/fixtures/auto-js-directory-index-app/source/javascripts/auto-js.js +0 -1
  337. data/fixtures/automatic-alt-tags-app/config.rb +0 -0
  338. data/fixtures/automatic-alt-tags-app/source/auto-image-sizes.html.erb +0 -1
  339. data/fixtures/automatic-alt-tags-app/source/images/blank.gif +0 -0
  340. data/fixtures/automatic-directory-matcher-app/config.rb +0 -1
  341. data/fixtures/automatic-directory-matcher-app/source/root-plain.html +0 -1
  342. data/fixtures/automatic-directory-matcher-app/source/root.html.erb +0 -1
  343. data/fixtures/automatic-directory-matcher-app/source/sub--sub--sub-plain.html +0 -1
  344. data/fixtures/automatic-directory-matcher-app/source/sub--sub--sub.html.erb +0 -1
  345. data/fixtures/automatic-directory-matcher-app/source/sub--sub-plain.html +0 -1
  346. data/fixtures/automatic-directory-matcher-app/source/sub--sub.html.erb +0 -1
  347. data/fixtures/automatic-image-size-app/config.rb +0 -0
  348. data/fixtures/automatic-image-size-app/source/auto-image-sizes.html.erb +0 -1
  349. data/fixtures/automatic-image-size-app/source/images/blank.gif +0 -0
  350. data/fixtures/automatic-image-size-app/source/markdown-sizes.html.markdown +0 -1
  351. data/fixtures/basic-data-app/config.rb +0 -2
  352. data/fixtures/basic-data-app/data/test.yml +0 -4
  353. data/fixtures/basic-data-app/data/test2.json +0 -4
  354. data/fixtures/basic-data-app/data/test3.toml +0 -7
  355. data/fixtures/basic-data-app/source/data.html.erb +0 -5
  356. data/fixtures/basic-data-app/source/data3.html.erb +0 -5
  357. data/fixtures/basic-data-app/source/data4.html.erb +0 -5
  358. data/fixtures/build-with-errors-app/config.rb +0 -1
  359. data/fixtures/build-with-errors-app/source/index.html.erb +0 -1
  360. data/fixtures/cache-buster-app/config.rb +0 -0
  361. data/fixtures/cache-buster-app/source/cache-buster.html.erb +0 -3
  362. data/fixtures/cache-buster-app/source/images/blank.gif +0 -0
  363. data/fixtures/cache-buster-app/source/stylesheets/relative_assets.css.sass +0 -2
  364. data/fixtures/cache-buster-app/source/stylesheets/site.css.sass +0 -3
  365. data/fixtures/capture-html-app/config.rb +0 -5
  366. data/fixtures/capture-html-app/source/capture_html_erb.html.erb +0 -5
  367. data/fixtures/capture-html-app/source/capture_html_haml.html.haml +0 -4
  368. data/fixtures/capture-html-app/source/capture_html_slim.html.slim +0 -4
  369. data/fixtures/capture-html-app/source/layouts/capture_html.erb +0 -4
  370. data/fixtures/chained-app/config.rb +0 -0
  371. data/fixtures/chained-app/data/article.yml +0 -2
  372. data/fixtures/chained-app/source/index.html.str.erb +0 -8
  373. data/fixtures/chained-app/source/test.erb.combobreaker.str.erb +0 -8
  374. data/fixtures/clean-app/config-complications.rb +0 -9
  375. data/fixtures/clean-app/config-empty.rb +0 -0
  376. data/fixtures/clean-app/config-hidden-dir-after.rb +0 -5
  377. data/fixtures/clean-app/config-hidden-dir-before.rb +0 -1
  378. data/fixtures/clean-app/config.rb +0 -9
  379. data/fixtures/clean-app/source/index.html.erb +0 -1
  380. data/fixtures/clean-app/source/layout.erb +0 -9
  381. data/fixtures/clean-app/source/layouts/custom.erb +0 -8
  382. data/fixtures/clean-app/source/real/index.html.erb +0 -5
  383. data/fixtures/clean-app/source/real.html +0 -1
  384. data/fixtures/clean-app/source/should_be_ignored.html +0 -1
  385. data/fixtures/clean-app/source/should_be_ignored2.html +0 -1
  386. data/fixtures/clean-app/source/should_be_ignored3.html +0 -1
  387. data/fixtures/clean-app/source/static.html +0 -1
  388. data/fixtures/clean-dir-app/config.rb +0 -2
  389. data/fixtures/clean-dir-app/source/about.html +0 -1
  390. data/fixtures/clean-nested-app/config.rb +0 -1
  391. data/fixtures/clean-nested-app/source/about.html +0 -1
  392. data/fixtures/clean-nested-app/source/nested/nested.html +0 -1
  393. data/fixtures/coffeescript-app/config.rb +0 -0
  394. data/fixtures/coffeescript-app/source/inline-coffeescript.html.haml +0 -3
  395. data/fixtures/coffeescript-app/source/javascripts/broken-coffee.js.coffee +0 -3
  396. data/fixtures/coffeescript-app/source/javascripts/coffee_test.js.coffee +0 -3
  397. data/fixtures/collections-app/source/blog1/2011-01-01-new-article.html.markdown +0 -7
  398. data/fixtures/collections-app/source/blog1/2011-01-02-another-article.html.markdown +0 -9
  399. data/fixtures/collections-app/source/blog2/2011-01-01-new-article.html.markdown +0 -9
  400. data/fixtures/collections-app/source/blog2/2011-01-02-another-article.html.markdown +0 -8
  401. data/fixtures/content-for-app/config.rb +0 -5
  402. data/fixtures/content-for-app/source/content_for_erb.html.erb +0 -5
  403. data/fixtures/content-for-app/source/content_for_haml.html.haml +0 -4
  404. data/fixtures/content-for-app/source/content_for_slim.html.slim +0 -5
  405. data/fixtures/content-for-app/source/layouts/content_for.erb +0 -4
  406. data/fixtures/content-type-app/config.rb +0 -1
  407. data/fixtures/content-type-app/source/.htaccess +0 -1
  408. data/fixtures/content-type-app/source/README +0 -1
  409. data/fixtures/content-type-app/source/images/blank.gif +0 -0
  410. data/fixtures/content-type-app/source/index.html +0 -1
  411. data/fixtures/content-type-app/source/index.php +0 -1
  412. data/fixtures/content-type-app/source/javascripts/app.js +0 -1
  413. data/fixtures/content-type-app/source/override.html +0 -5
  414. data/fixtures/content-type-app/source/stylesheets/site.css +0 -1
  415. data/fixtures/csspie/config.rb +0 -0
  416. data/fixtures/csspie/source/stylesheets/PIE.htc +0 -96
  417. data/fixtures/custom-layout-app/config.rb +0 -1
  418. data/fixtures/custom-layout-app/source/index.html.erb +0 -1
  419. data/fixtures/custom-layout-app/source/layout.str +0 -9
  420. data/fixtures/custom-layout-app2/config.rb +0 -0
  421. data/fixtures/custom-layout-app2/source/custom-layout-dir/index.html.erb +0 -1
  422. data/fixtures/custom-layout-app2/source/custom-layout.html.erb +0 -1
  423. data/fixtures/custom-layout-app2/source/layouts/custom.erb +0 -8
  424. data/fixtures/custom-src-app/config.rb +0 -1
  425. data/fixtures/custom-src-app/src/index.html +0 -0
  426. data/fixtures/custom-src-app/src/layouts/layout.html.erb +0 -1
  427. data/fixtures/data-app/config.rb +0 -3
  428. data/fixtures/data-app/data/pages.yml +0 -6
  429. data/fixtures/data-app/source/index.html.erb +0 -1
  430. data/fixtures/data-app/source/layout.erb +0 -5
  431. data/fixtures/default-alt-tags-app/config.rb +0 -0
  432. data/fixtures/default-alt-tags-app/source/empty-alt-tag.html.erb +0 -1
  433. data/fixtures/default-alt-tags-app/source/images/blank.gif +0 -0
  434. data/fixtures/default-alt-tags-app/source/meaningful-alt-tag.html.erb +0 -1
  435. data/fixtures/different-engine-layout/config.rb +0 -0
  436. data/fixtures/different-engine-layout/source/index.haml +0 -1
  437. data/fixtures/different-engine-layout/source/index.html.str +0 -1
  438. data/fixtures/different-engine-layout/source/layout.erb +0 -9
  439. data/fixtures/different-engine-partial/config.rb +0 -0
  440. data/fixtures/different-engine-partial/source/index.html.erb +0 -1
  441. data/fixtures/different-engine-partial/source/layouts/layout.erb +0 -7
  442. data/fixtures/different-engine-partial/source/shared/_footer.str +0 -1
  443. data/fixtures/different-engine-partial/source/shared/_header.erb +0 -1
  444. data/fixtures/dynamic-pages-app/config.rb +0 -34
  445. data/fixtures/dynamic-pages-app/source/real/index.html.erb +0 -9
  446. data/fixtures/dynamic-pages-app/source/real.html +0 -1
  447. data/fixtures/dynamic-pages-app/source/should_be_ignored.html +0 -1
  448. data/fixtures/dynamic-pages-app/source/should_be_ignored2.html +0 -1
  449. data/fixtures/dynamic-pages-app/source/should_be_ignored3.html +0 -1
  450. data/fixtures/dynamic-pages-app/source/should_be_ignored4.html +0 -1
  451. data/fixtures/dynamic-pages-app/source/should_be_ignored5.html +0 -1
  452. data/fixtures/dynamic-pages-app/source/should_be_ignored6.html +0 -1
  453. data/fixtures/dynamic-pages-app/source/should_be_ignored7.html +0 -1
  454. data/fixtures/dynamic-pages-app/source/should_be_ignored8.html +0 -1
  455. data/fixtures/dynamic-pages-app/source/should_be_ignored9.html +0 -1
  456. data/fixtures/ember-cli-app/config.rb +0 -5
  457. data/fixtures/ember-cli-app/source/javascripts/file.js +0 -0
  458. data/fixtures/ember-cli-app/test-app/.bowerrc +0 -3
  459. data/fixtures/ember-cli-app/test-app/.gitignore +0 -17
  460. data/fixtures/ember-cli-app/test-app/.jshintrc +0 -32
  461. data/fixtures/ember-cli-app/test-app/Brocfile.js +0 -20
  462. data/fixtures/ember-cli-app/test-app/README.md +0 -25
  463. data/fixtures/ember-cli-app/test-app/app/app.js +0 -14
  464. data/fixtures/ember-cli-app/test-app/app/components/.gitkeep +0 -0
  465. data/fixtures/ember-cli-app/test-app/app/controllers/.gitkeep +0 -0
  466. data/fixtures/ember-cli-app/test-app/app/helpers/.gitkeep +0 -0
  467. data/fixtures/ember-cli-app/test-app/app/index.html +0 -26
  468. data/fixtures/ember-cli-app/test-app/app/models/.gitkeep +0 -0
  469. data/fixtures/ember-cli-app/test-app/app/router.js +0 -10
  470. data/fixtures/ember-cli-app/test-app/app/routes/.gitkeep +0 -0
  471. data/fixtures/ember-cli-app/test-app/app/styles/.gitkeep +0 -0
  472. data/fixtures/ember-cli-app/test-app/app/styles/app.css +0 -3
  473. data/fixtures/ember-cli-app/test-app/app/templates/.gitkeep +0 -0
  474. data/fixtures/ember-cli-app/test-app/app/templates/application.hbs +0 -3
  475. data/fixtures/ember-cli-app/test-app/app/templates/components/.gitkeep +0 -0
  476. data/fixtures/ember-cli-app/test-app/app/views/.gitkeep +0 -0
  477. data/fixtures/ember-cli-app/test-app/bower.json +0 -16
  478. data/fixtures/ember-cli-app/test-app/config/environment.js +0 -38
  479. data/fixtures/ember-cli-app/test-app/package.json +0 -31
  480. data/fixtures/ember-cli-app/test-app/public/.gitkeep +0 -0
  481. data/fixtures/ember-cli-app/test-app/testem.json +0 -6
  482. data/fixtures/ember-cli-app/test-app/tests/.jshintrc +0 -73
  483. data/fixtures/ember-cli-app/test-app/tests/helpers/resolver.js +0 -9
  484. data/fixtures/ember-cli-app/test-app/tests/helpers/start-app.js +0 -30
  485. data/fixtures/ember-cli-app/test-app/tests/index.html +0 -50
  486. data/fixtures/ember-cli-app/test-app/tests/test-helper.js +0 -6
  487. data/fixtures/ember-cli-app/test-app/tests/unit/.gitkeep +0 -0
  488. data/fixtures/empty-app/not-config.rb +0 -0
  489. data/fixtures/engine-matching-layout/config.rb +0 -0
  490. data/fixtures/engine-matching-layout/source/index.html.erb +0 -1
  491. data/fixtures/engine-matching-layout/source/layout.erb +0 -9
  492. data/fixtures/env-app/config.rb +0 -0
  493. data/fixtures/env-app/environments/development.rb +0 -1
  494. data/fixtures/env-app/environments/production.rb +0 -2
  495. data/fixtures/env-app/source/index.html.erb +0 -3
  496. data/fixtures/env-app/source/stylesheets/site.css.scss +0 -3
  497. data/fixtures/extension-api-deprecations-app/config.rb +0 -11
  498. data/fixtures/extension-api-deprecations-app/source/index.html.erb +0 -1
  499. data/fixtures/extension-api-deprecations-app/source/layouts/layout.erb +0 -3
  500. data/fixtures/extension-hooks-app/config.rb +0 -39
  501. data/fixtures/extension-hooks-app/source/index.html.erb +0 -9
  502. data/fixtures/extensionless-text-files-app/config.rb +0 -0
  503. data/fixtures/extensionless-text-files-app/source/CNAME +0 -1
  504. data/fixtures/extensionless-text-files-app/source/LICENSE +0 -1
  505. data/fixtures/extensionless-text-files-app/source/README +0 -1
  506. data/fixtures/extensionless-text-files-app/source/index.html +0 -1
  507. data/fixtures/external-helpers/config.rb +0 -4
  508. data/fixtures/external-helpers/helpers/derp.rb +0 -3
  509. data/fixtures/external-helpers/helpers/four_helpers.rb +0 -3
  510. data/fixtures/external-helpers/helpers/one_helper.rb +0 -3
  511. data/fixtures/external-helpers/helpers/yet_another_thingy.rb +0 -3
  512. data/fixtures/external-helpers/lib/hello_helper.rb +0 -5
  513. data/fixtures/external-helpers/source/automatic.html.erb +0 -1
  514. data/fixtures/external-helpers/source/index.html.erb +0 -1
  515. data/fixtures/external-pipeline-error/config.rb +0 -5
  516. data/fixtures/external-pipeline-error/source/javascripts/file.js +0 -0
  517. data/fixtures/feature-params-app/config.rb +0 -16
  518. data/fixtures/feature-params-app/source/index.html.erb +0 -2
  519. data/fixtures/fonts-app/config.rb +0 -0
  520. data/fixtures/fonts-app/source/fonts/StMarie-Thin.otf +0 -0
  521. data/fixtures/fonts-app/source/fonts/blank/blank.otf +0 -0
  522. data/fixtures/fonts-app/source/stylesheets/fonts.css.scss +0 -6
  523. data/fixtures/frontmatter-app/config.rb +0 -1
  524. data/fixtures/frontmatter-app/source/front-matter-2.php.erb +0 -7
  525. data/fixtures/frontmatter-app/source/front-matter-change.html.erb +0 -5
  526. data/fixtures/frontmatter-app/source/front-matter-encoding.html.erb +0 -7
  527. data/fixtures/frontmatter-app/source/front-matter-haml.html.haml +0 -6
  528. data/fixtures/frontmatter-app/source/front-matter-line-2.html.erb +0 -10
  529. data/fixtures/frontmatter-app/source/front-matter-pandoc.html.md.erb +0 -13
  530. data/fixtures/frontmatter-app/source/raw-front-matter-toml.html +0 -6
  531. data/fixtures/frontmatter-app/source/raw-front-matter.html +0 -6
  532. data/fixtures/frontmatter-app/source/raw-front-matter.php +0 -6
  533. data/fixtures/frontmatter-neighbor-app/config.rb +0 -30
  534. data/fixtures/frontmatter-neighbor-app/source/front-matter-2.php.erb +0 -2
  535. data/fixtures/frontmatter-neighbor-app/source/front-matter-2.php.erb.frontmatter +0 -4
  536. data/fixtures/frontmatter-neighbor-app/source/front-matter-change.html.erb +0 -1
  537. data/fixtures/frontmatter-neighbor-app/source/front-matter-change.html.erb.frontmatter +0 -4
  538. data/fixtures/frontmatter-neighbor-app/source/front-matter-encoding.html.erb +0 -1
  539. data/fixtures/frontmatter-neighbor-app/source/front-matter-encoding.html.erb.frontmatter +0 -5
  540. data/fixtures/frontmatter-neighbor-app/source/raw-front-matter-toml.html +0 -1
  541. data/fixtures/frontmatter-neighbor-app/source/raw-front-matter-toml.html.frontmatter +0 -4
  542. data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.html +0 -1
  543. data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.html.frontmatter +0 -4
  544. data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.php +0 -1
  545. data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.php.frontmatter +0 -4
  546. data/fixtures/frontmatter-settings-app/config.rb +0 -4
  547. data/fixtures/frontmatter-settings-app/source/alternate_layout.html.erb +0 -5
  548. data/fixtures/frontmatter-settings-app/source/ignored.html.erb +0 -5
  549. data/fixtures/frontmatter-settings-app/source/layouts/alternate.erb +0 -3
  550. data/fixtures/frontmatter-settings-app/source/layouts/override.erb +0 -1
  551. data/fixtures/frontmatter-settings-app/source/override_layout.html.erb +0 -4
  552. data/fixtures/frontmatter-settings-app/source/page_mentioned.html.erb +0 -4
  553. data/fixtures/frontmatter-settings-neighbor-app/config.rb +0 -40
  554. data/fixtures/frontmatter-settings-neighbor-app/source/alternate_layout.html.erb +0 -1
  555. data/fixtures/frontmatter-settings-neighbor-app/source/alternate_layout.html.erb.frontmatter +0 -3
  556. data/fixtures/frontmatter-settings-neighbor-app/source/ignored.html.erb +0 -1
  557. data/fixtures/frontmatter-settings-neighbor-app/source/ignored.html.erb.frontmatter +0 -3
  558. data/fixtures/frontmatter-settings-neighbor-app/source/layouts/alternate.erb +0 -3
  559. data/fixtures/frontmatter-settings-neighbor-app/source/layouts/override.erb +0 -1
  560. data/fixtures/frontmatter-settings-neighbor-app/source/override_layout.html.erb +0 -1
  561. data/fixtures/frontmatter-settings-neighbor-app/source/override_layout.html.erb.frontmatter +0 -3
  562. data/fixtures/frontmatter-settings-neighbor-app/source/page_mentioned.html.erb +0 -1
  563. data/fixtures/frontmatter-settings-neighbor-app/source/page_mentioned.html.erb.frontmatter +0 -3
  564. data/fixtures/generator-test/config.rb +0 -70
  565. data/fixtures/generator-test/source/index.html.erb +0 -10
  566. data/fixtures/glob-app/config.rb +0 -1
  567. data/fixtures/glob-app/source/index.html.erb +0 -4
  568. data/fixtures/glob-app/source/stylesheets/site.css.str +0 -3
  569. data/fixtures/gzip-app/config.rb +0 -1
  570. data/fixtures/gzip-app/source/index.html +0 -0
  571. data/fixtures/gzip-app/source/javascripts/test.js +0 -1
  572. data/fixtures/gzip-app/source/stylesheets/test.css +0 -1
  573. data/fixtures/i-8859-1-app/config.rb +0 -1
  574. data/fixtures/i-8859-1-app/source/index.html.erb +0 -1
  575. data/fixtures/i18n-alt-root-app/locales/en.yml +0 -4
  576. data/fixtures/i18n-alt-root-app/locales/es.yml +0 -7
  577. data/fixtures/i18n-alt-root-app/source/lang_data/hello.html.erb +0 -1
  578. data/fixtures/i18n-alt-root-app/source/lang_data/index.html.erb +0 -1
  579. data/fixtures/i18n-alt-root-app/source/layout.erb +0 -1
  580. data/fixtures/i18n-default-app/locales/en.yml +0 -4
  581. data/fixtures/i18n-default-app/locales/es.yml +0 -8
  582. data/fixtures/i18n-default-app/source/localizable/index.html.erb +0 -5
  583. data/fixtures/i18n-force-locale/config.rb +0 -11
  584. data/fixtures/i18n-force-locale/locales/en.yml +0 -3
  585. data/fixtures/i18n-force-locale/locales/es.yml +0 -3
  586. data/fixtures/i18n-force-locale/locales/fr.yml +0 -3
  587. data/fixtures/i18n-force-locale/source/index.html.haml +0 -2
  588. data/fixtures/i18n-mixed-sources/config.rb +0 -1
  589. data/fixtures/i18n-mixed-sources/locales/en.yml +0 -4
  590. data/fixtures/i18n-mixed-sources/locales/es.yml +0 -4
  591. data/fixtures/i18n-mixed-sources/source/a/sub.html.erb +0 -9
  592. data/fixtures/i18n-mixed-sources/source/b/index.html.erb +0 -9
  593. data/fixtures/i18n-mixed-sources/source/index.html.erb +0 -9
  594. data/fixtures/i18n-mixed-sources/source/localizable/a/index.html.erb +0 -9
  595. data/fixtures/i18n-mixed-sources/source/localizable/b/sub.html.erb +0 -9
  596. data/fixtures/i18n-mixed-sources/source/localizable/index.html.erb +0 -9
  597. data/fixtures/i18n-nested-app/locales/en/more.yml +0 -3
  598. data/fixtures/i18n-nested-app/locales/en.yml +0 -4
  599. data/fixtures/i18n-nested-app/locales/es/mucho.yml +0 -3
  600. data/fixtures/i18n-nested-app/locales/es.yml +0 -4
  601. data/fixtures/i18n-nested-app/source/localizable/index.html.erb +0 -3
  602. data/fixtures/i18n-test-app/data/defaults_en.yml +0 -0
  603. data/fixtures/i18n-test-app/data/defaults_es.yml +0 -0
  604. data/fixtures/i18n-test-app/data/en_defaults.yml +0 -0
  605. data/fixtures/i18n-test-app/locales/en.yml +0 -5
  606. data/fixtures/i18n-test-app/locales/es.yml +0 -9
  607. data/fixtures/i18n-test-app/source/CNAME +0 -1
  608. data/fixtures/i18n-test-app/source/_country.en.erb +0 -1
  609. data/fixtures/i18n-test-app/source/_country.es.erb +0 -1
  610. data/fixtures/i18n-test-app/source/_site.erb +0 -1
  611. data/fixtures/i18n-test-app/source/images/president.en.svg +0 -1
  612. data/fixtures/i18n-test-app/source/images/president.es.svg +0 -1
  613. data/fixtures/i18n-test-app/source/layouts/layout.erb +0 -8
  614. data/fixtures/i18n-test-app/source/localizable/_state.en.erb +0 -1
  615. data/fixtures/i18n-test-app/source/localizable/_state.es.erb +0 -1
  616. data/fixtures/i18n-test-app/source/localizable/fallback.html.erb +0 -1
  617. data/fixtures/i18n-test-app/source/localizable/hello.html.erb +0 -1
  618. data/fixtures/i18n-test-app/source/localizable/images/flag.en.svg +0 -1
  619. data/fixtures/i18n-test-app/source/localizable/images/flag.es.svg +0 -1
  620. data/fixtures/i18n-test-app/source/localizable/index.html.erb +0 -1
  621. data/fixtures/i18n-test-app/source/localizable/morning.en.html.erb +0 -1
  622. data/fixtures/i18n-test-app/source/localizable/morning.es.html.erb +0 -1
  623. data/fixtures/i18n-test-app/source/localizable/one.en.html.md +0 -1
  624. data/fixtures/i18n-test-app/source/localizable/one.es.html.md +0 -1
  625. data/fixtures/i18n-test-app/source/localizable/partials/_greeting.en.erb +0 -1
  626. data/fixtures/i18n-test-app/source/localizable/partials/_greeting.es.erb +0 -1
  627. data/fixtures/i18n-test-app/source/localizable/partials/index.html.erb +0 -8
  628. data/fixtures/i18n-test-app/source/password.txt +0 -1
  629. data/fixtures/i18n-test-app/source/stylesheets/site.css +0 -3
  630. data/fixtures/ignore-app/source/about.html.erb +0 -1
  631. data/fixtures/ignore-app/source/images/icon/messages.png +0 -0
  632. data/fixtures/ignore-app/source/images/pic.png +0 -0
  633. data/fixtures/ignore-app/source/images/portrait.jpg +0 -0
  634. data/fixtures/ignore-app/source/index.html.erb +0 -0
  635. data/fixtures/ignore-app/source/plain.html +0 -1
  636. data/fixtures/ignore-app/source/reports/another.html +0 -0
  637. data/fixtures/ignore-app/source/reports/index.html +0 -0
  638. data/fixtures/image-srcset-paths-app/image-srcset-paths.html.erb +0 -1
  639. data/fixtures/image-srcset-paths-app/images/blank.gif +0 -0
  640. data/fixtures/import-app/bower.json +0 -21
  641. data/fixtures/import-app/bower_components/jquery/.bower.json +0 -39
  642. data/fixtures/import-app/bower_components/jquery/MIT-LICENSE.txt +0 -21
  643. data/fixtures/import-app/bower_components/jquery/bower.json +0 -28
  644. data/fixtures/import-app/bower_components/jquery/dist/jquery.js +0 -9210
  645. data/fixtures/import-app/bower_components/jquery/dist/jquery.min.js +0 -5
  646. data/fixtures/import-app/bower_components/jquery/dist/jquery.min.map +0 -1
  647. data/fixtures/import-app/bower_components/jquery/src/ajax/jsonp.js +0 -89
  648. data/fixtures/import-app/bower_components/jquery/src/ajax/load.js +0 -75
  649. data/fixtures/import-app/bower_components/jquery/src/ajax/parseJSON.js +0 -13
  650. data/fixtures/import-app/bower_components/jquery/src/ajax/parseXML.js +0 -28
  651. data/fixtures/import-app/bower_components/jquery/src/ajax/script.js +0 -64
  652. data/fixtures/import-app/bower_components/jquery/src/ajax/var/nonce.js +0 -5
  653. data/fixtures/import-app/bower_components/jquery/src/ajax/var/rquery.js +0 -3
  654. data/fixtures/import-app/bower_components/jquery/src/ajax/xhr.js +0 -136
  655. data/fixtures/import-app/bower_components/jquery/src/ajax.js +0 -786
  656. data/fixtures/import-app/bower_components/jquery/src/attributes/attr.js +0 -141
  657. data/fixtures/import-app/bower_components/jquery/src/attributes/classes.js +0 -158
  658. data/fixtures/import-app/bower_components/jquery/src/attributes/prop.js +0 -94
  659. data/fixtures/import-app/bower_components/jquery/src/attributes/support.js +0 -35
  660. data/fixtures/import-app/bower_components/jquery/src/attributes/val.js +0 -161
  661. data/fixtures/import-app/bower_components/jquery/src/attributes.js +0 -11
  662. data/fixtures/import-app/bower_components/jquery/src/callbacks.js +0 -205
  663. data/fixtures/import-app/bower_components/jquery/src/core/access.js +0 -60
  664. data/fixtures/import-app/bower_components/jquery/src/core/init.js +0 -123
  665. data/fixtures/import-app/bower_components/jquery/src/core/parseHTML.js +0 -39
  666. data/fixtures/import-app/bower_components/jquery/src/core/ready.js +0 -97
  667. data/fixtures/import-app/bower_components/jquery/src/core/var/rsingleTag.js +0 -4
  668. data/fixtures/import-app/bower_components/jquery/src/core.js +0 -502
  669. data/fixtures/import-app/bower_components/jquery/src/css/addGetHookIf.js +0 -22
  670. data/fixtures/import-app/bower_components/jquery/src/css/curCSS.js +0 -57
  671. data/fixtures/import-app/bower_components/jquery/src/css/defaultDisplay.js +0 -70
  672. data/fixtures/import-app/bower_components/jquery/src/css/hiddenVisibleSelectors.js +0 -15
  673. data/fixtures/import-app/bower_components/jquery/src/css/support.js +0 -96
  674. data/fixtures/import-app/bower_components/jquery/src/css/swap.js +0 -28
  675. data/fixtures/import-app/bower_components/jquery/src/css/var/cssExpand.js +0 -3
  676. data/fixtures/import-app/bower_components/jquery/src/css/var/getStyles.js +0 -12
  677. data/fixtures/import-app/bower_components/jquery/src/css/var/isHidden.js +0 -13
  678. data/fixtures/import-app/bower_components/jquery/src/css/var/rmargin.js +0 -3
  679. data/fixtures/import-app/bower_components/jquery/src/css/var/rnumnonpx.js +0 -5
  680. data/fixtures/import-app/bower_components/jquery/src/css.js +0 -450
  681. data/fixtures/import-app/bower_components/jquery/src/data/Data.js +0 -181
  682. data/fixtures/import-app/bower_components/jquery/src/data/accepts.js +0 -20
  683. data/fixtures/import-app/bower_components/jquery/src/data/var/data_priv.js +0 -5
  684. data/fixtures/import-app/bower_components/jquery/src/data/var/data_user.js +0 -5
  685. data/fixtures/import-app/bower_components/jquery/src/data.js +0 -178
  686. data/fixtures/import-app/bower_components/jquery/src/deferred.js +0 -149
  687. data/fixtures/import-app/bower_components/jquery/src/deprecated.js +0 -13
  688. data/fixtures/import-app/bower_components/jquery/src/dimensions.js +0 -50
  689. data/fixtures/import-app/bower_components/jquery/src/effects/Tween.js +0 -114
  690. data/fixtures/import-app/bower_components/jquery/src/effects/animatedSelector.js +0 -13
  691. data/fixtures/import-app/bower_components/jquery/src/effects.js +0 -648
  692. data/fixtures/import-app/bower_components/jquery/src/event/ajax.js +0 -13
  693. data/fixtures/import-app/bower_components/jquery/src/event/alias.js +0 -39
  694. data/fixtures/import-app/bower_components/jquery/src/event/support.js +0 -9
  695. data/fixtures/import-app/bower_components/jquery/src/event.js +0 -868
  696. data/fixtures/import-app/bower_components/jquery/src/exports/amd.js +0 -24
  697. data/fixtures/import-app/bower_components/jquery/src/exports/global.js +0 -32
  698. data/fixtures/import-app/bower_components/jquery/src/intro.js +0 -44
  699. data/fixtures/import-app/bower_components/jquery/src/jquery.js +0 -37
  700. data/fixtures/import-app/bower_components/jquery/src/manipulation/_evalUrl.js +0 -18
  701. data/fixtures/import-app/bower_components/jquery/src/manipulation/support.js +0 -32
  702. data/fixtures/import-app/bower_components/jquery/src/manipulation/var/rcheckableType.js +0 -3
  703. data/fixtures/import-app/bower_components/jquery/src/manipulation.js +0 -580
  704. data/fixtures/import-app/bower_components/jquery/src/offset.js +0 -207
  705. data/fixtures/import-app/bower_components/jquery/src/outro.js +0 -1
  706. data/fixtures/import-app/bower_components/jquery/src/queue/delay.js +0 -22
  707. data/fixtures/import-app/bower_components/jquery/src/queue.js +0 -142
  708. data/fixtures/import-app/bower_components/jquery/src/selector-native.js +0 -172
  709. data/fixtures/import-app/bower_components/jquery/src/selector-sizzle.js +0 -14
  710. data/fixtures/import-app/bower_components/jquery/src/selector.js +0 -1
  711. data/fixtures/import-app/bower_components/jquery/src/serialize.js +0 -111
  712. data/fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.js +0 -2067
  713. data/fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.min.js +0 -3
  714. data/fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.min.map +0 -1
  715. data/fixtures/import-app/bower_components/jquery/src/traversing/findFilter.js +0 -100
  716. data/fixtures/import-app/bower_components/jquery/src/traversing/var/rneedsContext.js +0 -6
  717. data/fixtures/import-app/bower_components/jquery/src/traversing.js +0 -199
  718. data/fixtures/import-app/bower_components/jquery/src/var/arr.js +0 -3
  719. data/fixtures/import-app/bower_components/jquery/src/var/class2type.js +0 -4
  720. data/fixtures/import-app/bower_components/jquery/src/var/concat.js +0 -5
  721. data/fixtures/import-app/bower_components/jquery/src/var/hasOwn.js +0 -5
  722. data/fixtures/import-app/bower_components/jquery/src/var/indexOf.js +0 -5
  723. data/fixtures/import-app/bower_components/jquery/src/var/pnum.js +0 -3
  724. data/fixtures/import-app/bower_components/jquery/src/var/push.js +0 -5
  725. data/fixtures/import-app/bower_components/jquery/src/var/rnotwhite.js +0 -3
  726. data/fixtures/import-app/bower_components/jquery/src/var/slice.js +0 -5
  727. data/fixtures/import-app/bower_components/jquery/src/var/strundefined.js +0 -3
  728. data/fixtures/import-app/bower_components/jquery/src/var/support.js +0 -4
  729. data/fixtures/import-app/bower_components/jquery/src/var/toString.js +0 -5
  730. data/fixtures/import-app/bower_components/jquery/src/wrap.js +0 -79
  731. data/fixtures/import-app/config.rb +0 -7
  732. data/fixtures/import-app/source/test.html +0 -0
  733. data/fixtures/import-app/static.html +0 -1
  734. data/fixtures/indexable-app/config.rb +0 -5
  735. data/fixtures/indexable-app/source/.htaccess +0 -1
  736. data/fixtures/indexable-app/source/.htpasswd +0 -1
  737. data/fixtures/indexable-app/source/.nojekyll +0 -0
  738. data/fixtures/indexable-app/source/a_folder/needs_index.html +0 -1
  739. data/fixtures/indexable-app/source/evil spaces.html +0 -1
  740. data/fixtures/indexable-app/source/leave_me_alone.html +0 -1
  741. data/fixtures/indexable-app/source/needs_index.html +0 -1
  742. data/fixtures/indexable-app/source/regex_leave_me_alone2.html +0 -1
  743. data/fixtures/indexable-app/source/regular/index.html +0 -1
  744. data/fixtures/indexable-app/source/wildcard_leave_me_alone.html +0 -1
  745. data/fixtures/javascript-app/config.rb +0 -0
  746. data/fixtures/javascript-app/source/index.html +0 -17
  747. data/fixtures/large-build-app/config.rb +0 -3
  748. data/fixtures/large-build-app/source/.htaccess +0 -1
  749. data/fixtures/large-build-app/source/.htpasswd +0 -1
  750. data/fixtures/large-build-app/source/_partial.erb +0 -1
  751. data/fixtures/large-build-app/source/feed.xml.builder +0 -4
  752. data/fixtures/large-build-app/source/images/Child folder/regular_file(example).txt +0 -1
  753. data/fixtures/large-build-app/source/images/Read me (example).txt +0 -1
  754. data/fixtures/large-build-app/source/images/blank.gif +0 -0
  755. data/fixtures/large-build-app/source/index.html.erb +0 -1
  756. data/fixtures/large-build-app/source/layout.erb +0 -9
  757. data/fixtures/large-build-app/source/layouts/content_for.erb +0 -4
  758. data/fixtures/large-build-app/source/layouts/custom.erb +0 -8
  759. data/fixtures/large-build-app/source/link_test.html.erb +0 -5
  760. data/fixtures/large-build-app/source/other_layout.erb +0 -1
  761. data/fixtures/large-build-app/source/services/index.html.erb +0 -1
  762. data/fixtures/large-build-app/source/spaces in file.html.erb +0 -1
  763. data/fixtures/large-build-app/source/static.html +0 -1
  764. data/fixtures/large-build-app/source/stylesheets/static.css +0 -2
  765. data/fixtures/layouts-dir-app/source/ambiguous.html.erb +0 -5
  766. data/fixtures/layouts-dir-app/source/index.html.erb +0 -2
  767. data/fixtures/layouts-dir-app/source/layouts/layout.erb +0 -3
  768. data/fixtures/layouts-dir-app/source/layouts/other.erb +0 -3
  769. data/fixtures/layouts-dir-app/source/layouts2/layout.erb +0 -3
  770. data/fixtures/layouts-dir-app/source/nested/layouts2/layout.erb +0 -3
  771. data/fixtures/layouts-dir-app/source/other.erb +0 -3
  772. data/fixtures/link-to-app/config.rb +0 -0
  773. data/fixtures/link-to-app/source/link_to_erb.html.erb +0 -3
  774. data/fixtures/link-to-app/source/link_to_haml.html.haml +0 -2
  775. data/fixtures/link-to-app/source/link_to_slim.html.slim +0 -2
  776. data/fixtures/liquid-app/config.rb +0 -0
  777. data/fixtures/liquid-app/data/test.yml +0 -4
  778. data/fixtures/liquid-app/data/test2.json +0 -4
  779. data/fixtures/liquid-app/source/_liquid_partial.liquid +0 -1
  780. data/fixtures/liquid-app/source/data2.html.liquid +0 -2
  781. data/fixtures/liquid-app/source/liquid_master.html.liquid +0 -1
  782. data/fixtures/lorem-app/config.rb +0 -1
  783. data/fixtures/lorem-app/source/lorem.html.erb +0 -13
  784. data/fixtures/manual-layout/config.rb +0 -1
  785. data/fixtures/manual-layout/source/index.html.erb +0 -1
  786. data/fixtures/manual-layout/source/layouts/custom.erb +0 -9
  787. data/fixtures/manual-layout-missing/config.rb +0 -1
  788. data/fixtures/manual-layout-missing/source/index.html.erb +0 -1
  789. data/fixtures/manual-layout-override/config.rb +0 -3
  790. data/fixtures/manual-layout-override/source/index.html.erb +0 -1
  791. data/fixtures/manual-layout-override/source/layouts/another.erb +0 -9
  792. data/fixtures/manual-layout-override/source/layouts/custom.erb +0 -9
  793. data/fixtures/markdown-app/config.rb +0 -1
  794. data/fixtures/markdown-app/source/autolink.html.markdown +0 -5
  795. data/fixtures/markdown-app/source/fenced_code_blocks.html.markdown +0 -7
  796. data/fixtures/markdown-app/source/filter_html.html.markdown +0 -1
  797. data/fixtures/markdown-app/source/footnote.html.markdown +0 -3
  798. data/fixtures/markdown-app/source/hard_wrap.html.markdown +0 -2
  799. data/fixtures/markdown-app/source/highlighted.html.markdown +0 -1
  800. data/fixtures/markdown-app/source/images/blank.gif +0 -0
  801. data/fixtures/markdown-app/source/img.html.markdown +0 -1
  802. data/fixtures/markdown-app/source/indented_code_blocks.html.markdown +0 -5
  803. data/fixtures/markdown-app/source/index.html.markdown +0 -4
  804. data/fixtures/markdown-app/source/lax_spacing.html.markdown +0 -3
  805. data/fixtures/markdown-app/source/link.html.markdown +0 -1
  806. data/fixtures/markdown-app/source/mailto.html.markdown +0 -1
  807. data/fixtures/markdown-app/source/no_intra_emphasis.html.markdown +0 -5
  808. data/fixtures/markdown-app/source/prettify.html.markdown +0 -3
  809. data/fixtures/markdown-app/source/quote.html.markdown +0 -1
  810. data/fixtures/markdown-app/source/safe_links.html.markdown +0 -1
  811. data/fixtures/markdown-app/source/smarty_pants.html.markdown +0 -5
  812. data/fixtures/markdown-app/source/space_after_headers.html.markdown +0 -5
  813. data/fixtures/markdown-app/source/strikethrough.html.markdown +0 -5
  814. data/fixtures/markdown-app/source/superscript.html.markdown +0 -5
  815. data/fixtures/markdown-app/source/tables.html.markdown +0 -8
  816. data/fixtures/markdown-app/source/underline.html.markdown +0 -1
  817. data/fixtures/markdown-app/source/with_toc_data.html.markdown +0 -3
  818. data/fixtures/markdown-frontmatter-options-app/config.rb +0 -1
  819. data/fixtures/markdown-frontmatter-options-app/source/smarty_pants-default.html.markdown +0 -5
  820. data/fixtures/markdown-frontmatter-options-app/source/smarty_pants-off.html.markdown +0 -7
  821. data/fixtures/markdown-frontmatter-options-app/source/smarty_pants-on.html.markdown +0 -7
  822. data/fixtures/markdown-frontmatter-options-app/source/tables-default.html.markdown +0 -8
  823. data/fixtures/markdown-frontmatter-options-app/source/tables-off.html.markdown +0 -10
  824. data/fixtures/markdown-frontmatter-options-app/source/tables-on.html.markdown +0 -10
  825. data/fixtures/markdown-in-haml-app/config.rb +0 -0
  826. data/fixtures/markdown-in-haml-app/source/images/blank.gif +0 -0
  827. data/fixtures/markdown-in-haml-app/source/link_target.html.markdown +0 -4
  828. data/fixtures/markdown-in-slim-app/config.rb +0 -0
  829. data/fixtures/markdown-in-slim-app/source/images/blank.gif +0 -0
  830. data/fixtures/markdown-in-slim-app/source/link_target.html.markdown +0 -4
  831. data/fixtures/minify-css-app/source/inline-css.html.haml +0 -5
  832. data/fixtures/minify-css-app/source/inline-css.php +0 -8
  833. data/fixtures/minify-css-app/source/more-css/site.css +0 -3
  834. data/fixtures/minify-css-app/source/stylesheets/base/_base.scss +0 -15
  835. data/fixtures/minify-css-app/source/stylesheets/base/_buttons.scss +0 -35
  836. data/fixtures/minify-css-app/source/stylesheets/base/_forms.scss +0 -90
  837. data/fixtures/minify-css-app/source/stylesheets/base/_grid-settings.scss +0 -14
  838. data/fixtures/minify-css-app/source/stylesheets/base/_lists.scss +0 -31
  839. data/fixtures/minify-css-app/source/stylesheets/base/_tables.scss +0 -25
  840. data/fixtures/minify-css-app/source/stylesheets/base/_typography.scss +0 -49
  841. data/fixtures/minify-css-app/source/stylesheets/base/_variables.scss +0 -42
  842. data/fixtures/minify-css-app/source/stylesheets/bourbon/_bourbon-deprecated-upcoming.scss +0 -411
  843. data/fixtures/minify-css-app/source/stylesheets/bourbon/_bourbon.scss +0 -87
  844. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-color.scss +0 -26
  845. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-radius.scss +0 -48
  846. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-style.scss +0 -25
  847. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-width.scss +0 -25
  848. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_buttons.scss +0 -64
  849. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_clearfix.scss +0 -25
  850. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_ellipsis.scss +0 -30
  851. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_font-stacks.scss +0 -31
  852. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_hide-text.scss +0 -27
  853. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_margin.scss +0 -26
  854. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_padding.scss +0 -26
  855. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_position.scss +0 -48
  856. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_prefixer.scss +0 -66
  857. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_retina-image.scss +0 -25
  858. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_size.scss +0 -51
  859. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_text-inputs.scss +0 -113
  860. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_timing-functions.scss +0 -34
  861. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_triangle.scss +0 -63
  862. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_word-wrap.scss +0 -29
  863. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_animation.scss +0 -43
  864. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_appearance.scss +0 -3
  865. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_backface-visibility.scss +0 -3
  866. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_background-image.scss +0 -42
  867. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_background.scss +0 -55
  868. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_border-image.scss +0 -59
  869. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_calc.scss +0 -4
  870. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_columns.scss +0 -47
  871. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_filter.scss +0 -4
  872. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_flex-box.scss +0 -287
  873. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_font-face.scss +0 -24
  874. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_font-feature-settings.scss +0 -4
  875. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_hidpi-media-query.scss +0 -10
  876. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_hyphens.scss +0 -4
  877. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_image-rendering.scss +0 -14
  878. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_keyframes.scss +0 -36
  879. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_linear-gradient.scss +0 -38
  880. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_perspective.scss +0 -8
  881. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_placeholder.scss +0 -8
  882. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_radial-gradient.scss +0 -39
  883. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_selection.scss +0 -42
  884. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_text-decoration.scss +0 -19
  885. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_transform.scss +0 -15
  886. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_transition.scss +0 -71
  887. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_user-select.scss +0 -3
  888. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_assign-inputs.scss +0 -11
  889. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_contains-falsy.scss +0 -20
  890. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_contains.scss +0 -26
  891. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-length.scss +0 -11
  892. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-light.scss +0 -21
  893. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-number.scss +0 -11
  894. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-size.scss +0 -13
  895. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_modular-scale.scss +0 -69
  896. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_px-to-em.scss +0 -13
  897. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_px-to-rem.scss +0 -15
  898. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_shade.scss +0 -24
  899. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_strip-units.scss +0 -17
  900. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_tint.scss +0 -24
  901. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_transition-property-name.scss +0 -22
  902. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_unpack.scss +0 -27
  903. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_convert-units.scss +0 -21
  904. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_directional-values.scss +0 -96
  905. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_font-source-declaration.scss +0 -43
  906. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_gradient-positions-parser.scss +0 -13
  907. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-angle-parser.scss +0 -25
  908. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-gradient-parser.scss +0 -41
  909. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-positions-parser.scss +0 -61
  910. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-side-corner-parser.scss +0 -31
  911. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-arg-parser.scss +0 -69
  912. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-gradient-parser.scss +0 -50
  913. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-positions-parser.scss +0 -18
  914. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_render-gradients.scss +0 -26
  915. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_shape-size-stripper.scss +0 -10
  916. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_str-to-num.scss +0 -50
  917. data/fixtures/minify-css-app/source/stylesheets/bourbon/settings/_asset-pipeline.scss +0 -7
  918. data/fixtures/minify-css-app/source/stylesheets/bourbon/settings/_prefixer.scss +0 -9
  919. data/fixtures/minify-css-app/source/stylesheets/bourbon/settings/_px-to-em.scss +0 -1
  920. data/fixtures/minify-css-app/source/stylesheets/report.css +0 -1
  921. data/fixtures/minify-css-app/source/stylesheets/site.css.sass +0 -7
  922. data/fixtures/minify-css-app/source/stylesheets/site.xcss.sass +0 -6
  923. data/fixtures/minify-js-app/config.rb +0 -0
  924. data/fixtures/minify-js-app/source/inline-coffeescript.html.haml +0 -3
  925. data/fixtures/minify-js-app/source/inline-js.html.haml +0 -28
  926. data/fixtures/minify-js-app/source/inline-js.php +0 -22
  927. data/fixtures/minify-js-app/source/javascripts/coffee_test.js.coffee +0 -3
  928. data/fixtures/minify-js-app/source/javascripts/js_test.js +0 -8
  929. data/fixtures/minify-js-app/source/javascripts/js_test.xjs +0 -8
  930. data/fixtures/minify-js-app/source/more-js/other.js +0 -8
  931. data/fixtures/missing-tilt-library-app/config.rb +0 -2
  932. data/fixtures/missing-tilt-library-app/source/danger-zone/more-wiki.html.wiki +0 -1
  933. data/fixtures/missing-tilt-library-app/source/safe-zone/my-wiki.html.wiki +0 -1
  934. data/fixtures/missing-tilt-library-app/source/textile-source.html.textile +0 -1
  935. data/fixtures/missing-tilt-library-app/source/wiki-source.html.wiki +0 -1
  936. data/fixtures/more-extensionless-text-files-app/config.rb +0 -1
  937. data/fixtures/more-extensionless-text-files-app/source/CNAME +0 -1
  938. data/fixtures/more-extensionless-text-files-app/source/LICENSE +0 -1
  939. data/fixtures/more-extensionless-text-files-app/source/README +0 -1
  940. data/fixtures/more-extensionless-text-files-app/source/index.html +0 -1
  941. data/fixtures/more-frontmatter-settings-app/config.rb +0 -4
  942. data/fixtures/more-frontmatter-settings-app/source/alternate_layout.html.erb +0 -5
  943. data/fixtures/more-frontmatter-settings-app/source/ignored.html.erb +0 -5
  944. data/fixtures/more-frontmatter-settings-app/source/layouts/alternate.erb +0 -3
  945. data/fixtures/more-frontmatter-settings-app/source/no_index.html.erb +0 -5
  946. data/fixtures/more-ignore-app/source/about.html.erb +0 -1
  947. data/fixtures/more-ignore-app/source/images/icon/messages.png +0 -0
  948. data/fixtures/more-ignore-app/source/images/pic.png +0 -0
  949. data/fixtures/more-ignore-app/source/images/portrait.jpg +0 -0
  950. data/fixtures/more-ignore-app/source/index.html.erb +0 -0
  951. data/fixtures/more-ignore-app/source/plain.html +0 -1
  952. data/fixtures/more-ignore-app/source/reports/another.html +0 -0
  953. data/fixtures/more-ignore-app/source/reports/index.html +0 -0
  954. data/fixtures/more-markdown-app/source/layouts/layout.erb +0 -13
  955. data/fixtures/more-markdown-app/source/with_layout.html.markdown +0 -4
  956. data/fixtures/more-markdown-app/source/with_layout_erb.html.markdown.erb +0 -4
  957. data/fixtures/more-preview-app/config.rb +0 -0
  958. data/fixtures/more-preview-app/source/content.html.erb +0 -1
  959. data/fixtures/more-preview-app/source/layout.erb +0 -1
  960. data/fixtures/more-preview-app/source/stylesheets/_partial.sass +0 -2
  961. data/fixtures/more-preview-app/source/stylesheets/_partial2.css.sass +0 -2
  962. data/fixtures/more-preview-app/source/stylesheets/main.css.sass +0 -4
  963. data/fixtures/more-preview-app/source/stylesheets/main2.css.sass +0 -4
  964. data/fixtures/more-preview-app/source/stylesheets/plain.css.sass +0 -2
  965. data/fixtures/more-traversal-app/config.rb +0 -7
  966. data/fixtures/more-traversal-app/source/directory-indexed/sibling.html.erb +0 -3
  967. data/fixtures/more-traversal-app/source/directory-indexed/sibling2.html.erb +0 -3
  968. data/fixtures/more-traversal-app/source/directory-indexed/sub2/index.html.erb +0 -0
  969. data/fixtures/more-traversal-app/source/directory-indexed/sub3/deep.html.erb +0 -0
  970. data/fixtures/more-traversal-app/source/directory-indexed.html.erb +0 -0
  971. data/fixtures/more-traversal-app/source/index.html.erb +0 -0
  972. data/fixtures/more-traversal-app/source/layout.erb +0 -21
  973. data/fixtures/more-traversal-app/source/proxied.html.erb +0 -0
  974. data/fixtures/more-traversal-app/source/root.html.erb +0 -0
  975. data/fixtures/more-traversal-app/source/sub/index.html.erb +0 -0
  976. data/fixtures/more-traversal-app/source/sub/sibling.html.erb +0 -0
  977. data/fixtures/more-traversal-app/source/sub/sibling2.html.erb +0 -0
  978. data/fixtures/more-traversal-app/source/sub/sub2/index.html.erb +0 -0
  979. data/fixtures/more-traversal-app/source/sub/sub3/deep.html.erb +0 -0
  980. data/fixtures/multiple-data-sources-app/config.rb +0 -3
  981. data/fixtures/multiple-data-sources-app/data/data.yml +0 -1
  982. data/fixtures/multiple-data-sources-app/data/two.yml +0 -1
  983. data/fixtures/multiple-data-sources-app/data0/one.yml +0 -1
  984. data/fixtures/multiple-data-sources-app/data1/data1.yml +0 -1
  985. data/fixtures/multiple-data-sources-app/data1/one.yml +0 -1
  986. data/fixtures/multiple-data-sources-app/data2/data2.yml +0 -1
  987. data/fixtures/multiple-data-sources-app/data2/two.yml +0 -1
  988. data/fixtures/multiple-data-sources-app/source/index.html.erb +0 -5
  989. data/fixtures/multiple-layouts/config.rb +0 -0
  990. data/fixtures/multiple-layouts/source/index.html.erb +0 -1
  991. data/fixtures/multiple-layouts/source/layout.erb +0 -9
  992. data/fixtures/multiple-layouts/source/layout.str +0 -9
  993. data/fixtures/multiple-sources-app/config.rb +0 -3
  994. data/fixtures/multiple-sources-app/source/index.html.erb +0 -1
  995. data/fixtures/multiple-sources-app/source/override-in-two.html.erb +0 -1
  996. data/fixtures/multiple-sources-app/source0/override-in-one.html.erb +0 -1
  997. data/fixtures/multiple-sources-app/source1/index1.html.erb +0 -1
  998. data/fixtures/multiple-sources-app/source1/override-in-one.html.erb +0 -1
  999. data/fixtures/multiple-sources-app/source2/index2.html.erb +0 -1
  1000. data/fixtures/multiple-sources-app/source2/override-in-two.html.erb +0 -1
  1001. data/fixtures/multiple-sources-with-duplicate-file-names-app/config.rb +0 -2
  1002. data/fixtures/multiple-sources-with-duplicate-file-names-app/source/index.html.erb +0 -1
  1003. data/fixtures/multiple-sources-with-duplicate-file-names-app/source2/index.html.erb +0 -1
  1004. data/fixtures/nested-data-app/config.rb +0 -1
  1005. data/fixtures/nested-data-app/data/examples/deeper/stuff.yml +0 -1
  1006. data/fixtures/nested-data-app/data/examples/more.yml +0 -1
  1007. data/fixtures/nested-data-app/data/examples/test.yml +0 -1
  1008. data/fixtures/nested-data-app/data/examples/withcontent.yaml +0 -11
  1009. data/fixtures/nested-data-app/source/extracontent.html.haml.erb +0 -4
  1010. data/fixtures/nested-data-app/source/test.html.erb +0 -3
  1011. data/fixtures/nested-layout-app/config.rb +0 -1
  1012. data/fixtures/nested-layout-app/source/another.html.markdown +0 -7
  1013. data/fixtures/nested-layout-app/source/data-one.html.erb +0 -5
  1014. data/fixtures/nested-layout-app/source/data-two.html.erb +0 -5
  1015. data/fixtures/nested-layout-app/source/haml-test.html.markdown +0 -7
  1016. data/fixtures/nested-layout-app/source/index.html.erb +0 -6
  1017. data/fixtures/nested-layout-app/source/layouts/inner.erb +0 -7
  1018. data/fixtures/nested-layout-app/source/layouts/inner_haml.haml +0 -7
  1019. data/fixtures/nested-layout-app/source/layouts/inner_slim.slim +0 -7
  1020. data/fixtures/nested-layout-app/source/layouts/master.erb +0 -9
  1021. data/fixtures/nested-layout-app/source/layouts/master_haml.haml +0 -7
  1022. data/fixtures/nested-layout-app/source/layouts/master_slim.slim +0 -7
  1023. data/fixtures/nested-layout-app/source/layouts/outer.erb +0 -8
  1024. data/fixtures/nested-layout-app/source/layouts/outer_haml.haml +0 -7
  1025. data/fixtures/nested-layout-app/source/layouts/outer_slim.slim +0 -7
  1026. data/fixtures/nested-layout-app/source/slim-test.html.markdown +0 -7
  1027. data/fixtures/no-layout/config.rb +0 -0
  1028. data/fixtures/no-layout/source/index.html.erb +0 -1
  1029. data/fixtures/padrino-helpers-app/config.rb +0 -7
  1030. data/fixtures/padrino-helpers-app/source/former_padrino_test.html.erb +0 -6
  1031. data/fixtures/page-classes-app/config.rb +0 -2
  1032. data/fixtures/page-classes-app/source/1-folder/1-inside-with-numeric.html.erb +0 -1
  1033. data/fixtures/page-classes-app/source/1-starts-with-numeric.html.erb +0 -1
  1034. data/fixtures/page-classes-app/source/2-starts-with-numeric-custom.html.erb +0 -1
  1035. data/fixtures/page-classes-app/source/page-classes.html.erb +0 -1
  1036. data/fixtures/page-classes-app/source/sub1/page-classes.html.erb +0 -1
  1037. data/fixtures/page-classes-app/source/sub1/sub2/page-classes.html.erb +0 -1
  1038. data/fixtures/page-helper-layout-block-app/config.rb +0 -6
  1039. data/fixtures/page-helper-layout-block-app/source/index.html.erb +0 -1
  1040. data/fixtures/page-helper-layout-block-app/source/layouts/alt.erb +0 -3
  1041. data/fixtures/page-helper-layout-block-app/source/layouts/layout.erb +0 -3
  1042. data/fixtures/page-helper-layout-block-app/source/path/child.html.erb +0 -1
  1043. data/fixtures/page-helper-layout-block-app/source/path/index.html.erb +0 -1
  1044. data/fixtures/page-id-app/config-proc.rb +0 -7
  1045. data/fixtures/page-id-app/config.rb +0 -5
  1046. data/fixtures/page-id-app/source/feed.xml.erb +0 -1
  1047. data/fixtures/page-id-app/source/fm.html.erb +0 -5
  1048. data/fixtures/page-id-app/source/folder/foldern.html.erb +0 -1
  1049. data/fixtures/page-id-app/source/fourty-two.html.erb +0 -5
  1050. data/fixtures/page-id-app/source/implicit.html.erb +0 -1
  1051. data/fixtures/page-id-app/source/index.html.erb +0 -15
  1052. data/fixtures/page-id-app/source/overwrites/from-default.html.erb +0 -1
  1053. data/fixtures/page-id-app/source/overwrites/from-frontmatter.html.erb +0 -5
  1054. data/fixtures/paginate-app/config.rb +0 -0
  1055. data/fixtures/paginate-app/source/archive/2011/index.html.erb +0 -20
  1056. data/fixtures/paginate-app/source/blog/2011-01-01-test-article.html.markdown +0 -6
  1057. data/fixtures/paginate-app/source/blog/2011-01-02-test-article.html.markdown +0 -6
  1058. data/fixtures/paginate-app/source/blog/2011-01-03-test-article.html.markdown +0 -6
  1059. data/fixtures/paginate-app/source/blog/2011-01-04-test-article.html.markdown +0 -6
  1060. data/fixtures/paginate-app/source/blog/2011-01-05-test-article.html.markdown +0 -6
  1061. data/fixtures/paginate-app/source/blog/2011-02-01-test-article.html.markdown +0 -6
  1062. data/fixtures/paginate-app/source/blog/2011-02-02-test-article.html.markdown +0 -6
  1063. data/fixtures/paginate-app/source/index.html.erb +0 -15
  1064. data/fixtures/paginate-app/source/tag.html.erb +0 -23
  1065. data/fixtures/partial-chained_templates-app/config.rb +0 -0
  1066. data/fixtures/partials-app/config.rb +0 -0
  1067. data/fixtures/partials-app/source/_block.erb +0 -3
  1068. data/fixtures/partials-app/source/_code_snippet.html +0 -1
  1069. data/fixtures/partials-app/source/_locals.erb +0 -1
  1070. data/fixtures/partials-app/source/_main.erb +0 -1
  1071. data/fixtures/partials-app/source/_main.str +0 -1
  1072. data/fixtures/partials-app/source/block.html.erb +0 -3
  1073. data/fixtures/partials-app/source/images/tiger.svg +0 -725
  1074. data/fixtures/partials-app/source/index.html.erb +0 -3
  1075. data/fixtures/partials-app/source/index_missing.html.erb +0 -3
  1076. data/fixtures/partials-app/source/locals.html.erb +0 -1
  1077. data/fixtures/partials-app/source/second.html.str +0 -3
  1078. data/fixtures/partials-app/source/shared/_footer.erb +0 -1
  1079. data/fixtures/partials-app/source/shared/_header.erb +0 -1
  1080. data/fixtures/partials-app/source/shared/_snippet.html.erb +0 -1
  1081. data/fixtures/partials-app/source/static_underscore.html.erb +0 -1
  1082. data/fixtures/partials-app/source/sub/_local.erb +0 -1
  1083. data/fixtures/partials-app/source/sub/index.html.erb +0 -3
  1084. data/fixtures/partials-app/source/svg.html.erb +0 -1
  1085. data/fixtures/partials-app/source/using_snippet.html.erb +0 -1
  1086. data/fixtures/passthrough-app/source/.htaccess +0 -1
  1087. data/fixtures/passthrough-app/source/inline-coffeescript.html.haml +0 -3
  1088. data/fixtures/passthrough-app/source/inline-css.html.haml +0 -4
  1089. data/fixtures/passthrough-app/source/inline-js.html.haml +0 -28
  1090. data/fixtures/passthrough-app/source/javascripts/coffee_test.js.coffee +0 -3
  1091. data/fixtures/passthrough-app/source/javascripts/js_test.js +0 -8
  1092. data/fixtures/passthrough-app/source/stylesheets/site.css.sass +0 -5
  1093. data/fixtures/preview-app/config.rb +0 -0
  1094. data/fixtures/preview-app/source/content.html.erb +0 -1
  1095. data/fixtures/preview-app/source/layout.erb +0 -1
  1096. data/fixtures/proxy-pages-app/config.rb +0 -18
  1097. data/fixtures/proxy-pages-app/source/real/index.html.erb +0 -5
  1098. data/fixtures/proxy-pages-app/source/real.html +0 -1
  1099. data/fixtures/proxy-pages-app/source/should_be_ignored3.html +0 -1
  1100. data/fixtures/proxy-pages-app/source/should_be_ignored6.html +0 -1
  1101. data/fixtures/proxy-pages-app/source/should_be_ignored7.html +0 -1
  1102. data/fixtures/proxy-pages-app/source/should_be_ignored8.html +0 -1
  1103. data/fixtures/related-files-app/config.rb +0 -0
  1104. data/fixtures/related-files-app/source/index.html.erb +0 -0
  1105. data/fixtures/related-files-app/source/partials/_test.erb +0 -0
  1106. data/fixtures/related-files-app/source/partials/_test2.haml +0 -0
  1107. data/fixtures/related-files-app/source/stylesheets/_include3.sass +0 -0
  1108. data/fixtures/related-files-app/source/stylesheets/_include4.scss +0 -0
  1109. data/fixtures/related-files-app/source/stylesheets/include1.css +0 -0
  1110. data/fixtures/related-files-app/source/stylesheets/include2.css.scss +0 -0
  1111. data/fixtures/related-files-app/source/stylesheets/site.css.scss +0 -0
  1112. data/fixtures/relative-app/config.rb +0 -0
  1113. data/fixtures/relative-app/source/images/blank.gif +0 -0
  1114. data/fixtures/relative-app/source/stylesheets/relative_assets.css.sass +0 -2
  1115. data/fixtures/relative-assets-app/config.rb +0 -5
  1116. data/fixtures/relative-assets-app/source/absolute_image_relative_css.html.erb +0 -9
  1117. data/fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.eot +0 -0
  1118. data/fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.svg +0 -0
  1119. data/fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.ttf +0 -0
  1120. data/fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.woff +0 -0
  1121. data/fixtures/relative-assets-app/source/images/blank.gif +0 -0
  1122. data/fixtures/relative-assets-app/source/images/blank2.gif +0 -0
  1123. data/fixtures/relative-assets-app/source/img/blank.gif +0 -0
  1124. data/fixtures/relative-assets-app/source/javascripts/app.js +0 -3
  1125. data/fixtures/relative-assets-app/source/javascripts/application.js +0 -8
  1126. data/fixtures/relative-assets-app/source/relative_image.html.erb +0 -9
  1127. data/fixtures/relative-assets-app/source/relative_image_absolute_css.html.erb +0 -9
  1128. data/fixtures/relative-assets-app/source/stylesheets/fonts.css +0 -10
  1129. data/fixtures/relative-assets-app/source/stylesheets/fonts2.css.scss +0 -10
  1130. data/fixtures/relative-assets-app/source/stylesheets/relative_assets.css.sass +0 -2
  1131. data/fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset-sass.sass +0 -1
  1132. data/fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset.scss +0 -1
  1133. data/fixtures/sass-assets-path-app/config.rb +0 -4
  1134. data/fixtures/sass-assets-path-app/my-vendor/stylesheets/_partial.sass +0 -2
  1135. data/fixtures/sass-assets-path-app/source/stylesheets/plain.css.sass +0 -16
  1136. data/fixtures/sass-in-slim-app/config.rb +0 -0
  1137. data/fixtures/scss-app/config.rb +0 -0
  1138. data/fixtures/scss-app/source/stylesheets/error.css.sass +0 -1
  1139. data/fixtures/scss-app/source/stylesheets/layout.css.sass +0 -2
  1140. data/fixtures/scss-app/source/stylesheets/site_scss.css.scss +0 -3
  1141. data/fixtures/sinatra-app/config.rb +0 -14
  1142. data/fixtures/sinatra-app/source/index.html.erb +0 -5
  1143. data/fixtures/slim-content-for-app/config.rb +0 -0
  1144. data/fixtures/slim-content-for-app/source/index.html.slim +0 -7
  1145. data/fixtures/slim-content-for-app/source/layouts/layout.slim +0 -15
  1146. data/fixtures/strip-url-app/config.rb +0 -0
  1147. data/fixtures/strip-url-app/source/index.html.erb +0 -1
  1148. data/fixtures/strip-url-app/source/other.html.erb +0 -1
  1149. data/fixtures/strip-url-app/source/subdir/index.html.erb +0 -1
  1150. data/fixtures/stylus-preview-app/config.rb +0 -0
  1151. data/fixtures/stylus-preview-app/source/content.html.erb +0 -5
  1152. data/fixtures/stylus-preview-app/source/stylesheets/_partial.styl +0 -2
  1153. data/fixtures/stylus-preview-app/source/stylesheets/_partial2.css.styl +0 -2
  1154. data/fixtures/stylus-preview-app/source/stylesheets/main.css.styl +0 -4
  1155. data/fixtures/stylus-preview-app/source/stylesheets/main2.css.styl +0 -4
  1156. data/fixtures/stylus-preview-app/source/stylesheets/plain.css.styl +0 -2
  1157. data/fixtures/traversal-app/config.rb +0 -5
  1158. data/fixtures/traversal-app/source/.htaccess +0 -0
  1159. data/fixtures/traversal-app/source/directory-indexed/sibling.html.erb +0 -3
  1160. data/fixtures/traversal-app/source/directory-indexed/sibling2.html.erb +0 -3
  1161. data/fixtures/traversal-app/source/directory-indexed/sub2/index.html.erb +0 -0
  1162. data/fixtures/traversal-app/source/directory-indexed/sub3/deep.html.erb +0 -0
  1163. data/fixtures/traversal-app/source/directory-indexed.html.erb +0 -0
  1164. data/fixtures/traversal-app/source/index.html.erb +0 -0
  1165. data/fixtures/traversal-app/source/layout.erb +0 -21
  1166. data/fixtures/traversal-app/source/proxied.html.erb +0 -0
  1167. data/fixtures/traversal-app/source/root.html.erb +0 -0
  1168. data/fixtures/traversal-app/source/sub/index.html.erb +0 -0
  1169. data/fixtures/traversal-app/source/sub/sibling.html.erb +0 -0
  1170. data/fixtures/traversal-app/source/sub/sibling2.html.erb +0 -0
  1171. data/fixtures/traversal-app/source/sub/sub2/index.html.erb +0 -0
  1172. data/fixtures/traversal-app/source/sub/sub3/deep.html.erb +0 -0
  1173. data/fixtures/v4-extension-callbacks/config.rb +0 -42
  1174. data/fixtures/v4-extension-callbacks/source/index.html.erb +0 -2
  1175. data/fixtures/wildcard-app/config.rb +0 -1
  1176. data/fixtures/wildcard-app/source/admin/index.html.erb +0 -1
  1177. data/fixtures/wildcard-app/source/admin/page.html.erb +0 -1
  1178. data/fixtures/wildcard-app/source/index.html.erb +0 -1
  1179. data/fixtures/wildcard-app/source/layouts/admin.erb +0 -2
  1180. data/fixtures/wildcard-app/source/layouts/layout.erb +0 -2
  1181. data/fixtures/wildcard-directory-index-app/config.rb +0 -2
  1182. data/fixtures/wildcard-directory-index-app/source/admin/index.html.erb +0 -1
  1183. data/fixtures/wildcard-directory-index-app/source/admin/page.html.erb +0 -1
  1184. data/fixtures/wildcard-directory-index-app/source/index.html.erb +0 -1
  1185. data/fixtures/wildcard-directory-index-app/source/layouts/admin.erb +0 -2
  1186. data/fixtures/wildcard-directory-index-app/source/layouts/layout.erb +0 -2
  1187. data/lib/middleman-core/core_extensions/inline_url_rewriter.rb +0 -140
  1188. data/spec/middleman-core/binary_spec/middleman +0 -0
  1189. data/spec/middleman-core/binary_spec/middleman.png +0 -0
  1190. data/spec/middleman-core/binary_spec/plain.txt +0 -1
  1191. data/spec/middleman-core/binary_spec/stars.svgz +0 -0
  1192. data/spec/middleman-core/binary_spec/unicode +0 -1
  1193. data/spec/middleman-core/binary_spec/unicode.txt +0 -1
  1194. data/spec/middleman-core/callbacks_spec.rb +0 -132
  1195. data/spec/middleman-core/core_extensions/data_spec.rb +0 -147
  1196. data/spec/middleman-core/dns_resolver_spec.rb +0 -102
  1197. data/spec/middleman-core/preview_server/server_hostname_spec.rb +0 -39
  1198. data/spec/middleman-core/preview_server/server_ip_address_spec.rb +0 -43
  1199. data/spec/middleman-core/util_spec.rb +0 -230
  1200. data/spec/spec_helper.rb +0 -31
  1201. data/spec/support/given.rb +0 -42
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: middleman-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.5.1
4
+ version: 5.0.0.rc.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas Reynolds
@@ -10,22 +10,22 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2023-10-23 00:00:00.000000000 Z
13
+ date: 2019-05-24 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: bundler
17
17
  requirement: !ruby/object:Gem::Requirement
18
18
  requirements:
19
- - - "~>"
19
+ - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: '2.0'
21
+ version: '0'
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
25
25
  requirements:
26
- - - "~>"
26
+ - - ">="
27
27
  - !ruby/object:Gem::Version
28
- version: '2.0'
28
+ version: '0'
29
29
  - !ruby/object:Gem::Dependency
30
30
  name: rack
31
31
  requirement: !ruby/object:Gem::Requirement
@@ -74,20 +74,6 @@ dependencies:
74
74
  - - ">="
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
- - !ruby/object:Gem::Dependency
78
- name: fast_blank
79
- requirement: !ruby/object:Gem::Requirement
80
- requirements:
81
- - - ">="
82
- - !ruby/object:Gem::Version
83
- version: '0'
84
- type: :runtime
85
- prerelease: false
86
- version_requirements: !ruby/object:Gem::Requirement
87
- requirements:
88
- - - ">="
89
- - !ruby/object:Gem::Version
90
- version: '0'
91
77
  - !ruby/object:Gem::Dependency
92
78
  name: parallel
93
79
  requirement: !ruby/object:Gem::Requirement
@@ -131,95 +117,89 @@ dependencies:
131
117
  - !ruby/object:Gem::Version
132
118
  version: '0'
133
119
  - !ruby/object:Gem::Dependency
134
- name: toml
120
+ name: rgl
135
121
  requirement: !ruby/object:Gem::Requirement
136
122
  requirements:
137
- - - ">="
123
+ - - "~>"
138
124
  - !ruby/object:Gem::Version
139
- version: '0'
125
+ version: 0.5.3
140
126
  type: :runtime
141
127
  prerelease: false
142
128
  version_requirements: !ruby/object:Gem::Requirement
143
129
  requirements:
144
- - - ">="
130
+ - - "~>"
145
131
  - !ruby/object:Gem::Version
146
- version: '0'
132
+ version: 0.5.3
147
133
  - !ruby/object:Gem::Dependency
148
- name: webrick
134
+ name: activesupport
149
135
  requirement: !ruby/object:Gem::Requirement
150
136
  requirements:
151
- - - ">="
137
+ - - "~>"
152
138
  - !ruby/object:Gem::Version
153
- version: '0'
139
+ version: '5.2'
154
140
  type: :runtime
155
141
  prerelease: false
156
142
  version_requirements: !ruby/object:Gem::Requirement
157
143
  requirements:
158
- - - ">="
144
+ - - "~>"
159
145
  - !ruby/object:Gem::Version
160
- version: '0'
146
+ version: '5.2'
161
147
  - !ruby/object:Gem::Dependency
162
- name: activesupport
148
+ name: padrino-helpers
163
149
  requirement: !ruby/object:Gem::Requirement
164
150
  requirements:
165
- - - ">="
166
- - !ruby/object:Gem::Version
167
- version: '6.1'
168
- - - "<"
151
+ - - "~>"
169
152
  - !ruby/object:Gem::Version
170
- version: '7.1'
153
+ version: 0.14.4
171
154
  type: :runtime
172
155
  prerelease: false
173
156
  version_requirements: !ruby/object:Gem::Requirement
174
157
  requirements:
175
- - - ">="
176
- - !ruby/object:Gem::Version
177
- version: '6.1'
178
- - - "<"
158
+ - - "~>"
179
159
  - !ruby/object:Gem::Version
180
- version: '7.1'
160
+ version: 0.14.4
181
161
  - !ruby/object:Gem::Dependency
182
- name: padrino-helpers
162
+ name: addressable
183
163
  requirement: !ruby/object:Gem::Requirement
184
164
  requirements:
185
165
  - - "~>"
186
166
  - !ruby/object:Gem::Version
187
- version: 0.15.0
167
+ version: '2.3'
188
168
  type: :runtime
189
169
  prerelease: false
190
170
  version_requirements: !ruby/object:Gem::Requirement
191
171
  requirements:
192
172
  - - "~>"
193
173
  - !ruby/object:Gem::Version
194
- version: 0.15.0
174
+ version: '2.3'
195
175
  - !ruby/object:Gem::Dependency
196
- name: addressable
176
+ name: memoist
197
177
  requirement: !ruby/object:Gem::Requirement
198
178
  requirements:
199
179
  - - "~>"
200
180
  - !ruby/object:Gem::Version
201
- version: '2.4'
181
+ version: '0.14'
202
182
  type: :runtime
203
183
  prerelease: false
204
184
  version_requirements: !ruby/object:Gem::Requirement
205
185
  requirements:
206
186
  - - "~>"
207
187
  - !ruby/object:Gem::Version
208
- version: '2.4'
188
+ version: '0.14'
209
189
  - !ruby/object:Gem::Dependency
210
- name: memoist
190
+ name: backports
211
191
  requirement: !ruby/object:Gem::Requirement
212
192
  requirements:
213
193
  - - "~>"
214
194
  - !ruby/object:Gem::Version
215
- version: '0.14'
195
+ version: '3.11'
216
196
  type: :runtime
217
197
  prerelease: false
218
198
  version_requirements: !ruby/object:Gem::Requirement
219
199
  requirements:
220
200
  - - "~>"
221
201
  - !ruby/object:Gem::Version
222
- version: '0.14'
202
+ version: '3.11'
223
203
  - !ruby/object:Gem::Dependency
224
204
  name: listen
225
205
  requirement: !ruby/object:Gem::Requirement
@@ -240,14 +220,14 @@ dependencies:
240
220
  requirements:
241
221
  - - "~>"
242
222
  - !ruby/object:Gem::Version
243
- version: 1.6.0
223
+ version: 0.9.0
244
224
  type: :runtime
245
225
  prerelease: false
246
226
  version_requirements: !ruby/object:Gem::Requirement
247
227
  requirements:
248
228
  - - "~>"
249
229
  - !ruby/object:Gem::Version
250
- version: 1.6.0
230
+ version: 0.9.0
251
231
  - !ruby/object:Gem::Dependency
252
232
  name: fastimage
253
233
  requirement: !ruby/object:Gem::Requirement
@@ -282,14 +262,14 @@ dependencies:
282
262
  requirements:
283
263
  - - "~>"
284
264
  - !ruby/object:Gem::Version
285
- version: '3.0'
265
+ version: '4.1'
286
266
  type: :runtime
287
267
  prerelease: false
288
268
  version_requirements: !ruby/object:Gem::Requirement
289
269
  requirements:
290
270
  - - "~>"
291
271
  - !ruby/object:Gem::Version
292
- version: '3.0'
272
+ version: '4.1'
293
273
  - !ruby/object:Gem::Dependency
294
274
  name: execjs
295
275
  requirement: !ruby/object:Gem::Requirement
@@ -305,70 +285,64 @@ dependencies:
305
285
  - !ruby/object:Gem::Version
306
286
  version: '2.0'
307
287
  - !ruby/object:Gem::Dependency
308
- name: contracts
288
+ name: oj
309
289
  requirement: !ruby/object:Gem::Requirement
310
290
  requirements:
311
291
  - - "~>"
312
292
  - !ruby/object:Gem::Version
313
- version: '0.13'
314
- - - "<"
315
- - !ruby/object:Gem::Version
316
- version: '0.17'
293
+ version: '3.7'
317
294
  type: :runtime
318
295
  prerelease: false
319
296
  version_requirements: !ruby/object:Gem::Requirement
320
297
  requirements:
321
298
  - - "~>"
322
299
  - !ruby/object:Gem::Version
323
- version: '0.13'
324
- - - "<"
325
- - !ruby/object:Gem::Version
326
- version: '0.17'
300
+ version: '3.7'
327
301
  - !ruby/object:Gem::Dependency
328
- name: hashie
302
+ name: contracts
329
303
  requirement: !ruby/object:Gem::Requirement
330
304
  requirements:
331
305
  - - "~>"
332
306
  - !ruby/object:Gem::Version
333
- version: '3.4'
307
+ version: 0.16.0
334
308
  type: :runtime
335
309
  prerelease: false
336
310
  version_requirements: !ruby/object:Gem::Requirement
337
311
  requirements:
338
312
  - - "~>"
339
313
  - !ruby/object:Gem::Version
340
- version: '3.4'
314
+ version: 0.16.0
341
315
  - !ruby/object:Gem::Dependency
342
- name: hamster
316
+ name: hashie
343
317
  requirement: !ruby/object:Gem::Requirement
344
318
  requirements:
345
319
  - - "~>"
346
320
  - !ruby/object:Gem::Version
347
- version: '3.0'
321
+ version: '3.4'
348
322
  type: :runtime
349
323
  prerelease: false
350
324
  version_requirements: !ruby/object:Gem::Requirement
351
325
  requirements:
352
326
  - - "~>"
353
327
  - !ruby/object:Gem::Version
354
- version: '3.0'
328
+ version: '3.4'
355
329
  - !ruby/object:Gem::Dependency
356
- name: backports
330
+ name: hamster
357
331
  requirement: !ruby/object:Gem::Requirement
358
332
  requirements:
359
333
  - - "~>"
360
334
  - !ruby/object:Gem::Version
361
- version: '3.6'
335
+ version: '3.0'
362
336
  type: :runtime
363
337
  prerelease: false
364
338
  version_requirements: !ruby/object:Gem::Requirement
365
339
  requirements:
366
340
  - - "~>"
367
341
  - !ruby/object:Gem::Version
368
- version: '3.6'
342
+ version: '3.0'
369
343
  description: A static site generator. Provides dozens of templating languages (Haml,
370
- Sass, Compass, Slim, CoffeeScript, and more). Makes minification, compression, cache
371
- busting, Yaml data (and more) an easy part of your development cycle.
344
+ Sass, Slim, CoffeeScript, and more). Makes minification, compression, cache busting,
345
+ Yaml data (and more) an easy part of your development cycle.
372
346
  email:
373
347
  - me@tdreyno.com
374
348
  - ben@benhollis.net
@@ -383,1073 +357,6 @@ files:
383
357
  - ".yardopts"
384
358
  - Rakefile
385
359
  - cucumber.yml
386
- - features/asset_hash.feature
387
- - features/asset_host.feature
388
- - features/auto_layout.feature
389
- - features/automatic_alt_tags.feature
390
- - features/automatic_directory_matcher.feature
391
- - features/automatic_image_sizes.feature
392
- - features/builder.feature
393
- - features/cache_buster.feature
394
- - features/capture_html.feature
395
- - features/chained_templates.feature
396
- - features/clean_build.feature
397
- - features/coffee-script.feature
398
- - features/collections.feature
399
- - features/console.feature
400
- - features/content_for.feature
401
- - features/content_type.feature
402
- - features/custom-source.feature
403
- - features/custom_layout_engines.feature
404
- - features/custom_layouts.feature
405
- - features/data.feature
406
- - features/default-layout.feature
407
- - features/default_alt_tag.feature
408
- - features/directory_index.feature
409
- - features/dynamic_pages.feature
410
- - features/encoding_option.feature
411
- - features/extension_api_deprecations.feature
412
- - features/extension_hooks.feature
413
- - features/extensionless_text_files.feature
414
- - features/feature_params.feature
415
- - features/former_padrino_helpers.feature
416
- - features/front-matter-neighbor.feature
417
- - features/front-matter.feature
418
- - features/frontmatter_page_settings.feature
419
- - features/gzip.feature
420
- - features/helpers_auto_javascript_include_tag.feature
421
- - features/helpers_auto_stylesheet_link_tag.feature
422
- - features/helpers_content_tag.feature
423
- - features/helpers_external.feature
424
- - features/helpers_form_tag.feature
425
- - features/helpers_link_to.feature
426
- - features/helpers_lorem.feature
427
- - features/helpers_page_classes.feature
428
- - features/helpers_select_tag.feature
429
- - features/helpers_url_for.feature
430
- - features/i18n_builder.feature
431
- - features/i18n_force_locale.feature
432
- - features/i18n_link_to.feature
433
- - features/i18n_mixed_sources.feature
434
- - features/i18n_partials.feature
435
- - features/i18n_preview.feature
436
- - features/ignore.feature
437
- - features/ignore_already_minified.feature
438
- - features/image_srcset_paths.feature
439
- - features/import_files.feature
440
- - features/layouts_dir.feature
441
- - features/liquid.feature
442
- - features/markdown.feature
443
- - features/markdown_kramdown.feature
444
- - features/markdown_kramdown_in_haml.feature
445
- - features/markdown_kramdown_in_slim.feature
446
- - features/markdown_redcarpet.feature
447
- - features/markdown_redcarpet_in_haml.feature
448
- - features/markdown_redcarpet_in_slim.feature
449
- - features/minify_css.feature
450
- - features/minify_javascript.feature
451
- - features/missing-tilt-lib.feature
452
- - features/more-clean_build.feature
453
- - features/more-extensionless_text_files.feature
454
- - features/more-frontmatter_page_settings.feature
455
- - features/more-ignore.feature
456
- - features/more-sitemap_traversal.feature
457
- - features/more-wildcard_page_helper.feature
458
- - features/mount_rack.feature
459
- - features/move_files.feature
460
- - features/multiple-sources.feature
461
- - features/nested_layouts.feature
462
- - features/page-id.feature
463
- - features/paginate.feature
464
- - features/partials.feature
465
- - features/preview_changes.feature
466
- - features/proxy_pages.feature
467
- - features/redirects.feature
468
- - features/relative_assets.feature
469
- - features/relative_assets_helpers_only.feature
470
- - features/sass-assets-paths.feature
471
- - features/sass_in_slim.feature
472
- - features/sass_partials.feature
473
- - features/scss-support.feature
474
- - features/sitemap_traversal.feature
475
- - features/slim.feature
476
- - features/strip_url.feature
477
- - features/support/env.rb
478
- - features/support/preserve_mime_types.rb
479
- - features/template-key-collision.feature
480
- - features/tilde_directories.feature
481
- - features/unicode_filecontents.feature
482
- - features/unicode_filenames.feature
483
- - features/v4_extension_callbacks.feature
484
- - features/wildcard_page_helper.feature
485
- - fixtures/asset-hash-app/config.rb
486
- - fixtures/asset-hash-app/lib/middleware.rb
487
- - fixtures/asset-hash-app/source/api.json.erb
488
- - fixtures/asset-hash-app/source/apple-touch-icon.png
489
- - fixtures/asset-hash-app/source/favicon.ico
490
- - fixtures/asset-hash-app/source/fonts/fontawesome-webfont.woff
491
- - fixtures/asset-hash-app/source/fonts/fontawesome-webfont.woff2
492
- - fixtures/asset-hash-app/source/images/100px.gif
493
- - fixtures/asset-hash-app/source/images/100px.jpg
494
- - fixtures/asset-hash-app/source/images/100px.png
495
- - fixtures/asset-hash-app/source/images/200px.jpg
496
- - fixtures/asset-hash-app/source/images/300px.jpg
497
- - fixtures/asset-hash-app/source/index.html.erb
498
- - fixtures/asset-hash-app/source/javascripts/application.js
499
- - fixtures/asset-hash-app/source/layout.erb
500
- - fixtures/asset-hash-app/source/other.html.erb
501
- - fixtures/asset-hash-app/source/partials.html.erb
502
- - fixtures/asset-hash-app/source/slim.html.slim
503
- - fixtures/asset-hash-app/source/stylesheets/_partial.sass
504
- - fixtures/asset-hash-app/source/stylesheets/fragment.css.scss
505
- - fixtures/asset-hash-app/source/stylesheets/site.css.scss
506
- - fixtures/asset-hash-app/source/stylesheets/uses_fonts.css
507
- - fixtures/asset-hash-app/source/stylesheets/uses_partials.css.sass
508
- - fixtures/asset-hash-app/source/subdir/api.json.erb
509
- - fixtures/asset-hash-app/source/subdir/index.html.erb
510
- - fixtures/asset-hash-host-app/source/images/100px.gif
511
- - fixtures/asset-hash-host-app/source/images/100px.jpg
512
- - fixtures/asset-hash-host-app/source/images/100px.png
513
- - fixtures/asset-hash-host-app/source/index.html.erb
514
- - fixtures/asset-hash-host-app/source/layout.erb
515
- - fixtures/asset-hash-host-app/source/other.html.erb
516
- - fixtures/asset-hash-host-app/source/stylesheets/fragment.css.scss
517
- - fixtures/asset-hash-host-app/source/stylesheets/site.css.scss
518
- - fixtures/asset-hash-host-app/source/subdir/index.html.erb
519
- - fixtures/asset-hash-minified-app/config.rb
520
- - fixtures/asset-hash-minified-app/source/images/100px.jpg
521
- - fixtures/asset-hash-minified-app/source/javascripts/jquery.min.js
522
- - fixtures/asset-hash-minified-app/source/stylesheets/test.css
523
- - fixtures/asset-hash-prefix/config.rb
524
- - fixtures/asset-hash-prefix/lib/middleware.rb
525
- - fixtures/asset-hash-prefix/source/index.html.erb
526
- - fixtures/asset-hash-prefix/source/javascripts/application.js
527
- - fixtures/asset-hash-prefix/source/javascripts/application.js.map
528
- - fixtures/asset-hash-prefix/source/layout.erb
529
- - fixtures/asset-hash-remove-filename/config.rb
530
- - fixtures/asset-hash-remove-filename/source/index.html.erb
531
- - fixtures/asset-hash-remove-filename/source/javascripts/application.js
532
- - fixtures/asset-hash-remove-filename/source/javascripts/application.js.map
533
- - fixtures/asset-hash-remove-filename/source/layout.erb
534
- - fixtures/asset-hash-source-map/config.rb
535
- - fixtures/asset-hash-source-map/lib/middleware.rb
536
- - fixtures/asset-hash-source-map/source/index.html.erb
537
- - fixtures/asset-hash-source-map/source/javascripts/application.js
538
- - fixtures/asset-hash-source-map/source/javascripts/application.js.map
539
- - fixtures/asset-hash-source-map/source/layout.erb
540
- - fixtures/asset-host-app/config.rb
541
- - fixtures/asset-host-app/source/.htaccess
542
- - fixtures/asset-host-app/source/asset_host.html.erb
543
- - fixtures/asset-host-app/source/images/blank.gif
544
- - fixtures/asset-host-app/source/images/blank0.gif
545
- - fixtures/asset-host-app/source/images/blank1.gif
546
- - fixtures/asset-host-app/source/images/blank10.gif
547
- - fixtures/asset-host-app/source/images/blank100.gif
548
- - fixtures/asset-host-app/source/images/blank101.gif
549
- - fixtures/asset-host-app/source/images/blank1010.gif
550
- - fixtures/asset-host-app/source/images/blank102.gif
551
- - fixtures/asset-host-app/source/images/blank1020.gif
552
- - fixtures/asset-host-app/source/images/blank1021.gif
553
- - fixtures/asset-host-app/source/images/blank1022.gif
554
- - fixtures/asset-host-app/source/images/blank1023.gif
555
- - fixtures/asset-host-app/source/images/blank1024.gif
556
- - fixtures/asset-host-app/source/images/blank103.gif
557
- - fixtures/asset-host-app/source/images/blank1030.gif
558
- - fixtures/asset-host-app/source/images/blank1031.gif
559
- - fixtures/asset-host-app/source/images/blank1032.gif
560
- - fixtures/asset-host-app/source/images/blank1033.gif
561
- - fixtures/asset-host-app/source/images/blank1034.gif
562
- - fixtures/asset-host-app/source/images/blank104.gif
563
- - fixtures/asset-host-app/source/images/blank1043.gif
564
- - fixtures/asset-host-app/source/images/blank1054.gif
565
- - fixtures/asset-host-app/source/images/blank2.gif
566
- - fixtures/asset-host-app/source/images/blank20.gif
567
- - fixtures/asset-host-app/source/images/blank21.gif
568
- - fixtures/asset-host-app/source/images/blank22.gif
569
- - fixtures/asset-host-app/source/images/blank23.gif
570
- - fixtures/asset-host-app/source/images/blank24.gif
571
- - fixtures/asset-host-app/source/images/blank3.gif
572
- - fixtures/asset-host-app/source/images/blank30.gif
573
- - fixtures/asset-host-app/source/images/blank31.gif
574
- - fixtures/asset-host-app/source/images/blank32.gif
575
- - fixtures/asset-host-app/source/images/blank33.gif
576
- - fixtures/asset-host-app/source/images/blank34.gif
577
- - fixtures/asset-host-app/source/images/blank4.gif
578
- - fixtures/asset-host-app/source/images/blank43.gif
579
- - fixtures/asset-host-app/source/images/blank54.gif
580
- - fixtures/asset-host-app/source/javascripts/asset_host.js
581
- - fixtures/asset-host-app/source/stylesheets/asset_host.css.sass
582
- - fixtures/auto-css-app/config.rb
583
- - fixtures/auto-css-app/source/auto-css.html.erb
584
- - fixtures/auto-css-app/source/auto-css/auto-css.html.erb
585
- - fixtures/auto-css-app/source/auto-css/index.html.erb
586
- - fixtures/auto-css-app/source/auto-css/sub/auto-css.html.erb
587
- - fixtures/auto-css-app/source/stylesheets/auto-css.css
588
- - fixtures/auto-css-app/source/stylesheets/auto-css/auto-css.css
589
- - fixtures/auto-css-app/source/stylesheets/auto-css/index.css
590
- - fixtures/auto-css-app/source/stylesheets/auto-css/sub/auto-css.css
591
- - fixtures/auto-js-app/config.rb
592
- - fixtures/auto-js-app/source/auto-js.html.erb
593
- - fixtures/auto-js-app/source/auto-js/auto-js.html.erb
594
- - fixtures/auto-js-app/source/auto-js/index.html.erb
595
- - fixtures/auto-js-app/source/auto-js/sub/auto-js.html.erb
596
- - fixtures/auto-js-app/source/javascripts/auto-js.js
597
- - fixtures/auto-js-app/source/javascripts/auto-js/auto-js.js
598
- - fixtures/auto-js-app/source/javascripts/auto-js/index.js
599
- - fixtures/auto-js-app/source/javascripts/auto-js/sub/auto-js.js
600
- - fixtures/auto-js-directory-index-app/config.rb
601
- - fixtures/auto-js-directory-index-app/source/auto-js.html.erb
602
- - fixtures/auto-js-directory-index-app/source/javascripts/auto-js.js
603
- - fixtures/automatic-alt-tags-app/config.rb
604
- - fixtures/automatic-alt-tags-app/source/auto-image-sizes.html.erb
605
- - fixtures/automatic-alt-tags-app/source/images/blank.gif
606
- - fixtures/automatic-directory-matcher-app/config.rb
607
- - fixtures/automatic-directory-matcher-app/source/root-plain.html
608
- - fixtures/automatic-directory-matcher-app/source/root.html.erb
609
- - fixtures/automatic-directory-matcher-app/source/sub--sub--sub-plain.html
610
- - fixtures/automatic-directory-matcher-app/source/sub--sub--sub.html.erb
611
- - fixtures/automatic-directory-matcher-app/source/sub--sub-plain.html
612
- - fixtures/automatic-directory-matcher-app/source/sub--sub.html.erb
613
- - fixtures/automatic-image-size-app/config.rb
614
- - fixtures/automatic-image-size-app/source/auto-image-sizes.html.erb
615
- - fixtures/automatic-image-size-app/source/images/blank.gif
616
- - fixtures/automatic-image-size-app/source/markdown-sizes.html.markdown
617
- - fixtures/basic-data-app/config.rb
618
- - fixtures/basic-data-app/data/test.yml
619
- - fixtures/basic-data-app/data/test2.json
620
- - fixtures/basic-data-app/data/test3.toml
621
- - fixtures/basic-data-app/source/data.html.erb
622
- - fixtures/basic-data-app/source/data3.html.erb
623
- - fixtures/basic-data-app/source/data4.html.erb
624
- - fixtures/build-with-errors-app/config.rb
625
- - fixtures/build-with-errors-app/source/index.html.erb
626
- - fixtures/cache-buster-app/config.rb
627
- - fixtures/cache-buster-app/source/cache-buster.html.erb
628
- - fixtures/cache-buster-app/source/images/blank.gif
629
- - fixtures/cache-buster-app/source/stylesheets/relative_assets.css.sass
630
- - fixtures/cache-buster-app/source/stylesheets/site.css.sass
631
- - fixtures/capture-html-app/config.rb
632
- - fixtures/capture-html-app/source/capture_html_erb.html.erb
633
- - fixtures/capture-html-app/source/capture_html_haml.html.haml
634
- - fixtures/capture-html-app/source/capture_html_slim.html.slim
635
- - fixtures/capture-html-app/source/layouts/capture_html.erb
636
- - fixtures/chained-app/config.rb
637
- - fixtures/chained-app/data/article.yml
638
- - fixtures/chained-app/source/index.html.str.erb
639
- - fixtures/chained-app/source/test.erb.combobreaker.str.erb
640
- - fixtures/clean-app/config-complications.rb
641
- - fixtures/clean-app/config-empty.rb
642
- - fixtures/clean-app/config-hidden-dir-after.rb
643
- - fixtures/clean-app/config-hidden-dir-before.rb
644
- - fixtures/clean-app/config.rb
645
- - fixtures/clean-app/source/index.html.erb
646
- - fixtures/clean-app/source/layout.erb
647
- - fixtures/clean-app/source/layouts/custom.erb
648
- - fixtures/clean-app/source/real.html
649
- - fixtures/clean-app/source/real/index.html.erb
650
- - fixtures/clean-app/source/should_be_ignored.html
651
- - fixtures/clean-app/source/should_be_ignored2.html
652
- - fixtures/clean-app/source/should_be_ignored3.html
653
- - fixtures/clean-app/source/static.html
654
- - fixtures/clean-dir-app/config.rb
655
- - fixtures/clean-dir-app/source/about.html
656
- - fixtures/clean-nested-app/config.rb
657
- - fixtures/clean-nested-app/source/about.html
658
- - fixtures/clean-nested-app/source/nested/nested.html
659
- - fixtures/coffeescript-app/config.rb
660
- - fixtures/coffeescript-app/source/inline-coffeescript.html.haml
661
- - fixtures/coffeescript-app/source/javascripts/broken-coffee.js.coffee
662
- - fixtures/coffeescript-app/source/javascripts/coffee_test.js.coffee
663
- - fixtures/collections-app/source/blog1/2011-01-01-new-article.html.markdown
664
- - fixtures/collections-app/source/blog1/2011-01-02-another-article.html.markdown
665
- - fixtures/collections-app/source/blog2/2011-01-01-new-article.html.markdown
666
- - fixtures/collections-app/source/blog2/2011-01-02-another-article.html.markdown
667
- - fixtures/content-for-app/config.rb
668
- - fixtures/content-for-app/source/content_for_erb.html.erb
669
- - fixtures/content-for-app/source/content_for_haml.html.haml
670
- - fixtures/content-for-app/source/content_for_slim.html.slim
671
- - fixtures/content-for-app/source/layouts/content_for.erb
672
- - fixtures/content-type-app/config.rb
673
- - fixtures/content-type-app/source/.htaccess
674
- - fixtures/content-type-app/source/README
675
- - fixtures/content-type-app/source/images/blank.gif
676
- - fixtures/content-type-app/source/index.html
677
- - fixtures/content-type-app/source/index.php
678
- - fixtures/content-type-app/source/javascripts/app.js
679
- - fixtures/content-type-app/source/override.html
680
- - fixtures/content-type-app/source/stylesheets/site.css
681
- - fixtures/csspie/config.rb
682
- - fixtures/csspie/source/stylesheets/PIE.htc
683
- - fixtures/custom-layout-app/config.rb
684
- - fixtures/custom-layout-app/source/index.html.erb
685
- - fixtures/custom-layout-app/source/layout.str
686
- - fixtures/custom-layout-app2/config.rb
687
- - fixtures/custom-layout-app2/source/custom-layout-dir/index.html.erb
688
- - fixtures/custom-layout-app2/source/custom-layout.html.erb
689
- - fixtures/custom-layout-app2/source/layouts/custom.erb
690
- - fixtures/custom-src-app/config.rb
691
- - fixtures/custom-src-app/src/index.html
692
- - fixtures/custom-src-app/src/layouts/layout.html.erb
693
- - fixtures/data-app/config.rb
694
- - fixtures/data-app/data/pages.yml
695
- - fixtures/data-app/source/index.html.erb
696
- - fixtures/data-app/source/layout.erb
697
- - fixtures/default-alt-tags-app/config.rb
698
- - fixtures/default-alt-tags-app/source/empty-alt-tag.html.erb
699
- - fixtures/default-alt-tags-app/source/images/blank.gif
700
- - fixtures/default-alt-tags-app/source/meaningful-alt-tag.html.erb
701
- - fixtures/different-engine-layout/config.rb
702
- - fixtures/different-engine-layout/source/index.haml
703
- - fixtures/different-engine-layout/source/index.html.str
704
- - fixtures/different-engine-layout/source/layout.erb
705
- - fixtures/different-engine-partial/config.rb
706
- - fixtures/different-engine-partial/source/index.html.erb
707
- - fixtures/different-engine-partial/source/layouts/layout.erb
708
- - fixtures/different-engine-partial/source/shared/_footer.str
709
- - fixtures/different-engine-partial/source/shared/_header.erb
710
- - fixtures/dynamic-pages-app/config.rb
711
- - fixtures/dynamic-pages-app/source/real.html
712
- - fixtures/dynamic-pages-app/source/real/index.html.erb
713
- - fixtures/dynamic-pages-app/source/should_be_ignored.html
714
- - fixtures/dynamic-pages-app/source/should_be_ignored2.html
715
- - fixtures/dynamic-pages-app/source/should_be_ignored3.html
716
- - fixtures/dynamic-pages-app/source/should_be_ignored4.html
717
- - fixtures/dynamic-pages-app/source/should_be_ignored5.html
718
- - fixtures/dynamic-pages-app/source/should_be_ignored6.html
719
- - fixtures/dynamic-pages-app/source/should_be_ignored7.html
720
- - fixtures/dynamic-pages-app/source/should_be_ignored8.html
721
- - fixtures/dynamic-pages-app/source/should_be_ignored9.html
722
- - fixtures/ember-cli-app/config.rb
723
- - fixtures/ember-cli-app/source/javascripts/file.js
724
- - fixtures/ember-cli-app/test-app/.bowerrc
725
- - fixtures/ember-cli-app/test-app/.gitignore
726
- - fixtures/ember-cli-app/test-app/.jshintrc
727
- - fixtures/ember-cli-app/test-app/Brocfile.js
728
- - fixtures/ember-cli-app/test-app/README.md
729
- - fixtures/ember-cli-app/test-app/app/app.js
730
- - fixtures/ember-cli-app/test-app/app/components/.gitkeep
731
- - fixtures/ember-cli-app/test-app/app/controllers/.gitkeep
732
- - fixtures/ember-cli-app/test-app/app/helpers/.gitkeep
733
- - fixtures/ember-cli-app/test-app/app/index.html
734
- - fixtures/ember-cli-app/test-app/app/models/.gitkeep
735
- - fixtures/ember-cli-app/test-app/app/router.js
736
- - fixtures/ember-cli-app/test-app/app/routes/.gitkeep
737
- - fixtures/ember-cli-app/test-app/app/styles/.gitkeep
738
- - fixtures/ember-cli-app/test-app/app/styles/app.css
739
- - fixtures/ember-cli-app/test-app/app/templates/.gitkeep
740
- - fixtures/ember-cli-app/test-app/app/templates/application.hbs
741
- - fixtures/ember-cli-app/test-app/app/templates/components/.gitkeep
742
- - fixtures/ember-cli-app/test-app/app/views/.gitkeep
743
- - fixtures/ember-cli-app/test-app/bower.json
744
- - fixtures/ember-cli-app/test-app/config/environment.js
745
- - fixtures/ember-cli-app/test-app/package.json
746
- - fixtures/ember-cli-app/test-app/public/.gitkeep
747
- - fixtures/ember-cli-app/test-app/testem.json
748
- - fixtures/ember-cli-app/test-app/tests/.jshintrc
749
- - fixtures/ember-cli-app/test-app/tests/helpers/resolver.js
750
- - fixtures/ember-cli-app/test-app/tests/helpers/start-app.js
751
- - fixtures/ember-cli-app/test-app/tests/index.html
752
- - fixtures/ember-cli-app/test-app/tests/test-helper.js
753
- - fixtures/ember-cli-app/test-app/tests/unit/.gitkeep
754
- - fixtures/empty-app/not-config.rb
755
- - fixtures/engine-matching-layout/config.rb
756
- - fixtures/engine-matching-layout/source/index.html.erb
757
- - fixtures/engine-matching-layout/source/layout.erb
758
- - fixtures/env-app/config.rb
759
- - fixtures/env-app/environments/development.rb
760
- - fixtures/env-app/environments/production.rb
761
- - fixtures/env-app/source/index.html.erb
762
- - fixtures/env-app/source/stylesheets/site.css.scss
763
- - fixtures/extension-api-deprecations-app/config.rb
764
- - fixtures/extension-api-deprecations-app/source/index.html.erb
765
- - fixtures/extension-api-deprecations-app/source/layouts/layout.erb
766
- - fixtures/extension-hooks-app/config.rb
767
- - fixtures/extension-hooks-app/source/index.html.erb
768
- - fixtures/extensionless-text-files-app/config.rb
769
- - fixtures/extensionless-text-files-app/source/CNAME
770
- - fixtures/extensionless-text-files-app/source/LICENSE
771
- - fixtures/extensionless-text-files-app/source/README
772
- - fixtures/extensionless-text-files-app/source/index.html
773
- - fixtures/external-helpers/config.rb
774
- - fixtures/external-helpers/helpers/derp.rb
775
- - fixtures/external-helpers/helpers/four_helpers.rb
776
- - fixtures/external-helpers/helpers/one_helper.rb
777
- - fixtures/external-helpers/helpers/yet_another_thingy.rb
778
- - fixtures/external-helpers/lib/hello_helper.rb
779
- - fixtures/external-helpers/source/automatic.html.erb
780
- - fixtures/external-helpers/source/index.html.erb
781
- - fixtures/external-pipeline-error/config.rb
782
- - fixtures/external-pipeline-error/source/javascripts/file.js
783
- - fixtures/feature-params-app/config.rb
784
- - fixtures/feature-params-app/source/index.html.erb
785
- - fixtures/fonts-app/config.rb
786
- - fixtures/fonts-app/source/fonts/StMarie-Thin.otf
787
- - fixtures/fonts-app/source/fonts/blank/blank.otf
788
- - fixtures/fonts-app/source/stylesheets/fonts.css.scss
789
- - fixtures/frontmatter-app/config.rb
790
- - fixtures/frontmatter-app/source/front-matter-2.php.erb
791
- - fixtures/frontmatter-app/source/front-matter-change.html.erb
792
- - fixtures/frontmatter-app/source/front-matter-encoding.html.erb
793
- - fixtures/frontmatter-app/source/front-matter-haml.html.haml
794
- - fixtures/frontmatter-app/source/front-matter-line-2.html.erb
795
- - fixtures/frontmatter-app/source/front-matter-pandoc.html.md.erb
796
- - fixtures/frontmatter-app/source/raw-front-matter-toml.html
797
- - fixtures/frontmatter-app/source/raw-front-matter.html
798
- - fixtures/frontmatter-app/source/raw-front-matter.php
799
- - fixtures/frontmatter-neighbor-app/config.rb
800
- - fixtures/frontmatter-neighbor-app/source/front-matter-2.php.erb
801
- - fixtures/frontmatter-neighbor-app/source/front-matter-2.php.erb.frontmatter
802
- - fixtures/frontmatter-neighbor-app/source/front-matter-change.html.erb
803
- - fixtures/frontmatter-neighbor-app/source/front-matter-change.html.erb.frontmatter
804
- - fixtures/frontmatter-neighbor-app/source/front-matter-encoding.html.erb
805
- - fixtures/frontmatter-neighbor-app/source/front-matter-encoding.html.erb.frontmatter
806
- - fixtures/frontmatter-neighbor-app/source/raw-front-matter-toml.html
807
- - fixtures/frontmatter-neighbor-app/source/raw-front-matter-toml.html.frontmatter
808
- - fixtures/frontmatter-neighbor-app/source/raw-front-matter.html
809
- - fixtures/frontmatter-neighbor-app/source/raw-front-matter.html.frontmatter
810
- - fixtures/frontmatter-neighbor-app/source/raw-front-matter.php
811
- - fixtures/frontmatter-neighbor-app/source/raw-front-matter.php.frontmatter
812
- - fixtures/frontmatter-settings-app/config.rb
813
- - fixtures/frontmatter-settings-app/source/alternate_layout.html.erb
814
- - fixtures/frontmatter-settings-app/source/ignored.html.erb
815
- - fixtures/frontmatter-settings-app/source/layouts/alternate.erb
816
- - fixtures/frontmatter-settings-app/source/layouts/override.erb
817
- - fixtures/frontmatter-settings-app/source/override_layout.html.erb
818
- - fixtures/frontmatter-settings-app/source/page_mentioned.html.erb
819
- - fixtures/frontmatter-settings-neighbor-app/config.rb
820
- - fixtures/frontmatter-settings-neighbor-app/source/alternate_layout.html.erb
821
- - fixtures/frontmatter-settings-neighbor-app/source/alternate_layout.html.erb.frontmatter
822
- - fixtures/frontmatter-settings-neighbor-app/source/ignored.html.erb
823
- - fixtures/frontmatter-settings-neighbor-app/source/ignored.html.erb.frontmatter
824
- - fixtures/frontmatter-settings-neighbor-app/source/layouts/alternate.erb
825
- - fixtures/frontmatter-settings-neighbor-app/source/layouts/override.erb
826
- - fixtures/frontmatter-settings-neighbor-app/source/override_layout.html.erb
827
- - fixtures/frontmatter-settings-neighbor-app/source/override_layout.html.erb.frontmatter
828
- - fixtures/frontmatter-settings-neighbor-app/source/page_mentioned.html.erb
829
- - fixtures/frontmatter-settings-neighbor-app/source/page_mentioned.html.erb.frontmatter
830
- - fixtures/generator-test/config.rb
831
- - fixtures/generator-test/source/index.html.erb
832
- - fixtures/glob-app/config.rb
833
- - fixtures/glob-app/source/index.html.erb
834
- - fixtures/glob-app/source/stylesheets/site.css.str
835
- - fixtures/gzip-app/config.rb
836
- - fixtures/gzip-app/source/index.html
837
- - fixtures/gzip-app/source/javascripts/test.js
838
- - fixtures/gzip-app/source/stylesheets/test.css
839
- - fixtures/i-8859-1-app/config.rb
840
- - fixtures/i-8859-1-app/source/index.html.erb
841
- - fixtures/i18n-alt-root-app/locales/en.yml
842
- - fixtures/i18n-alt-root-app/locales/es.yml
843
- - fixtures/i18n-alt-root-app/source/lang_data/hello.html.erb
844
- - fixtures/i18n-alt-root-app/source/lang_data/index.html.erb
845
- - fixtures/i18n-alt-root-app/source/layout.erb
846
- - fixtures/i18n-default-app/locales/en.yml
847
- - fixtures/i18n-default-app/locales/es.yml
848
- - fixtures/i18n-default-app/source/localizable/index.html.erb
849
- - fixtures/i18n-force-locale/config.rb
850
- - fixtures/i18n-force-locale/locales/en.yml
851
- - fixtures/i18n-force-locale/locales/es.yml
852
- - fixtures/i18n-force-locale/locales/fr.yml
853
- - fixtures/i18n-force-locale/source/index.html.haml
854
- - fixtures/i18n-mixed-sources/config.rb
855
- - fixtures/i18n-mixed-sources/locales/en.yml
856
- - fixtures/i18n-mixed-sources/locales/es.yml
857
- - fixtures/i18n-mixed-sources/source/a/sub.html.erb
858
- - fixtures/i18n-mixed-sources/source/b/index.html.erb
859
- - fixtures/i18n-mixed-sources/source/index.html.erb
860
- - fixtures/i18n-mixed-sources/source/localizable/a/index.html.erb
861
- - fixtures/i18n-mixed-sources/source/localizable/b/sub.html.erb
862
- - fixtures/i18n-mixed-sources/source/localizable/index.html.erb
863
- - fixtures/i18n-nested-app/locales/en.yml
864
- - fixtures/i18n-nested-app/locales/en/more.yml
865
- - fixtures/i18n-nested-app/locales/es.yml
866
- - fixtures/i18n-nested-app/locales/es/mucho.yml
867
- - fixtures/i18n-nested-app/source/localizable/index.html.erb
868
- - fixtures/i18n-test-app/data/defaults_en.yml
869
- - fixtures/i18n-test-app/data/defaults_es.yml
870
- - fixtures/i18n-test-app/data/en_defaults.yml
871
- - fixtures/i18n-test-app/locales/en.yml
872
- - fixtures/i18n-test-app/locales/es.yml
873
- - fixtures/i18n-test-app/source/CNAME
874
- - fixtures/i18n-test-app/source/_country.en.erb
875
- - fixtures/i18n-test-app/source/_country.es.erb
876
- - fixtures/i18n-test-app/source/_site.erb
877
- - fixtures/i18n-test-app/source/images/president.en.svg
878
- - fixtures/i18n-test-app/source/images/president.es.svg
879
- - fixtures/i18n-test-app/source/layouts/layout.erb
880
- - fixtures/i18n-test-app/source/localizable/_state.en.erb
881
- - fixtures/i18n-test-app/source/localizable/_state.es.erb
882
- - fixtures/i18n-test-app/source/localizable/fallback.html.erb
883
- - fixtures/i18n-test-app/source/localizable/hello.html.erb
884
- - fixtures/i18n-test-app/source/localizable/images/flag.en.svg
885
- - fixtures/i18n-test-app/source/localizable/images/flag.es.svg
886
- - fixtures/i18n-test-app/source/localizable/index.html.erb
887
- - fixtures/i18n-test-app/source/localizable/morning.en.html.erb
888
- - fixtures/i18n-test-app/source/localizable/morning.es.html.erb
889
- - fixtures/i18n-test-app/source/localizable/one.en.html.md
890
- - fixtures/i18n-test-app/source/localizable/one.es.html.md
891
- - fixtures/i18n-test-app/source/localizable/partials/_greeting.en.erb
892
- - fixtures/i18n-test-app/source/localizable/partials/_greeting.es.erb
893
- - fixtures/i18n-test-app/source/localizable/partials/index.html.erb
894
- - fixtures/i18n-test-app/source/password.txt
895
- - fixtures/i18n-test-app/source/stylesheets/site.css
896
- - fixtures/ignore-app/source/about.html.erb
897
- - fixtures/ignore-app/source/images/icon/messages.png
898
- - fixtures/ignore-app/source/images/pic.png
899
- - fixtures/ignore-app/source/images/portrait.jpg
900
- - fixtures/ignore-app/source/index.html.erb
901
- - fixtures/ignore-app/source/plain.html
902
- - fixtures/ignore-app/source/reports/another.html
903
- - fixtures/ignore-app/source/reports/index.html
904
- - fixtures/image-srcset-paths-app/image-srcset-paths.html.erb
905
- - fixtures/image-srcset-paths-app/images/blank.gif
906
- - fixtures/import-app/bower.json
907
- - fixtures/import-app/bower_components/jquery/.bower.json
908
- - fixtures/import-app/bower_components/jquery/MIT-LICENSE.txt
909
- - fixtures/import-app/bower_components/jquery/bower.json
910
- - fixtures/import-app/bower_components/jquery/dist/jquery.js
911
- - fixtures/import-app/bower_components/jquery/dist/jquery.min.js
912
- - fixtures/import-app/bower_components/jquery/dist/jquery.min.map
913
- - fixtures/import-app/bower_components/jquery/src/ajax.js
914
- - fixtures/import-app/bower_components/jquery/src/ajax/jsonp.js
915
- - fixtures/import-app/bower_components/jquery/src/ajax/load.js
916
- - fixtures/import-app/bower_components/jquery/src/ajax/parseJSON.js
917
- - fixtures/import-app/bower_components/jquery/src/ajax/parseXML.js
918
- - fixtures/import-app/bower_components/jquery/src/ajax/script.js
919
- - fixtures/import-app/bower_components/jquery/src/ajax/var/nonce.js
920
- - fixtures/import-app/bower_components/jquery/src/ajax/var/rquery.js
921
- - fixtures/import-app/bower_components/jquery/src/ajax/xhr.js
922
- - fixtures/import-app/bower_components/jquery/src/attributes.js
923
- - fixtures/import-app/bower_components/jquery/src/attributes/attr.js
924
- - fixtures/import-app/bower_components/jquery/src/attributes/classes.js
925
- - fixtures/import-app/bower_components/jquery/src/attributes/prop.js
926
- - fixtures/import-app/bower_components/jquery/src/attributes/support.js
927
- - fixtures/import-app/bower_components/jquery/src/attributes/val.js
928
- - fixtures/import-app/bower_components/jquery/src/callbacks.js
929
- - fixtures/import-app/bower_components/jquery/src/core.js
930
- - fixtures/import-app/bower_components/jquery/src/core/access.js
931
- - fixtures/import-app/bower_components/jquery/src/core/init.js
932
- - fixtures/import-app/bower_components/jquery/src/core/parseHTML.js
933
- - fixtures/import-app/bower_components/jquery/src/core/ready.js
934
- - fixtures/import-app/bower_components/jquery/src/core/var/rsingleTag.js
935
- - fixtures/import-app/bower_components/jquery/src/css.js
936
- - fixtures/import-app/bower_components/jquery/src/css/addGetHookIf.js
937
- - fixtures/import-app/bower_components/jquery/src/css/curCSS.js
938
- - fixtures/import-app/bower_components/jquery/src/css/defaultDisplay.js
939
- - fixtures/import-app/bower_components/jquery/src/css/hiddenVisibleSelectors.js
940
- - fixtures/import-app/bower_components/jquery/src/css/support.js
941
- - fixtures/import-app/bower_components/jquery/src/css/swap.js
942
- - fixtures/import-app/bower_components/jquery/src/css/var/cssExpand.js
943
- - fixtures/import-app/bower_components/jquery/src/css/var/getStyles.js
944
- - fixtures/import-app/bower_components/jquery/src/css/var/isHidden.js
945
- - fixtures/import-app/bower_components/jquery/src/css/var/rmargin.js
946
- - fixtures/import-app/bower_components/jquery/src/css/var/rnumnonpx.js
947
- - fixtures/import-app/bower_components/jquery/src/data.js
948
- - fixtures/import-app/bower_components/jquery/src/data/Data.js
949
- - fixtures/import-app/bower_components/jquery/src/data/accepts.js
950
- - fixtures/import-app/bower_components/jquery/src/data/var/data_priv.js
951
- - fixtures/import-app/bower_components/jquery/src/data/var/data_user.js
952
- - fixtures/import-app/bower_components/jquery/src/deferred.js
953
- - fixtures/import-app/bower_components/jquery/src/deprecated.js
954
- - fixtures/import-app/bower_components/jquery/src/dimensions.js
955
- - fixtures/import-app/bower_components/jquery/src/effects.js
956
- - fixtures/import-app/bower_components/jquery/src/effects/Tween.js
957
- - fixtures/import-app/bower_components/jquery/src/effects/animatedSelector.js
958
- - fixtures/import-app/bower_components/jquery/src/event.js
959
- - fixtures/import-app/bower_components/jquery/src/event/ajax.js
960
- - fixtures/import-app/bower_components/jquery/src/event/alias.js
961
- - fixtures/import-app/bower_components/jquery/src/event/support.js
962
- - fixtures/import-app/bower_components/jquery/src/exports/amd.js
963
- - fixtures/import-app/bower_components/jquery/src/exports/global.js
964
- - fixtures/import-app/bower_components/jquery/src/intro.js
965
- - fixtures/import-app/bower_components/jquery/src/jquery.js
966
- - fixtures/import-app/bower_components/jquery/src/manipulation.js
967
- - fixtures/import-app/bower_components/jquery/src/manipulation/_evalUrl.js
968
- - fixtures/import-app/bower_components/jquery/src/manipulation/support.js
969
- - fixtures/import-app/bower_components/jquery/src/manipulation/var/rcheckableType.js
970
- - fixtures/import-app/bower_components/jquery/src/offset.js
971
- - fixtures/import-app/bower_components/jquery/src/outro.js
972
- - fixtures/import-app/bower_components/jquery/src/queue.js
973
- - fixtures/import-app/bower_components/jquery/src/queue/delay.js
974
- - fixtures/import-app/bower_components/jquery/src/selector-native.js
975
- - fixtures/import-app/bower_components/jquery/src/selector-sizzle.js
976
- - fixtures/import-app/bower_components/jquery/src/selector.js
977
- - fixtures/import-app/bower_components/jquery/src/serialize.js
978
- - fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.js
979
- - fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.min.js
980
- - fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.min.map
981
- - fixtures/import-app/bower_components/jquery/src/traversing.js
982
- - fixtures/import-app/bower_components/jquery/src/traversing/findFilter.js
983
- - fixtures/import-app/bower_components/jquery/src/traversing/var/rneedsContext.js
984
- - fixtures/import-app/bower_components/jquery/src/var/arr.js
985
- - fixtures/import-app/bower_components/jquery/src/var/class2type.js
986
- - fixtures/import-app/bower_components/jquery/src/var/concat.js
987
- - fixtures/import-app/bower_components/jquery/src/var/hasOwn.js
988
- - fixtures/import-app/bower_components/jquery/src/var/indexOf.js
989
- - fixtures/import-app/bower_components/jquery/src/var/pnum.js
990
- - fixtures/import-app/bower_components/jquery/src/var/push.js
991
- - fixtures/import-app/bower_components/jquery/src/var/rnotwhite.js
992
- - fixtures/import-app/bower_components/jquery/src/var/slice.js
993
- - fixtures/import-app/bower_components/jquery/src/var/strundefined.js
994
- - fixtures/import-app/bower_components/jquery/src/var/support.js
995
- - fixtures/import-app/bower_components/jquery/src/var/toString.js
996
- - fixtures/import-app/bower_components/jquery/src/wrap.js
997
- - fixtures/import-app/config.rb
998
- - fixtures/import-app/source/test.html
999
- - fixtures/import-app/static.html
1000
- - fixtures/indexable-app/config.rb
1001
- - fixtures/indexable-app/source/.htaccess
1002
- - fixtures/indexable-app/source/.htpasswd
1003
- - fixtures/indexable-app/source/.nojekyll
1004
- - fixtures/indexable-app/source/a_folder/needs_index.html
1005
- - fixtures/indexable-app/source/evil spaces.html
1006
- - fixtures/indexable-app/source/leave_me_alone.html
1007
- - fixtures/indexable-app/source/needs_index.html
1008
- - fixtures/indexable-app/source/regex_leave_me_alone2.html
1009
- - fixtures/indexable-app/source/regular/index.html
1010
- - fixtures/indexable-app/source/wildcard_leave_me_alone.html
1011
- - fixtures/javascript-app/config.rb
1012
- - fixtures/javascript-app/source/index.html
1013
- - fixtures/large-build-app/config.rb
1014
- - fixtures/large-build-app/source/.htaccess
1015
- - fixtures/large-build-app/source/.htpasswd
1016
- - fixtures/large-build-app/source/_partial.erb
1017
- - fixtures/large-build-app/source/feed.xml.builder
1018
- - fixtures/large-build-app/source/images/Child folder/regular_file(example).txt
1019
- - fixtures/large-build-app/source/images/Read me (example).txt
1020
- - fixtures/large-build-app/source/images/blank.gif
1021
- - fixtures/large-build-app/source/index.html.erb
1022
- - fixtures/large-build-app/source/layout.erb
1023
- - fixtures/large-build-app/source/layouts/content_for.erb
1024
- - fixtures/large-build-app/source/layouts/custom.erb
1025
- - fixtures/large-build-app/source/link_test.html.erb
1026
- - fixtures/large-build-app/source/other_layout.erb
1027
- - fixtures/large-build-app/source/services/index.html.erb
1028
- - fixtures/large-build-app/source/spaces in file.html.erb
1029
- - fixtures/large-build-app/source/static.html
1030
- - fixtures/large-build-app/source/stylesheets/static.css
1031
- - fixtures/layouts-dir-app/source/ambiguous.html.erb
1032
- - fixtures/layouts-dir-app/source/index.html.erb
1033
- - fixtures/layouts-dir-app/source/layouts/layout.erb
1034
- - fixtures/layouts-dir-app/source/layouts/other.erb
1035
- - fixtures/layouts-dir-app/source/layouts2/layout.erb
1036
- - fixtures/layouts-dir-app/source/nested/layouts2/layout.erb
1037
- - fixtures/layouts-dir-app/source/other.erb
1038
- - fixtures/link-to-app/config.rb
1039
- - fixtures/link-to-app/source/link_to_erb.html.erb
1040
- - fixtures/link-to-app/source/link_to_haml.html.haml
1041
- - fixtures/link-to-app/source/link_to_slim.html.slim
1042
- - fixtures/liquid-app/config.rb
1043
- - fixtures/liquid-app/data/test.yml
1044
- - fixtures/liquid-app/data/test2.json
1045
- - fixtures/liquid-app/source/_liquid_partial.liquid
1046
- - fixtures/liquid-app/source/data2.html.liquid
1047
- - fixtures/liquid-app/source/liquid_master.html.liquid
1048
- - fixtures/lorem-app/config.rb
1049
- - fixtures/lorem-app/source/lorem.html.erb
1050
- - fixtures/manual-layout-missing/config.rb
1051
- - fixtures/manual-layout-missing/source/index.html.erb
1052
- - fixtures/manual-layout-override/config.rb
1053
- - fixtures/manual-layout-override/source/index.html.erb
1054
- - fixtures/manual-layout-override/source/layouts/another.erb
1055
- - fixtures/manual-layout-override/source/layouts/custom.erb
1056
- - fixtures/manual-layout/config.rb
1057
- - fixtures/manual-layout/source/index.html.erb
1058
- - fixtures/manual-layout/source/layouts/custom.erb
1059
- - fixtures/markdown-app/config.rb
1060
- - fixtures/markdown-app/source/autolink.html.markdown
1061
- - fixtures/markdown-app/source/fenced_code_blocks.html.markdown
1062
- - fixtures/markdown-app/source/filter_html.html.markdown
1063
- - fixtures/markdown-app/source/footnote.html.markdown
1064
- - fixtures/markdown-app/source/hard_wrap.html.markdown
1065
- - fixtures/markdown-app/source/highlighted.html.markdown
1066
- - fixtures/markdown-app/source/images/blank.gif
1067
- - fixtures/markdown-app/source/img.html.markdown
1068
- - fixtures/markdown-app/source/indented_code_blocks.html.markdown
1069
- - fixtures/markdown-app/source/index.html.markdown
1070
- - fixtures/markdown-app/source/lax_spacing.html.markdown
1071
- - fixtures/markdown-app/source/link.html.markdown
1072
- - fixtures/markdown-app/source/mailto.html.markdown
1073
- - fixtures/markdown-app/source/no_intra_emphasis.html.markdown
1074
- - fixtures/markdown-app/source/prettify.html.markdown
1075
- - fixtures/markdown-app/source/quote.html.markdown
1076
- - fixtures/markdown-app/source/safe_links.html.markdown
1077
- - fixtures/markdown-app/source/smarty_pants.html.markdown
1078
- - fixtures/markdown-app/source/space_after_headers.html.markdown
1079
- - fixtures/markdown-app/source/strikethrough.html.markdown
1080
- - fixtures/markdown-app/source/superscript.html.markdown
1081
- - fixtures/markdown-app/source/tables.html.markdown
1082
- - fixtures/markdown-app/source/underline.html.markdown
1083
- - fixtures/markdown-app/source/with_toc_data.html.markdown
1084
- - fixtures/markdown-frontmatter-options-app/config.rb
1085
- - fixtures/markdown-frontmatter-options-app/source/smarty_pants-default.html.markdown
1086
- - fixtures/markdown-frontmatter-options-app/source/smarty_pants-off.html.markdown
1087
- - fixtures/markdown-frontmatter-options-app/source/smarty_pants-on.html.markdown
1088
- - fixtures/markdown-frontmatter-options-app/source/tables-default.html.markdown
1089
- - fixtures/markdown-frontmatter-options-app/source/tables-off.html.markdown
1090
- - fixtures/markdown-frontmatter-options-app/source/tables-on.html.markdown
1091
- - fixtures/markdown-in-haml-app/config.rb
1092
- - fixtures/markdown-in-haml-app/source/images/blank.gif
1093
- - fixtures/markdown-in-haml-app/source/link_target.html.markdown
1094
- - fixtures/markdown-in-slim-app/config.rb
1095
- - fixtures/markdown-in-slim-app/source/images/blank.gif
1096
- - fixtures/markdown-in-slim-app/source/link_target.html.markdown
1097
- - fixtures/minify-css-app/source/inline-css.html.haml
1098
- - fixtures/minify-css-app/source/inline-css.php
1099
- - fixtures/minify-css-app/source/more-css/site.css
1100
- - fixtures/minify-css-app/source/stylesheets/base/_base.scss
1101
- - fixtures/minify-css-app/source/stylesheets/base/_buttons.scss
1102
- - fixtures/minify-css-app/source/stylesheets/base/_forms.scss
1103
- - fixtures/minify-css-app/source/stylesheets/base/_grid-settings.scss
1104
- - fixtures/minify-css-app/source/stylesheets/base/_lists.scss
1105
- - fixtures/minify-css-app/source/stylesheets/base/_tables.scss
1106
- - fixtures/minify-css-app/source/stylesheets/base/_typography.scss
1107
- - fixtures/minify-css-app/source/stylesheets/base/_variables.scss
1108
- - fixtures/minify-css-app/source/stylesheets/bourbon/_bourbon-deprecated-upcoming.scss
1109
- - fixtures/minify-css-app/source/stylesheets/bourbon/_bourbon.scss
1110
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-color.scss
1111
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-radius.scss
1112
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-style.scss
1113
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-width.scss
1114
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_buttons.scss
1115
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_clearfix.scss
1116
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_ellipsis.scss
1117
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_font-stacks.scss
1118
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_hide-text.scss
1119
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_margin.scss
1120
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_padding.scss
1121
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_position.scss
1122
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_prefixer.scss
1123
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_retina-image.scss
1124
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_size.scss
1125
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_text-inputs.scss
1126
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_timing-functions.scss
1127
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_triangle.scss
1128
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_word-wrap.scss
1129
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_animation.scss
1130
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_appearance.scss
1131
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_backface-visibility.scss
1132
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_background-image.scss
1133
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_background.scss
1134
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_border-image.scss
1135
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_calc.scss
1136
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_columns.scss
1137
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_filter.scss
1138
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_flex-box.scss
1139
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_font-face.scss
1140
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_font-feature-settings.scss
1141
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_hidpi-media-query.scss
1142
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_hyphens.scss
1143
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_image-rendering.scss
1144
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_keyframes.scss
1145
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_linear-gradient.scss
1146
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_perspective.scss
1147
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_placeholder.scss
1148
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_radial-gradient.scss
1149
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_selection.scss
1150
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_text-decoration.scss
1151
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_transform.scss
1152
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_transition.scss
1153
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_user-select.scss
1154
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_assign-inputs.scss
1155
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_contains-falsy.scss
1156
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_contains.scss
1157
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-length.scss
1158
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-light.scss
1159
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-number.scss
1160
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-size.scss
1161
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_modular-scale.scss
1162
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_px-to-em.scss
1163
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_px-to-rem.scss
1164
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_shade.scss
1165
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_strip-units.scss
1166
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_tint.scss
1167
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_transition-property-name.scss
1168
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_unpack.scss
1169
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_convert-units.scss
1170
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_directional-values.scss
1171
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_font-source-declaration.scss
1172
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_gradient-positions-parser.scss
1173
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-angle-parser.scss
1174
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-gradient-parser.scss
1175
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-positions-parser.scss
1176
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-side-corner-parser.scss
1177
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-arg-parser.scss
1178
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-gradient-parser.scss
1179
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-positions-parser.scss
1180
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_render-gradients.scss
1181
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_shape-size-stripper.scss
1182
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_str-to-num.scss
1183
- - fixtures/minify-css-app/source/stylesheets/bourbon/settings/_asset-pipeline.scss
1184
- - fixtures/minify-css-app/source/stylesheets/bourbon/settings/_prefixer.scss
1185
- - fixtures/minify-css-app/source/stylesheets/bourbon/settings/_px-to-em.scss
1186
- - fixtures/minify-css-app/source/stylesheets/report.css
1187
- - fixtures/minify-css-app/source/stylesheets/site.css.sass
1188
- - fixtures/minify-css-app/source/stylesheets/site.xcss.sass
1189
- - fixtures/minify-js-app/config.rb
1190
- - fixtures/minify-js-app/source/inline-coffeescript.html.haml
1191
- - fixtures/minify-js-app/source/inline-js.html.haml
1192
- - fixtures/minify-js-app/source/inline-js.php
1193
- - fixtures/minify-js-app/source/javascripts/coffee_test.js.coffee
1194
- - fixtures/minify-js-app/source/javascripts/js_test.js
1195
- - fixtures/minify-js-app/source/javascripts/js_test.xjs
1196
- - fixtures/minify-js-app/source/more-js/other.js
1197
- - fixtures/missing-tilt-library-app/config.rb
1198
- - fixtures/missing-tilt-library-app/source/danger-zone/more-wiki.html.wiki
1199
- - fixtures/missing-tilt-library-app/source/safe-zone/my-wiki.html.wiki
1200
- - fixtures/missing-tilt-library-app/source/textile-source.html.textile
1201
- - fixtures/missing-tilt-library-app/source/wiki-source.html.wiki
1202
- - fixtures/more-extensionless-text-files-app/config.rb
1203
- - fixtures/more-extensionless-text-files-app/source/CNAME
1204
- - fixtures/more-extensionless-text-files-app/source/LICENSE
1205
- - fixtures/more-extensionless-text-files-app/source/README
1206
- - fixtures/more-extensionless-text-files-app/source/index.html
1207
- - fixtures/more-frontmatter-settings-app/config.rb
1208
- - fixtures/more-frontmatter-settings-app/source/alternate_layout.html.erb
1209
- - fixtures/more-frontmatter-settings-app/source/ignored.html.erb
1210
- - fixtures/more-frontmatter-settings-app/source/layouts/alternate.erb
1211
- - fixtures/more-frontmatter-settings-app/source/no_index.html.erb
1212
- - fixtures/more-ignore-app/source/about.html.erb
1213
- - fixtures/more-ignore-app/source/images/icon/messages.png
1214
- - fixtures/more-ignore-app/source/images/pic.png
1215
- - fixtures/more-ignore-app/source/images/portrait.jpg
1216
- - fixtures/more-ignore-app/source/index.html.erb
1217
- - fixtures/more-ignore-app/source/plain.html
1218
- - fixtures/more-ignore-app/source/reports/another.html
1219
- - fixtures/more-ignore-app/source/reports/index.html
1220
- - fixtures/more-markdown-app/source/layouts/layout.erb
1221
- - fixtures/more-markdown-app/source/with_layout.html.markdown
1222
- - fixtures/more-markdown-app/source/with_layout_erb.html.markdown.erb
1223
- - fixtures/more-preview-app/config.rb
1224
- - fixtures/more-preview-app/source/content.html.erb
1225
- - fixtures/more-preview-app/source/layout.erb
1226
- - fixtures/more-preview-app/source/stylesheets/_partial.sass
1227
- - fixtures/more-preview-app/source/stylesheets/_partial2.css.sass
1228
- - fixtures/more-preview-app/source/stylesheets/main.css.sass
1229
- - fixtures/more-preview-app/source/stylesheets/main2.css.sass
1230
- - fixtures/more-preview-app/source/stylesheets/plain.css.sass
1231
- - fixtures/more-traversal-app/config.rb
1232
- - fixtures/more-traversal-app/source/directory-indexed.html.erb
1233
- - fixtures/more-traversal-app/source/directory-indexed/sibling.html.erb
1234
- - fixtures/more-traversal-app/source/directory-indexed/sibling2.html.erb
1235
- - fixtures/more-traversal-app/source/directory-indexed/sub2/index.html.erb
1236
- - fixtures/more-traversal-app/source/directory-indexed/sub3/deep.html.erb
1237
- - fixtures/more-traversal-app/source/index.html.erb
1238
- - fixtures/more-traversal-app/source/layout.erb
1239
- - fixtures/more-traversal-app/source/proxied.html.erb
1240
- - fixtures/more-traversal-app/source/root.html.erb
1241
- - fixtures/more-traversal-app/source/sub/index.html.erb
1242
- - fixtures/more-traversal-app/source/sub/sibling.html.erb
1243
- - fixtures/more-traversal-app/source/sub/sibling2.html.erb
1244
- - fixtures/more-traversal-app/source/sub/sub2/index.html.erb
1245
- - fixtures/more-traversal-app/source/sub/sub3/deep.html.erb
1246
- - fixtures/multiple-data-sources-app/config.rb
1247
- - fixtures/multiple-data-sources-app/data/data.yml
1248
- - fixtures/multiple-data-sources-app/data/two.yml
1249
- - fixtures/multiple-data-sources-app/data0/one.yml
1250
- - fixtures/multiple-data-sources-app/data1/data1.yml
1251
- - fixtures/multiple-data-sources-app/data1/one.yml
1252
- - fixtures/multiple-data-sources-app/data2/data2.yml
1253
- - fixtures/multiple-data-sources-app/data2/two.yml
1254
- - fixtures/multiple-data-sources-app/source/index.html.erb
1255
- - fixtures/multiple-layouts/config.rb
1256
- - fixtures/multiple-layouts/source/index.html.erb
1257
- - fixtures/multiple-layouts/source/layout.erb
1258
- - fixtures/multiple-layouts/source/layout.str
1259
- - fixtures/multiple-sources-app/config.rb
1260
- - fixtures/multiple-sources-app/source/index.html.erb
1261
- - fixtures/multiple-sources-app/source/override-in-two.html.erb
1262
- - fixtures/multiple-sources-app/source0/override-in-one.html.erb
1263
- - fixtures/multiple-sources-app/source1/index1.html.erb
1264
- - fixtures/multiple-sources-app/source1/override-in-one.html.erb
1265
- - fixtures/multiple-sources-app/source2/index2.html.erb
1266
- - fixtures/multiple-sources-app/source2/override-in-two.html.erb
1267
- - fixtures/multiple-sources-with-duplicate-file-names-app/config.rb
1268
- - fixtures/multiple-sources-with-duplicate-file-names-app/source/index.html.erb
1269
- - fixtures/multiple-sources-with-duplicate-file-names-app/source2/index.html.erb
1270
- - fixtures/nested-data-app/config.rb
1271
- - fixtures/nested-data-app/data/examples/deeper/stuff.yml
1272
- - fixtures/nested-data-app/data/examples/more.yml
1273
- - fixtures/nested-data-app/data/examples/test.yml
1274
- - fixtures/nested-data-app/data/examples/withcontent.yaml
1275
- - fixtures/nested-data-app/source/extracontent.html.haml.erb
1276
- - fixtures/nested-data-app/source/test.html.erb
1277
- - fixtures/nested-layout-app/config.rb
1278
- - fixtures/nested-layout-app/source/another.html.markdown
1279
- - fixtures/nested-layout-app/source/data-one.html.erb
1280
- - fixtures/nested-layout-app/source/data-two.html.erb
1281
- - fixtures/nested-layout-app/source/haml-test.html.markdown
1282
- - fixtures/nested-layout-app/source/index.html.erb
1283
- - fixtures/nested-layout-app/source/layouts/inner.erb
1284
- - fixtures/nested-layout-app/source/layouts/inner_haml.haml
1285
- - fixtures/nested-layout-app/source/layouts/inner_slim.slim
1286
- - fixtures/nested-layout-app/source/layouts/master.erb
1287
- - fixtures/nested-layout-app/source/layouts/master_haml.haml
1288
- - fixtures/nested-layout-app/source/layouts/master_slim.slim
1289
- - fixtures/nested-layout-app/source/layouts/outer.erb
1290
- - fixtures/nested-layout-app/source/layouts/outer_haml.haml
1291
- - fixtures/nested-layout-app/source/layouts/outer_slim.slim
1292
- - fixtures/nested-layout-app/source/slim-test.html.markdown
1293
- - fixtures/no-layout/config.rb
1294
- - fixtures/no-layout/source/index.html.erb
1295
- - fixtures/padrino-helpers-app/config.rb
1296
- - fixtures/padrino-helpers-app/source/former_padrino_test.html.erb
1297
- - fixtures/page-classes-app/config.rb
1298
- - fixtures/page-classes-app/source/1-folder/1-inside-with-numeric.html.erb
1299
- - fixtures/page-classes-app/source/1-starts-with-numeric.html.erb
1300
- - fixtures/page-classes-app/source/2-starts-with-numeric-custom.html.erb
1301
- - fixtures/page-classes-app/source/page-classes.html.erb
1302
- - fixtures/page-classes-app/source/sub1/page-classes.html.erb
1303
- - fixtures/page-classes-app/source/sub1/sub2/page-classes.html.erb
1304
- - fixtures/page-helper-layout-block-app/config.rb
1305
- - fixtures/page-helper-layout-block-app/source/index.html.erb
1306
- - fixtures/page-helper-layout-block-app/source/layouts/alt.erb
1307
- - fixtures/page-helper-layout-block-app/source/layouts/layout.erb
1308
- - fixtures/page-helper-layout-block-app/source/path/child.html.erb
1309
- - fixtures/page-helper-layout-block-app/source/path/index.html.erb
1310
- - fixtures/page-id-app/config-proc.rb
1311
- - fixtures/page-id-app/config.rb
1312
- - fixtures/page-id-app/source/feed.xml.erb
1313
- - fixtures/page-id-app/source/fm.html.erb
1314
- - fixtures/page-id-app/source/folder/foldern.html.erb
1315
- - fixtures/page-id-app/source/fourty-two.html.erb
1316
- - fixtures/page-id-app/source/implicit.html.erb
1317
- - fixtures/page-id-app/source/index.html.erb
1318
- - fixtures/page-id-app/source/overwrites/from-default.html.erb
1319
- - fixtures/page-id-app/source/overwrites/from-frontmatter.html.erb
1320
- - fixtures/paginate-app/config.rb
1321
- - fixtures/paginate-app/source/archive/2011/index.html.erb
1322
- - fixtures/paginate-app/source/blog/2011-01-01-test-article.html.markdown
1323
- - fixtures/paginate-app/source/blog/2011-01-02-test-article.html.markdown
1324
- - fixtures/paginate-app/source/blog/2011-01-03-test-article.html.markdown
1325
- - fixtures/paginate-app/source/blog/2011-01-04-test-article.html.markdown
1326
- - fixtures/paginate-app/source/blog/2011-01-05-test-article.html.markdown
1327
- - fixtures/paginate-app/source/blog/2011-02-01-test-article.html.markdown
1328
- - fixtures/paginate-app/source/blog/2011-02-02-test-article.html.markdown
1329
- - fixtures/paginate-app/source/index.html.erb
1330
- - fixtures/paginate-app/source/tag.html.erb
1331
- - fixtures/partial-chained_templates-app/config.rb
1332
- - fixtures/partials-app/config.rb
1333
- - fixtures/partials-app/source/_block.erb
1334
- - fixtures/partials-app/source/_code_snippet.html
1335
- - fixtures/partials-app/source/_locals.erb
1336
- - fixtures/partials-app/source/_main.erb
1337
- - fixtures/partials-app/source/_main.str
1338
- - fixtures/partials-app/source/block.html.erb
1339
- - fixtures/partials-app/source/images/tiger.svg
1340
- - fixtures/partials-app/source/index.html.erb
1341
- - fixtures/partials-app/source/index_missing.html.erb
1342
- - fixtures/partials-app/source/locals.html.erb
1343
- - fixtures/partials-app/source/second.html.str
1344
- - fixtures/partials-app/source/shared/_footer.erb
1345
- - fixtures/partials-app/source/shared/_header.erb
1346
- - fixtures/partials-app/source/shared/_snippet.html.erb
1347
- - fixtures/partials-app/source/static_underscore.html.erb
1348
- - fixtures/partials-app/source/sub/_local.erb
1349
- - fixtures/partials-app/source/sub/index.html.erb
1350
- - fixtures/partials-app/source/svg.html.erb
1351
- - fixtures/partials-app/source/using_snippet.html.erb
1352
- - fixtures/passthrough-app/source/.htaccess
1353
- - fixtures/passthrough-app/source/inline-coffeescript.html.haml
1354
- - fixtures/passthrough-app/source/inline-css.html.haml
1355
- - fixtures/passthrough-app/source/inline-js.html.haml
1356
- - fixtures/passthrough-app/source/javascripts/coffee_test.js.coffee
1357
- - fixtures/passthrough-app/source/javascripts/js_test.js
1358
- - fixtures/passthrough-app/source/stylesheets/site.css.sass
1359
- - fixtures/preview-app/config.rb
1360
- - fixtures/preview-app/source/content.html.erb
1361
- - fixtures/preview-app/source/layout.erb
1362
- - fixtures/proxy-pages-app/config.rb
1363
- - fixtures/proxy-pages-app/source/real.html
1364
- - fixtures/proxy-pages-app/source/real/index.html.erb
1365
- - fixtures/proxy-pages-app/source/should_be_ignored3.html
1366
- - fixtures/proxy-pages-app/source/should_be_ignored6.html
1367
- - fixtures/proxy-pages-app/source/should_be_ignored7.html
1368
- - fixtures/proxy-pages-app/source/should_be_ignored8.html
1369
- - fixtures/related-files-app/config.rb
1370
- - fixtures/related-files-app/source/index.html.erb
1371
- - fixtures/related-files-app/source/partials/_test.erb
1372
- - fixtures/related-files-app/source/partials/_test2.haml
1373
- - fixtures/related-files-app/source/stylesheets/_include3.sass
1374
- - fixtures/related-files-app/source/stylesheets/_include4.scss
1375
- - fixtures/related-files-app/source/stylesheets/include1.css
1376
- - fixtures/related-files-app/source/stylesheets/include2.css.scss
1377
- - fixtures/related-files-app/source/stylesheets/site.css.scss
1378
- - fixtures/relative-app/config.rb
1379
- - fixtures/relative-app/source/images/blank.gif
1380
- - fixtures/relative-app/source/stylesheets/relative_assets.css.sass
1381
- - fixtures/relative-assets-app/config.rb
1382
- - fixtures/relative-assets-app/source/absolute_image_relative_css.html.erb
1383
- - fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.eot
1384
- - fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.svg
1385
- - fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.ttf
1386
- - fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.woff
1387
- - fixtures/relative-assets-app/source/images/blank.gif
1388
- - fixtures/relative-assets-app/source/images/blank2.gif
1389
- - fixtures/relative-assets-app/source/img/blank.gif
1390
- - fixtures/relative-assets-app/source/javascripts/app.js
1391
- - fixtures/relative-assets-app/source/javascripts/application.js
1392
- - fixtures/relative-assets-app/source/relative_image.html.erb
1393
- - fixtures/relative-assets-app/source/relative_image_absolute_css.html.erb
1394
- - fixtures/relative-assets-app/source/stylesheets/fonts.css
1395
- - fixtures/relative-assets-app/source/stylesheets/fonts2.css.scss
1396
- - fixtures/relative-assets-app/source/stylesheets/relative_assets.css.sass
1397
- - fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset-sass.sass
1398
- - fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset.scss
1399
- - fixtures/sass-assets-path-app/config.rb
1400
- - fixtures/sass-assets-path-app/my-vendor/stylesheets/_partial.sass
1401
- - fixtures/sass-assets-path-app/source/stylesheets/plain.css.sass
1402
- - fixtures/sass-in-slim-app/config.rb
1403
- - fixtures/scss-app/config.rb
1404
- - fixtures/scss-app/source/stylesheets/error.css.sass
1405
- - fixtures/scss-app/source/stylesheets/layout.css.sass
1406
- - fixtures/scss-app/source/stylesheets/site_scss.css.scss
1407
- - fixtures/sinatra-app/config.rb
1408
- - fixtures/sinatra-app/source/index.html.erb
1409
- - fixtures/slim-content-for-app/config.rb
1410
- - fixtures/slim-content-for-app/source/index.html.slim
1411
- - fixtures/slim-content-for-app/source/layouts/layout.slim
1412
- - fixtures/strip-url-app/config.rb
1413
- - fixtures/strip-url-app/source/index.html.erb
1414
- - fixtures/strip-url-app/source/other.html.erb
1415
- - fixtures/strip-url-app/source/subdir/index.html.erb
1416
- - fixtures/stylus-preview-app/config.rb
1417
- - fixtures/stylus-preview-app/source/content.html.erb
1418
- - fixtures/stylus-preview-app/source/stylesheets/_partial.styl
1419
- - fixtures/stylus-preview-app/source/stylesheets/_partial2.css.styl
1420
- - fixtures/stylus-preview-app/source/stylesheets/main.css.styl
1421
- - fixtures/stylus-preview-app/source/stylesheets/main2.css.styl
1422
- - fixtures/stylus-preview-app/source/stylesheets/plain.css.styl
1423
- - fixtures/traversal-app/config.rb
1424
- - fixtures/traversal-app/source/.htaccess
1425
- - fixtures/traversal-app/source/directory-indexed.html.erb
1426
- - fixtures/traversal-app/source/directory-indexed/sibling.html.erb
1427
- - fixtures/traversal-app/source/directory-indexed/sibling2.html.erb
1428
- - fixtures/traversal-app/source/directory-indexed/sub2/index.html.erb
1429
- - fixtures/traversal-app/source/directory-indexed/sub3/deep.html.erb
1430
- - fixtures/traversal-app/source/index.html.erb
1431
- - fixtures/traversal-app/source/layout.erb
1432
- - fixtures/traversal-app/source/proxied.html.erb
1433
- - fixtures/traversal-app/source/root.html.erb
1434
- - fixtures/traversal-app/source/sub/index.html.erb
1435
- - fixtures/traversal-app/source/sub/sibling.html.erb
1436
- - fixtures/traversal-app/source/sub/sibling2.html.erb
1437
- - fixtures/traversal-app/source/sub/sub2/index.html.erb
1438
- - fixtures/traversal-app/source/sub/sub3/deep.html.erb
1439
- - fixtures/v4-extension-callbacks/config.rb
1440
- - fixtures/v4-extension-callbacks/source/index.html.erb
1441
- - fixtures/wildcard-app/config.rb
1442
- - fixtures/wildcard-app/source/admin/index.html.erb
1443
- - fixtures/wildcard-app/source/admin/page.html.erb
1444
- - fixtures/wildcard-app/source/index.html.erb
1445
- - fixtures/wildcard-app/source/layouts/admin.erb
1446
- - fixtures/wildcard-app/source/layouts/layout.erb
1447
- - fixtures/wildcard-directory-index-app/config.rb
1448
- - fixtures/wildcard-directory-index-app/source/admin/index.html.erb
1449
- - fixtures/wildcard-directory-index-app/source/admin/page.html.erb
1450
- - fixtures/wildcard-directory-index-app/source/index.html.erb
1451
- - fixtures/wildcard-directory-index-app/source/layouts/admin.erb
1452
- - fixtures/wildcard-directory-index-app/source/layouts/layout.erb
1453
360
  - lib/middleman-core.rb
1454
361
  - lib/middleman-core/application.rb
1455
362
  - lib/middleman-core/builder.rb
@@ -1464,15 +371,30 @@ files:
1464
371
  - lib/middleman-core/core_extensions/collections/pagination.rb
1465
372
  - lib/middleman-core/core_extensions/collections/step_context.rb
1466
373
  - lib/middleman-core/core_extensions/data.rb
374
+ - lib/middleman-core/core_extensions/data/controller.rb
375
+ - lib/middleman-core/core_extensions/data/proxies/array.rb
376
+ - lib/middleman-core/core_extensions/data/proxies/base.rb
377
+ - lib/middleman-core/core_extensions/data/proxies/hash.rb
378
+ - lib/middleman-core/core_extensions/data/stores/base.rb
379
+ - lib/middleman-core/core_extensions/data/stores/in_memory.rb
380
+ - lib/middleman-core/core_extensions/data/stores/local_file.rb
1467
381
  - lib/middleman-core/core_extensions/default_helpers.rb
1468
382
  - lib/middleman-core/core_extensions/external_helpers.rb
1469
383
  - lib/middleman-core/core_extensions/file_watcher.rb
1470
384
  - lib/middleman-core/core_extensions/front_matter.rb
1471
385
  - lib/middleman-core/core_extensions/i18n.rb
1472
- - lib/middleman-core/core_extensions/inline_url_rewriter.rb
1473
386
  - lib/middleman-core/core_extensions/rendering.rb
1474
387
  - lib/middleman-core/core_extensions/routing.rb
1475
388
  - lib/middleman-core/core_extensions/show_exceptions.rb
389
+ - lib/middleman-core/data_proxy.rb
390
+ - lib/middleman-core/dependencies.rb
391
+ - lib/middleman-core/dependencies/edge.rb
392
+ - lib/middleman-core/dependencies/graph.rb
393
+ - lib/middleman-core/dependencies/vertices.rb
394
+ - lib/middleman-core/dependencies/vertices/data_collection_path_vertex.rb
395
+ - lib/middleman-core/dependencies/vertices/data_collection_vertex.rb
396
+ - lib/middleman-core/dependencies/vertices/file_vertex.rb
397
+ - lib/middleman-core/dependencies/vertices/vertex.rb
1476
398
  - lib/middleman-core/dns_resolver.rb
1477
399
  - lib/middleman-core/dns_resolver/basic_network_resolver.rb
1478
400
  - lib/middleman-core/dns_resolver/hosts_resolver.rb
@@ -1494,6 +416,8 @@ files:
1494
416
  - lib/middleman-core/extensions/minify_javascript.rb
1495
417
  - lib/middleman-core/extensions/relative_assets.rb
1496
418
  - lib/middleman-core/file_renderer.rb
419
+ - lib/middleman-core/filter.rb
420
+ - lib/middleman-core/inline_url_filter.rb
1497
421
  - lib/middleman-core/load_paths.rb
1498
422
  - lib/middleman-core/logger.rb
1499
423
  - lib/middleman-core/meta_pages.rb
@@ -1534,6 +458,7 @@ files:
1534
458
  - lib/middleman-core/renderers/sass.rb
1535
459
  - lib/middleman-core/renderers/sass_functions.rb
1536
460
  - lib/middleman-core/renderers/slim.rb
461
+ - lib/middleman-core/renderers/stylus.rb
1537
462
  - lib/middleman-core/sitemap/extensions/ignores.rb
1538
463
  - lib/middleman-core/sitemap/extensions/import.rb
1539
464
  - lib/middleman-core/sitemap/extensions/move_file.rb
@@ -1543,6 +468,7 @@ files:
1543
468
  - lib/middleman-core/sitemap/extensions/request_endpoints.rb
1544
469
  - lib/middleman-core/sitemap/extensions/traversal.rb
1545
470
  - lib/middleman-core/sitemap/resource.rb
471
+ - lib/middleman-core/sitemap/resource_list_container.rb
1546
472
  - lib/middleman-core/sitemap/store.rb
1547
473
  - lib/middleman-core/sources.rb
1548
474
  - lib/middleman-core/sources/source_watcher.rb
@@ -1556,6 +482,7 @@ files:
1556
482
  - lib/middleman-core/util.rb
1557
483
  - lib/middleman-core/util/binary.rb
1558
484
  - lib/middleman-core/util/data.rb
485
+ - lib/middleman-core/util/empty_hash.rb
1559
486
  - lib/middleman-core/util/files.rb
1560
487
  - lib/middleman-core/util/paths.rb
1561
488
  - lib/middleman-core/util/rack.rb
@@ -1563,21 +490,7 @@ files:
1563
490
  - lib/middleman-core/version.rb
1564
491
  - lib/middleman/rack.rb
1565
492
  - middleman-core.gemspec
1566
- - spec/middleman-core/binary_spec/middleman
1567
- - spec/middleman-core/binary_spec/middleman.png
1568
- - spec/middleman-core/binary_spec/plain.txt
1569
- - spec/middleman-core/binary_spec/stars.svgz
1570
- - spec/middleman-core/binary_spec/unicode
1571
- - spec/middleman-core/binary_spec/unicode.txt
1572
- - spec/middleman-core/callbacks_spec.rb
1573
- - spec/middleman-core/core_extensions/data_spec.rb
1574
- - spec/middleman-core/dns_resolver_spec.rb
1575
- - spec/middleman-core/preview_server/server_hostname_spec.rb
1576
- - spec/middleman-core/preview_server/server_ip_address_spec.rb
1577
- - spec/middleman-core/util_spec.rb
1578
- - spec/spec_helper.rb
1579
- - spec/support/given.rb
1580
- homepage: https://middlemanapp.com
493
+ homepage: http://middlemanapp.com
1581
494
  licenses:
1582
495
  - MIT
1583
496
  metadata: {}
@@ -1589,14 +502,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
1589
502
  requirements:
1590
503
  - - ">="
1591
504
  - !ruby/object:Gem::Version
1592
- version: 2.5.0
505
+ version: 2.3.0
1593
506
  required_rubygems_version: !ruby/object:Gem::Requirement
1594
507
  requirements:
1595
- - - ">="
508
+ - - ">"
1596
509
  - !ruby/object:Gem::Version
1597
- version: '0'
510
+ version: 1.3.1
1598
511
  requirements: []
1599
- rubygems_version: 3.4.10
512
+ rubygems_version: 3.0.2
1600
513
  signing_key:
1601
514
  specification_version: 4
1602
515
  summary: Hand-crafted frontend development