middleman-core 4.6.0 → 5.0.0.rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1210) hide show
  1. checksums.yaml +4 -4
  2. data/.rspec +1 -0
  3. data/.simplecov +4 -2
  4. data/.yardopts +2 -1
  5. data/Rakefile +1 -1
  6. data/cucumber.yml +2 -0
  7. data/lib/middleman-core/application.rb +32 -21
  8. data/lib/middleman-core/builder.rb +224 -88
  9. data/lib/middleman-core/callback_manager.rb +1 -1
  10. data/lib/middleman-core/config_context.rb +3 -3
  11. data/lib/middleman-core/configuration.rb +20 -8
  12. data/lib/middleman-core/contracts.rb +39 -3
  13. data/lib/middleman-core/core_extensions/collections/lazy_root.rb +2 -2
  14. data/lib/middleman-core/core_extensions/collections/lazy_step.rb +10 -10
  15. data/lib/middleman-core/core_extensions/collections/pagination.rb +6 -7
  16. data/lib/middleman-core/core_extensions/collections.rb +7 -9
  17. data/lib/middleman-core/core_extensions/data/controller.rb +109 -0
  18. data/lib/middleman-core/core_extensions/data/proxies/array.rb +74 -0
  19. data/lib/middleman-core/core_extensions/data/proxies/base.rb +82 -0
  20. data/lib/middleman-core/core_extensions/data/proxies/hash.rb +32 -0
  21. data/lib/middleman-core/core_extensions/data/stores/base.rb +42 -0
  22. data/lib/middleman-core/core_extensions/data/stores/in_memory.rb +52 -0
  23. data/lib/middleman-core/core_extensions/data/stores/local_file.rb +92 -0
  24. data/lib/middleman-core/core_extensions/data.rb +33 -204
  25. data/lib/middleman-core/core_extensions/default_helpers.rb +37 -46
  26. data/lib/middleman-core/core_extensions/external_helpers.rb +1 -1
  27. data/lib/middleman-core/core_extensions/file_watcher.rb +2 -4
  28. data/lib/middleman-core/core_extensions/front_matter.rb +28 -17
  29. data/lib/middleman-core/core_extensions/i18n.rb +55 -51
  30. data/lib/middleman-core/core_extensions/rendering.rb +6 -0
  31. data/lib/middleman-core/core_extensions/routing.rb +21 -18
  32. data/lib/middleman-core/core_extensions.rb +3 -9
  33. data/lib/middleman-core/data_proxy.rb +69 -0
  34. data/lib/middleman-core/dependencies/edge.rb +27 -0
  35. data/lib/middleman-core/dependencies/graph.rb +144 -0
  36. data/lib/middleman-core/dependencies/vertices/data_collection_path_vertex.rb +78 -0
  37. data/lib/middleman-core/dependencies/vertices/data_collection_vertex.rb +67 -0
  38. data/lib/middleman-core/dependencies/vertices/file_vertex.rb +65 -0
  39. data/lib/middleman-core/dependencies/vertices/vertex.rb +82 -0
  40. data/lib/middleman-core/dependencies/vertices.rb +18 -0
  41. data/lib/middleman-core/dependencies.rb +131 -0
  42. data/lib/middleman-core/dns_resolver/basic_network_resolver.rb +6 -4
  43. data/lib/middleman-core/dns_resolver/hosts_resolver.rb +2 -2
  44. data/lib/middleman-core/dns_resolver/local_link_resolver.rb +3 -3
  45. data/lib/middleman-core/dns_resolver/network_resolver.rb +2 -2
  46. data/lib/middleman-core/dns_resolver.rb +7 -5
  47. data/lib/middleman-core/extension.rb +39 -42
  48. data/lib/middleman-core/extension_manager.rb +8 -4
  49. data/lib/middleman-core/extensions/asset_hash.rb +48 -52
  50. data/lib/middleman-core/extensions/asset_host.rb +30 -18
  51. data/lib/middleman-core/extensions/automatic_alt_tags.rb +6 -4
  52. data/lib/middleman-core/extensions/automatic_image_sizes.rb +9 -7
  53. data/lib/middleman-core/extensions/cache_buster.rb +21 -8
  54. data/lib/middleman-core/extensions/directory_indexes.rb +14 -14
  55. data/lib/middleman-core/extensions/external_pipeline.rb +15 -11
  56. data/lib/middleman-core/extensions/gzip.rb +16 -11
  57. data/lib/middleman-core/extensions/lorem.rb +15 -14
  58. data/lib/middleman-core/extensions/minify_css.rb +58 -96
  59. data/lib/middleman-core/extensions/minify_javascript.rb +65 -109
  60. data/lib/middleman-core/extensions/relative_assets.rb +30 -19
  61. data/lib/middleman-core/extensions.rb +14 -16
  62. data/lib/middleman-core/file_renderer.rb +24 -22
  63. data/lib/middleman-core/filter.rb +56 -0
  64. data/lib/middleman-core/inline_url_filter.rb +76 -0
  65. data/lib/middleman-core/load_paths.rb +13 -14
  66. data/lib/middleman-core/logger.rb +6 -13
  67. data/lib/middleman-core/meta_pages/sitemap_resource.rb +0 -2
  68. data/lib/middleman-core/meta_pages/sitemap_tree.rb +1 -1
  69. data/lib/middleman-core/meta_pages.rb +2 -2
  70. data/lib/middleman-core/preview_server/checks.rb +15 -4
  71. data/lib/middleman-core/preview_server/information.rb +22 -23
  72. data/lib/middleman-core/preview_server/network_interface_inventory.rb +3 -3
  73. data/lib/middleman-core/preview_server/server_hostname.rb +2 -0
  74. data/lib/middleman-core/preview_server/server_information.rb +5 -5
  75. data/lib/middleman-core/preview_server/server_information_callback_proxy.rb +1 -1
  76. data/lib/middleman-core/preview_server/server_ip_address.rb +15 -6
  77. data/lib/middleman-core/preview_server/server_url.rb +39 -11
  78. data/lib/middleman-core/preview_server/tcp_port_prober.rb +1 -1
  79. data/lib/middleman-core/preview_server.rb +38 -33
  80. data/lib/middleman-core/rack.rb +11 -16
  81. data/lib/middleman-core/renderers/coffee_script.rb +8 -4
  82. data/lib/middleman-core/renderers/erb.rb +3 -15
  83. data/lib/middleman-core/renderers/haml.rb +12 -44
  84. data/lib/middleman-core/renderers/kramdown.rb +11 -11
  85. data/lib/middleman-core/renderers/less.rb +26 -10
  86. data/lib/middleman-core/renderers/liquid.rb +9 -12
  87. data/lib/middleman-core/renderers/markdown.rb +8 -10
  88. data/lib/middleman-core/renderers/redcarpet.rb +17 -8
  89. data/lib/middleman-core/renderers/sass.rb +30 -10
  90. data/lib/middleman-core/renderers/sass_functions.rb +16 -10
  91. data/lib/middleman-core/renderers/slim.rb +3 -11
  92. data/lib/middleman-core/renderers/stylus.rb +10 -0
  93. data/lib/middleman-core/sitemap/extensions/ignores.rb +5 -9
  94. data/lib/middleman-core/sitemap/extensions/import.rb +16 -17
  95. data/lib/middleman-core/sitemap/extensions/move_file.rb +7 -5
  96. data/lib/middleman-core/sitemap/extensions/on_disk.rb +10 -9
  97. data/lib/middleman-core/sitemap/extensions/proxies.rb +27 -20
  98. data/lib/middleman-core/sitemap/extensions/redirects.rb +4 -4
  99. data/lib/middleman-core/sitemap/extensions/request_endpoints.rb +4 -5
  100. data/lib/middleman-core/sitemap/extensions/traversal.rb +75 -29
  101. data/lib/middleman-core/sitemap/resource.rb +169 -54
  102. data/lib/middleman-core/sitemap/resource_list_container.rb +248 -0
  103. data/lib/middleman-core/sitemap/store.rb +29 -103
  104. data/lib/middleman-core/sources/source_watcher.rb +28 -22
  105. data/lib/middleman-core/sources.rb +40 -27
  106. data/lib/middleman-core/step_definitions/builder_steps.rb +73 -12
  107. data/lib/middleman-core/step_definitions/commandline_steps.rb +18 -14
  108. data/lib/middleman-core/step_definitions/middleman_steps.rb +24 -14
  109. data/lib/middleman-core/step_definitions/server_steps.rb +19 -18
  110. data/lib/middleman-core/step_definitions.rb +0 -3
  111. data/lib/middleman-core/template_context.rb +55 -23
  112. data/lib/middleman-core/template_renderer.rb +70 -44
  113. data/lib/middleman-core/util/binary.rb +307 -3
  114. data/lib/middleman-core/util/data.rb +14 -49
  115. data/lib/middleman-core/util/empty_hash.rb +3 -0
  116. data/lib/middleman-core/util/files.rb +35 -9
  117. data/lib/middleman-core/util/paths.rb +75 -71
  118. data/lib/middleman-core/util/rack.rb +8 -7
  119. data/lib/middleman-core/util/uri_templates.rb +2 -5
  120. data/lib/middleman-core/util.rb +2 -10
  121. data/lib/middleman-core/version.rb +1 -1
  122. data/lib/middleman-core.rb +5 -1
  123. data/middleman-core.gemspec +23 -24
  124. metadata +98 -2299
  125. data/features/asset_hash.feature +0 -340
  126. data/features/asset_host.feature +0 -55
  127. data/features/auto_layout.feature +0 -36
  128. data/features/automatic_alt_tags.feature +0 -8
  129. data/features/automatic_directory_matcher.feature +0 -32
  130. data/features/automatic_image_sizes.feature +0 -29
  131. data/features/builder.feature +0 -61
  132. data/features/cache_buster.feature +0 -56
  133. data/features/capture_html.feature +0 -18
  134. data/features/chained_templates.feature +0 -109
  135. data/features/clean_build.feature +0 -78
  136. data/features/coffee-script.feature +0 -22
  137. data/features/collections.feature +0 -265
  138. data/features/console.feature +0 -11
  139. data/features/content_for.feature +0 -16
  140. data/features/content_type.feature +0 -46
  141. data/features/custom-source.feature +0 -7
  142. data/features/custom_layout_engines.feature +0 -8
  143. data/features/custom_layouts.feature +0 -84
  144. data/features/data.feature +0 -116
  145. data/features/default-layout.feature +0 -90
  146. data/features/default_alt_tag.feature +0 -11
  147. data/features/directory_index.feature +0 -82
  148. data/features/dynamic_pages.feature +0 -136
  149. data/features/encoding_option.feature +0 -28
  150. data/features/extension_api_deprecations.feature +0 -10
  151. data/features/extension_hooks.feature +0 -13
  152. data/features/extensionless_text_files.feature +0 -24
  153. data/features/feature_params.feature +0 -6
  154. data/features/former_padrino_helpers.feature +0 -27
  155. data/features/front-matter-neighbor.feature +0 -157
  156. data/features/front-matter.feature +0 -108
  157. data/features/frontmatter_page_settings.feature +0 -43
  158. data/features/gzip.feature +0 -51
  159. data/features/helpers_auto_javascript_include_tag.feature +0 -53
  160. data/features/helpers_auto_stylesheet_link_tag.feature +0 -48
  161. data/features/helpers_content_tag.feature +0 -16
  162. data/features/helpers_external.feature +0 -12
  163. data/features/helpers_form_tag.feature +0 -26
  164. data/features/helpers_link_to.feature +0 -195
  165. data/features/helpers_lorem.feature +0 -6
  166. data/features/helpers_page_classes.feature +0 -32
  167. data/features/helpers_select_tag.feature +0 -17
  168. data/features/helpers_url_for.feature +0 -152
  169. data/features/i18n_builder.feature +0 -166
  170. data/features/i18n_force_locale.feature +0 -13
  171. data/features/i18n_link_to.feature +0 -307
  172. data/features/i18n_mixed_sources.feature +0 -39
  173. data/features/i18n_partials.feature +0 -23
  174. data/features/i18n_preview.feature +0 -252
  175. data/features/ignore.feature +0 -206
  176. data/features/ignore_already_minified.feature +0 -47
  177. data/features/image_srcset_paths.feature +0 -7
  178. data/features/import_files.feature +0 -15
  179. data/features/layouts_dir.feature +0 -38
  180. data/features/liquid.feature +0 -14
  181. data/features/markdown.feature +0 -23
  182. data/features/markdown_kramdown.feature +0 -55
  183. data/features/markdown_kramdown_in_haml.feature +0 -42
  184. data/features/markdown_kramdown_in_slim.feature +0 -42
  185. data/features/markdown_redcarpet.feature +0 -167
  186. data/features/markdown_redcarpet_in_haml.feature +0 -41
  187. data/features/markdown_redcarpet_in_slim.feature +0 -41
  188. data/features/minify_css.feature +0 -205
  189. data/features/minify_javascript.feature +0 -265
  190. data/features/missing-tilt-lib.feature +0 -20
  191. data/features/more-clean_build.feature +0 -14
  192. data/features/more-extensionless_text_files.feature +0 -28
  193. data/features/more-frontmatter_page_settings.feature +0 -42
  194. data/features/more-ignore.feature +0 -62
  195. data/features/more-sitemap_traversal.feature +0 -83
  196. data/features/more-wildcard_page_helper.feature +0 -10
  197. data/features/mount_rack.feature +0 -65
  198. data/features/move_files.feature +0 -44
  199. data/features/multiple-sources.feature +0 -35
  200. data/features/nested_layouts.feature +0 -58
  201. data/features/page-id.feature +0 -74
  202. data/features/paginate.feature +0 -204
  203. data/features/partials.feature +0 -64
  204. data/features/preview_changes.feature +0 -40
  205. data/features/proxy_pages.feature +0 -84
  206. data/features/redirects.feature +0 -61
  207. data/features/relative_assets.feature +0 -148
  208. data/features/relative_assets_helpers_only.feature +0 -125
  209. data/features/sass-assets-paths.feature +0 -11
  210. data/features/sass_in_slim.feature +0 -40
  211. data/features/sass_partials.feature +0 -54
  212. data/features/scss-support.feature +0 -17
  213. data/features/sitemap_traversal.feature +0 -83
  214. data/features/slim.feature +0 -81
  215. data/features/strip_url.feature +0 -40
  216. data/features/support/env.rb +0 -20
  217. data/features/support/preserve_mime_types.rb +0 -7
  218. data/features/template-key-collision.feature +0 -26
  219. data/features/tilde_directories.feature +0 -14
  220. data/features/unicode_filecontents.feature +0 -13
  221. data/features/unicode_filenames.feature +0 -36
  222. data/features/v4_extension_callbacks.feature +0 -8
  223. data/features/wildcard_page_helper.feature +0 -10
  224. data/fixtures/asset-hash-app/config.rb +0 -6
  225. data/fixtures/asset-hash-app/lib/middleware.rb +0 -16
  226. data/fixtures/asset-hash-app/source/api.json.erb +0 -1
  227. data/fixtures/asset-hash-app/source/apple-touch-icon.png +0 -0
  228. data/fixtures/asset-hash-app/source/favicon.ico +0 -0
  229. data/fixtures/asset-hash-app/source/fonts/fontawesome-webfont.woff +0 -0
  230. data/fixtures/asset-hash-app/source/fonts/fontawesome-webfont.woff2 +0 -0
  231. data/fixtures/asset-hash-app/source/images/100px.gif +0 -0
  232. data/fixtures/asset-hash-app/source/images/100px.jpg +0 -0
  233. data/fixtures/asset-hash-app/source/images/100px.png +0 -0
  234. data/fixtures/asset-hash-app/source/images/200px.jpg +0 -0
  235. data/fixtures/asset-hash-app/source/images/300px.jpg +0 -0
  236. data/fixtures/asset-hash-app/source/index.html.erb +0 -314
  237. data/fixtures/asset-hash-app/source/javascripts/application.js +0 -8
  238. data/fixtures/asset-hash-app/source/layout.erb +0 -18
  239. data/fixtures/asset-hash-app/source/other.html.erb +0 -5
  240. data/fixtures/asset-hash-app/source/partials.html.erb +0 -1
  241. data/fixtures/asset-hash-app/source/slim.html.slim +0 -8
  242. data/fixtures/asset-hash-app/source/stylesheets/_partial.sass +0 -2
  243. data/fixtures/asset-hash-app/source/stylesheets/fragment.css.scss +0 -7
  244. data/fixtures/asset-hash-app/source/stylesheets/site.css.scss +0 -4
  245. data/fixtures/asset-hash-app/source/stylesheets/uses_fonts.css +0 -4
  246. data/fixtures/asset-hash-app/source/stylesheets/uses_partials.css.sass +0 -4
  247. data/fixtures/asset-hash-app/source/subdir/api.json.erb +0 -1
  248. data/fixtures/asset-hash-app/source/subdir/index.html.erb +0 -317
  249. data/fixtures/asset-hash-host-app/source/images/100px.gif +0 -0
  250. data/fixtures/asset-hash-host-app/source/images/100px.jpg +0 -0
  251. data/fixtures/asset-hash-host-app/source/images/100px.png +0 -0
  252. data/fixtures/asset-hash-host-app/source/index.html.erb +0 -9
  253. data/fixtures/asset-hash-host-app/source/layout.erb +0 -17
  254. data/fixtures/asset-hash-host-app/source/other.html.erb +0 -5
  255. data/fixtures/asset-hash-host-app/source/stylesheets/fragment.css.scss +0 -7
  256. data/fixtures/asset-hash-host-app/source/stylesheets/site.css.scss +0 -4
  257. data/fixtures/asset-hash-host-app/source/subdir/index.html.erb +0 -6
  258. data/fixtures/asset-hash-minified-app/config.rb +0 -5
  259. data/fixtures/asset-hash-minified-app/source/images/100px.jpg +0 -0
  260. data/fixtures/asset-hash-minified-app/source/javascripts/jquery.min.js +0 -5
  261. data/fixtures/asset-hash-minified-app/source/stylesheets/test.css +0 -3
  262. data/fixtures/asset-hash-prefix/config.rb +0 -7
  263. data/fixtures/asset-hash-prefix/lib/middleware.rb +0 -16
  264. data/fixtures/asset-hash-prefix/source/index.html.erb +0 -6
  265. data/fixtures/asset-hash-prefix/source/javascripts/application.js +0 -2
  266. data/fixtures/asset-hash-prefix/source/javascripts/application.js.map +0 -1
  267. data/fixtures/asset-hash-prefix/source/layout.erb +0 -17
  268. data/fixtures/asset-hash-remove-filename/config.rb +0 -9
  269. data/fixtures/asset-hash-remove-filename/source/index.html.erb +0 -6
  270. data/fixtures/asset-hash-remove-filename/source/javascripts/application.js +0 -2
  271. data/fixtures/asset-hash-remove-filename/source/javascripts/application.js.map +0 -1
  272. data/fixtures/asset-hash-remove-filename/source/layout.erb +0 -17
  273. data/fixtures/asset-hash-source-map/config.rb +0 -6
  274. data/fixtures/asset-hash-source-map/lib/middleware.rb +0 -16
  275. data/fixtures/asset-hash-source-map/source/index.html.erb +0 -6
  276. data/fixtures/asset-hash-source-map/source/javascripts/application.js +0 -2
  277. data/fixtures/asset-hash-source-map/source/javascripts/application.js.map +0 -1
  278. data/fixtures/asset-hash-source-map/source/layout.erb +0 -17
  279. data/fixtures/asset-host-app/config.rb +0 -1
  280. data/fixtures/asset-host-app/source/.htaccess +0 -1
  281. data/fixtures/asset-host-app/source/asset_host.html.erb +0 -55
  282. data/fixtures/asset-host-app/source/images/blank.gif +0 -0
  283. data/fixtures/asset-host-app/source/images/blank1.gif +0 -0
  284. data/fixtures/asset-host-app/source/images/blank10.gif +0 -0
  285. data/fixtures/asset-host-app/source/images/blank100.gif +0 -0
  286. data/fixtures/asset-host-app/source/images/blank101.gif +0 -0
  287. data/fixtures/asset-host-app/source/images/blank1010.gif +0 -0
  288. data/fixtures/asset-host-app/source/images/blank102.gif +0 -0
  289. data/fixtures/asset-host-app/source/images/blank1020.gif +0 -0
  290. data/fixtures/asset-host-app/source/images/blank1021.gif +0 -0
  291. data/fixtures/asset-host-app/source/images/blank1022.gif +0 -0
  292. data/fixtures/asset-host-app/source/images/blank1023.gif +0 -0
  293. data/fixtures/asset-host-app/source/images/blank1024.gif +0 -0
  294. data/fixtures/asset-host-app/source/images/blank103.gif +0 -0
  295. data/fixtures/asset-host-app/source/images/blank1030.gif +0 -0
  296. data/fixtures/asset-host-app/source/images/blank1031.gif +0 -0
  297. data/fixtures/asset-host-app/source/images/blank1032.gif +0 -0
  298. data/fixtures/asset-host-app/source/images/blank1033.gif +0 -0
  299. data/fixtures/asset-host-app/source/images/blank1034.gif +0 -0
  300. data/fixtures/asset-host-app/source/images/blank104.gif +0 -0
  301. data/fixtures/asset-host-app/source/images/blank1043.gif +0 -0
  302. data/fixtures/asset-host-app/source/images/blank1054.gif +0 -0
  303. data/fixtures/asset-host-app/source/images/blank2.gif +0 -0
  304. data/fixtures/asset-host-app/source/images/blank20.gif +0 -0
  305. data/fixtures/asset-host-app/source/images/blank21.gif +0 -0
  306. data/fixtures/asset-host-app/source/images/blank22.gif +0 -0
  307. data/fixtures/asset-host-app/source/images/blank23.gif +0 -0
  308. data/fixtures/asset-host-app/source/images/blank24.gif +0 -0
  309. data/fixtures/asset-host-app/source/images/blank3.gif +0 -0
  310. data/fixtures/asset-host-app/source/images/blank30.gif +0 -0
  311. data/fixtures/asset-host-app/source/images/blank31.gif +0 -0
  312. data/fixtures/asset-host-app/source/images/blank32.gif +0 -0
  313. data/fixtures/asset-host-app/source/images/blank33.gif +0 -0
  314. data/fixtures/asset-host-app/source/images/blank34.gif +0 -0
  315. data/fixtures/asset-host-app/source/images/blank4.gif +0 -0
  316. data/fixtures/asset-host-app/source/images/blank43.gif +0 -0
  317. data/fixtures/asset-host-app/source/images/blank54.gif +0 -0
  318. data/fixtures/asset-host-app/source/javascripts/asset_host.js +0 -2
  319. data/fixtures/asset-host-app/source/stylesheets/asset_host.css.sass +0 -48
  320. data/fixtures/auto-css-app/config.rb +0 -9
  321. data/fixtures/auto-css-app/source/auto-css/auto-css.html.erb +0 -1
  322. data/fixtures/auto-css-app/source/auto-css/index.html.erb +0 -1
  323. data/fixtures/auto-css-app/source/auto-css/sub/auto-css.html.erb +0 -1
  324. data/fixtures/auto-css-app/source/auto-css.html.erb +0 -1
  325. data/fixtures/auto-css-app/source/stylesheets/auto-css/auto-css.css +0 -3
  326. data/fixtures/auto-css-app/source/stylesheets/auto-css/index.css +0 -0
  327. data/fixtures/auto-css-app/source/stylesheets/auto-css/sub/auto-css.css +0 -3
  328. data/fixtures/auto-css-app/source/stylesheets/auto-css.css +0 -3
  329. data/fixtures/auto-js-app/config.rb +0 -9
  330. data/fixtures/auto-js-app/source/auto-js/auto-js.html.erb +0 -1
  331. data/fixtures/auto-js-app/source/auto-js/index.html.erb +0 -1
  332. data/fixtures/auto-js-app/source/auto-js/sub/auto-js.html.erb +0 -1
  333. data/fixtures/auto-js-app/source/auto-js.html.erb +0 -1
  334. data/fixtures/auto-js-app/source/javascripts/auto-js/auto-js.js +0 -1
  335. data/fixtures/auto-js-app/source/javascripts/auto-js/index.js +0 -1
  336. data/fixtures/auto-js-app/source/javascripts/auto-js/sub/auto-js.js +0 -1
  337. data/fixtures/auto-js-app/source/javascripts/auto-js.js +0 -1
  338. data/fixtures/auto-js-directory-index-app/config.rb +0 -1
  339. data/fixtures/auto-js-directory-index-app/source/auto-js.html.erb +0 -1
  340. data/fixtures/auto-js-directory-index-app/source/javascripts/auto-js.js +0 -1
  341. data/fixtures/automatic-alt-tags-app/config.rb +0 -0
  342. data/fixtures/automatic-alt-tags-app/source/auto-image-sizes.html.erb +0 -1
  343. data/fixtures/automatic-alt-tags-app/source/images/blank.gif +0 -0
  344. data/fixtures/automatic-directory-matcher-app/config.rb +0 -1
  345. data/fixtures/automatic-directory-matcher-app/source/root-plain.html +0 -1
  346. data/fixtures/automatic-directory-matcher-app/source/root.html.erb +0 -1
  347. data/fixtures/automatic-directory-matcher-app/source/sub--sub--sub-plain.html +0 -1
  348. data/fixtures/automatic-directory-matcher-app/source/sub--sub--sub.html.erb +0 -1
  349. data/fixtures/automatic-directory-matcher-app/source/sub--sub-plain.html +0 -1
  350. data/fixtures/automatic-directory-matcher-app/source/sub--sub.html.erb +0 -1
  351. data/fixtures/automatic-image-size-app/config.rb +0 -0
  352. data/fixtures/automatic-image-size-app/source/auto-image-sizes.html.erb +0 -1
  353. data/fixtures/automatic-image-size-app/source/images/blank.gif +0 -0
  354. data/fixtures/automatic-image-size-app/source/markdown-sizes.html.markdown +0 -1
  355. data/fixtures/basic-data-app/config.rb +0 -2
  356. data/fixtures/basic-data-app/data/test.yml +0 -4
  357. data/fixtures/basic-data-app/data/test2.json +0 -4
  358. data/fixtures/basic-data-app/data/test3.toml +0 -7
  359. data/fixtures/basic-data-app/source/data.html.erb +0 -5
  360. data/fixtures/basic-data-app/source/data3.html.erb +0 -5
  361. data/fixtures/basic-data-app/source/data4.html.erb +0 -5
  362. data/fixtures/build-with-errors-app/config.rb +0 -1
  363. data/fixtures/build-with-errors-app/source/index.html.erb +0 -1
  364. data/fixtures/cache-buster-app/config.rb +0 -0
  365. data/fixtures/cache-buster-app/source/cache-buster.html.erb +0 -3
  366. data/fixtures/cache-buster-app/source/images/blank.gif +0 -0
  367. data/fixtures/cache-buster-app/source/stylesheets/relative_assets.css.sass +0 -2
  368. data/fixtures/cache-buster-app/source/stylesheets/site.css.sass +0 -3
  369. data/fixtures/capture-html-app/config.rb +0 -5
  370. data/fixtures/capture-html-app/source/capture_html_erb.html.erb +0 -5
  371. data/fixtures/capture-html-app/source/capture_html_haml.html.haml +0 -4
  372. data/fixtures/capture-html-app/source/capture_html_slim.html.slim +0 -4
  373. data/fixtures/capture-html-app/source/layouts/capture_html.erb +0 -4
  374. data/fixtures/chained-app/config.rb +0 -0
  375. data/fixtures/chained-app/data/article.yml +0 -2
  376. data/fixtures/chained-app/source/index.html.str.erb +0 -8
  377. data/fixtures/chained-app/source/test.erb.combobreaker.str.erb +0 -8
  378. data/fixtures/clean-app/config-complications.rb +0 -9
  379. data/fixtures/clean-app/config-empty.rb +0 -0
  380. data/fixtures/clean-app/config-hidden-dir-after.rb +0 -5
  381. data/fixtures/clean-app/config-hidden-dir-before.rb +0 -1
  382. data/fixtures/clean-app/config.rb +0 -9
  383. data/fixtures/clean-app/source/index.html.erb +0 -1
  384. data/fixtures/clean-app/source/layout.erb +0 -9
  385. data/fixtures/clean-app/source/layouts/custom.erb +0 -8
  386. data/fixtures/clean-app/source/real/index.html.erb +0 -5
  387. data/fixtures/clean-app/source/real.html +0 -1
  388. data/fixtures/clean-app/source/should_be_ignored.html +0 -1
  389. data/fixtures/clean-app/source/should_be_ignored2.html +0 -1
  390. data/fixtures/clean-app/source/should_be_ignored3.html +0 -1
  391. data/fixtures/clean-app/source/static.html +0 -1
  392. data/fixtures/clean-dir-app/config.rb +0 -2
  393. data/fixtures/clean-dir-app/source/about.html +0 -1
  394. data/fixtures/clean-nested-app/config.rb +0 -1
  395. data/fixtures/clean-nested-app/source/about.html +0 -1
  396. data/fixtures/clean-nested-app/source/nested/nested.html +0 -1
  397. data/fixtures/coffeescript-app/config.rb +0 -0
  398. data/fixtures/coffeescript-app/source/inline-coffeescript.html.haml +0 -3
  399. data/fixtures/coffeescript-app/source/javascripts/broken-coffee.js.coffee +0 -3
  400. data/fixtures/coffeescript-app/source/javascripts/coffee_test.js.coffee +0 -3
  401. data/fixtures/collections-app/source/blog1/2011-01-01-new-article.html.markdown +0 -7
  402. data/fixtures/collections-app/source/blog1/2011-01-02-another-article.html.markdown +0 -9
  403. data/fixtures/collections-app/source/blog2/2011-01-01-new-article.html.markdown +0 -9
  404. data/fixtures/collections-app/source/blog2/2011-01-02-another-article.html.markdown +0 -8
  405. data/fixtures/content-for-app/config.rb +0 -5
  406. data/fixtures/content-for-app/source/content_for_erb.html.erb +0 -5
  407. data/fixtures/content-for-app/source/content_for_haml.html.haml +0 -4
  408. data/fixtures/content-for-app/source/content_for_slim.html.slim +0 -5
  409. data/fixtures/content-for-app/source/layouts/content_for.erb +0 -4
  410. data/fixtures/content-type-app/config.rb +0 -1
  411. data/fixtures/content-type-app/source/.htaccess +0 -1
  412. data/fixtures/content-type-app/source/README +0 -1
  413. data/fixtures/content-type-app/source/images/blank.gif +0 -0
  414. data/fixtures/content-type-app/source/index.html +0 -1
  415. data/fixtures/content-type-app/source/index.php +0 -1
  416. data/fixtures/content-type-app/source/javascripts/app.js +0 -1
  417. data/fixtures/content-type-app/source/override.html +0 -5
  418. data/fixtures/content-type-app/source/stylesheets/site.css +0 -1
  419. data/fixtures/csspie/config.rb +0 -0
  420. data/fixtures/csspie/source/stylesheets/PIE.htc +0 -96
  421. data/fixtures/custom-layout-app/config.rb +0 -1
  422. data/fixtures/custom-layout-app/source/index.html.erb +0 -1
  423. data/fixtures/custom-layout-app/source/layout.str +0 -9
  424. data/fixtures/custom-layout-app2/config.rb +0 -0
  425. data/fixtures/custom-layout-app2/source/custom-layout-dir/index.html.erb +0 -1
  426. data/fixtures/custom-layout-app2/source/custom-layout.html.erb +0 -1
  427. data/fixtures/custom-layout-app2/source/layouts/custom.erb +0 -8
  428. data/fixtures/custom-src-app/config.rb +0 -1
  429. data/fixtures/custom-src-app/src/index.html +0 -0
  430. data/fixtures/custom-src-app/src/layouts/layout.html.erb +0 -1
  431. data/fixtures/data-app/config.rb +0 -3
  432. data/fixtures/data-app/data/pages.yml +0 -6
  433. data/fixtures/data-app/source/index.html.erb +0 -1
  434. data/fixtures/data-app/source/layout.erb +0 -5
  435. data/fixtures/data-with-aliases-app/config.rb +0 -3
  436. data/fixtures/data-with-aliases-app/data/pages.yml +0 -9
  437. data/fixtures/data-with-aliases-app/source/index.html.erb +0 -1
  438. data/fixtures/data-with-aliases-app/source/layout.erb +0 -5
  439. data/fixtures/default-alt-tags-app/config.rb +0 -0
  440. data/fixtures/default-alt-tags-app/source/empty-alt-tag.html.erb +0 -1
  441. data/fixtures/default-alt-tags-app/source/images/blank.gif +0 -0
  442. data/fixtures/default-alt-tags-app/source/meaningful-alt-tag.html.erb +0 -1
  443. data/fixtures/different-engine-layout/config.rb +0 -0
  444. data/fixtures/different-engine-layout/source/index.haml +0 -1
  445. data/fixtures/different-engine-layout/source/index.html.str +0 -1
  446. data/fixtures/different-engine-layout/source/layout.erb +0 -9
  447. data/fixtures/different-engine-partial/config.rb +0 -0
  448. data/fixtures/different-engine-partial/source/index.html.erb +0 -1
  449. data/fixtures/different-engine-partial/source/layouts/layout.erb +0 -7
  450. data/fixtures/different-engine-partial/source/shared/_footer.str +0 -1
  451. data/fixtures/different-engine-partial/source/shared/_header.erb +0 -1
  452. data/fixtures/dynamic-pages-app/config.rb +0 -34
  453. data/fixtures/dynamic-pages-app/source/real/index.html.erb +0 -9
  454. data/fixtures/dynamic-pages-app/source/real.html +0 -1
  455. data/fixtures/dynamic-pages-app/source/should_be_ignored.html +0 -1
  456. data/fixtures/dynamic-pages-app/source/should_be_ignored2.html +0 -1
  457. data/fixtures/dynamic-pages-app/source/should_be_ignored3.html +0 -1
  458. data/fixtures/dynamic-pages-app/source/should_be_ignored4.html +0 -1
  459. data/fixtures/dynamic-pages-app/source/should_be_ignored5.html +0 -1
  460. data/fixtures/dynamic-pages-app/source/should_be_ignored6.html +0 -1
  461. data/fixtures/dynamic-pages-app/source/should_be_ignored7.html +0 -1
  462. data/fixtures/dynamic-pages-app/source/should_be_ignored8.html +0 -1
  463. data/fixtures/dynamic-pages-app/source/should_be_ignored9.html +0 -1
  464. data/fixtures/ember-cli-app/config.rb +0 -5
  465. data/fixtures/ember-cli-app/source/javascripts/file.js +0 -0
  466. data/fixtures/ember-cli-app/test-app/.bowerrc +0 -3
  467. data/fixtures/ember-cli-app/test-app/.gitignore +0 -17
  468. data/fixtures/ember-cli-app/test-app/.jshintrc +0 -32
  469. data/fixtures/ember-cli-app/test-app/Brocfile.js +0 -20
  470. data/fixtures/ember-cli-app/test-app/README.md +0 -25
  471. data/fixtures/ember-cli-app/test-app/app/app.js +0 -14
  472. data/fixtures/ember-cli-app/test-app/app/components/.gitkeep +0 -0
  473. data/fixtures/ember-cli-app/test-app/app/controllers/.gitkeep +0 -0
  474. data/fixtures/ember-cli-app/test-app/app/helpers/.gitkeep +0 -0
  475. data/fixtures/ember-cli-app/test-app/app/index.html +0 -26
  476. data/fixtures/ember-cli-app/test-app/app/models/.gitkeep +0 -0
  477. data/fixtures/ember-cli-app/test-app/app/router.js +0 -10
  478. data/fixtures/ember-cli-app/test-app/app/routes/.gitkeep +0 -0
  479. data/fixtures/ember-cli-app/test-app/app/styles/.gitkeep +0 -0
  480. data/fixtures/ember-cli-app/test-app/app/styles/app.css +0 -3
  481. data/fixtures/ember-cli-app/test-app/app/templates/.gitkeep +0 -0
  482. data/fixtures/ember-cli-app/test-app/app/templates/application.hbs +0 -3
  483. data/fixtures/ember-cli-app/test-app/app/templates/components/.gitkeep +0 -0
  484. data/fixtures/ember-cli-app/test-app/app/views/.gitkeep +0 -0
  485. data/fixtures/ember-cli-app/test-app/bower.json +0 -16
  486. data/fixtures/ember-cli-app/test-app/config/environment.js +0 -38
  487. data/fixtures/ember-cli-app/test-app/package.json +0 -31
  488. data/fixtures/ember-cli-app/test-app/public/.gitkeep +0 -0
  489. data/fixtures/ember-cli-app/test-app/testem.json +0 -6
  490. data/fixtures/ember-cli-app/test-app/tests/.jshintrc +0 -73
  491. data/fixtures/ember-cli-app/test-app/tests/helpers/resolver.js +0 -9
  492. data/fixtures/ember-cli-app/test-app/tests/helpers/start-app.js +0 -30
  493. data/fixtures/ember-cli-app/test-app/tests/index.html +0 -50
  494. data/fixtures/ember-cli-app/test-app/tests/test-helper.js +0 -6
  495. data/fixtures/ember-cli-app/test-app/tests/unit/.gitkeep +0 -0
  496. data/fixtures/empty-app/not-config.rb +0 -0
  497. data/fixtures/engine-matching-layout/config.rb +0 -0
  498. data/fixtures/engine-matching-layout/source/index.html.erb +0 -1
  499. data/fixtures/engine-matching-layout/source/layout.erb +0 -9
  500. data/fixtures/env-app/config.rb +0 -0
  501. data/fixtures/env-app/environments/development.rb +0 -1
  502. data/fixtures/env-app/environments/production.rb +0 -2
  503. data/fixtures/env-app/source/index.html.erb +0 -3
  504. data/fixtures/env-app/source/stylesheets/site.css.scss +0 -3
  505. data/fixtures/extension-api-deprecations-app/config.rb +0 -11
  506. data/fixtures/extension-api-deprecations-app/source/index.html.erb +0 -1
  507. data/fixtures/extension-api-deprecations-app/source/layouts/layout.erb +0 -3
  508. data/fixtures/extension-hooks-app/config.rb +0 -39
  509. data/fixtures/extension-hooks-app/source/index.html.erb +0 -9
  510. data/fixtures/extensionless-text-files-app/config.rb +0 -0
  511. data/fixtures/extensionless-text-files-app/source/CNAME +0 -1
  512. data/fixtures/extensionless-text-files-app/source/LICENSE +0 -1
  513. data/fixtures/extensionless-text-files-app/source/README +0 -1
  514. data/fixtures/extensionless-text-files-app/source/index.html +0 -1
  515. data/fixtures/external-helpers/config.rb +0 -4
  516. data/fixtures/external-helpers/helpers/derp.rb +0 -3
  517. data/fixtures/external-helpers/helpers/four_helpers.rb +0 -3
  518. data/fixtures/external-helpers/helpers/one_helper.rb +0 -3
  519. data/fixtures/external-helpers/helpers/yet_another_thingy.rb +0 -3
  520. data/fixtures/external-helpers/lib/hello_helper.rb +0 -5
  521. data/fixtures/external-helpers/source/automatic.html.erb +0 -1
  522. data/fixtures/external-helpers/source/index.html.erb +0 -1
  523. data/fixtures/external-pipeline-error/config.rb +0 -5
  524. data/fixtures/external-pipeline-error/source/javascripts/file.js +0 -0
  525. data/fixtures/feature-params-app/config.rb +0 -16
  526. data/fixtures/feature-params-app/source/index.html.erb +0 -2
  527. data/fixtures/fonts-app/config.rb +0 -0
  528. data/fixtures/fonts-app/source/fonts/StMarie-Thin.otf +0 -0
  529. data/fixtures/fonts-app/source/fonts/blank/blank.otf +0 -0
  530. data/fixtures/fonts-app/source/stylesheets/fonts.css.scss +0 -6
  531. data/fixtures/frontmatter-app/config.rb +0 -1
  532. data/fixtures/frontmatter-app/source/front-matter-2.php.erb +0 -7
  533. data/fixtures/frontmatter-app/source/front-matter-change.html.erb +0 -5
  534. data/fixtures/frontmatter-app/source/front-matter-encoding.html.erb +0 -7
  535. data/fixtures/frontmatter-app/source/front-matter-haml.html.haml +0 -6
  536. data/fixtures/frontmatter-app/source/front-matter-line-2.html.erb +0 -10
  537. data/fixtures/frontmatter-app/source/front-matter-pandoc.html.md.erb +0 -13
  538. data/fixtures/frontmatter-app/source/raw-front-matter-toml.html +0 -6
  539. data/fixtures/frontmatter-app/source/raw-front-matter.html +0 -6
  540. data/fixtures/frontmatter-app/source/raw-front-matter.php +0 -6
  541. data/fixtures/frontmatter-neighbor-app/config.rb +0 -30
  542. data/fixtures/frontmatter-neighbor-app/source/front-matter-2.php.erb +0 -2
  543. data/fixtures/frontmatter-neighbor-app/source/front-matter-2.php.erb.frontmatter +0 -4
  544. data/fixtures/frontmatter-neighbor-app/source/front-matter-change.html.erb +0 -1
  545. data/fixtures/frontmatter-neighbor-app/source/front-matter-change.html.erb.frontmatter +0 -4
  546. data/fixtures/frontmatter-neighbor-app/source/front-matter-encoding.html.erb +0 -1
  547. data/fixtures/frontmatter-neighbor-app/source/front-matter-encoding.html.erb.frontmatter +0 -5
  548. data/fixtures/frontmatter-neighbor-app/source/raw-front-matter-toml.html +0 -1
  549. data/fixtures/frontmatter-neighbor-app/source/raw-front-matter-toml.html.frontmatter +0 -4
  550. data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.html +0 -1
  551. data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.html.frontmatter +0 -4
  552. data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.php +0 -1
  553. data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.php.frontmatter +0 -4
  554. data/fixtures/frontmatter-settings-app/config.rb +0 -4
  555. data/fixtures/frontmatter-settings-app/source/alternate_layout.html.erb +0 -5
  556. data/fixtures/frontmatter-settings-app/source/ignored.html.erb +0 -5
  557. data/fixtures/frontmatter-settings-app/source/layouts/alternate.erb +0 -3
  558. data/fixtures/frontmatter-settings-app/source/layouts/override.erb +0 -1
  559. data/fixtures/frontmatter-settings-app/source/override_layout.html.erb +0 -4
  560. data/fixtures/frontmatter-settings-app/source/page_mentioned.html.erb +0 -4
  561. data/fixtures/frontmatter-settings-neighbor-app/config.rb +0 -40
  562. data/fixtures/frontmatter-settings-neighbor-app/source/alternate_layout.html.erb +0 -1
  563. data/fixtures/frontmatter-settings-neighbor-app/source/alternate_layout.html.erb.frontmatter +0 -3
  564. data/fixtures/frontmatter-settings-neighbor-app/source/ignored.html.erb +0 -1
  565. data/fixtures/frontmatter-settings-neighbor-app/source/ignored.html.erb.frontmatter +0 -3
  566. data/fixtures/frontmatter-settings-neighbor-app/source/layouts/alternate.erb +0 -3
  567. data/fixtures/frontmatter-settings-neighbor-app/source/layouts/override.erb +0 -1
  568. data/fixtures/frontmatter-settings-neighbor-app/source/override_layout.html.erb +0 -1
  569. data/fixtures/frontmatter-settings-neighbor-app/source/override_layout.html.erb.frontmatter +0 -3
  570. data/fixtures/frontmatter-settings-neighbor-app/source/page_mentioned.html.erb +0 -1
  571. data/fixtures/frontmatter-settings-neighbor-app/source/page_mentioned.html.erb.frontmatter +0 -3
  572. data/fixtures/generator-test/config.rb +0 -57
  573. data/fixtures/generator-test/source/index.html.erb +0 -10
  574. data/fixtures/glob-app/config.rb +0 -1
  575. data/fixtures/glob-app/source/index.html.erb +0 -4
  576. data/fixtures/glob-app/source/stylesheets/site.css.str +0 -3
  577. data/fixtures/gzip-app/config.rb +0 -1
  578. data/fixtures/gzip-app/source/index.html +0 -0
  579. data/fixtures/gzip-app/source/javascripts/test.js +0 -1
  580. data/fixtures/gzip-app/source/stylesheets/test.css +0 -1
  581. data/fixtures/i-8859-1-app/config.rb +0 -1
  582. data/fixtures/i-8859-1-app/source/index.html.erb +0 -1
  583. data/fixtures/i18n-alt-root-app/locales/en.yml +0 -4
  584. data/fixtures/i18n-alt-root-app/locales/es.yml +0 -7
  585. data/fixtures/i18n-alt-root-app/source/lang_data/hello.html.erb +0 -1
  586. data/fixtures/i18n-alt-root-app/source/lang_data/index.html.erb +0 -1
  587. data/fixtures/i18n-alt-root-app/source/layout.erb +0 -1
  588. data/fixtures/i18n-default-app/locales/en.yml +0 -4
  589. data/fixtures/i18n-default-app/locales/es.yml +0 -8
  590. data/fixtures/i18n-default-app/source/localizable/index.html.erb +0 -5
  591. data/fixtures/i18n-force-locale/config.rb +0 -11
  592. data/fixtures/i18n-force-locale/locales/en.yml +0 -3
  593. data/fixtures/i18n-force-locale/locales/es.yml +0 -3
  594. data/fixtures/i18n-force-locale/locales/fr.yml +0 -3
  595. data/fixtures/i18n-force-locale/source/index.html.haml +0 -2
  596. data/fixtures/i18n-mixed-sources/config.rb +0 -1
  597. data/fixtures/i18n-mixed-sources/locales/en.yml +0 -4
  598. data/fixtures/i18n-mixed-sources/locales/es.yml +0 -4
  599. data/fixtures/i18n-mixed-sources/source/a/sub.html.erb +0 -9
  600. data/fixtures/i18n-mixed-sources/source/b/index.html.erb +0 -9
  601. data/fixtures/i18n-mixed-sources/source/index.html.erb +0 -9
  602. data/fixtures/i18n-mixed-sources/source/localizable/a/index.html.erb +0 -9
  603. data/fixtures/i18n-mixed-sources/source/localizable/b/sub.html.erb +0 -9
  604. data/fixtures/i18n-mixed-sources/source/localizable/index.html.erb +0 -9
  605. data/fixtures/i18n-nested-app/locales/en/more.yml +0 -3
  606. data/fixtures/i18n-nested-app/locales/en.yml +0 -4
  607. data/fixtures/i18n-nested-app/locales/es/mucho.yml +0 -3
  608. data/fixtures/i18n-nested-app/locales/es.yml +0 -4
  609. data/fixtures/i18n-nested-app/source/localizable/index.html.erb +0 -3
  610. data/fixtures/i18n-test-app/data/defaults_en.yml +0 -0
  611. data/fixtures/i18n-test-app/data/defaults_es.yml +0 -0
  612. data/fixtures/i18n-test-app/data/en_defaults.yml +0 -0
  613. data/fixtures/i18n-test-app/locales/en.yml +0 -5
  614. data/fixtures/i18n-test-app/locales/es.yml +0 -9
  615. data/fixtures/i18n-test-app/source/CNAME +0 -1
  616. data/fixtures/i18n-test-app/source/_country.en.erb +0 -1
  617. data/fixtures/i18n-test-app/source/_country.es.erb +0 -1
  618. data/fixtures/i18n-test-app/source/_site.erb +0 -1
  619. data/fixtures/i18n-test-app/source/images/president.en.svg +0 -1
  620. data/fixtures/i18n-test-app/source/images/president.es.svg +0 -1
  621. data/fixtures/i18n-test-app/source/layouts/layout.erb +0 -8
  622. data/fixtures/i18n-test-app/source/localizable/_state.en.erb +0 -1
  623. data/fixtures/i18n-test-app/source/localizable/_state.es.erb +0 -1
  624. data/fixtures/i18n-test-app/source/localizable/fallback.html.erb +0 -1
  625. data/fixtures/i18n-test-app/source/localizable/hello.html.erb +0 -1
  626. data/fixtures/i18n-test-app/source/localizable/images/flag.en.svg +0 -1
  627. data/fixtures/i18n-test-app/source/localizable/images/flag.es.svg +0 -1
  628. data/fixtures/i18n-test-app/source/localizable/index.html.erb +0 -1
  629. data/fixtures/i18n-test-app/source/localizable/morning.en.html.erb +0 -1
  630. data/fixtures/i18n-test-app/source/localizable/morning.es.html.erb +0 -1
  631. data/fixtures/i18n-test-app/source/localizable/one.en.html.md +0 -1
  632. data/fixtures/i18n-test-app/source/localizable/one.es.html.md +0 -1
  633. data/fixtures/i18n-test-app/source/localizable/partials/_greeting.en.erb +0 -1
  634. data/fixtures/i18n-test-app/source/localizable/partials/_greeting.es.erb +0 -1
  635. data/fixtures/i18n-test-app/source/localizable/partials/index.html.erb +0 -8
  636. data/fixtures/i18n-test-app/source/password.txt +0 -1
  637. data/fixtures/i18n-test-app/source/stylesheets/site.css +0 -3
  638. data/fixtures/ignore-app/source/about.html.erb +0 -1
  639. data/fixtures/ignore-app/source/images/icon/messages.png +0 -0
  640. data/fixtures/ignore-app/source/images/pic.png +0 -0
  641. data/fixtures/ignore-app/source/images/portrait.jpg +0 -0
  642. data/fixtures/ignore-app/source/index.html.erb +0 -0
  643. data/fixtures/ignore-app/source/plain.html +0 -1
  644. data/fixtures/ignore-app/source/reports/another.html +0 -0
  645. data/fixtures/ignore-app/source/reports/index.html +0 -0
  646. data/fixtures/image-srcset-paths-app/image-srcset-paths.html.erb +0 -1
  647. data/fixtures/image-srcset-paths-app/images/blank.gif +0 -0
  648. data/fixtures/import-app/bower.json +0 -21
  649. data/fixtures/import-app/bower_components/jquery/.bower.json +0 -39
  650. data/fixtures/import-app/bower_components/jquery/MIT-LICENSE.txt +0 -21
  651. data/fixtures/import-app/bower_components/jquery/bower.json +0 -28
  652. data/fixtures/import-app/bower_components/jquery/dist/jquery.js +0 -9210
  653. data/fixtures/import-app/bower_components/jquery/dist/jquery.min.js +0 -5
  654. data/fixtures/import-app/bower_components/jquery/dist/jquery.min.map +0 -1
  655. data/fixtures/import-app/bower_components/jquery/src/ajax/jsonp.js +0 -89
  656. data/fixtures/import-app/bower_components/jquery/src/ajax/load.js +0 -75
  657. data/fixtures/import-app/bower_components/jquery/src/ajax/parseJSON.js +0 -13
  658. data/fixtures/import-app/bower_components/jquery/src/ajax/parseXML.js +0 -28
  659. data/fixtures/import-app/bower_components/jquery/src/ajax/script.js +0 -64
  660. data/fixtures/import-app/bower_components/jquery/src/ajax/var/nonce.js +0 -5
  661. data/fixtures/import-app/bower_components/jquery/src/ajax/var/rquery.js +0 -3
  662. data/fixtures/import-app/bower_components/jquery/src/ajax/xhr.js +0 -136
  663. data/fixtures/import-app/bower_components/jquery/src/ajax.js +0 -786
  664. data/fixtures/import-app/bower_components/jquery/src/attributes/attr.js +0 -141
  665. data/fixtures/import-app/bower_components/jquery/src/attributes/classes.js +0 -158
  666. data/fixtures/import-app/bower_components/jquery/src/attributes/prop.js +0 -94
  667. data/fixtures/import-app/bower_components/jquery/src/attributes/support.js +0 -35
  668. data/fixtures/import-app/bower_components/jquery/src/attributes/val.js +0 -161
  669. data/fixtures/import-app/bower_components/jquery/src/attributes.js +0 -11
  670. data/fixtures/import-app/bower_components/jquery/src/callbacks.js +0 -205
  671. data/fixtures/import-app/bower_components/jquery/src/core/access.js +0 -60
  672. data/fixtures/import-app/bower_components/jquery/src/core/init.js +0 -123
  673. data/fixtures/import-app/bower_components/jquery/src/core/parseHTML.js +0 -39
  674. data/fixtures/import-app/bower_components/jquery/src/core/ready.js +0 -97
  675. data/fixtures/import-app/bower_components/jquery/src/core/var/rsingleTag.js +0 -4
  676. data/fixtures/import-app/bower_components/jquery/src/core.js +0 -502
  677. data/fixtures/import-app/bower_components/jquery/src/css/addGetHookIf.js +0 -22
  678. data/fixtures/import-app/bower_components/jquery/src/css/curCSS.js +0 -57
  679. data/fixtures/import-app/bower_components/jquery/src/css/defaultDisplay.js +0 -70
  680. data/fixtures/import-app/bower_components/jquery/src/css/hiddenVisibleSelectors.js +0 -15
  681. data/fixtures/import-app/bower_components/jquery/src/css/support.js +0 -96
  682. data/fixtures/import-app/bower_components/jquery/src/css/swap.js +0 -28
  683. data/fixtures/import-app/bower_components/jquery/src/css/var/cssExpand.js +0 -3
  684. data/fixtures/import-app/bower_components/jquery/src/css/var/getStyles.js +0 -12
  685. data/fixtures/import-app/bower_components/jquery/src/css/var/isHidden.js +0 -13
  686. data/fixtures/import-app/bower_components/jquery/src/css/var/rmargin.js +0 -3
  687. data/fixtures/import-app/bower_components/jquery/src/css/var/rnumnonpx.js +0 -5
  688. data/fixtures/import-app/bower_components/jquery/src/css.js +0 -450
  689. data/fixtures/import-app/bower_components/jquery/src/data/Data.js +0 -181
  690. data/fixtures/import-app/bower_components/jquery/src/data/accepts.js +0 -20
  691. data/fixtures/import-app/bower_components/jquery/src/data/var/data_priv.js +0 -5
  692. data/fixtures/import-app/bower_components/jquery/src/data/var/data_user.js +0 -5
  693. data/fixtures/import-app/bower_components/jquery/src/data.js +0 -178
  694. data/fixtures/import-app/bower_components/jquery/src/deferred.js +0 -149
  695. data/fixtures/import-app/bower_components/jquery/src/deprecated.js +0 -13
  696. data/fixtures/import-app/bower_components/jquery/src/dimensions.js +0 -50
  697. data/fixtures/import-app/bower_components/jquery/src/effects/Tween.js +0 -114
  698. data/fixtures/import-app/bower_components/jquery/src/effects/animatedSelector.js +0 -13
  699. data/fixtures/import-app/bower_components/jquery/src/effects.js +0 -648
  700. data/fixtures/import-app/bower_components/jquery/src/event/ajax.js +0 -13
  701. data/fixtures/import-app/bower_components/jquery/src/event/alias.js +0 -39
  702. data/fixtures/import-app/bower_components/jquery/src/event/support.js +0 -9
  703. data/fixtures/import-app/bower_components/jquery/src/event.js +0 -868
  704. data/fixtures/import-app/bower_components/jquery/src/exports/amd.js +0 -24
  705. data/fixtures/import-app/bower_components/jquery/src/exports/global.js +0 -32
  706. data/fixtures/import-app/bower_components/jquery/src/intro.js +0 -44
  707. data/fixtures/import-app/bower_components/jquery/src/jquery.js +0 -37
  708. data/fixtures/import-app/bower_components/jquery/src/manipulation/_evalUrl.js +0 -18
  709. data/fixtures/import-app/bower_components/jquery/src/manipulation/support.js +0 -32
  710. data/fixtures/import-app/bower_components/jquery/src/manipulation/var/rcheckableType.js +0 -3
  711. data/fixtures/import-app/bower_components/jquery/src/manipulation.js +0 -580
  712. data/fixtures/import-app/bower_components/jquery/src/offset.js +0 -207
  713. data/fixtures/import-app/bower_components/jquery/src/outro.js +0 -1
  714. data/fixtures/import-app/bower_components/jquery/src/queue/delay.js +0 -22
  715. data/fixtures/import-app/bower_components/jquery/src/queue.js +0 -142
  716. data/fixtures/import-app/bower_components/jquery/src/selector-native.js +0 -172
  717. data/fixtures/import-app/bower_components/jquery/src/selector-sizzle.js +0 -14
  718. data/fixtures/import-app/bower_components/jquery/src/selector.js +0 -1
  719. data/fixtures/import-app/bower_components/jquery/src/serialize.js +0 -111
  720. data/fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.js +0 -2067
  721. data/fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.min.js +0 -3
  722. data/fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.min.map +0 -1
  723. data/fixtures/import-app/bower_components/jquery/src/traversing/findFilter.js +0 -100
  724. data/fixtures/import-app/bower_components/jquery/src/traversing/var/rneedsContext.js +0 -6
  725. data/fixtures/import-app/bower_components/jquery/src/traversing.js +0 -199
  726. data/fixtures/import-app/bower_components/jquery/src/var/arr.js +0 -3
  727. data/fixtures/import-app/bower_components/jquery/src/var/class2type.js +0 -4
  728. data/fixtures/import-app/bower_components/jquery/src/var/concat.js +0 -5
  729. data/fixtures/import-app/bower_components/jquery/src/var/hasOwn.js +0 -5
  730. data/fixtures/import-app/bower_components/jquery/src/var/indexOf.js +0 -5
  731. data/fixtures/import-app/bower_components/jquery/src/var/pnum.js +0 -3
  732. data/fixtures/import-app/bower_components/jquery/src/var/push.js +0 -5
  733. data/fixtures/import-app/bower_components/jquery/src/var/rnotwhite.js +0 -3
  734. data/fixtures/import-app/bower_components/jquery/src/var/slice.js +0 -5
  735. data/fixtures/import-app/bower_components/jquery/src/var/strundefined.js +0 -3
  736. data/fixtures/import-app/bower_components/jquery/src/var/support.js +0 -4
  737. data/fixtures/import-app/bower_components/jquery/src/var/toString.js +0 -5
  738. data/fixtures/import-app/bower_components/jquery/src/wrap.js +0 -79
  739. data/fixtures/import-app/config.rb +0 -7
  740. data/fixtures/import-app/source/test.html +0 -0
  741. data/fixtures/import-app/static.html +0 -1
  742. data/fixtures/indexable-app/config.rb +0 -5
  743. data/fixtures/indexable-app/source/.htaccess +0 -1
  744. data/fixtures/indexable-app/source/.htpasswd +0 -1
  745. data/fixtures/indexable-app/source/.nojekyll +0 -0
  746. data/fixtures/indexable-app/source/a_folder/needs_index.html +0 -1
  747. data/fixtures/indexable-app/source/evil spaces.html +0 -1
  748. data/fixtures/indexable-app/source/leave_me_alone.html +0 -1
  749. data/fixtures/indexable-app/source/needs_index.html +0 -1
  750. data/fixtures/indexable-app/source/regex_leave_me_alone2.html +0 -1
  751. data/fixtures/indexable-app/source/regular/index.html +0 -1
  752. data/fixtures/indexable-app/source/wildcard_leave_me_alone.html +0 -1
  753. data/fixtures/javascript-app/config.rb +0 -0
  754. data/fixtures/javascript-app/source/index.html +0 -17
  755. data/fixtures/large-build-app/config.rb +0 -3
  756. data/fixtures/large-build-app/source/.htaccess +0 -1
  757. data/fixtures/large-build-app/source/.htpasswd +0 -1
  758. data/fixtures/large-build-app/source/_partial.erb +0 -1
  759. data/fixtures/large-build-app/source/feed.xml.builder +0 -4
  760. data/fixtures/large-build-app/source/images/Child folder/regular_file(example).txt +0 -1
  761. data/fixtures/large-build-app/source/images/Read me (example).txt +0 -1
  762. data/fixtures/large-build-app/source/images/blank.gif +0 -0
  763. data/fixtures/large-build-app/source/index.html.erb +0 -1
  764. data/fixtures/large-build-app/source/layout.erb +0 -9
  765. data/fixtures/large-build-app/source/layouts/content_for.erb +0 -4
  766. data/fixtures/large-build-app/source/layouts/custom.erb +0 -8
  767. data/fixtures/large-build-app/source/link_test.html.erb +0 -5
  768. data/fixtures/large-build-app/source/other_layout.erb +0 -1
  769. data/fixtures/large-build-app/source/services/index.html.erb +0 -1
  770. data/fixtures/large-build-app/source/spaces in file.html.erb +0 -1
  771. data/fixtures/large-build-app/source/static.html +0 -1
  772. data/fixtures/large-build-app/source/stylesheets/static.css +0 -2
  773. data/fixtures/layouts-dir-app/source/ambiguous.html.erb +0 -5
  774. data/fixtures/layouts-dir-app/source/index.html.erb +0 -2
  775. data/fixtures/layouts-dir-app/source/layouts/layout.erb +0 -3
  776. data/fixtures/layouts-dir-app/source/layouts/other.erb +0 -3
  777. data/fixtures/layouts-dir-app/source/layouts2/layout.erb +0 -3
  778. data/fixtures/layouts-dir-app/source/nested/layouts2/layout.erb +0 -3
  779. data/fixtures/layouts-dir-app/source/other.erb +0 -3
  780. data/fixtures/link-to-app/config.rb +0 -0
  781. data/fixtures/link-to-app/source/link_to_erb.html.erb +0 -3
  782. data/fixtures/link-to-app/source/link_to_haml.html.haml +0 -2
  783. data/fixtures/link-to-app/source/link_to_slim.html.slim +0 -2
  784. data/fixtures/liquid-app/config.rb +0 -0
  785. data/fixtures/liquid-app/data/test.yml +0 -4
  786. data/fixtures/liquid-app/data/test2.json +0 -4
  787. data/fixtures/liquid-app/source/_liquid_partial.liquid +0 -1
  788. data/fixtures/liquid-app/source/data2.html.liquid +0 -2
  789. data/fixtures/liquid-app/source/liquid_master.html.liquid +0 -1
  790. data/fixtures/lorem-app/config.rb +0 -1
  791. data/fixtures/lorem-app/source/lorem.html.erb +0 -13
  792. data/fixtures/manual-layout/config.rb +0 -1
  793. data/fixtures/manual-layout/source/index.html.erb +0 -1
  794. data/fixtures/manual-layout/source/layouts/custom.erb +0 -9
  795. data/fixtures/manual-layout-missing/config.rb +0 -1
  796. data/fixtures/manual-layout-missing/source/index.html.erb +0 -1
  797. data/fixtures/manual-layout-override/config.rb +0 -3
  798. data/fixtures/manual-layout-override/source/index.html.erb +0 -1
  799. data/fixtures/manual-layout-override/source/layouts/another.erb +0 -9
  800. data/fixtures/manual-layout-override/source/layouts/custom.erb +0 -9
  801. data/fixtures/markdown-app/config.rb +0 -1
  802. data/fixtures/markdown-app/source/autolink.html.markdown +0 -5
  803. data/fixtures/markdown-app/source/fenced_code_blocks.html.markdown +0 -7
  804. data/fixtures/markdown-app/source/filter_html.html.markdown +0 -1
  805. data/fixtures/markdown-app/source/footnote.html.markdown +0 -3
  806. data/fixtures/markdown-app/source/hard_wrap.html.markdown +0 -2
  807. data/fixtures/markdown-app/source/highlighted.html.markdown +0 -1
  808. data/fixtures/markdown-app/source/images/blank.gif +0 -0
  809. data/fixtures/markdown-app/source/img.html.markdown +0 -1
  810. data/fixtures/markdown-app/source/indented_code_blocks.html.markdown +0 -5
  811. data/fixtures/markdown-app/source/index.html.markdown +0 -4
  812. data/fixtures/markdown-app/source/lax_spacing.html.markdown +0 -3
  813. data/fixtures/markdown-app/source/link.html.markdown +0 -1
  814. data/fixtures/markdown-app/source/mailto.html.markdown +0 -1
  815. data/fixtures/markdown-app/source/no_intra_emphasis.html.markdown +0 -5
  816. data/fixtures/markdown-app/source/prettify.html.markdown +0 -3
  817. data/fixtures/markdown-app/source/quote.html.markdown +0 -1
  818. data/fixtures/markdown-app/source/safe_links.html.markdown +0 -1
  819. data/fixtures/markdown-app/source/smarty_pants.html.markdown +0 -5
  820. data/fixtures/markdown-app/source/space_after_headers.html.markdown +0 -5
  821. data/fixtures/markdown-app/source/strikethrough.html.markdown +0 -5
  822. data/fixtures/markdown-app/source/superscript.html.markdown +0 -5
  823. data/fixtures/markdown-app/source/tables.html.markdown +0 -8
  824. data/fixtures/markdown-app/source/underline.html.markdown +0 -1
  825. data/fixtures/markdown-app/source/with_toc_data.html.markdown +0 -3
  826. data/fixtures/markdown-frontmatter-options-app/config.rb +0 -1
  827. data/fixtures/markdown-frontmatter-options-app/source/smarty_pants-default.html.markdown +0 -5
  828. data/fixtures/markdown-frontmatter-options-app/source/smarty_pants-off.html.markdown +0 -7
  829. data/fixtures/markdown-frontmatter-options-app/source/smarty_pants-on.html.markdown +0 -7
  830. data/fixtures/markdown-frontmatter-options-app/source/tables-default.html.markdown +0 -8
  831. data/fixtures/markdown-frontmatter-options-app/source/tables-off.html.markdown +0 -10
  832. data/fixtures/markdown-frontmatter-options-app/source/tables-on.html.markdown +0 -10
  833. data/fixtures/markdown-in-haml-app/config.rb +0 -0
  834. data/fixtures/markdown-in-haml-app/source/images/blank.gif +0 -0
  835. data/fixtures/markdown-in-haml-app/source/link_target.html.markdown +0 -4
  836. data/fixtures/markdown-in-slim-app/config.rb +0 -0
  837. data/fixtures/markdown-in-slim-app/source/images/blank.gif +0 -0
  838. data/fixtures/markdown-in-slim-app/source/link_target.html.markdown +0 -4
  839. data/fixtures/minify-css-app/source/inline-css.html.haml +0 -5
  840. data/fixtures/minify-css-app/source/inline-css.php +0 -8
  841. data/fixtures/minify-css-app/source/more-css/site.css +0 -3
  842. data/fixtures/minify-css-app/source/stylesheets/base/_base.scss +0 -15
  843. data/fixtures/minify-css-app/source/stylesheets/base/_buttons.scss +0 -35
  844. data/fixtures/minify-css-app/source/stylesheets/base/_forms.scss +0 -90
  845. data/fixtures/minify-css-app/source/stylesheets/base/_grid-settings.scss +0 -14
  846. data/fixtures/minify-css-app/source/stylesheets/base/_lists.scss +0 -31
  847. data/fixtures/minify-css-app/source/stylesheets/base/_tables.scss +0 -25
  848. data/fixtures/minify-css-app/source/stylesheets/base/_typography.scss +0 -49
  849. data/fixtures/minify-css-app/source/stylesheets/base/_variables.scss +0 -42
  850. data/fixtures/minify-css-app/source/stylesheets/bourbon/_bourbon-deprecated-upcoming.scss +0 -411
  851. data/fixtures/minify-css-app/source/stylesheets/bourbon/_bourbon.scss +0 -87
  852. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-color.scss +0 -26
  853. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-radius.scss +0 -48
  854. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-style.scss +0 -25
  855. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-width.scss +0 -25
  856. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_buttons.scss +0 -64
  857. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_clearfix.scss +0 -25
  858. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_ellipsis.scss +0 -30
  859. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_font-stacks.scss +0 -31
  860. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_hide-text.scss +0 -27
  861. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_margin.scss +0 -26
  862. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_padding.scss +0 -26
  863. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_position.scss +0 -48
  864. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_prefixer.scss +0 -66
  865. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_retina-image.scss +0 -25
  866. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_size.scss +0 -51
  867. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_text-inputs.scss +0 -113
  868. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_timing-functions.scss +0 -34
  869. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_triangle.scss +0 -63
  870. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_word-wrap.scss +0 -29
  871. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_animation.scss +0 -43
  872. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_appearance.scss +0 -3
  873. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_backface-visibility.scss +0 -3
  874. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_background-image.scss +0 -42
  875. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_background.scss +0 -55
  876. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_border-image.scss +0 -59
  877. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_calc.scss +0 -4
  878. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_columns.scss +0 -47
  879. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_filter.scss +0 -4
  880. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_flex-box.scss +0 -287
  881. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_font-face.scss +0 -24
  882. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_font-feature-settings.scss +0 -4
  883. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_hidpi-media-query.scss +0 -10
  884. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_hyphens.scss +0 -4
  885. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_image-rendering.scss +0 -14
  886. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_keyframes.scss +0 -36
  887. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_linear-gradient.scss +0 -38
  888. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_perspective.scss +0 -8
  889. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_placeholder.scss +0 -8
  890. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_radial-gradient.scss +0 -39
  891. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_selection.scss +0 -42
  892. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_text-decoration.scss +0 -19
  893. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_transform.scss +0 -15
  894. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_transition.scss +0 -71
  895. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_user-select.scss +0 -3
  896. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_assign-inputs.scss +0 -11
  897. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_contains-falsy.scss +0 -20
  898. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_contains.scss +0 -26
  899. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-length.scss +0 -11
  900. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-light.scss +0 -21
  901. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-number.scss +0 -11
  902. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-size.scss +0 -13
  903. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_modular-scale.scss +0 -69
  904. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_px-to-em.scss +0 -13
  905. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_px-to-rem.scss +0 -15
  906. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_shade.scss +0 -24
  907. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_strip-units.scss +0 -17
  908. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_tint.scss +0 -24
  909. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_transition-property-name.scss +0 -22
  910. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_unpack.scss +0 -27
  911. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_convert-units.scss +0 -21
  912. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_directional-values.scss +0 -96
  913. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_font-source-declaration.scss +0 -43
  914. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_gradient-positions-parser.scss +0 -13
  915. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-angle-parser.scss +0 -25
  916. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-gradient-parser.scss +0 -41
  917. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-positions-parser.scss +0 -61
  918. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-side-corner-parser.scss +0 -31
  919. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-arg-parser.scss +0 -69
  920. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-gradient-parser.scss +0 -50
  921. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-positions-parser.scss +0 -18
  922. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_render-gradients.scss +0 -26
  923. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_shape-size-stripper.scss +0 -10
  924. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_str-to-num.scss +0 -50
  925. data/fixtures/minify-css-app/source/stylesheets/bourbon/settings/_asset-pipeline.scss +0 -7
  926. data/fixtures/minify-css-app/source/stylesheets/bourbon/settings/_prefixer.scss +0 -9
  927. data/fixtures/minify-css-app/source/stylesheets/bourbon/settings/_px-to-em.scss +0 -1
  928. data/fixtures/minify-css-app/source/stylesheets/report.css +0 -1
  929. data/fixtures/minify-css-app/source/stylesheets/site.css.sass +0 -7
  930. data/fixtures/minify-css-app/source/stylesheets/site.xcss.sass +0 -6
  931. data/fixtures/minify-js-app/config.rb +0 -0
  932. data/fixtures/minify-js-app/source/inline-coffeescript.html.haml +0 -3
  933. data/fixtures/minify-js-app/source/inline-js.html.haml +0 -28
  934. data/fixtures/minify-js-app/source/inline-js.php +0 -22
  935. data/fixtures/minify-js-app/source/javascripts/coffee_test.js.coffee +0 -3
  936. data/fixtures/minify-js-app/source/javascripts/js_test.js +0 -8
  937. data/fixtures/minify-js-app/source/javascripts/js_test.xjs +0 -8
  938. data/fixtures/minify-js-app/source/more-js/other.js +0 -8
  939. data/fixtures/missing-tilt-library-app/config.rb +0 -2
  940. data/fixtures/missing-tilt-library-app/source/danger-zone/more-wiki.html.wiki +0 -1
  941. data/fixtures/missing-tilt-library-app/source/safe-zone/my-wiki.html.wiki +0 -1
  942. data/fixtures/missing-tilt-library-app/source/textile-source.html.textile +0 -1
  943. data/fixtures/missing-tilt-library-app/source/wiki-source.html.wiki +0 -1
  944. data/fixtures/more-extensionless-text-files-app/config.rb +0 -1
  945. data/fixtures/more-extensionless-text-files-app/source/CNAME +0 -1
  946. data/fixtures/more-extensionless-text-files-app/source/LICENSE +0 -1
  947. data/fixtures/more-extensionless-text-files-app/source/README +0 -1
  948. data/fixtures/more-extensionless-text-files-app/source/index.html +0 -1
  949. data/fixtures/more-frontmatter-settings-app/config.rb +0 -4
  950. data/fixtures/more-frontmatter-settings-app/source/alternate_layout.html.erb +0 -5
  951. data/fixtures/more-frontmatter-settings-app/source/ignored.html.erb +0 -5
  952. data/fixtures/more-frontmatter-settings-app/source/layouts/alternate.erb +0 -3
  953. data/fixtures/more-frontmatter-settings-app/source/no_index.html.erb +0 -5
  954. data/fixtures/more-ignore-app/source/about.html.erb +0 -1
  955. data/fixtures/more-ignore-app/source/images/icon/messages.png +0 -0
  956. data/fixtures/more-ignore-app/source/images/pic.png +0 -0
  957. data/fixtures/more-ignore-app/source/images/portrait.jpg +0 -0
  958. data/fixtures/more-ignore-app/source/index.html.erb +0 -0
  959. data/fixtures/more-ignore-app/source/plain.html +0 -1
  960. data/fixtures/more-ignore-app/source/reports/another.html +0 -0
  961. data/fixtures/more-ignore-app/source/reports/index.html +0 -0
  962. data/fixtures/more-markdown-app/source/layouts/layout.erb +0 -13
  963. data/fixtures/more-markdown-app/source/with_layout.html.markdown +0 -4
  964. data/fixtures/more-markdown-app/source/with_layout_erb.html.markdown.erb +0 -4
  965. data/fixtures/more-preview-app/config.rb +0 -0
  966. data/fixtures/more-preview-app/source/content.html.erb +0 -1
  967. data/fixtures/more-preview-app/source/layout.erb +0 -1
  968. data/fixtures/more-preview-app/source/stylesheets/_partial.sass +0 -2
  969. data/fixtures/more-preview-app/source/stylesheets/_partial2.css.sass +0 -2
  970. data/fixtures/more-preview-app/source/stylesheets/main.css.sass +0 -4
  971. data/fixtures/more-preview-app/source/stylesheets/main2.css.sass +0 -4
  972. data/fixtures/more-preview-app/source/stylesheets/plain.css.sass +0 -2
  973. data/fixtures/more-traversal-app/config.rb +0 -7
  974. data/fixtures/more-traversal-app/source/directory-indexed/sibling.html.erb +0 -3
  975. data/fixtures/more-traversal-app/source/directory-indexed/sibling2.html.erb +0 -3
  976. data/fixtures/more-traversal-app/source/directory-indexed/sub2/index.html.erb +0 -0
  977. data/fixtures/more-traversal-app/source/directory-indexed/sub3/deep.html.erb +0 -0
  978. data/fixtures/more-traversal-app/source/directory-indexed.html.erb +0 -0
  979. data/fixtures/more-traversal-app/source/index.html.erb +0 -0
  980. data/fixtures/more-traversal-app/source/layout.erb +0 -21
  981. data/fixtures/more-traversal-app/source/proxied.html.erb +0 -0
  982. data/fixtures/more-traversal-app/source/root.html.erb +0 -0
  983. data/fixtures/more-traversal-app/source/sub/index.html.erb +0 -0
  984. data/fixtures/more-traversal-app/source/sub/sibling.html.erb +0 -0
  985. data/fixtures/more-traversal-app/source/sub/sibling2.html.erb +0 -0
  986. data/fixtures/more-traversal-app/source/sub/sub2/index.html.erb +0 -0
  987. data/fixtures/more-traversal-app/source/sub/sub3/deep.html.erb +0 -0
  988. data/fixtures/multiple-data-sources-app/config.rb +0 -3
  989. data/fixtures/multiple-data-sources-app/data/data.yml +0 -1
  990. data/fixtures/multiple-data-sources-app/data/two.yml +0 -1
  991. data/fixtures/multiple-data-sources-app/data0/one.yml +0 -1
  992. data/fixtures/multiple-data-sources-app/data1/data1.yml +0 -1
  993. data/fixtures/multiple-data-sources-app/data1/one.yml +0 -1
  994. data/fixtures/multiple-data-sources-app/data2/data2.yml +0 -1
  995. data/fixtures/multiple-data-sources-app/data2/two.yml +0 -1
  996. data/fixtures/multiple-data-sources-app/source/index.html.erb +0 -5
  997. data/fixtures/multiple-layouts/config.rb +0 -0
  998. data/fixtures/multiple-layouts/source/index.html.erb +0 -1
  999. data/fixtures/multiple-layouts/source/layout.erb +0 -9
  1000. data/fixtures/multiple-layouts/source/layout.str +0 -9
  1001. data/fixtures/multiple-sources-app/config.rb +0 -3
  1002. data/fixtures/multiple-sources-app/source/index.html.erb +0 -1
  1003. data/fixtures/multiple-sources-app/source/override-in-two.html.erb +0 -1
  1004. data/fixtures/multiple-sources-app/source0/override-in-one.html.erb +0 -1
  1005. data/fixtures/multiple-sources-app/source1/index1.html.erb +0 -1
  1006. data/fixtures/multiple-sources-app/source1/override-in-one.html.erb +0 -1
  1007. data/fixtures/multiple-sources-app/source2/index2.html.erb +0 -1
  1008. data/fixtures/multiple-sources-app/source2/override-in-two.html.erb +0 -1
  1009. data/fixtures/multiple-sources-with-duplicate-file-names-app/config.rb +0 -2
  1010. data/fixtures/multiple-sources-with-duplicate-file-names-app/source/index.html.erb +0 -1
  1011. data/fixtures/multiple-sources-with-duplicate-file-names-app/source2/index.html.erb +0 -1
  1012. data/fixtures/nested-data-app/config.rb +0 -1
  1013. data/fixtures/nested-data-app/data/examples/deeper/stuff.yml +0 -1
  1014. data/fixtures/nested-data-app/data/examples/more.yml +0 -1
  1015. data/fixtures/nested-data-app/data/examples/test.yml +0 -1
  1016. data/fixtures/nested-data-app/data/examples/withcontent.yaml +0 -11
  1017. data/fixtures/nested-data-app/source/extracontent.html.haml.erb +0 -4
  1018. data/fixtures/nested-data-app/source/test.html.erb +0 -3
  1019. data/fixtures/nested-layout-app/config.rb +0 -1
  1020. data/fixtures/nested-layout-app/source/another.html.markdown +0 -7
  1021. data/fixtures/nested-layout-app/source/data-one.html.erb +0 -5
  1022. data/fixtures/nested-layout-app/source/data-two.html.erb +0 -5
  1023. data/fixtures/nested-layout-app/source/haml-test.html.markdown +0 -7
  1024. data/fixtures/nested-layout-app/source/index.html.erb +0 -6
  1025. data/fixtures/nested-layout-app/source/layouts/inner.erb +0 -7
  1026. data/fixtures/nested-layout-app/source/layouts/inner_haml.haml +0 -7
  1027. data/fixtures/nested-layout-app/source/layouts/inner_slim.slim +0 -7
  1028. data/fixtures/nested-layout-app/source/layouts/master.erb +0 -9
  1029. data/fixtures/nested-layout-app/source/layouts/master_haml.haml +0 -7
  1030. data/fixtures/nested-layout-app/source/layouts/master_slim.slim +0 -7
  1031. data/fixtures/nested-layout-app/source/layouts/outer.erb +0 -8
  1032. data/fixtures/nested-layout-app/source/layouts/outer_haml.haml +0 -7
  1033. data/fixtures/nested-layout-app/source/layouts/outer_slim.slim +0 -7
  1034. data/fixtures/nested-layout-app/source/slim-test.html.markdown +0 -7
  1035. data/fixtures/no-layout/config.rb +0 -0
  1036. data/fixtures/no-layout/source/index.html.erb +0 -1
  1037. data/fixtures/padrino-helpers-app/config.rb +0 -7
  1038. data/fixtures/padrino-helpers-app/source/former_padrino_test.html.erb +0 -6
  1039. data/fixtures/page-classes-app/config.rb +0 -2
  1040. data/fixtures/page-classes-app/source/1-folder/1-inside-with-numeric.html.erb +0 -1
  1041. data/fixtures/page-classes-app/source/1-starts-with-numeric.html.erb +0 -1
  1042. data/fixtures/page-classes-app/source/2-starts-with-numeric-custom.html.erb +0 -1
  1043. data/fixtures/page-classes-app/source/page-classes.html.erb +0 -1
  1044. data/fixtures/page-classes-app/source/sub1/page-classes.html.erb +0 -1
  1045. data/fixtures/page-classes-app/source/sub1/sub2/page-classes.html.erb +0 -1
  1046. data/fixtures/page-helper-layout-block-app/config.rb +0 -6
  1047. data/fixtures/page-helper-layout-block-app/source/index.html.erb +0 -1
  1048. data/fixtures/page-helper-layout-block-app/source/layouts/alt.erb +0 -3
  1049. data/fixtures/page-helper-layout-block-app/source/layouts/layout.erb +0 -3
  1050. data/fixtures/page-helper-layout-block-app/source/path/child.html.erb +0 -1
  1051. data/fixtures/page-helper-layout-block-app/source/path/index.html.erb +0 -1
  1052. data/fixtures/page-id-app/config-proc.rb +0 -7
  1053. data/fixtures/page-id-app/config.rb +0 -5
  1054. data/fixtures/page-id-app/source/feed.xml.erb +0 -1
  1055. data/fixtures/page-id-app/source/fm.html.erb +0 -5
  1056. data/fixtures/page-id-app/source/folder/foldern.html.erb +0 -1
  1057. data/fixtures/page-id-app/source/fourty-two.html.erb +0 -5
  1058. data/fixtures/page-id-app/source/implicit.html.erb +0 -1
  1059. data/fixtures/page-id-app/source/index.html.erb +0 -15
  1060. data/fixtures/page-id-app/source/overwrites/from-default.html.erb +0 -1
  1061. data/fixtures/page-id-app/source/overwrites/from-frontmatter.html.erb +0 -5
  1062. data/fixtures/paginate-app/config.rb +0 -0
  1063. data/fixtures/paginate-app/source/archive/2011/index.html.erb +0 -20
  1064. data/fixtures/paginate-app/source/blog/2011-01-01-test-article.html.markdown +0 -6
  1065. data/fixtures/paginate-app/source/blog/2011-01-02-test-article.html.markdown +0 -6
  1066. data/fixtures/paginate-app/source/blog/2011-01-03-test-article.html.markdown +0 -6
  1067. data/fixtures/paginate-app/source/blog/2011-01-04-test-article.html.markdown +0 -6
  1068. data/fixtures/paginate-app/source/blog/2011-01-05-test-article.html.markdown +0 -6
  1069. data/fixtures/paginate-app/source/blog/2011-02-01-test-article.html.markdown +0 -6
  1070. data/fixtures/paginate-app/source/blog/2011-02-02-test-article.html.markdown +0 -6
  1071. data/fixtures/paginate-app/source/index.html.erb +0 -15
  1072. data/fixtures/paginate-app/source/tag.html.erb +0 -23
  1073. data/fixtures/partial-chained_templates-app/config.rb +0 -0
  1074. data/fixtures/partials-app/config.rb +0 -0
  1075. data/fixtures/partials-app/source/_block.erb +0 -3
  1076. data/fixtures/partials-app/source/_code_snippet.html +0 -1
  1077. data/fixtures/partials-app/source/_locals.erb +0 -1
  1078. data/fixtures/partials-app/source/_main.erb +0 -1
  1079. data/fixtures/partials-app/source/_main.str +0 -1
  1080. data/fixtures/partials-app/source/block.html.erb +0 -3
  1081. data/fixtures/partials-app/source/images/tiger.svg +0 -725
  1082. data/fixtures/partials-app/source/index.html.erb +0 -3
  1083. data/fixtures/partials-app/source/index_missing.html.erb +0 -3
  1084. data/fixtures/partials-app/source/locals.html.erb +0 -1
  1085. data/fixtures/partials-app/source/second.html.str +0 -3
  1086. data/fixtures/partials-app/source/shared/_footer.erb +0 -1
  1087. data/fixtures/partials-app/source/shared/_header.erb +0 -1
  1088. data/fixtures/partials-app/source/shared/_snippet.html.erb +0 -1
  1089. data/fixtures/partials-app/source/static_underscore.html.erb +0 -1
  1090. data/fixtures/partials-app/source/sub/_local.erb +0 -1
  1091. data/fixtures/partials-app/source/sub/index.html.erb +0 -3
  1092. data/fixtures/partials-app/source/svg.html.erb +0 -1
  1093. data/fixtures/partials-app/source/using_snippet.html.erb +0 -1
  1094. data/fixtures/passthrough-app/source/.htaccess +0 -1
  1095. data/fixtures/passthrough-app/source/inline-coffeescript.html.haml +0 -3
  1096. data/fixtures/passthrough-app/source/inline-css.html.haml +0 -4
  1097. data/fixtures/passthrough-app/source/inline-js.html.haml +0 -28
  1098. data/fixtures/passthrough-app/source/javascripts/coffee_test.js.coffee +0 -3
  1099. data/fixtures/passthrough-app/source/javascripts/js_test.js +0 -8
  1100. data/fixtures/passthrough-app/source/stylesheets/site.css.sass +0 -5
  1101. data/fixtures/preview-app/config.rb +0 -0
  1102. data/fixtures/preview-app/source/content.html.erb +0 -1
  1103. data/fixtures/preview-app/source/layout.erb +0 -1
  1104. data/fixtures/proxy-pages-app/config.rb +0 -18
  1105. data/fixtures/proxy-pages-app/source/real/index.html.erb +0 -5
  1106. data/fixtures/proxy-pages-app/source/real.html +0 -1
  1107. data/fixtures/proxy-pages-app/source/should_be_ignored3.html +0 -1
  1108. data/fixtures/proxy-pages-app/source/should_be_ignored6.html +0 -1
  1109. data/fixtures/proxy-pages-app/source/should_be_ignored7.html +0 -1
  1110. data/fixtures/proxy-pages-app/source/should_be_ignored8.html +0 -1
  1111. data/fixtures/related-files-app/config.rb +0 -0
  1112. data/fixtures/related-files-app/source/index.html.erb +0 -0
  1113. data/fixtures/related-files-app/source/partials/_test.erb +0 -0
  1114. data/fixtures/related-files-app/source/partials/_test2.haml +0 -0
  1115. data/fixtures/related-files-app/source/stylesheets/_include3.sass +0 -0
  1116. data/fixtures/related-files-app/source/stylesheets/_include4.scss +0 -0
  1117. data/fixtures/related-files-app/source/stylesheets/include1.css +0 -0
  1118. data/fixtures/related-files-app/source/stylesheets/include2.css.scss +0 -0
  1119. data/fixtures/related-files-app/source/stylesheets/site.css.scss +0 -0
  1120. data/fixtures/relative-app/config.rb +0 -0
  1121. data/fixtures/relative-app/source/images/blank.gif +0 -0
  1122. data/fixtures/relative-app/source/stylesheets/relative_assets.css.sass +0 -2
  1123. data/fixtures/relative-assets-app/config.rb +0 -5
  1124. data/fixtures/relative-assets-app/source/absolute_image_relative_css.html.erb +0 -9
  1125. data/fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.eot +0 -0
  1126. data/fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.svg +0 -0
  1127. data/fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.ttf +0 -0
  1128. data/fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.woff +0 -0
  1129. data/fixtures/relative-assets-app/source/images/blank.gif +0 -0
  1130. data/fixtures/relative-assets-app/source/images/blank2.gif +0 -0
  1131. data/fixtures/relative-assets-app/source/img/blank.gif +0 -0
  1132. data/fixtures/relative-assets-app/source/javascripts/app.js +0 -3
  1133. data/fixtures/relative-assets-app/source/javascripts/application.js +0 -8
  1134. data/fixtures/relative-assets-app/source/relative_image.html.erb +0 -9
  1135. data/fixtures/relative-assets-app/source/relative_image_absolute_css.html.erb +0 -9
  1136. data/fixtures/relative-assets-app/source/stylesheets/fonts.css +0 -10
  1137. data/fixtures/relative-assets-app/source/stylesheets/fonts2.css.scss +0 -10
  1138. data/fixtures/relative-assets-app/source/stylesheets/relative_assets.css.sass +0 -2
  1139. data/fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset-sass.sass +0 -1
  1140. data/fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset.scss +0 -1
  1141. data/fixtures/sass-assets-path-app/config.rb +0 -4
  1142. data/fixtures/sass-assets-path-app/my-vendor/stylesheets/_partial.sass +0 -2
  1143. data/fixtures/sass-assets-path-app/source/stylesheets/plain.css.sass +0 -16
  1144. data/fixtures/sass-in-slim-app/config.rb +0 -0
  1145. data/fixtures/scss-app/config.rb +0 -0
  1146. data/fixtures/scss-app/source/stylesheets/error.css.sass +0 -1
  1147. data/fixtures/scss-app/source/stylesheets/layout.css.sass +0 -2
  1148. data/fixtures/scss-app/source/stylesheets/site_scss.css.scss +0 -3
  1149. data/fixtures/sinatra-app/config.rb +0 -16
  1150. data/fixtures/sinatra-app/source/index.html.erb +0 -5
  1151. data/fixtures/slim-content-for-app/config.rb +0 -0
  1152. data/fixtures/slim-content-for-app/source/index.html.slim +0 -7
  1153. data/fixtures/slim-content-for-app/source/layouts/layout.slim +0 -15
  1154. data/fixtures/strip-url-app/config.rb +0 -0
  1155. data/fixtures/strip-url-app/source/index.html.erb +0 -1
  1156. data/fixtures/strip-url-app/source/other.html.erb +0 -1
  1157. data/fixtures/strip-url-app/source/subdir/index.html.erb +0 -1
  1158. data/fixtures/stylus-preview-app/config.rb +0 -0
  1159. data/fixtures/stylus-preview-app/source/content.html.erb +0 -5
  1160. data/fixtures/stylus-preview-app/source/stylesheets/_partial.styl +0 -2
  1161. data/fixtures/stylus-preview-app/source/stylesheets/_partial2.css.styl +0 -2
  1162. data/fixtures/stylus-preview-app/source/stylesheets/main.css.styl +0 -4
  1163. data/fixtures/stylus-preview-app/source/stylesheets/main2.css.styl +0 -4
  1164. data/fixtures/stylus-preview-app/source/stylesheets/plain.css.styl +0 -2
  1165. data/fixtures/traversal-app/config.rb +0 -5
  1166. data/fixtures/traversal-app/source/.htaccess +0 -0
  1167. data/fixtures/traversal-app/source/directory-indexed/sibling.html.erb +0 -3
  1168. data/fixtures/traversal-app/source/directory-indexed/sibling2.html.erb +0 -3
  1169. data/fixtures/traversal-app/source/directory-indexed/sub2/index.html.erb +0 -0
  1170. data/fixtures/traversal-app/source/directory-indexed/sub3/deep.html.erb +0 -0
  1171. data/fixtures/traversal-app/source/directory-indexed.html.erb +0 -0
  1172. data/fixtures/traversal-app/source/index.html.erb +0 -0
  1173. data/fixtures/traversal-app/source/layout.erb +0 -21
  1174. data/fixtures/traversal-app/source/proxied.html.erb +0 -0
  1175. data/fixtures/traversal-app/source/root.html.erb +0 -0
  1176. data/fixtures/traversal-app/source/sub/index.html.erb +0 -0
  1177. data/fixtures/traversal-app/source/sub/sibling.html.erb +0 -0
  1178. data/fixtures/traversal-app/source/sub/sibling2.html.erb +0 -0
  1179. data/fixtures/traversal-app/source/sub/sub2/index.html.erb +0 -0
  1180. data/fixtures/traversal-app/source/sub/sub3/deep.html.erb +0 -0
  1181. data/fixtures/v4-extension-callbacks/config.rb +0 -42
  1182. data/fixtures/v4-extension-callbacks/source/index.html.erb +0 -2
  1183. data/fixtures/wildcard-app/config.rb +0 -1
  1184. data/fixtures/wildcard-app/source/admin/index.html.erb +0 -1
  1185. data/fixtures/wildcard-app/source/admin/page.html.erb +0 -1
  1186. data/fixtures/wildcard-app/source/index.html.erb +0 -1
  1187. data/fixtures/wildcard-app/source/layouts/admin.erb +0 -2
  1188. data/fixtures/wildcard-app/source/layouts/layout.erb +0 -2
  1189. data/fixtures/wildcard-directory-index-app/config.rb +0 -2
  1190. data/fixtures/wildcard-directory-index-app/source/admin/index.html.erb +0 -1
  1191. data/fixtures/wildcard-directory-index-app/source/admin/page.html.erb +0 -1
  1192. data/fixtures/wildcard-directory-index-app/source/index.html.erb +0 -1
  1193. data/fixtures/wildcard-directory-index-app/source/layouts/admin.erb +0 -2
  1194. data/fixtures/wildcard-directory-index-app/source/layouts/layout.erb +0 -2
  1195. data/lib/middleman-core/core_extensions/inline_url_rewriter.rb +0 -140
  1196. data/spec/middleman-core/binary_spec/middleman +0 -0
  1197. data/spec/middleman-core/binary_spec/middleman.png +0 -0
  1198. data/spec/middleman-core/binary_spec/plain.txt +0 -1
  1199. data/spec/middleman-core/binary_spec/stars.svgz +0 -0
  1200. data/spec/middleman-core/binary_spec/unicode +0 -1
  1201. data/spec/middleman-core/binary_spec/unicode.txt +0 -1
  1202. data/spec/middleman-core/callbacks_spec.rb +0 -132
  1203. data/spec/middleman-core/core_extensions/data_spec.rb +0 -147
  1204. data/spec/middleman-core/dns_resolver_spec.rb +0 -102
  1205. data/spec/middleman-core/preview_server/server_hostname_spec.rb +0 -39
  1206. data/spec/middleman-core/preview_server/server_ip_address_spec.rb +0 -43
  1207. data/spec/middleman-core/util_spec.rb +0 -230
  1208. data/spec/spec_helper.rb +0 -31
  1209. data/spec/support/given.rb +0 -42
  1210. /data/{fixtures/asset-host-app/source/images/blank0.gif → .gemtest} +0 -0
metadata CHANGED
@@ -1,47 +1,19 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: middleman-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.6.0
4
+ version: 5.0.0.rc.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas Reynolds
8
8
  - Ben Hollis
9
9
  - Karl Freeman
10
- autorequire:
10
+ autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2025-03-05 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
- requirement: !ruby/object:Gem::Requirement
18
- requirements:
19
- - - "~>"
20
- - !ruby/object:Gem::Version
21
- version: '2.0'
22
- type: :runtime
23
- prerelease: false
24
- version_requirements: !ruby/object:Gem::Requirement
25
- requirements:
26
- - - "~>"
27
- - !ruby/object:Gem::Version
28
- version: '2.0'
29
- - !ruby/object:Gem::Dependency
30
- name: rack
31
- requirement: !ruby/object:Gem::Requirement
32
- requirements:
33
- - - ">="
34
- - !ruby/object:Gem::Version
35
- version: '3'
36
- type: :runtime
37
- prerelease: false
38
- version_requirements: !ruby/object:Gem::Requirement
39
- requirements:
40
- - - ">="
41
- - !ruby/object:Gem::Version
42
- version: '3'
43
- - !ruby/object:Gem::Dependency
44
- name: rackup
45
17
  requirement: !ruby/object:Gem::Requirement
46
18
  requirements:
47
19
  - - ">="
@@ -55,77 +27,41 @@ dependencies:
55
27
  - !ruby/object:Gem::Version
56
28
  version: '0'
57
29
  - !ruby/object:Gem::Dependency
58
- name: tilt
59
- requirement: !ruby/object:Gem::Requirement
60
- requirements:
61
- - - "~>"
62
- - !ruby/object:Gem::Version
63
- version: '2.2'
64
- type: :runtime
65
- prerelease: false
66
- version_requirements: !ruby/object:Gem::Requirement
67
- requirements:
68
- - - "~>"
69
- - !ruby/object:Gem::Version
70
- version: '2.2'
71
- - !ruby/object:Gem::Dependency
72
- name: erubi
30
+ name: rack
73
31
  requirement: !ruby/object:Gem::Requirement
74
32
  requirements:
75
33
  - - ">="
76
34
  - !ruby/object:Gem::Version
77
- version: '0'
78
- type: :runtime
79
- prerelease: false
80
- version_requirements: !ruby/object:Gem::Requirement
81
- requirements:
82
- - - ">="
83
- - !ruby/object:Gem::Version
84
- version: '0'
85
- - !ruby/object:Gem::Dependency
86
- name: haml
87
- requirement: !ruby/object:Gem::Requirement
88
- requirements:
89
- - - ">="
35
+ version: 1.4.5
36
+ - - "<"
90
37
  - !ruby/object:Gem::Version
91
- version: 4.0.5
38
+ version: '3'
92
39
  type: :runtime
93
40
  prerelease: false
94
41
  version_requirements: !ruby/object:Gem::Requirement
95
42
  requirements:
96
43
  - - ">="
97
44
  - !ruby/object:Gem::Version
98
- version: 4.0.5
99
- - !ruby/object:Gem::Dependency
100
- name: coffee-script
101
- requirement: !ruby/object:Gem::Requirement
102
- requirements:
103
- - - "~>"
104
- - !ruby/object:Gem::Version
105
- version: '2.2'
106
- type: :runtime
107
- prerelease: false
108
- version_requirements: !ruby/object:Gem::Requirement
109
- requirements:
110
- - - "~>"
45
+ version: 1.4.5
46
+ - - "<"
111
47
  - !ruby/object:Gem::Version
112
- version: '2.2'
48
+ version: '3'
113
49
  - !ruby/object:Gem::Dependency
114
- name: kramdown
50
+ name: tilt
115
51
  requirement: !ruby/object:Gem::Requirement
116
52
  requirements:
117
53
  - - "~>"
118
54
  - !ruby/object:Gem::Version
119
- version: '2.4'
55
+ version: 2.0.9
120
56
  type: :runtime
121
57
  prerelease: false
122
58
  version_requirements: !ruby/object:Gem::Requirement
123
59
  requirements:
124
60
  - - "~>"
125
61
  - !ruby/object:Gem::Version
126
- version: '2.4'
62
+ version: 2.0.9
127
63
  - !ruby/object:Gem::Dependency
128
- name: fast_blank
64
+ name: erubis
129
65
  requirement: !ruby/object:Gem::Requirement
130
66
  requirements:
131
67
  - - ">="
@@ -181,89 +117,89 @@ dependencies:
181
117
  - !ruby/object:Gem::Version
182
118
  version: '0'
183
119
  - !ruby/object:Gem::Dependency
184
- name: toml
120
+ name: rgl
185
121
  requirement: !ruby/object:Gem::Requirement
186
122
  requirements:
187
- - - ">="
123
+ - - "~>"
188
124
  - !ruby/object:Gem::Version
189
- version: '0'
125
+ version: 0.5.3
190
126
  type: :runtime
191
127
  prerelease: false
192
128
  version_requirements: !ruby/object:Gem::Requirement
193
129
  requirements:
194
- - - ">="
130
+ - - "~>"
195
131
  - !ruby/object:Gem::Version
196
- version: '0'
132
+ version: 0.5.3
197
133
  - !ruby/object:Gem::Dependency
198
- name: webrick
134
+ name: activesupport
199
135
  requirement: !ruby/object:Gem::Requirement
200
136
  requirements:
201
- - - ">="
137
+ - - "~>"
202
138
  - !ruby/object:Gem::Version
203
- version: '0'
139
+ version: '5.2'
204
140
  type: :runtime
205
141
  prerelease: false
206
142
  version_requirements: !ruby/object:Gem::Requirement
207
143
  requirements:
208
- - - ">="
144
+ - - "~>"
209
145
  - !ruby/object:Gem::Version
210
- version: '0'
146
+ version: '5.2'
211
147
  - !ruby/object:Gem::Dependency
212
- name: activesupport
148
+ name: padrino-helpers
213
149
  requirement: !ruby/object:Gem::Requirement
214
150
  requirements:
215
- - - ">="
151
+ - - "~>"
216
152
  - !ruby/object:Gem::Version
217
- version: '6.1'
153
+ version: 0.14.4
218
154
  type: :runtime
219
155
  prerelease: false
220
156
  version_requirements: !ruby/object:Gem::Requirement
221
157
  requirements:
222
- - - ">="
158
+ - - "~>"
223
159
  - !ruby/object:Gem::Version
224
- version: '6.1'
160
+ version: 0.14.4
225
161
  - !ruby/object:Gem::Dependency
226
- name: padrino-helpers
162
+ name: addressable
227
163
  requirement: !ruby/object:Gem::Requirement
228
164
  requirements:
229
165
  - - "~>"
230
166
  - !ruby/object:Gem::Version
231
- version: 0.15.0
167
+ version: '2.3'
232
168
  type: :runtime
233
169
  prerelease: false
234
170
  version_requirements: !ruby/object:Gem::Requirement
235
171
  requirements:
236
172
  - - "~>"
237
173
  - !ruby/object:Gem::Version
238
- version: 0.15.0
174
+ version: '2.3'
239
175
  - !ruby/object:Gem::Dependency
240
- name: addressable
176
+ name: memoist
241
177
  requirement: !ruby/object:Gem::Requirement
242
178
  requirements:
243
179
  - - "~>"
244
180
  - !ruby/object:Gem::Version
245
- version: '2.4'
181
+ version: '0.14'
246
182
  type: :runtime
247
183
  prerelease: false
248
184
  version_requirements: !ruby/object:Gem::Requirement
249
185
  requirements:
250
186
  - - "~>"
251
187
  - !ruby/object:Gem::Version
252
- version: '2.4'
188
+ version: '0.14'
253
189
  - !ruby/object:Gem::Dependency
254
- name: memoist
190
+ name: backports
255
191
  requirement: !ruby/object:Gem::Requirement
256
192
  requirements:
257
193
  - - "~>"
258
194
  - !ruby/object:Gem::Version
259
- version: '0.14'
195
+ version: '3.11'
260
196
  type: :runtime
261
197
  prerelease: false
262
198
  version_requirements: !ruby/object:Gem::Requirement
263
199
  requirements:
264
200
  - - "~>"
265
201
  - !ruby/object:Gem::Version
266
- version: '0.14'
202
+ version: '3.11'
267
203
  - !ruby/object:Gem::Dependency
268
204
  name: listen
269
205
  requirement: !ruby/object:Gem::Requirement
@@ -282,22 +218,16 @@ dependencies:
282
218
  name: i18n
283
219
  requirement: !ruby/object:Gem::Requirement
284
220
  requirements:
285
- - - ">="
286
- - !ruby/object:Gem::Version
287
- version: '1.6'
288
- - - "<"
221
+ - - "~>"
289
222
  - !ruby/object:Gem::Version
290
- version: '1.15'
223
+ version: 0.9.0
291
224
  type: :runtime
292
225
  prerelease: false
293
226
  version_requirements: !ruby/object:Gem::Requirement
294
227
  requirements:
295
- - - ">="
296
- - !ruby/object:Gem::Version
297
- version: '1.6'
298
- - - "<"
228
+ - - "~>"
299
229
  - !ruby/object:Gem::Version
300
- version: '1.15'
230
+ version: 0.9.0
301
231
  - !ruby/object:Gem::Dependency
302
232
  name: fastimage
303
233
  requirement: !ruby/object:Gem::Requirement
@@ -330,22 +260,16 @@ dependencies:
330
260
  name: uglifier
331
261
  requirement: !ruby/object:Gem::Requirement
332
262
  requirements:
333
- - - ">="
334
- - !ruby/object:Gem::Version
335
- version: '3'
336
- - - "<"
263
+ - - "~>"
337
264
  - !ruby/object:Gem::Version
338
- version: '5'
265
+ version: '4.1'
339
266
  type: :runtime
340
267
  prerelease: false
341
268
  version_requirements: !ruby/object:Gem::Requirement
342
269
  requirements:
343
- - - ">="
344
- - !ruby/object:Gem::Version
345
- version: '3'
346
- - - "<"
270
+ - - "~>"
347
271
  - !ruby/object:Gem::Version
348
- version: '5'
272
+ version: '4.1'
349
273
  - !ruby/object:Gem::Dependency
350
274
  name: execjs
351
275
  requirement: !ruby/object:Gem::Requirement
@@ -360,40 +284,48 @@ dependencies:
360
284
  - - "~>"
361
285
  - !ruby/object:Gem::Version
362
286
  version: '2.0'
287
+ - !ruby/object:Gem::Dependency
288
+ name: oj
289
+ requirement: !ruby/object:Gem::Requirement
290
+ requirements:
291
+ - - "~>"
292
+ - !ruby/object:Gem::Version
293
+ version: '3.7'
294
+ type: :runtime
295
+ prerelease: false
296
+ version_requirements: !ruby/object:Gem::Requirement
297
+ requirements:
298
+ - - "~>"
299
+ - !ruby/object:Gem::Version
300
+ version: '3.7'
363
301
  - !ruby/object:Gem::Dependency
364
302
  name: contracts
365
303
  requirement: !ruby/object:Gem::Requirement
366
304
  requirements:
367
- - - ">="
305
+ - - "~>"
368
306
  - !ruby/object:Gem::Version
369
- version: '0'
307
+ version: 0.16.0
370
308
  type: :runtime
371
309
  prerelease: false
372
310
  version_requirements: !ruby/object:Gem::Requirement
373
311
  requirements:
374
- - - ">="
312
+ - - "~>"
375
313
  - !ruby/object:Gem::Version
376
- version: '0'
314
+ version: 0.16.0
377
315
  - !ruby/object:Gem::Dependency
378
316
  name: hashie
379
317
  requirement: !ruby/object:Gem::Requirement
380
318
  requirements:
381
- - - ">="
319
+ - - "~>"
382
320
  - !ruby/object:Gem::Version
383
321
  version: '3.4'
384
- - - "<"
385
- - !ruby/object:Gem::Version
386
- version: '6.0'
387
322
  type: :runtime
388
323
  prerelease: false
389
324
  version_requirements: !ruby/object:Gem::Requirement
390
325
  requirements:
391
- - - ">="
326
+ - - "~>"
392
327
  - !ruby/object:Gem::Version
393
328
  version: '3.4'
394
- - - "<"
395
- - !ruby/object:Gem::Version
396
- version: '6.0'
397
329
  - !ruby/object:Gem::Dependency
398
330
  name: hamster
399
331
  requirement: !ruby/object:Gem::Requirement
@@ -419,1080 +351,12 @@ executables: []
419
351
  extensions: []
420
352
  extra_rdoc_files: []
421
353
  files:
354
+ - ".gemtest"
355
+ - ".rspec"
422
356
  - ".simplecov"
423
357
  - ".yardopts"
424
358
  - Rakefile
425
- - features/asset_hash.feature
426
- - features/asset_host.feature
427
- - features/auto_layout.feature
428
- - features/automatic_alt_tags.feature
429
- - features/automatic_directory_matcher.feature
430
- - features/automatic_image_sizes.feature
431
- - features/builder.feature
432
- - features/cache_buster.feature
433
- - features/capture_html.feature
434
- - features/chained_templates.feature
435
- - features/clean_build.feature
436
- - features/coffee-script.feature
437
- - features/collections.feature
438
- - features/console.feature
439
- - features/content_for.feature
440
- - features/content_type.feature
441
- - features/custom-source.feature
442
- - features/custom_layout_engines.feature
443
- - features/custom_layouts.feature
444
- - features/data.feature
445
- - features/default-layout.feature
446
- - features/default_alt_tag.feature
447
- - features/directory_index.feature
448
- - features/dynamic_pages.feature
449
- - features/encoding_option.feature
450
- - features/extension_api_deprecations.feature
451
- - features/extension_hooks.feature
452
- - features/extensionless_text_files.feature
453
- - features/feature_params.feature
454
- - features/former_padrino_helpers.feature
455
- - features/front-matter-neighbor.feature
456
- - features/front-matter.feature
457
- - features/frontmatter_page_settings.feature
458
- - features/gzip.feature
459
- - features/helpers_auto_javascript_include_tag.feature
460
- - features/helpers_auto_stylesheet_link_tag.feature
461
- - features/helpers_content_tag.feature
462
- - features/helpers_external.feature
463
- - features/helpers_form_tag.feature
464
- - features/helpers_link_to.feature
465
- - features/helpers_lorem.feature
466
- - features/helpers_page_classes.feature
467
- - features/helpers_select_tag.feature
468
- - features/helpers_url_for.feature
469
- - features/i18n_builder.feature
470
- - features/i18n_force_locale.feature
471
- - features/i18n_link_to.feature
472
- - features/i18n_mixed_sources.feature
473
- - features/i18n_partials.feature
474
- - features/i18n_preview.feature
475
- - features/ignore.feature
476
- - features/ignore_already_minified.feature
477
- - features/image_srcset_paths.feature
478
- - features/import_files.feature
479
- - features/layouts_dir.feature
480
- - features/liquid.feature
481
- - features/markdown.feature
482
- - features/markdown_kramdown.feature
483
- - features/markdown_kramdown_in_haml.feature
484
- - features/markdown_kramdown_in_slim.feature
485
- - features/markdown_redcarpet.feature
486
- - features/markdown_redcarpet_in_haml.feature
487
- - features/markdown_redcarpet_in_slim.feature
488
- - features/minify_css.feature
489
- - features/minify_javascript.feature
490
- - features/missing-tilt-lib.feature
491
- - features/more-clean_build.feature
492
- - features/more-extensionless_text_files.feature
493
- - features/more-frontmatter_page_settings.feature
494
- - features/more-ignore.feature
495
- - features/more-sitemap_traversal.feature
496
- - features/more-wildcard_page_helper.feature
497
- - features/mount_rack.feature
498
- - features/move_files.feature
499
- - features/multiple-sources.feature
500
- - features/nested_layouts.feature
501
- - features/page-id.feature
502
- - features/paginate.feature
503
- - features/partials.feature
504
- - features/preview_changes.feature
505
- - features/proxy_pages.feature
506
- - features/redirects.feature
507
- - features/relative_assets.feature
508
- - features/relative_assets_helpers_only.feature
509
- - features/sass-assets-paths.feature
510
- - features/sass_in_slim.feature
511
- - features/sass_partials.feature
512
- - features/scss-support.feature
513
- - features/sitemap_traversal.feature
514
- - features/slim.feature
515
- - features/strip_url.feature
516
- - features/support/env.rb
517
- - features/support/preserve_mime_types.rb
518
- - features/template-key-collision.feature
519
- - features/tilde_directories.feature
520
- - features/unicode_filecontents.feature
521
- - features/unicode_filenames.feature
522
- - features/v4_extension_callbacks.feature
523
- - features/wildcard_page_helper.feature
524
- - fixtures/asset-hash-app/config.rb
525
- - fixtures/asset-hash-app/lib/middleware.rb
526
- - fixtures/asset-hash-app/source/api.json.erb
527
- - fixtures/asset-hash-app/source/apple-touch-icon.png
528
- - fixtures/asset-hash-app/source/favicon.ico
529
- - fixtures/asset-hash-app/source/fonts/fontawesome-webfont.woff
530
- - fixtures/asset-hash-app/source/fonts/fontawesome-webfont.woff2
531
- - fixtures/asset-hash-app/source/images/100px.gif
532
- - fixtures/asset-hash-app/source/images/100px.jpg
533
- - fixtures/asset-hash-app/source/images/100px.png
534
- - fixtures/asset-hash-app/source/images/200px.jpg
535
- - fixtures/asset-hash-app/source/images/300px.jpg
536
- - fixtures/asset-hash-app/source/index.html.erb
537
- - fixtures/asset-hash-app/source/javascripts/application.js
538
- - fixtures/asset-hash-app/source/layout.erb
539
- - fixtures/asset-hash-app/source/other.html.erb
540
- - fixtures/asset-hash-app/source/partials.html.erb
541
- - fixtures/asset-hash-app/source/slim.html.slim
542
- - fixtures/asset-hash-app/source/stylesheets/_partial.sass
543
- - fixtures/asset-hash-app/source/stylesheets/fragment.css.scss
544
- - fixtures/asset-hash-app/source/stylesheets/site.css.scss
545
- - fixtures/asset-hash-app/source/stylesheets/uses_fonts.css
546
- - fixtures/asset-hash-app/source/stylesheets/uses_partials.css.sass
547
- - fixtures/asset-hash-app/source/subdir/api.json.erb
548
- - fixtures/asset-hash-app/source/subdir/index.html.erb
549
- - fixtures/asset-hash-host-app/source/images/100px.gif
550
- - fixtures/asset-hash-host-app/source/images/100px.jpg
551
- - fixtures/asset-hash-host-app/source/images/100px.png
552
- - fixtures/asset-hash-host-app/source/index.html.erb
553
- - fixtures/asset-hash-host-app/source/layout.erb
554
- - fixtures/asset-hash-host-app/source/other.html.erb
555
- - fixtures/asset-hash-host-app/source/stylesheets/fragment.css.scss
556
- - fixtures/asset-hash-host-app/source/stylesheets/site.css.scss
557
- - fixtures/asset-hash-host-app/source/subdir/index.html.erb
558
- - fixtures/asset-hash-minified-app/config.rb
559
- - fixtures/asset-hash-minified-app/source/images/100px.jpg
560
- - fixtures/asset-hash-minified-app/source/javascripts/jquery.min.js
561
- - fixtures/asset-hash-minified-app/source/stylesheets/test.css
562
- - fixtures/asset-hash-prefix/config.rb
563
- - fixtures/asset-hash-prefix/lib/middleware.rb
564
- - fixtures/asset-hash-prefix/source/index.html.erb
565
- - fixtures/asset-hash-prefix/source/javascripts/application.js
566
- - fixtures/asset-hash-prefix/source/javascripts/application.js.map
567
- - fixtures/asset-hash-prefix/source/layout.erb
568
- - fixtures/asset-hash-remove-filename/config.rb
569
- - fixtures/asset-hash-remove-filename/source/index.html.erb
570
- - fixtures/asset-hash-remove-filename/source/javascripts/application.js
571
- - fixtures/asset-hash-remove-filename/source/javascripts/application.js.map
572
- - fixtures/asset-hash-remove-filename/source/layout.erb
573
- - fixtures/asset-hash-source-map/config.rb
574
- - fixtures/asset-hash-source-map/lib/middleware.rb
575
- - fixtures/asset-hash-source-map/source/index.html.erb
576
- - fixtures/asset-hash-source-map/source/javascripts/application.js
577
- - fixtures/asset-hash-source-map/source/javascripts/application.js.map
578
- - fixtures/asset-hash-source-map/source/layout.erb
579
- - fixtures/asset-host-app/config.rb
580
- - fixtures/asset-host-app/source/.htaccess
581
- - fixtures/asset-host-app/source/asset_host.html.erb
582
- - fixtures/asset-host-app/source/images/blank.gif
583
- - fixtures/asset-host-app/source/images/blank0.gif
584
- - fixtures/asset-host-app/source/images/blank1.gif
585
- - fixtures/asset-host-app/source/images/blank10.gif
586
- - fixtures/asset-host-app/source/images/blank100.gif
587
- - fixtures/asset-host-app/source/images/blank101.gif
588
- - fixtures/asset-host-app/source/images/blank1010.gif
589
- - fixtures/asset-host-app/source/images/blank102.gif
590
- - fixtures/asset-host-app/source/images/blank1020.gif
591
- - fixtures/asset-host-app/source/images/blank1021.gif
592
- - fixtures/asset-host-app/source/images/blank1022.gif
593
- - fixtures/asset-host-app/source/images/blank1023.gif
594
- - fixtures/asset-host-app/source/images/blank1024.gif
595
- - fixtures/asset-host-app/source/images/blank103.gif
596
- - fixtures/asset-host-app/source/images/blank1030.gif
597
- - fixtures/asset-host-app/source/images/blank1031.gif
598
- - fixtures/asset-host-app/source/images/blank1032.gif
599
- - fixtures/asset-host-app/source/images/blank1033.gif
600
- - fixtures/asset-host-app/source/images/blank1034.gif
601
- - fixtures/asset-host-app/source/images/blank104.gif
602
- - fixtures/asset-host-app/source/images/blank1043.gif
603
- - fixtures/asset-host-app/source/images/blank1054.gif
604
- - fixtures/asset-host-app/source/images/blank2.gif
605
- - fixtures/asset-host-app/source/images/blank20.gif
606
- - fixtures/asset-host-app/source/images/blank21.gif
607
- - fixtures/asset-host-app/source/images/blank22.gif
608
- - fixtures/asset-host-app/source/images/blank23.gif
609
- - fixtures/asset-host-app/source/images/blank24.gif
610
- - fixtures/asset-host-app/source/images/blank3.gif
611
- - fixtures/asset-host-app/source/images/blank30.gif
612
- - fixtures/asset-host-app/source/images/blank31.gif
613
- - fixtures/asset-host-app/source/images/blank32.gif
614
- - fixtures/asset-host-app/source/images/blank33.gif
615
- - fixtures/asset-host-app/source/images/blank34.gif
616
- - fixtures/asset-host-app/source/images/blank4.gif
617
- - fixtures/asset-host-app/source/images/blank43.gif
618
- - fixtures/asset-host-app/source/images/blank54.gif
619
- - fixtures/asset-host-app/source/javascripts/asset_host.js
620
- - fixtures/asset-host-app/source/stylesheets/asset_host.css.sass
621
- - fixtures/auto-css-app/config.rb
622
- - fixtures/auto-css-app/source/auto-css.html.erb
623
- - fixtures/auto-css-app/source/auto-css/auto-css.html.erb
624
- - fixtures/auto-css-app/source/auto-css/index.html.erb
625
- - fixtures/auto-css-app/source/auto-css/sub/auto-css.html.erb
626
- - fixtures/auto-css-app/source/stylesheets/auto-css.css
627
- - fixtures/auto-css-app/source/stylesheets/auto-css/auto-css.css
628
- - fixtures/auto-css-app/source/stylesheets/auto-css/index.css
629
- - fixtures/auto-css-app/source/stylesheets/auto-css/sub/auto-css.css
630
- - fixtures/auto-js-app/config.rb
631
- - fixtures/auto-js-app/source/auto-js.html.erb
632
- - fixtures/auto-js-app/source/auto-js/auto-js.html.erb
633
- - fixtures/auto-js-app/source/auto-js/index.html.erb
634
- - fixtures/auto-js-app/source/auto-js/sub/auto-js.html.erb
635
- - fixtures/auto-js-app/source/javascripts/auto-js.js
636
- - fixtures/auto-js-app/source/javascripts/auto-js/auto-js.js
637
- - fixtures/auto-js-app/source/javascripts/auto-js/index.js
638
- - fixtures/auto-js-app/source/javascripts/auto-js/sub/auto-js.js
639
- - fixtures/auto-js-directory-index-app/config.rb
640
- - fixtures/auto-js-directory-index-app/source/auto-js.html.erb
641
- - fixtures/auto-js-directory-index-app/source/javascripts/auto-js.js
642
- - fixtures/automatic-alt-tags-app/config.rb
643
- - fixtures/automatic-alt-tags-app/source/auto-image-sizes.html.erb
644
- - fixtures/automatic-alt-tags-app/source/images/blank.gif
645
- - fixtures/automatic-directory-matcher-app/config.rb
646
- - fixtures/automatic-directory-matcher-app/source/root-plain.html
647
- - fixtures/automatic-directory-matcher-app/source/root.html.erb
648
- - fixtures/automatic-directory-matcher-app/source/sub--sub--sub-plain.html
649
- - fixtures/automatic-directory-matcher-app/source/sub--sub--sub.html.erb
650
- - fixtures/automatic-directory-matcher-app/source/sub--sub-plain.html
651
- - fixtures/automatic-directory-matcher-app/source/sub--sub.html.erb
652
- - fixtures/automatic-image-size-app/config.rb
653
- - fixtures/automatic-image-size-app/source/auto-image-sizes.html.erb
654
- - fixtures/automatic-image-size-app/source/images/blank.gif
655
- - fixtures/automatic-image-size-app/source/markdown-sizes.html.markdown
656
- - fixtures/basic-data-app/config.rb
657
- - fixtures/basic-data-app/data/test.yml
658
- - fixtures/basic-data-app/data/test2.json
659
- - fixtures/basic-data-app/data/test3.toml
660
- - fixtures/basic-data-app/source/data.html.erb
661
- - fixtures/basic-data-app/source/data3.html.erb
662
- - fixtures/basic-data-app/source/data4.html.erb
663
- - fixtures/build-with-errors-app/config.rb
664
- - fixtures/build-with-errors-app/source/index.html.erb
665
- - fixtures/cache-buster-app/config.rb
666
- - fixtures/cache-buster-app/source/cache-buster.html.erb
667
- - fixtures/cache-buster-app/source/images/blank.gif
668
- - fixtures/cache-buster-app/source/stylesheets/relative_assets.css.sass
669
- - fixtures/cache-buster-app/source/stylesheets/site.css.sass
670
- - fixtures/capture-html-app/config.rb
671
- - fixtures/capture-html-app/source/capture_html_erb.html.erb
672
- - fixtures/capture-html-app/source/capture_html_haml.html.haml
673
- - fixtures/capture-html-app/source/capture_html_slim.html.slim
674
- - fixtures/capture-html-app/source/layouts/capture_html.erb
675
- - fixtures/chained-app/config.rb
676
- - fixtures/chained-app/data/article.yml
677
- - fixtures/chained-app/source/index.html.str.erb
678
- - fixtures/chained-app/source/test.erb.combobreaker.str.erb
679
- - fixtures/clean-app/config-complications.rb
680
- - fixtures/clean-app/config-empty.rb
681
- - fixtures/clean-app/config-hidden-dir-after.rb
682
- - fixtures/clean-app/config-hidden-dir-before.rb
683
- - fixtures/clean-app/config.rb
684
- - fixtures/clean-app/source/index.html.erb
685
- - fixtures/clean-app/source/layout.erb
686
- - fixtures/clean-app/source/layouts/custom.erb
687
- - fixtures/clean-app/source/real.html
688
- - fixtures/clean-app/source/real/index.html.erb
689
- - fixtures/clean-app/source/should_be_ignored.html
690
- - fixtures/clean-app/source/should_be_ignored2.html
691
- - fixtures/clean-app/source/should_be_ignored3.html
692
- - fixtures/clean-app/source/static.html
693
- - fixtures/clean-dir-app/config.rb
694
- - fixtures/clean-dir-app/source/about.html
695
- - fixtures/clean-nested-app/config.rb
696
- - fixtures/clean-nested-app/source/about.html
697
- - fixtures/clean-nested-app/source/nested/nested.html
698
- - fixtures/coffeescript-app/config.rb
699
- - fixtures/coffeescript-app/source/inline-coffeescript.html.haml
700
- - fixtures/coffeescript-app/source/javascripts/broken-coffee.js.coffee
701
- - fixtures/coffeescript-app/source/javascripts/coffee_test.js.coffee
702
- - fixtures/collections-app/source/blog1/2011-01-01-new-article.html.markdown
703
- - fixtures/collections-app/source/blog1/2011-01-02-another-article.html.markdown
704
- - fixtures/collections-app/source/blog2/2011-01-01-new-article.html.markdown
705
- - fixtures/collections-app/source/blog2/2011-01-02-another-article.html.markdown
706
- - fixtures/content-for-app/config.rb
707
- - fixtures/content-for-app/source/content_for_erb.html.erb
708
- - fixtures/content-for-app/source/content_for_haml.html.haml
709
- - fixtures/content-for-app/source/content_for_slim.html.slim
710
- - fixtures/content-for-app/source/layouts/content_for.erb
711
- - fixtures/content-type-app/config.rb
712
- - fixtures/content-type-app/source/.htaccess
713
- - fixtures/content-type-app/source/README
714
- - fixtures/content-type-app/source/images/blank.gif
715
- - fixtures/content-type-app/source/index.html
716
- - fixtures/content-type-app/source/index.php
717
- - fixtures/content-type-app/source/javascripts/app.js
718
- - fixtures/content-type-app/source/override.html
719
- - fixtures/content-type-app/source/stylesheets/site.css
720
- - fixtures/csspie/config.rb
721
- - fixtures/csspie/source/stylesheets/PIE.htc
722
- - fixtures/custom-layout-app/config.rb
723
- - fixtures/custom-layout-app/source/index.html.erb
724
- - fixtures/custom-layout-app/source/layout.str
725
- - fixtures/custom-layout-app2/config.rb
726
- - fixtures/custom-layout-app2/source/custom-layout-dir/index.html.erb
727
- - fixtures/custom-layout-app2/source/custom-layout.html.erb
728
- - fixtures/custom-layout-app2/source/layouts/custom.erb
729
- - fixtures/custom-src-app/config.rb
730
- - fixtures/custom-src-app/src/index.html
731
- - fixtures/custom-src-app/src/layouts/layout.html.erb
732
- - fixtures/data-app/config.rb
733
- - fixtures/data-app/data/pages.yml
734
- - fixtures/data-app/source/index.html.erb
735
- - fixtures/data-app/source/layout.erb
736
- - fixtures/data-with-aliases-app/config.rb
737
- - fixtures/data-with-aliases-app/data/pages.yml
738
- - fixtures/data-with-aliases-app/source/index.html.erb
739
- - fixtures/data-with-aliases-app/source/layout.erb
740
- - fixtures/default-alt-tags-app/config.rb
741
- - fixtures/default-alt-tags-app/source/empty-alt-tag.html.erb
742
- - fixtures/default-alt-tags-app/source/images/blank.gif
743
- - fixtures/default-alt-tags-app/source/meaningful-alt-tag.html.erb
744
- - fixtures/different-engine-layout/config.rb
745
- - fixtures/different-engine-layout/source/index.haml
746
- - fixtures/different-engine-layout/source/index.html.str
747
- - fixtures/different-engine-layout/source/layout.erb
748
- - fixtures/different-engine-partial/config.rb
749
- - fixtures/different-engine-partial/source/index.html.erb
750
- - fixtures/different-engine-partial/source/layouts/layout.erb
751
- - fixtures/different-engine-partial/source/shared/_footer.str
752
- - fixtures/different-engine-partial/source/shared/_header.erb
753
- - fixtures/dynamic-pages-app/config.rb
754
- - fixtures/dynamic-pages-app/source/real.html
755
- - fixtures/dynamic-pages-app/source/real/index.html.erb
756
- - fixtures/dynamic-pages-app/source/should_be_ignored.html
757
- - fixtures/dynamic-pages-app/source/should_be_ignored2.html
758
- - fixtures/dynamic-pages-app/source/should_be_ignored3.html
759
- - fixtures/dynamic-pages-app/source/should_be_ignored4.html
760
- - fixtures/dynamic-pages-app/source/should_be_ignored5.html
761
- - fixtures/dynamic-pages-app/source/should_be_ignored6.html
762
- - fixtures/dynamic-pages-app/source/should_be_ignored7.html
763
- - fixtures/dynamic-pages-app/source/should_be_ignored8.html
764
- - fixtures/dynamic-pages-app/source/should_be_ignored9.html
765
- - fixtures/ember-cli-app/config.rb
766
- - fixtures/ember-cli-app/source/javascripts/file.js
767
- - fixtures/ember-cli-app/test-app/.bowerrc
768
- - fixtures/ember-cli-app/test-app/.gitignore
769
- - fixtures/ember-cli-app/test-app/.jshintrc
770
- - fixtures/ember-cli-app/test-app/Brocfile.js
771
- - fixtures/ember-cli-app/test-app/README.md
772
- - fixtures/ember-cli-app/test-app/app/app.js
773
- - fixtures/ember-cli-app/test-app/app/components/.gitkeep
774
- - fixtures/ember-cli-app/test-app/app/controllers/.gitkeep
775
- - fixtures/ember-cli-app/test-app/app/helpers/.gitkeep
776
- - fixtures/ember-cli-app/test-app/app/index.html
777
- - fixtures/ember-cli-app/test-app/app/models/.gitkeep
778
- - fixtures/ember-cli-app/test-app/app/router.js
779
- - fixtures/ember-cli-app/test-app/app/routes/.gitkeep
780
- - fixtures/ember-cli-app/test-app/app/styles/.gitkeep
781
- - fixtures/ember-cli-app/test-app/app/styles/app.css
782
- - fixtures/ember-cli-app/test-app/app/templates/.gitkeep
783
- - fixtures/ember-cli-app/test-app/app/templates/application.hbs
784
- - fixtures/ember-cli-app/test-app/app/templates/components/.gitkeep
785
- - fixtures/ember-cli-app/test-app/app/views/.gitkeep
786
- - fixtures/ember-cli-app/test-app/bower.json
787
- - fixtures/ember-cli-app/test-app/config/environment.js
788
- - fixtures/ember-cli-app/test-app/package.json
789
- - fixtures/ember-cli-app/test-app/public/.gitkeep
790
- - fixtures/ember-cli-app/test-app/testem.json
791
- - fixtures/ember-cli-app/test-app/tests/.jshintrc
792
- - fixtures/ember-cli-app/test-app/tests/helpers/resolver.js
793
- - fixtures/ember-cli-app/test-app/tests/helpers/start-app.js
794
- - fixtures/ember-cli-app/test-app/tests/index.html
795
- - fixtures/ember-cli-app/test-app/tests/test-helper.js
796
- - fixtures/ember-cli-app/test-app/tests/unit/.gitkeep
797
- - fixtures/empty-app/not-config.rb
798
- - fixtures/engine-matching-layout/config.rb
799
- - fixtures/engine-matching-layout/source/index.html.erb
800
- - fixtures/engine-matching-layout/source/layout.erb
801
- - fixtures/env-app/config.rb
802
- - fixtures/env-app/environments/development.rb
803
- - fixtures/env-app/environments/production.rb
804
- - fixtures/env-app/source/index.html.erb
805
- - fixtures/env-app/source/stylesheets/site.css.scss
806
- - fixtures/extension-api-deprecations-app/config.rb
807
- - fixtures/extension-api-deprecations-app/source/index.html.erb
808
- - fixtures/extension-api-deprecations-app/source/layouts/layout.erb
809
- - fixtures/extension-hooks-app/config.rb
810
- - fixtures/extension-hooks-app/source/index.html.erb
811
- - fixtures/extensionless-text-files-app/config.rb
812
- - fixtures/extensionless-text-files-app/source/CNAME
813
- - fixtures/extensionless-text-files-app/source/LICENSE
814
- - fixtures/extensionless-text-files-app/source/README
815
- - fixtures/extensionless-text-files-app/source/index.html
816
- - fixtures/external-helpers/config.rb
817
- - fixtures/external-helpers/helpers/derp.rb
818
- - fixtures/external-helpers/helpers/four_helpers.rb
819
- - fixtures/external-helpers/helpers/one_helper.rb
820
- - fixtures/external-helpers/helpers/yet_another_thingy.rb
821
- - fixtures/external-helpers/lib/hello_helper.rb
822
- - fixtures/external-helpers/source/automatic.html.erb
823
- - fixtures/external-helpers/source/index.html.erb
824
- - fixtures/external-pipeline-error/config.rb
825
- - fixtures/external-pipeline-error/source/javascripts/file.js
826
- - fixtures/feature-params-app/config.rb
827
- - fixtures/feature-params-app/source/index.html.erb
828
- - fixtures/fonts-app/config.rb
829
- - fixtures/fonts-app/source/fonts/StMarie-Thin.otf
830
- - fixtures/fonts-app/source/fonts/blank/blank.otf
831
- - fixtures/fonts-app/source/stylesheets/fonts.css.scss
832
- - fixtures/frontmatter-app/config.rb
833
- - fixtures/frontmatter-app/source/front-matter-2.php.erb
834
- - fixtures/frontmatter-app/source/front-matter-change.html.erb
835
- - fixtures/frontmatter-app/source/front-matter-encoding.html.erb
836
- - fixtures/frontmatter-app/source/front-matter-haml.html.haml
837
- - fixtures/frontmatter-app/source/front-matter-line-2.html.erb
838
- - fixtures/frontmatter-app/source/front-matter-pandoc.html.md.erb
839
- - fixtures/frontmatter-app/source/raw-front-matter-toml.html
840
- - fixtures/frontmatter-app/source/raw-front-matter.html
841
- - fixtures/frontmatter-app/source/raw-front-matter.php
842
- - fixtures/frontmatter-neighbor-app/config.rb
843
- - fixtures/frontmatter-neighbor-app/source/front-matter-2.php.erb
844
- - fixtures/frontmatter-neighbor-app/source/front-matter-2.php.erb.frontmatter
845
- - fixtures/frontmatter-neighbor-app/source/front-matter-change.html.erb
846
- - fixtures/frontmatter-neighbor-app/source/front-matter-change.html.erb.frontmatter
847
- - fixtures/frontmatter-neighbor-app/source/front-matter-encoding.html.erb
848
- - fixtures/frontmatter-neighbor-app/source/front-matter-encoding.html.erb.frontmatter
849
- - fixtures/frontmatter-neighbor-app/source/raw-front-matter-toml.html
850
- - fixtures/frontmatter-neighbor-app/source/raw-front-matter-toml.html.frontmatter
851
- - fixtures/frontmatter-neighbor-app/source/raw-front-matter.html
852
- - fixtures/frontmatter-neighbor-app/source/raw-front-matter.html.frontmatter
853
- - fixtures/frontmatter-neighbor-app/source/raw-front-matter.php
854
- - fixtures/frontmatter-neighbor-app/source/raw-front-matter.php.frontmatter
855
- - fixtures/frontmatter-settings-app/config.rb
856
- - fixtures/frontmatter-settings-app/source/alternate_layout.html.erb
857
- - fixtures/frontmatter-settings-app/source/ignored.html.erb
858
- - fixtures/frontmatter-settings-app/source/layouts/alternate.erb
859
- - fixtures/frontmatter-settings-app/source/layouts/override.erb
860
- - fixtures/frontmatter-settings-app/source/override_layout.html.erb
861
- - fixtures/frontmatter-settings-app/source/page_mentioned.html.erb
862
- - fixtures/frontmatter-settings-neighbor-app/config.rb
863
- - fixtures/frontmatter-settings-neighbor-app/source/alternate_layout.html.erb
864
- - fixtures/frontmatter-settings-neighbor-app/source/alternate_layout.html.erb.frontmatter
865
- - fixtures/frontmatter-settings-neighbor-app/source/ignored.html.erb
866
- - fixtures/frontmatter-settings-neighbor-app/source/ignored.html.erb.frontmatter
867
- - fixtures/frontmatter-settings-neighbor-app/source/layouts/alternate.erb
868
- - fixtures/frontmatter-settings-neighbor-app/source/layouts/override.erb
869
- - fixtures/frontmatter-settings-neighbor-app/source/override_layout.html.erb
870
- - fixtures/frontmatter-settings-neighbor-app/source/override_layout.html.erb.frontmatter
871
- - fixtures/frontmatter-settings-neighbor-app/source/page_mentioned.html.erb
872
- - fixtures/frontmatter-settings-neighbor-app/source/page_mentioned.html.erb.frontmatter
873
- - fixtures/generator-test/config.rb
874
- - fixtures/generator-test/source/index.html.erb
875
- - fixtures/glob-app/config.rb
876
- - fixtures/glob-app/source/index.html.erb
877
- - fixtures/glob-app/source/stylesheets/site.css.str
878
- - fixtures/gzip-app/config.rb
879
- - fixtures/gzip-app/source/index.html
880
- - fixtures/gzip-app/source/javascripts/test.js
881
- - fixtures/gzip-app/source/stylesheets/test.css
882
- - fixtures/i-8859-1-app/config.rb
883
- - fixtures/i-8859-1-app/source/index.html.erb
884
- - fixtures/i18n-alt-root-app/locales/en.yml
885
- - fixtures/i18n-alt-root-app/locales/es.yml
886
- - fixtures/i18n-alt-root-app/source/lang_data/hello.html.erb
887
- - fixtures/i18n-alt-root-app/source/lang_data/index.html.erb
888
- - fixtures/i18n-alt-root-app/source/layout.erb
889
- - fixtures/i18n-default-app/locales/en.yml
890
- - fixtures/i18n-default-app/locales/es.yml
891
- - fixtures/i18n-default-app/source/localizable/index.html.erb
892
- - fixtures/i18n-force-locale/config.rb
893
- - fixtures/i18n-force-locale/locales/en.yml
894
- - fixtures/i18n-force-locale/locales/es.yml
895
- - fixtures/i18n-force-locale/locales/fr.yml
896
- - fixtures/i18n-force-locale/source/index.html.haml
897
- - fixtures/i18n-mixed-sources/config.rb
898
- - fixtures/i18n-mixed-sources/locales/en.yml
899
- - fixtures/i18n-mixed-sources/locales/es.yml
900
- - fixtures/i18n-mixed-sources/source/a/sub.html.erb
901
- - fixtures/i18n-mixed-sources/source/b/index.html.erb
902
- - fixtures/i18n-mixed-sources/source/index.html.erb
903
- - fixtures/i18n-mixed-sources/source/localizable/a/index.html.erb
904
- - fixtures/i18n-mixed-sources/source/localizable/b/sub.html.erb
905
- - fixtures/i18n-mixed-sources/source/localizable/index.html.erb
906
- - fixtures/i18n-nested-app/locales/en.yml
907
- - fixtures/i18n-nested-app/locales/en/more.yml
908
- - fixtures/i18n-nested-app/locales/es.yml
909
- - fixtures/i18n-nested-app/locales/es/mucho.yml
910
- - fixtures/i18n-nested-app/source/localizable/index.html.erb
911
- - fixtures/i18n-test-app/data/defaults_en.yml
912
- - fixtures/i18n-test-app/data/defaults_es.yml
913
- - fixtures/i18n-test-app/data/en_defaults.yml
914
- - fixtures/i18n-test-app/locales/en.yml
915
- - fixtures/i18n-test-app/locales/es.yml
916
- - fixtures/i18n-test-app/source/CNAME
917
- - fixtures/i18n-test-app/source/_country.en.erb
918
- - fixtures/i18n-test-app/source/_country.es.erb
919
- - fixtures/i18n-test-app/source/_site.erb
920
- - fixtures/i18n-test-app/source/images/president.en.svg
921
- - fixtures/i18n-test-app/source/images/president.es.svg
922
- - fixtures/i18n-test-app/source/layouts/layout.erb
923
- - fixtures/i18n-test-app/source/localizable/_state.en.erb
924
- - fixtures/i18n-test-app/source/localizable/_state.es.erb
925
- - fixtures/i18n-test-app/source/localizable/fallback.html.erb
926
- - fixtures/i18n-test-app/source/localizable/hello.html.erb
927
- - fixtures/i18n-test-app/source/localizable/images/flag.en.svg
928
- - fixtures/i18n-test-app/source/localizable/images/flag.es.svg
929
- - fixtures/i18n-test-app/source/localizable/index.html.erb
930
- - fixtures/i18n-test-app/source/localizable/morning.en.html.erb
931
- - fixtures/i18n-test-app/source/localizable/morning.es.html.erb
932
- - fixtures/i18n-test-app/source/localizable/one.en.html.md
933
- - fixtures/i18n-test-app/source/localizable/one.es.html.md
934
- - fixtures/i18n-test-app/source/localizable/partials/_greeting.en.erb
935
- - fixtures/i18n-test-app/source/localizable/partials/_greeting.es.erb
936
- - fixtures/i18n-test-app/source/localizable/partials/index.html.erb
937
- - fixtures/i18n-test-app/source/password.txt
938
- - fixtures/i18n-test-app/source/stylesheets/site.css
939
- - fixtures/ignore-app/source/about.html.erb
940
- - fixtures/ignore-app/source/images/icon/messages.png
941
- - fixtures/ignore-app/source/images/pic.png
942
- - fixtures/ignore-app/source/images/portrait.jpg
943
- - fixtures/ignore-app/source/index.html.erb
944
- - fixtures/ignore-app/source/plain.html
945
- - fixtures/ignore-app/source/reports/another.html
946
- - fixtures/ignore-app/source/reports/index.html
947
- - fixtures/image-srcset-paths-app/image-srcset-paths.html.erb
948
- - fixtures/image-srcset-paths-app/images/blank.gif
949
- - fixtures/import-app/bower.json
950
- - fixtures/import-app/bower_components/jquery/.bower.json
951
- - fixtures/import-app/bower_components/jquery/MIT-LICENSE.txt
952
- - fixtures/import-app/bower_components/jquery/bower.json
953
- - fixtures/import-app/bower_components/jquery/dist/jquery.js
954
- - fixtures/import-app/bower_components/jquery/dist/jquery.min.js
955
- - fixtures/import-app/bower_components/jquery/dist/jquery.min.map
956
- - fixtures/import-app/bower_components/jquery/src/ajax.js
957
- - fixtures/import-app/bower_components/jquery/src/ajax/jsonp.js
958
- - fixtures/import-app/bower_components/jquery/src/ajax/load.js
959
- - fixtures/import-app/bower_components/jquery/src/ajax/parseJSON.js
960
- - fixtures/import-app/bower_components/jquery/src/ajax/parseXML.js
961
- - fixtures/import-app/bower_components/jquery/src/ajax/script.js
962
- - fixtures/import-app/bower_components/jquery/src/ajax/var/nonce.js
963
- - fixtures/import-app/bower_components/jquery/src/ajax/var/rquery.js
964
- - fixtures/import-app/bower_components/jquery/src/ajax/xhr.js
965
- - fixtures/import-app/bower_components/jquery/src/attributes.js
966
- - fixtures/import-app/bower_components/jquery/src/attributes/attr.js
967
- - fixtures/import-app/bower_components/jquery/src/attributes/classes.js
968
- - fixtures/import-app/bower_components/jquery/src/attributes/prop.js
969
- - fixtures/import-app/bower_components/jquery/src/attributes/support.js
970
- - fixtures/import-app/bower_components/jquery/src/attributes/val.js
971
- - fixtures/import-app/bower_components/jquery/src/callbacks.js
972
- - fixtures/import-app/bower_components/jquery/src/core.js
973
- - fixtures/import-app/bower_components/jquery/src/core/access.js
974
- - fixtures/import-app/bower_components/jquery/src/core/init.js
975
- - fixtures/import-app/bower_components/jquery/src/core/parseHTML.js
976
- - fixtures/import-app/bower_components/jquery/src/core/ready.js
977
- - fixtures/import-app/bower_components/jquery/src/core/var/rsingleTag.js
978
- - fixtures/import-app/bower_components/jquery/src/css.js
979
- - fixtures/import-app/bower_components/jquery/src/css/addGetHookIf.js
980
- - fixtures/import-app/bower_components/jquery/src/css/curCSS.js
981
- - fixtures/import-app/bower_components/jquery/src/css/defaultDisplay.js
982
- - fixtures/import-app/bower_components/jquery/src/css/hiddenVisibleSelectors.js
983
- - fixtures/import-app/bower_components/jquery/src/css/support.js
984
- - fixtures/import-app/bower_components/jquery/src/css/swap.js
985
- - fixtures/import-app/bower_components/jquery/src/css/var/cssExpand.js
986
- - fixtures/import-app/bower_components/jquery/src/css/var/getStyles.js
987
- - fixtures/import-app/bower_components/jquery/src/css/var/isHidden.js
988
- - fixtures/import-app/bower_components/jquery/src/css/var/rmargin.js
989
- - fixtures/import-app/bower_components/jquery/src/css/var/rnumnonpx.js
990
- - fixtures/import-app/bower_components/jquery/src/data.js
991
- - fixtures/import-app/bower_components/jquery/src/data/Data.js
992
- - fixtures/import-app/bower_components/jquery/src/data/accepts.js
993
- - fixtures/import-app/bower_components/jquery/src/data/var/data_priv.js
994
- - fixtures/import-app/bower_components/jquery/src/data/var/data_user.js
995
- - fixtures/import-app/bower_components/jquery/src/deferred.js
996
- - fixtures/import-app/bower_components/jquery/src/deprecated.js
997
- - fixtures/import-app/bower_components/jquery/src/dimensions.js
998
- - fixtures/import-app/bower_components/jquery/src/effects.js
999
- - fixtures/import-app/bower_components/jquery/src/effects/Tween.js
1000
- - fixtures/import-app/bower_components/jquery/src/effects/animatedSelector.js
1001
- - fixtures/import-app/bower_components/jquery/src/event.js
1002
- - fixtures/import-app/bower_components/jquery/src/event/ajax.js
1003
- - fixtures/import-app/bower_components/jquery/src/event/alias.js
1004
- - fixtures/import-app/bower_components/jquery/src/event/support.js
1005
- - fixtures/import-app/bower_components/jquery/src/exports/amd.js
1006
- - fixtures/import-app/bower_components/jquery/src/exports/global.js
1007
- - fixtures/import-app/bower_components/jquery/src/intro.js
1008
- - fixtures/import-app/bower_components/jquery/src/jquery.js
1009
- - fixtures/import-app/bower_components/jquery/src/manipulation.js
1010
- - fixtures/import-app/bower_components/jquery/src/manipulation/_evalUrl.js
1011
- - fixtures/import-app/bower_components/jquery/src/manipulation/support.js
1012
- - fixtures/import-app/bower_components/jquery/src/manipulation/var/rcheckableType.js
1013
- - fixtures/import-app/bower_components/jquery/src/offset.js
1014
- - fixtures/import-app/bower_components/jquery/src/outro.js
1015
- - fixtures/import-app/bower_components/jquery/src/queue.js
1016
- - fixtures/import-app/bower_components/jquery/src/queue/delay.js
1017
- - fixtures/import-app/bower_components/jquery/src/selector-native.js
1018
- - fixtures/import-app/bower_components/jquery/src/selector-sizzle.js
1019
- - fixtures/import-app/bower_components/jquery/src/selector.js
1020
- - fixtures/import-app/bower_components/jquery/src/serialize.js
1021
- - fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.js
1022
- - fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.min.js
1023
- - fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.min.map
1024
- - fixtures/import-app/bower_components/jquery/src/traversing.js
1025
- - fixtures/import-app/bower_components/jquery/src/traversing/findFilter.js
1026
- - fixtures/import-app/bower_components/jquery/src/traversing/var/rneedsContext.js
1027
- - fixtures/import-app/bower_components/jquery/src/var/arr.js
1028
- - fixtures/import-app/bower_components/jquery/src/var/class2type.js
1029
- - fixtures/import-app/bower_components/jquery/src/var/concat.js
1030
- - fixtures/import-app/bower_components/jquery/src/var/hasOwn.js
1031
- - fixtures/import-app/bower_components/jquery/src/var/indexOf.js
1032
- - fixtures/import-app/bower_components/jquery/src/var/pnum.js
1033
- - fixtures/import-app/bower_components/jquery/src/var/push.js
1034
- - fixtures/import-app/bower_components/jquery/src/var/rnotwhite.js
1035
- - fixtures/import-app/bower_components/jquery/src/var/slice.js
1036
- - fixtures/import-app/bower_components/jquery/src/var/strundefined.js
1037
- - fixtures/import-app/bower_components/jquery/src/var/support.js
1038
- - fixtures/import-app/bower_components/jquery/src/var/toString.js
1039
- - fixtures/import-app/bower_components/jquery/src/wrap.js
1040
- - fixtures/import-app/config.rb
1041
- - fixtures/import-app/source/test.html
1042
- - fixtures/import-app/static.html
1043
- - fixtures/indexable-app/config.rb
1044
- - fixtures/indexable-app/source/.htaccess
1045
- - fixtures/indexable-app/source/.htpasswd
1046
- - fixtures/indexable-app/source/.nojekyll
1047
- - fixtures/indexable-app/source/a_folder/needs_index.html
1048
- - fixtures/indexable-app/source/evil spaces.html
1049
- - fixtures/indexable-app/source/leave_me_alone.html
1050
- - fixtures/indexable-app/source/needs_index.html
1051
- - fixtures/indexable-app/source/regex_leave_me_alone2.html
1052
- - fixtures/indexable-app/source/regular/index.html
1053
- - fixtures/indexable-app/source/wildcard_leave_me_alone.html
1054
- - fixtures/javascript-app/config.rb
1055
- - fixtures/javascript-app/source/index.html
1056
- - fixtures/large-build-app/config.rb
1057
- - fixtures/large-build-app/source/.htaccess
1058
- - fixtures/large-build-app/source/.htpasswd
1059
- - fixtures/large-build-app/source/_partial.erb
1060
- - fixtures/large-build-app/source/feed.xml.builder
1061
- - fixtures/large-build-app/source/images/Child folder/regular_file(example).txt
1062
- - fixtures/large-build-app/source/images/Read me (example).txt
1063
- - fixtures/large-build-app/source/images/blank.gif
1064
- - fixtures/large-build-app/source/index.html.erb
1065
- - fixtures/large-build-app/source/layout.erb
1066
- - fixtures/large-build-app/source/layouts/content_for.erb
1067
- - fixtures/large-build-app/source/layouts/custom.erb
1068
- - fixtures/large-build-app/source/link_test.html.erb
1069
- - fixtures/large-build-app/source/other_layout.erb
1070
- - fixtures/large-build-app/source/services/index.html.erb
1071
- - fixtures/large-build-app/source/spaces in file.html.erb
1072
- - fixtures/large-build-app/source/static.html
1073
- - fixtures/large-build-app/source/stylesheets/static.css
1074
- - fixtures/layouts-dir-app/source/ambiguous.html.erb
1075
- - fixtures/layouts-dir-app/source/index.html.erb
1076
- - fixtures/layouts-dir-app/source/layouts/layout.erb
1077
- - fixtures/layouts-dir-app/source/layouts/other.erb
1078
- - fixtures/layouts-dir-app/source/layouts2/layout.erb
1079
- - fixtures/layouts-dir-app/source/nested/layouts2/layout.erb
1080
- - fixtures/layouts-dir-app/source/other.erb
1081
- - fixtures/link-to-app/config.rb
1082
- - fixtures/link-to-app/source/link_to_erb.html.erb
1083
- - fixtures/link-to-app/source/link_to_haml.html.haml
1084
- - fixtures/link-to-app/source/link_to_slim.html.slim
1085
- - fixtures/liquid-app/config.rb
1086
- - fixtures/liquid-app/data/test.yml
1087
- - fixtures/liquid-app/data/test2.json
1088
- - fixtures/liquid-app/source/_liquid_partial.liquid
1089
- - fixtures/liquid-app/source/data2.html.liquid
1090
- - fixtures/liquid-app/source/liquid_master.html.liquid
1091
- - fixtures/lorem-app/config.rb
1092
- - fixtures/lorem-app/source/lorem.html.erb
1093
- - fixtures/manual-layout-missing/config.rb
1094
- - fixtures/manual-layout-missing/source/index.html.erb
1095
- - fixtures/manual-layout-override/config.rb
1096
- - fixtures/manual-layout-override/source/index.html.erb
1097
- - fixtures/manual-layout-override/source/layouts/another.erb
1098
- - fixtures/manual-layout-override/source/layouts/custom.erb
1099
- - fixtures/manual-layout/config.rb
1100
- - fixtures/manual-layout/source/index.html.erb
1101
- - fixtures/manual-layout/source/layouts/custom.erb
1102
- - fixtures/markdown-app/config.rb
1103
- - fixtures/markdown-app/source/autolink.html.markdown
1104
- - fixtures/markdown-app/source/fenced_code_blocks.html.markdown
1105
- - fixtures/markdown-app/source/filter_html.html.markdown
1106
- - fixtures/markdown-app/source/footnote.html.markdown
1107
- - fixtures/markdown-app/source/hard_wrap.html.markdown
1108
- - fixtures/markdown-app/source/highlighted.html.markdown
1109
- - fixtures/markdown-app/source/images/blank.gif
1110
- - fixtures/markdown-app/source/img.html.markdown
1111
- - fixtures/markdown-app/source/indented_code_blocks.html.markdown
1112
- - fixtures/markdown-app/source/index.html.markdown
1113
- - fixtures/markdown-app/source/lax_spacing.html.markdown
1114
- - fixtures/markdown-app/source/link.html.markdown
1115
- - fixtures/markdown-app/source/mailto.html.markdown
1116
- - fixtures/markdown-app/source/no_intra_emphasis.html.markdown
1117
- - fixtures/markdown-app/source/prettify.html.markdown
1118
- - fixtures/markdown-app/source/quote.html.markdown
1119
- - fixtures/markdown-app/source/safe_links.html.markdown
1120
- - fixtures/markdown-app/source/smarty_pants.html.markdown
1121
- - fixtures/markdown-app/source/space_after_headers.html.markdown
1122
- - fixtures/markdown-app/source/strikethrough.html.markdown
1123
- - fixtures/markdown-app/source/superscript.html.markdown
1124
- - fixtures/markdown-app/source/tables.html.markdown
1125
- - fixtures/markdown-app/source/underline.html.markdown
1126
- - fixtures/markdown-app/source/with_toc_data.html.markdown
1127
- - fixtures/markdown-frontmatter-options-app/config.rb
1128
- - fixtures/markdown-frontmatter-options-app/source/smarty_pants-default.html.markdown
1129
- - fixtures/markdown-frontmatter-options-app/source/smarty_pants-off.html.markdown
1130
- - fixtures/markdown-frontmatter-options-app/source/smarty_pants-on.html.markdown
1131
- - fixtures/markdown-frontmatter-options-app/source/tables-default.html.markdown
1132
- - fixtures/markdown-frontmatter-options-app/source/tables-off.html.markdown
1133
- - fixtures/markdown-frontmatter-options-app/source/tables-on.html.markdown
1134
- - fixtures/markdown-in-haml-app/config.rb
1135
- - fixtures/markdown-in-haml-app/source/images/blank.gif
1136
- - fixtures/markdown-in-haml-app/source/link_target.html.markdown
1137
- - fixtures/markdown-in-slim-app/config.rb
1138
- - fixtures/markdown-in-slim-app/source/images/blank.gif
1139
- - fixtures/markdown-in-slim-app/source/link_target.html.markdown
1140
- - fixtures/minify-css-app/source/inline-css.html.haml
1141
- - fixtures/minify-css-app/source/inline-css.php
1142
- - fixtures/minify-css-app/source/more-css/site.css
1143
- - fixtures/minify-css-app/source/stylesheets/base/_base.scss
1144
- - fixtures/minify-css-app/source/stylesheets/base/_buttons.scss
1145
- - fixtures/minify-css-app/source/stylesheets/base/_forms.scss
1146
- - fixtures/minify-css-app/source/stylesheets/base/_grid-settings.scss
1147
- - fixtures/minify-css-app/source/stylesheets/base/_lists.scss
1148
- - fixtures/minify-css-app/source/stylesheets/base/_tables.scss
1149
- - fixtures/minify-css-app/source/stylesheets/base/_typography.scss
1150
- - fixtures/minify-css-app/source/stylesheets/base/_variables.scss
1151
- - fixtures/minify-css-app/source/stylesheets/bourbon/_bourbon-deprecated-upcoming.scss
1152
- - fixtures/minify-css-app/source/stylesheets/bourbon/_bourbon.scss
1153
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-color.scss
1154
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-radius.scss
1155
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-style.scss
1156
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-width.scss
1157
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_buttons.scss
1158
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_clearfix.scss
1159
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_ellipsis.scss
1160
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_font-stacks.scss
1161
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_hide-text.scss
1162
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_margin.scss
1163
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_padding.scss
1164
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_position.scss
1165
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_prefixer.scss
1166
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_retina-image.scss
1167
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_size.scss
1168
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_text-inputs.scss
1169
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_timing-functions.scss
1170
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_triangle.scss
1171
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_word-wrap.scss
1172
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_animation.scss
1173
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_appearance.scss
1174
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_backface-visibility.scss
1175
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_background-image.scss
1176
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_background.scss
1177
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_border-image.scss
1178
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_calc.scss
1179
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_columns.scss
1180
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_filter.scss
1181
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_flex-box.scss
1182
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_font-face.scss
1183
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_font-feature-settings.scss
1184
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_hidpi-media-query.scss
1185
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_hyphens.scss
1186
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_image-rendering.scss
1187
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_keyframes.scss
1188
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_linear-gradient.scss
1189
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_perspective.scss
1190
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_placeholder.scss
1191
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_radial-gradient.scss
1192
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_selection.scss
1193
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_text-decoration.scss
1194
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_transform.scss
1195
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_transition.scss
1196
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_user-select.scss
1197
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_assign-inputs.scss
1198
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_contains-falsy.scss
1199
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_contains.scss
1200
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-length.scss
1201
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-light.scss
1202
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-number.scss
1203
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-size.scss
1204
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_modular-scale.scss
1205
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_px-to-em.scss
1206
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_px-to-rem.scss
1207
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_shade.scss
1208
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_strip-units.scss
1209
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_tint.scss
1210
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_transition-property-name.scss
1211
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_unpack.scss
1212
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_convert-units.scss
1213
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_directional-values.scss
1214
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_font-source-declaration.scss
1215
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_gradient-positions-parser.scss
1216
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-angle-parser.scss
1217
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-gradient-parser.scss
1218
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-positions-parser.scss
1219
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-side-corner-parser.scss
1220
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-arg-parser.scss
1221
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-gradient-parser.scss
1222
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-positions-parser.scss
1223
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_render-gradients.scss
1224
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_shape-size-stripper.scss
1225
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_str-to-num.scss
1226
- - fixtures/minify-css-app/source/stylesheets/bourbon/settings/_asset-pipeline.scss
1227
- - fixtures/minify-css-app/source/stylesheets/bourbon/settings/_prefixer.scss
1228
- - fixtures/minify-css-app/source/stylesheets/bourbon/settings/_px-to-em.scss
1229
- - fixtures/minify-css-app/source/stylesheets/report.css
1230
- - fixtures/minify-css-app/source/stylesheets/site.css.sass
1231
- - fixtures/minify-css-app/source/stylesheets/site.xcss.sass
1232
- - fixtures/minify-js-app/config.rb
1233
- - fixtures/minify-js-app/source/inline-coffeescript.html.haml
1234
- - fixtures/minify-js-app/source/inline-js.html.haml
1235
- - fixtures/minify-js-app/source/inline-js.php
1236
- - fixtures/minify-js-app/source/javascripts/coffee_test.js.coffee
1237
- - fixtures/minify-js-app/source/javascripts/js_test.js
1238
- - fixtures/minify-js-app/source/javascripts/js_test.xjs
1239
- - fixtures/minify-js-app/source/more-js/other.js
1240
- - fixtures/missing-tilt-library-app/config.rb
1241
- - fixtures/missing-tilt-library-app/source/danger-zone/more-wiki.html.wiki
1242
- - fixtures/missing-tilt-library-app/source/safe-zone/my-wiki.html.wiki
1243
- - fixtures/missing-tilt-library-app/source/textile-source.html.textile
1244
- - fixtures/missing-tilt-library-app/source/wiki-source.html.wiki
1245
- - fixtures/more-extensionless-text-files-app/config.rb
1246
- - fixtures/more-extensionless-text-files-app/source/CNAME
1247
- - fixtures/more-extensionless-text-files-app/source/LICENSE
1248
- - fixtures/more-extensionless-text-files-app/source/README
1249
- - fixtures/more-extensionless-text-files-app/source/index.html
1250
- - fixtures/more-frontmatter-settings-app/config.rb
1251
- - fixtures/more-frontmatter-settings-app/source/alternate_layout.html.erb
1252
- - fixtures/more-frontmatter-settings-app/source/ignored.html.erb
1253
- - fixtures/more-frontmatter-settings-app/source/layouts/alternate.erb
1254
- - fixtures/more-frontmatter-settings-app/source/no_index.html.erb
1255
- - fixtures/more-ignore-app/source/about.html.erb
1256
- - fixtures/more-ignore-app/source/images/icon/messages.png
1257
- - fixtures/more-ignore-app/source/images/pic.png
1258
- - fixtures/more-ignore-app/source/images/portrait.jpg
1259
- - fixtures/more-ignore-app/source/index.html.erb
1260
- - fixtures/more-ignore-app/source/plain.html
1261
- - fixtures/more-ignore-app/source/reports/another.html
1262
- - fixtures/more-ignore-app/source/reports/index.html
1263
- - fixtures/more-markdown-app/source/layouts/layout.erb
1264
- - fixtures/more-markdown-app/source/with_layout.html.markdown
1265
- - fixtures/more-markdown-app/source/with_layout_erb.html.markdown.erb
1266
- - fixtures/more-preview-app/config.rb
1267
- - fixtures/more-preview-app/source/content.html.erb
1268
- - fixtures/more-preview-app/source/layout.erb
1269
- - fixtures/more-preview-app/source/stylesheets/_partial.sass
1270
- - fixtures/more-preview-app/source/stylesheets/_partial2.css.sass
1271
- - fixtures/more-preview-app/source/stylesheets/main.css.sass
1272
- - fixtures/more-preview-app/source/stylesheets/main2.css.sass
1273
- - fixtures/more-preview-app/source/stylesheets/plain.css.sass
1274
- - fixtures/more-traversal-app/config.rb
1275
- - fixtures/more-traversal-app/source/directory-indexed.html.erb
1276
- - fixtures/more-traversal-app/source/directory-indexed/sibling.html.erb
1277
- - fixtures/more-traversal-app/source/directory-indexed/sibling2.html.erb
1278
- - fixtures/more-traversal-app/source/directory-indexed/sub2/index.html.erb
1279
- - fixtures/more-traversal-app/source/directory-indexed/sub3/deep.html.erb
1280
- - fixtures/more-traversal-app/source/index.html.erb
1281
- - fixtures/more-traversal-app/source/layout.erb
1282
- - fixtures/more-traversal-app/source/proxied.html.erb
1283
- - fixtures/more-traversal-app/source/root.html.erb
1284
- - fixtures/more-traversal-app/source/sub/index.html.erb
1285
- - fixtures/more-traversal-app/source/sub/sibling.html.erb
1286
- - fixtures/more-traversal-app/source/sub/sibling2.html.erb
1287
- - fixtures/more-traversal-app/source/sub/sub2/index.html.erb
1288
- - fixtures/more-traversal-app/source/sub/sub3/deep.html.erb
1289
- - fixtures/multiple-data-sources-app/config.rb
1290
- - fixtures/multiple-data-sources-app/data/data.yml
1291
- - fixtures/multiple-data-sources-app/data/two.yml
1292
- - fixtures/multiple-data-sources-app/data0/one.yml
1293
- - fixtures/multiple-data-sources-app/data1/data1.yml
1294
- - fixtures/multiple-data-sources-app/data1/one.yml
1295
- - fixtures/multiple-data-sources-app/data2/data2.yml
1296
- - fixtures/multiple-data-sources-app/data2/two.yml
1297
- - fixtures/multiple-data-sources-app/source/index.html.erb
1298
- - fixtures/multiple-layouts/config.rb
1299
- - fixtures/multiple-layouts/source/index.html.erb
1300
- - fixtures/multiple-layouts/source/layout.erb
1301
- - fixtures/multiple-layouts/source/layout.str
1302
- - fixtures/multiple-sources-app/config.rb
1303
- - fixtures/multiple-sources-app/source/index.html.erb
1304
- - fixtures/multiple-sources-app/source/override-in-two.html.erb
1305
- - fixtures/multiple-sources-app/source0/override-in-one.html.erb
1306
- - fixtures/multiple-sources-app/source1/index1.html.erb
1307
- - fixtures/multiple-sources-app/source1/override-in-one.html.erb
1308
- - fixtures/multiple-sources-app/source2/index2.html.erb
1309
- - fixtures/multiple-sources-app/source2/override-in-two.html.erb
1310
- - fixtures/multiple-sources-with-duplicate-file-names-app/config.rb
1311
- - fixtures/multiple-sources-with-duplicate-file-names-app/source/index.html.erb
1312
- - fixtures/multiple-sources-with-duplicate-file-names-app/source2/index.html.erb
1313
- - fixtures/nested-data-app/config.rb
1314
- - fixtures/nested-data-app/data/examples/deeper/stuff.yml
1315
- - fixtures/nested-data-app/data/examples/more.yml
1316
- - fixtures/nested-data-app/data/examples/test.yml
1317
- - fixtures/nested-data-app/data/examples/withcontent.yaml
1318
- - fixtures/nested-data-app/source/extracontent.html.haml.erb
1319
- - fixtures/nested-data-app/source/test.html.erb
1320
- - fixtures/nested-layout-app/config.rb
1321
- - fixtures/nested-layout-app/source/another.html.markdown
1322
- - fixtures/nested-layout-app/source/data-one.html.erb
1323
- - fixtures/nested-layout-app/source/data-two.html.erb
1324
- - fixtures/nested-layout-app/source/haml-test.html.markdown
1325
- - fixtures/nested-layout-app/source/index.html.erb
1326
- - fixtures/nested-layout-app/source/layouts/inner.erb
1327
- - fixtures/nested-layout-app/source/layouts/inner_haml.haml
1328
- - fixtures/nested-layout-app/source/layouts/inner_slim.slim
1329
- - fixtures/nested-layout-app/source/layouts/master.erb
1330
- - fixtures/nested-layout-app/source/layouts/master_haml.haml
1331
- - fixtures/nested-layout-app/source/layouts/master_slim.slim
1332
- - fixtures/nested-layout-app/source/layouts/outer.erb
1333
- - fixtures/nested-layout-app/source/layouts/outer_haml.haml
1334
- - fixtures/nested-layout-app/source/layouts/outer_slim.slim
1335
- - fixtures/nested-layout-app/source/slim-test.html.markdown
1336
- - fixtures/no-layout/config.rb
1337
- - fixtures/no-layout/source/index.html.erb
1338
- - fixtures/padrino-helpers-app/config.rb
1339
- - fixtures/padrino-helpers-app/source/former_padrino_test.html.erb
1340
- - fixtures/page-classes-app/config.rb
1341
- - fixtures/page-classes-app/source/1-folder/1-inside-with-numeric.html.erb
1342
- - fixtures/page-classes-app/source/1-starts-with-numeric.html.erb
1343
- - fixtures/page-classes-app/source/2-starts-with-numeric-custom.html.erb
1344
- - fixtures/page-classes-app/source/page-classes.html.erb
1345
- - fixtures/page-classes-app/source/sub1/page-classes.html.erb
1346
- - fixtures/page-classes-app/source/sub1/sub2/page-classes.html.erb
1347
- - fixtures/page-helper-layout-block-app/config.rb
1348
- - fixtures/page-helper-layout-block-app/source/index.html.erb
1349
- - fixtures/page-helper-layout-block-app/source/layouts/alt.erb
1350
- - fixtures/page-helper-layout-block-app/source/layouts/layout.erb
1351
- - fixtures/page-helper-layout-block-app/source/path/child.html.erb
1352
- - fixtures/page-helper-layout-block-app/source/path/index.html.erb
1353
- - fixtures/page-id-app/config-proc.rb
1354
- - fixtures/page-id-app/config.rb
1355
- - fixtures/page-id-app/source/feed.xml.erb
1356
- - fixtures/page-id-app/source/fm.html.erb
1357
- - fixtures/page-id-app/source/folder/foldern.html.erb
1358
- - fixtures/page-id-app/source/fourty-two.html.erb
1359
- - fixtures/page-id-app/source/implicit.html.erb
1360
- - fixtures/page-id-app/source/index.html.erb
1361
- - fixtures/page-id-app/source/overwrites/from-default.html.erb
1362
- - fixtures/page-id-app/source/overwrites/from-frontmatter.html.erb
1363
- - fixtures/paginate-app/config.rb
1364
- - fixtures/paginate-app/source/archive/2011/index.html.erb
1365
- - fixtures/paginate-app/source/blog/2011-01-01-test-article.html.markdown
1366
- - fixtures/paginate-app/source/blog/2011-01-02-test-article.html.markdown
1367
- - fixtures/paginate-app/source/blog/2011-01-03-test-article.html.markdown
1368
- - fixtures/paginate-app/source/blog/2011-01-04-test-article.html.markdown
1369
- - fixtures/paginate-app/source/blog/2011-01-05-test-article.html.markdown
1370
- - fixtures/paginate-app/source/blog/2011-02-01-test-article.html.markdown
1371
- - fixtures/paginate-app/source/blog/2011-02-02-test-article.html.markdown
1372
- - fixtures/paginate-app/source/index.html.erb
1373
- - fixtures/paginate-app/source/tag.html.erb
1374
- - fixtures/partial-chained_templates-app/config.rb
1375
- - fixtures/partials-app/config.rb
1376
- - fixtures/partials-app/source/_block.erb
1377
- - fixtures/partials-app/source/_code_snippet.html
1378
- - fixtures/partials-app/source/_locals.erb
1379
- - fixtures/partials-app/source/_main.erb
1380
- - fixtures/partials-app/source/_main.str
1381
- - fixtures/partials-app/source/block.html.erb
1382
- - fixtures/partials-app/source/images/tiger.svg
1383
- - fixtures/partials-app/source/index.html.erb
1384
- - fixtures/partials-app/source/index_missing.html.erb
1385
- - fixtures/partials-app/source/locals.html.erb
1386
- - fixtures/partials-app/source/second.html.str
1387
- - fixtures/partials-app/source/shared/_footer.erb
1388
- - fixtures/partials-app/source/shared/_header.erb
1389
- - fixtures/partials-app/source/shared/_snippet.html.erb
1390
- - fixtures/partials-app/source/static_underscore.html.erb
1391
- - fixtures/partials-app/source/sub/_local.erb
1392
- - fixtures/partials-app/source/sub/index.html.erb
1393
- - fixtures/partials-app/source/svg.html.erb
1394
- - fixtures/partials-app/source/using_snippet.html.erb
1395
- - fixtures/passthrough-app/source/.htaccess
1396
- - fixtures/passthrough-app/source/inline-coffeescript.html.haml
1397
- - fixtures/passthrough-app/source/inline-css.html.haml
1398
- - fixtures/passthrough-app/source/inline-js.html.haml
1399
- - fixtures/passthrough-app/source/javascripts/coffee_test.js.coffee
1400
- - fixtures/passthrough-app/source/javascripts/js_test.js
1401
- - fixtures/passthrough-app/source/stylesheets/site.css.sass
1402
- - fixtures/preview-app/config.rb
1403
- - fixtures/preview-app/source/content.html.erb
1404
- - fixtures/preview-app/source/layout.erb
1405
- - fixtures/proxy-pages-app/config.rb
1406
- - fixtures/proxy-pages-app/source/real.html
1407
- - fixtures/proxy-pages-app/source/real/index.html.erb
1408
- - fixtures/proxy-pages-app/source/should_be_ignored3.html
1409
- - fixtures/proxy-pages-app/source/should_be_ignored6.html
1410
- - fixtures/proxy-pages-app/source/should_be_ignored7.html
1411
- - fixtures/proxy-pages-app/source/should_be_ignored8.html
1412
- - fixtures/related-files-app/config.rb
1413
- - fixtures/related-files-app/source/index.html.erb
1414
- - fixtures/related-files-app/source/partials/_test.erb
1415
- - fixtures/related-files-app/source/partials/_test2.haml
1416
- - fixtures/related-files-app/source/stylesheets/_include3.sass
1417
- - fixtures/related-files-app/source/stylesheets/_include4.scss
1418
- - fixtures/related-files-app/source/stylesheets/include1.css
1419
- - fixtures/related-files-app/source/stylesheets/include2.css.scss
1420
- - fixtures/related-files-app/source/stylesheets/site.css.scss
1421
- - fixtures/relative-app/config.rb
1422
- - fixtures/relative-app/source/images/blank.gif
1423
- - fixtures/relative-app/source/stylesheets/relative_assets.css.sass
1424
- - fixtures/relative-assets-app/config.rb
1425
- - fixtures/relative-assets-app/source/absolute_image_relative_css.html.erb
1426
- - fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.eot
1427
- - fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.svg
1428
- - fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.ttf
1429
- - fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.woff
1430
- - fixtures/relative-assets-app/source/images/blank.gif
1431
- - fixtures/relative-assets-app/source/images/blank2.gif
1432
- - fixtures/relative-assets-app/source/img/blank.gif
1433
- - fixtures/relative-assets-app/source/javascripts/app.js
1434
- - fixtures/relative-assets-app/source/javascripts/application.js
1435
- - fixtures/relative-assets-app/source/relative_image.html.erb
1436
- - fixtures/relative-assets-app/source/relative_image_absolute_css.html.erb
1437
- - fixtures/relative-assets-app/source/stylesheets/fonts.css
1438
- - fixtures/relative-assets-app/source/stylesheets/fonts2.css.scss
1439
- - fixtures/relative-assets-app/source/stylesheets/relative_assets.css.sass
1440
- - fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset-sass.sass
1441
- - fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset.scss
1442
- - fixtures/sass-assets-path-app/config.rb
1443
- - fixtures/sass-assets-path-app/my-vendor/stylesheets/_partial.sass
1444
- - fixtures/sass-assets-path-app/source/stylesheets/plain.css.sass
1445
- - fixtures/sass-in-slim-app/config.rb
1446
- - fixtures/scss-app/config.rb
1447
- - fixtures/scss-app/source/stylesheets/error.css.sass
1448
- - fixtures/scss-app/source/stylesheets/layout.css.sass
1449
- - fixtures/scss-app/source/stylesheets/site_scss.css.scss
1450
- - fixtures/sinatra-app/config.rb
1451
- - fixtures/sinatra-app/source/index.html.erb
1452
- - fixtures/slim-content-for-app/config.rb
1453
- - fixtures/slim-content-for-app/source/index.html.slim
1454
- - fixtures/slim-content-for-app/source/layouts/layout.slim
1455
- - fixtures/strip-url-app/config.rb
1456
- - fixtures/strip-url-app/source/index.html.erb
1457
- - fixtures/strip-url-app/source/other.html.erb
1458
- - fixtures/strip-url-app/source/subdir/index.html.erb
1459
- - fixtures/stylus-preview-app/config.rb
1460
- - fixtures/stylus-preview-app/source/content.html.erb
1461
- - fixtures/stylus-preview-app/source/stylesheets/_partial.styl
1462
- - fixtures/stylus-preview-app/source/stylesheets/_partial2.css.styl
1463
- - fixtures/stylus-preview-app/source/stylesheets/main.css.styl
1464
- - fixtures/stylus-preview-app/source/stylesheets/main2.css.styl
1465
- - fixtures/stylus-preview-app/source/stylesheets/plain.css.styl
1466
- - fixtures/traversal-app/config.rb
1467
- - fixtures/traversal-app/source/.htaccess
1468
- - fixtures/traversal-app/source/directory-indexed.html.erb
1469
- - fixtures/traversal-app/source/directory-indexed/sibling.html.erb
1470
- - fixtures/traversal-app/source/directory-indexed/sibling2.html.erb
1471
- - fixtures/traversal-app/source/directory-indexed/sub2/index.html.erb
1472
- - fixtures/traversal-app/source/directory-indexed/sub3/deep.html.erb
1473
- - fixtures/traversal-app/source/index.html.erb
1474
- - fixtures/traversal-app/source/layout.erb
1475
- - fixtures/traversal-app/source/proxied.html.erb
1476
- - fixtures/traversal-app/source/root.html.erb
1477
- - fixtures/traversal-app/source/sub/index.html.erb
1478
- - fixtures/traversal-app/source/sub/sibling.html.erb
1479
- - fixtures/traversal-app/source/sub/sibling2.html.erb
1480
- - fixtures/traversal-app/source/sub/sub2/index.html.erb
1481
- - fixtures/traversal-app/source/sub/sub3/deep.html.erb
1482
- - fixtures/v4-extension-callbacks/config.rb
1483
- - fixtures/v4-extension-callbacks/source/index.html.erb
1484
- - fixtures/wildcard-app/config.rb
1485
- - fixtures/wildcard-app/source/admin/index.html.erb
1486
- - fixtures/wildcard-app/source/admin/page.html.erb
1487
- - fixtures/wildcard-app/source/index.html.erb
1488
- - fixtures/wildcard-app/source/layouts/admin.erb
1489
- - fixtures/wildcard-app/source/layouts/layout.erb
1490
- - fixtures/wildcard-directory-index-app/config.rb
1491
- - fixtures/wildcard-directory-index-app/source/admin/index.html.erb
1492
- - fixtures/wildcard-directory-index-app/source/admin/page.html.erb
1493
- - fixtures/wildcard-directory-index-app/source/index.html.erb
1494
- - fixtures/wildcard-directory-index-app/source/layouts/admin.erb
1495
- - fixtures/wildcard-directory-index-app/source/layouts/layout.erb
359
+ - cucumber.yml
1496
360
  - lib/middleman-core.rb
1497
361
  - lib/middleman-core/application.rb
1498
362
  - lib/middleman-core/builder.rb
@@ -1507,15 +371,30 @@ files:
1507
371
  - lib/middleman-core/core_extensions/collections/pagination.rb
1508
372
  - lib/middleman-core/core_extensions/collections/step_context.rb
1509
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
1510
381
  - lib/middleman-core/core_extensions/default_helpers.rb
1511
382
  - lib/middleman-core/core_extensions/external_helpers.rb
1512
383
  - lib/middleman-core/core_extensions/file_watcher.rb
1513
384
  - lib/middleman-core/core_extensions/front_matter.rb
1514
385
  - lib/middleman-core/core_extensions/i18n.rb
1515
- - lib/middleman-core/core_extensions/inline_url_rewriter.rb
1516
386
  - lib/middleman-core/core_extensions/rendering.rb
1517
387
  - lib/middleman-core/core_extensions/routing.rb
1518
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
1519
398
  - lib/middleman-core/dns_resolver.rb
1520
399
  - lib/middleman-core/dns_resolver/basic_network_resolver.rb
1521
400
  - lib/middleman-core/dns_resolver/hosts_resolver.rb
@@ -1537,6 +416,8 @@ files:
1537
416
  - lib/middleman-core/extensions/minify_javascript.rb
1538
417
  - lib/middleman-core/extensions/relative_assets.rb
1539
418
  - lib/middleman-core/file_renderer.rb
419
+ - lib/middleman-core/filter.rb
420
+ - lib/middleman-core/inline_url_filter.rb
1540
421
  - lib/middleman-core/load_paths.rb
1541
422
  - lib/middleman-core/logger.rb
1542
423
  - lib/middleman-core/meta_pages.rb
@@ -1577,6 +458,7 @@ files:
1577
458
  - lib/middleman-core/renderers/sass.rb
1578
459
  - lib/middleman-core/renderers/sass_functions.rb
1579
460
  - lib/middleman-core/renderers/slim.rb
461
+ - lib/middleman-core/renderers/stylus.rb
1580
462
  - lib/middleman-core/sitemap/extensions/ignores.rb
1581
463
  - lib/middleman-core/sitemap/extensions/import.rb
1582
464
  - lib/middleman-core/sitemap/extensions/move_file.rb
@@ -1586,6 +468,7 @@ files:
1586
468
  - lib/middleman-core/sitemap/extensions/request_endpoints.rb
1587
469
  - lib/middleman-core/sitemap/extensions/traversal.rb
1588
470
  - lib/middleman-core/sitemap/resource.rb
471
+ - lib/middleman-core/sitemap/resource_list_container.rb
1589
472
  - lib/middleman-core/sitemap/store.rb
1590
473
  - lib/middleman-core/sources.rb
1591
474
  - lib/middleman-core/sources/source_watcher.rb
@@ -1599,6 +482,7 @@ files:
1599
482
  - lib/middleman-core/util.rb
1600
483
  - lib/middleman-core/util/binary.rb
1601
484
  - lib/middleman-core/util/data.rb
485
+ - lib/middleman-core/util/empty_hash.rb
1602
486
  - lib/middleman-core/util/files.rb
1603
487
  - lib/middleman-core/util/paths.rb
1604
488
  - lib/middleman-core/util/rack.rb
@@ -1606,25 +490,11 @@ files:
1606
490
  - lib/middleman-core/version.rb
1607
491
  - lib/middleman/rack.rb
1608
492
  - middleman-core.gemspec
1609
- - spec/middleman-core/binary_spec/middleman
1610
- - spec/middleman-core/binary_spec/middleman.png
1611
- - spec/middleman-core/binary_spec/plain.txt
1612
- - spec/middleman-core/binary_spec/stars.svgz
1613
- - spec/middleman-core/binary_spec/unicode
1614
- - spec/middleman-core/binary_spec/unicode.txt
1615
- - spec/middleman-core/callbacks_spec.rb
1616
- - spec/middleman-core/core_extensions/data_spec.rb
1617
- - spec/middleman-core/dns_resolver_spec.rb
1618
- - spec/middleman-core/preview_server/server_hostname_spec.rb
1619
- - spec/middleman-core/preview_server/server_ip_address_spec.rb
1620
- - spec/middleman-core/util_spec.rb
1621
- - spec/spec_helper.rb
1622
- - spec/support/given.rb
1623
- homepage: https://middlemanapp.com
493
+ homepage: http://middlemanapp.com
1624
494
  licenses:
1625
495
  - MIT
1626
496
  metadata: {}
1627
- post_install_message:
497
+ post_install_message:
1628
498
  rdoc_options: []
1629
499
  require_paths:
1630
500
  - lib
@@ -1632,1086 +502,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
1632
502
  requirements:
1633
503
  - - ">="
1634
504
  - !ruby/object:Gem::Version
1635
- version: 2.7.0
505
+ version: 2.3.0
1636
506
  required_rubygems_version: !ruby/object:Gem::Requirement
1637
507
  requirements:
1638
- - - ">="
508
+ - - ">"
1639
509
  - !ruby/object:Gem::Version
1640
- version: '0'
510
+ version: 1.3.1
1641
511
  requirements: []
1642
- rubygems_version: 3.5.22
1643
- signing_key:
512
+ rubygems_version: 3.0.2
513
+ signing_key:
1644
514
  specification_version: 4
1645
515
  summary: Hand-crafted frontend development
1646
- test_files:
1647
- - features/asset_hash.feature
1648
- - features/asset_host.feature
1649
- - features/auto_layout.feature
1650
- - features/automatic_alt_tags.feature
1651
- - features/automatic_directory_matcher.feature
1652
- - features/automatic_image_sizes.feature
1653
- - features/builder.feature
1654
- - features/cache_buster.feature
1655
- - features/capture_html.feature
1656
- - features/chained_templates.feature
1657
- - features/clean_build.feature
1658
- - features/coffee-script.feature
1659
- - features/collections.feature
1660
- - features/console.feature
1661
- - features/content_for.feature
1662
- - features/content_type.feature
1663
- - features/custom-source.feature
1664
- - features/custom_layout_engines.feature
1665
- - features/custom_layouts.feature
1666
- - features/data.feature
1667
- - features/default-layout.feature
1668
- - features/default_alt_tag.feature
1669
- - features/directory_index.feature
1670
- - features/dynamic_pages.feature
1671
- - features/encoding_option.feature
1672
- - features/extension_api_deprecations.feature
1673
- - features/extension_hooks.feature
1674
- - features/extensionless_text_files.feature
1675
- - features/feature_params.feature
1676
- - features/former_padrino_helpers.feature
1677
- - features/front-matter-neighbor.feature
1678
- - features/front-matter.feature
1679
- - features/frontmatter_page_settings.feature
1680
- - features/gzip.feature
1681
- - features/helpers_auto_javascript_include_tag.feature
1682
- - features/helpers_auto_stylesheet_link_tag.feature
1683
- - features/helpers_content_tag.feature
1684
- - features/helpers_external.feature
1685
- - features/helpers_form_tag.feature
1686
- - features/helpers_link_to.feature
1687
- - features/helpers_lorem.feature
1688
- - features/helpers_page_classes.feature
1689
- - features/helpers_select_tag.feature
1690
- - features/helpers_url_for.feature
1691
- - features/i18n_builder.feature
1692
- - features/i18n_force_locale.feature
1693
- - features/i18n_link_to.feature
1694
- - features/i18n_mixed_sources.feature
1695
- - features/i18n_partials.feature
1696
- - features/i18n_preview.feature
1697
- - features/ignore.feature
1698
- - features/ignore_already_minified.feature
1699
- - features/image_srcset_paths.feature
1700
- - features/import_files.feature
1701
- - features/layouts_dir.feature
1702
- - features/liquid.feature
1703
- - features/markdown.feature
1704
- - features/markdown_kramdown.feature
1705
- - features/markdown_kramdown_in_haml.feature
1706
- - features/markdown_kramdown_in_slim.feature
1707
- - features/markdown_redcarpet.feature
1708
- - features/markdown_redcarpet_in_haml.feature
1709
- - features/markdown_redcarpet_in_slim.feature
1710
- - features/minify_css.feature
1711
- - features/minify_javascript.feature
1712
- - features/missing-tilt-lib.feature
1713
- - features/more-clean_build.feature
1714
- - features/more-extensionless_text_files.feature
1715
- - features/more-frontmatter_page_settings.feature
1716
- - features/more-ignore.feature
1717
- - features/more-sitemap_traversal.feature
1718
- - features/more-wildcard_page_helper.feature
1719
- - features/mount_rack.feature
1720
- - features/move_files.feature
1721
- - features/multiple-sources.feature
1722
- - features/nested_layouts.feature
1723
- - features/page-id.feature
1724
- - features/paginate.feature
1725
- - features/partials.feature
1726
- - features/preview_changes.feature
1727
- - features/proxy_pages.feature
1728
- - features/redirects.feature
1729
- - features/relative_assets.feature
1730
- - features/relative_assets_helpers_only.feature
1731
- - features/sass-assets-paths.feature
1732
- - features/sass_in_slim.feature
1733
- - features/sass_partials.feature
1734
- - features/scss-support.feature
1735
- - features/sitemap_traversal.feature
1736
- - features/slim.feature
1737
- - features/strip_url.feature
1738
- - features/support/env.rb
1739
- - features/support/preserve_mime_types.rb
1740
- - features/template-key-collision.feature
1741
- - features/tilde_directories.feature
1742
- - features/unicode_filecontents.feature
1743
- - features/unicode_filenames.feature
1744
- - features/v4_extension_callbacks.feature
1745
- - features/wildcard_page_helper.feature
1746
- - fixtures/asset-hash-app/config.rb
1747
- - fixtures/asset-hash-app/lib/middleware.rb
1748
- - fixtures/asset-hash-app/source/api.json.erb
1749
- - fixtures/asset-hash-app/source/apple-touch-icon.png
1750
- - fixtures/asset-hash-app/source/favicon.ico
1751
- - fixtures/asset-hash-app/source/fonts/fontawesome-webfont.woff
1752
- - fixtures/asset-hash-app/source/fonts/fontawesome-webfont.woff2
1753
- - fixtures/asset-hash-app/source/images/100px.gif
1754
- - fixtures/asset-hash-app/source/images/100px.jpg
1755
- - fixtures/asset-hash-app/source/images/100px.png
1756
- - fixtures/asset-hash-app/source/images/200px.jpg
1757
- - fixtures/asset-hash-app/source/images/300px.jpg
1758
- - fixtures/asset-hash-app/source/index.html.erb
1759
- - fixtures/asset-hash-app/source/javascripts/application.js
1760
- - fixtures/asset-hash-app/source/layout.erb
1761
- - fixtures/asset-hash-app/source/other.html.erb
1762
- - fixtures/asset-hash-app/source/partials.html.erb
1763
- - fixtures/asset-hash-app/source/slim.html.slim
1764
- - fixtures/asset-hash-app/source/stylesheets/_partial.sass
1765
- - fixtures/asset-hash-app/source/stylesheets/fragment.css.scss
1766
- - fixtures/asset-hash-app/source/stylesheets/site.css.scss
1767
- - fixtures/asset-hash-app/source/stylesheets/uses_fonts.css
1768
- - fixtures/asset-hash-app/source/stylesheets/uses_partials.css.sass
1769
- - fixtures/asset-hash-app/source/subdir/api.json.erb
1770
- - fixtures/asset-hash-app/source/subdir/index.html.erb
1771
- - fixtures/asset-hash-host-app/source/images/100px.gif
1772
- - fixtures/asset-hash-host-app/source/images/100px.jpg
1773
- - fixtures/asset-hash-host-app/source/images/100px.png
1774
- - fixtures/asset-hash-host-app/source/index.html.erb
1775
- - fixtures/asset-hash-host-app/source/layout.erb
1776
- - fixtures/asset-hash-host-app/source/other.html.erb
1777
- - fixtures/asset-hash-host-app/source/stylesheets/fragment.css.scss
1778
- - fixtures/asset-hash-host-app/source/stylesheets/site.css.scss
1779
- - fixtures/asset-hash-host-app/source/subdir/index.html.erb
1780
- - fixtures/asset-hash-minified-app/config.rb
1781
- - fixtures/asset-hash-minified-app/source/images/100px.jpg
1782
- - fixtures/asset-hash-minified-app/source/javascripts/jquery.min.js
1783
- - fixtures/asset-hash-minified-app/source/stylesheets/test.css
1784
- - fixtures/asset-hash-prefix/config.rb
1785
- - fixtures/asset-hash-prefix/lib/middleware.rb
1786
- - fixtures/asset-hash-prefix/source/index.html.erb
1787
- - fixtures/asset-hash-prefix/source/javascripts/application.js
1788
- - fixtures/asset-hash-prefix/source/javascripts/application.js.map
1789
- - fixtures/asset-hash-prefix/source/layout.erb
1790
- - fixtures/asset-hash-remove-filename/config.rb
1791
- - fixtures/asset-hash-remove-filename/source/index.html.erb
1792
- - fixtures/asset-hash-remove-filename/source/javascripts/application.js
1793
- - fixtures/asset-hash-remove-filename/source/javascripts/application.js.map
1794
- - fixtures/asset-hash-remove-filename/source/layout.erb
1795
- - fixtures/asset-hash-source-map/config.rb
1796
- - fixtures/asset-hash-source-map/lib/middleware.rb
1797
- - fixtures/asset-hash-source-map/source/index.html.erb
1798
- - fixtures/asset-hash-source-map/source/javascripts/application.js
1799
- - fixtures/asset-hash-source-map/source/javascripts/application.js.map
1800
- - fixtures/asset-hash-source-map/source/layout.erb
1801
- - fixtures/asset-host-app/config.rb
1802
- - fixtures/asset-host-app/source/.htaccess
1803
- - fixtures/asset-host-app/source/asset_host.html.erb
1804
- - fixtures/asset-host-app/source/images/blank.gif
1805
- - fixtures/asset-host-app/source/images/blank0.gif
1806
- - fixtures/asset-host-app/source/images/blank1.gif
1807
- - fixtures/asset-host-app/source/images/blank10.gif
1808
- - fixtures/asset-host-app/source/images/blank100.gif
1809
- - fixtures/asset-host-app/source/images/blank101.gif
1810
- - fixtures/asset-host-app/source/images/blank1010.gif
1811
- - fixtures/asset-host-app/source/images/blank102.gif
1812
- - fixtures/asset-host-app/source/images/blank1020.gif
1813
- - fixtures/asset-host-app/source/images/blank1021.gif
1814
- - fixtures/asset-host-app/source/images/blank1022.gif
1815
- - fixtures/asset-host-app/source/images/blank1023.gif
1816
- - fixtures/asset-host-app/source/images/blank1024.gif
1817
- - fixtures/asset-host-app/source/images/blank103.gif
1818
- - fixtures/asset-host-app/source/images/blank1030.gif
1819
- - fixtures/asset-host-app/source/images/blank1031.gif
1820
- - fixtures/asset-host-app/source/images/blank1032.gif
1821
- - fixtures/asset-host-app/source/images/blank1033.gif
1822
- - fixtures/asset-host-app/source/images/blank1034.gif
1823
- - fixtures/asset-host-app/source/images/blank104.gif
1824
- - fixtures/asset-host-app/source/images/blank1043.gif
1825
- - fixtures/asset-host-app/source/images/blank1054.gif
1826
- - fixtures/asset-host-app/source/images/blank2.gif
1827
- - fixtures/asset-host-app/source/images/blank20.gif
1828
- - fixtures/asset-host-app/source/images/blank21.gif
1829
- - fixtures/asset-host-app/source/images/blank22.gif
1830
- - fixtures/asset-host-app/source/images/blank23.gif
1831
- - fixtures/asset-host-app/source/images/blank24.gif
1832
- - fixtures/asset-host-app/source/images/blank3.gif
1833
- - fixtures/asset-host-app/source/images/blank30.gif
1834
- - fixtures/asset-host-app/source/images/blank31.gif
1835
- - fixtures/asset-host-app/source/images/blank32.gif
1836
- - fixtures/asset-host-app/source/images/blank33.gif
1837
- - fixtures/asset-host-app/source/images/blank34.gif
1838
- - fixtures/asset-host-app/source/images/blank4.gif
1839
- - fixtures/asset-host-app/source/images/blank43.gif
1840
- - fixtures/asset-host-app/source/images/blank54.gif
1841
- - fixtures/asset-host-app/source/javascripts/asset_host.js
1842
- - fixtures/asset-host-app/source/stylesheets/asset_host.css.sass
1843
- - fixtures/auto-css-app/config.rb
1844
- - fixtures/auto-css-app/source/auto-css.html.erb
1845
- - fixtures/auto-css-app/source/auto-css/auto-css.html.erb
1846
- - fixtures/auto-css-app/source/auto-css/index.html.erb
1847
- - fixtures/auto-css-app/source/auto-css/sub/auto-css.html.erb
1848
- - fixtures/auto-css-app/source/stylesheets/auto-css.css
1849
- - fixtures/auto-css-app/source/stylesheets/auto-css/auto-css.css
1850
- - fixtures/auto-css-app/source/stylesheets/auto-css/index.css
1851
- - fixtures/auto-css-app/source/stylesheets/auto-css/sub/auto-css.css
1852
- - fixtures/auto-js-app/config.rb
1853
- - fixtures/auto-js-app/source/auto-js.html.erb
1854
- - fixtures/auto-js-app/source/auto-js/auto-js.html.erb
1855
- - fixtures/auto-js-app/source/auto-js/index.html.erb
1856
- - fixtures/auto-js-app/source/auto-js/sub/auto-js.html.erb
1857
- - fixtures/auto-js-app/source/javascripts/auto-js.js
1858
- - fixtures/auto-js-app/source/javascripts/auto-js/auto-js.js
1859
- - fixtures/auto-js-app/source/javascripts/auto-js/index.js
1860
- - fixtures/auto-js-app/source/javascripts/auto-js/sub/auto-js.js
1861
- - fixtures/auto-js-directory-index-app/config.rb
1862
- - fixtures/auto-js-directory-index-app/source/auto-js.html.erb
1863
- - fixtures/auto-js-directory-index-app/source/javascripts/auto-js.js
1864
- - fixtures/automatic-alt-tags-app/config.rb
1865
- - fixtures/automatic-alt-tags-app/source/auto-image-sizes.html.erb
1866
- - fixtures/automatic-alt-tags-app/source/images/blank.gif
1867
- - fixtures/automatic-directory-matcher-app/config.rb
1868
- - fixtures/automatic-directory-matcher-app/source/root-plain.html
1869
- - fixtures/automatic-directory-matcher-app/source/root.html.erb
1870
- - fixtures/automatic-directory-matcher-app/source/sub--sub--sub-plain.html
1871
- - fixtures/automatic-directory-matcher-app/source/sub--sub--sub.html.erb
1872
- - fixtures/automatic-directory-matcher-app/source/sub--sub-plain.html
1873
- - fixtures/automatic-directory-matcher-app/source/sub--sub.html.erb
1874
- - fixtures/automatic-image-size-app/config.rb
1875
- - fixtures/automatic-image-size-app/source/auto-image-sizes.html.erb
1876
- - fixtures/automatic-image-size-app/source/images/blank.gif
1877
- - fixtures/automatic-image-size-app/source/markdown-sizes.html.markdown
1878
- - fixtures/basic-data-app/config.rb
1879
- - fixtures/basic-data-app/data/test.yml
1880
- - fixtures/basic-data-app/data/test2.json
1881
- - fixtures/basic-data-app/data/test3.toml
1882
- - fixtures/basic-data-app/source/data.html.erb
1883
- - fixtures/basic-data-app/source/data3.html.erb
1884
- - fixtures/basic-data-app/source/data4.html.erb
1885
- - fixtures/build-with-errors-app/config.rb
1886
- - fixtures/build-with-errors-app/source/index.html.erb
1887
- - fixtures/cache-buster-app/config.rb
1888
- - fixtures/cache-buster-app/source/cache-buster.html.erb
1889
- - fixtures/cache-buster-app/source/images/blank.gif
1890
- - fixtures/cache-buster-app/source/stylesheets/relative_assets.css.sass
1891
- - fixtures/cache-buster-app/source/stylesheets/site.css.sass
1892
- - fixtures/capture-html-app/config.rb
1893
- - fixtures/capture-html-app/source/capture_html_erb.html.erb
1894
- - fixtures/capture-html-app/source/capture_html_haml.html.haml
1895
- - fixtures/capture-html-app/source/capture_html_slim.html.slim
1896
- - fixtures/capture-html-app/source/layouts/capture_html.erb
1897
- - fixtures/chained-app/config.rb
1898
- - fixtures/chained-app/data/article.yml
1899
- - fixtures/chained-app/source/index.html.str.erb
1900
- - fixtures/chained-app/source/test.erb.combobreaker.str.erb
1901
- - fixtures/clean-app/config-complications.rb
1902
- - fixtures/clean-app/config-empty.rb
1903
- - fixtures/clean-app/config-hidden-dir-after.rb
1904
- - fixtures/clean-app/config-hidden-dir-before.rb
1905
- - fixtures/clean-app/config.rb
1906
- - fixtures/clean-app/source/index.html.erb
1907
- - fixtures/clean-app/source/layout.erb
1908
- - fixtures/clean-app/source/layouts/custom.erb
1909
- - fixtures/clean-app/source/real.html
1910
- - fixtures/clean-app/source/real/index.html.erb
1911
- - fixtures/clean-app/source/should_be_ignored.html
1912
- - fixtures/clean-app/source/should_be_ignored2.html
1913
- - fixtures/clean-app/source/should_be_ignored3.html
1914
- - fixtures/clean-app/source/static.html
1915
- - fixtures/clean-dir-app/config.rb
1916
- - fixtures/clean-dir-app/source/about.html
1917
- - fixtures/clean-nested-app/config.rb
1918
- - fixtures/clean-nested-app/source/about.html
1919
- - fixtures/clean-nested-app/source/nested/nested.html
1920
- - fixtures/coffeescript-app/config.rb
1921
- - fixtures/coffeescript-app/source/inline-coffeescript.html.haml
1922
- - fixtures/coffeescript-app/source/javascripts/broken-coffee.js.coffee
1923
- - fixtures/coffeescript-app/source/javascripts/coffee_test.js.coffee
1924
- - fixtures/collections-app/source/blog1/2011-01-01-new-article.html.markdown
1925
- - fixtures/collections-app/source/blog1/2011-01-02-another-article.html.markdown
1926
- - fixtures/collections-app/source/blog2/2011-01-01-new-article.html.markdown
1927
- - fixtures/collections-app/source/blog2/2011-01-02-another-article.html.markdown
1928
- - fixtures/content-for-app/config.rb
1929
- - fixtures/content-for-app/source/content_for_erb.html.erb
1930
- - fixtures/content-for-app/source/content_for_haml.html.haml
1931
- - fixtures/content-for-app/source/content_for_slim.html.slim
1932
- - fixtures/content-for-app/source/layouts/content_for.erb
1933
- - fixtures/content-type-app/config.rb
1934
- - fixtures/content-type-app/source/.htaccess
1935
- - fixtures/content-type-app/source/README
1936
- - fixtures/content-type-app/source/images/blank.gif
1937
- - fixtures/content-type-app/source/index.html
1938
- - fixtures/content-type-app/source/index.php
1939
- - fixtures/content-type-app/source/javascripts/app.js
1940
- - fixtures/content-type-app/source/override.html
1941
- - fixtures/content-type-app/source/stylesheets/site.css
1942
- - fixtures/csspie/config.rb
1943
- - fixtures/csspie/source/stylesheets/PIE.htc
1944
- - fixtures/custom-layout-app/config.rb
1945
- - fixtures/custom-layout-app/source/index.html.erb
1946
- - fixtures/custom-layout-app/source/layout.str
1947
- - fixtures/custom-layout-app2/config.rb
1948
- - fixtures/custom-layout-app2/source/custom-layout-dir/index.html.erb
1949
- - fixtures/custom-layout-app2/source/custom-layout.html.erb
1950
- - fixtures/custom-layout-app2/source/layouts/custom.erb
1951
- - fixtures/custom-src-app/config.rb
1952
- - fixtures/custom-src-app/src/index.html
1953
- - fixtures/custom-src-app/src/layouts/layout.html.erb
1954
- - fixtures/data-app/config.rb
1955
- - fixtures/data-app/data/pages.yml
1956
- - fixtures/data-app/source/index.html.erb
1957
- - fixtures/data-app/source/layout.erb
1958
- - fixtures/data-with-aliases-app/config.rb
1959
- - fixtures/data-with-aliases-app/data/pages.yml
1960
- - fixtures/data-with-aliases-app/source/index.html.erb
1961
- - fixtures/data-with-aliases-app/source/layout.erb
1962
- - fixtures/default-alt-tags-app/config.rb
1963
- - fixtures/default-alt-tags-app/source/empty-alt-tag.html.erb
1964
- - fixtures/default-alt-tags-app/source/images/blank.gif
1965
- - fixtures/default-alt-tags-app/source/meaningful-alt-tag.html.erb
1966
- - fixtures/different-engine-layout/config.rb
1967
- - fixtures/different-engine-layout/source/index.haml
1968
- - fixtures/different-engine-layout/source/index.html.str
1969
- - fixtures/different-engine-layout/source/layout.erb
1970
- - fixtures/different-engine-partial/config.rb
1971
- - fixtures/different-engine-partial/source/index.html.erb
1972
- - fixtures/different-engine-partial/source/layouts/layout.erb
1973
- - fixtures/different-engine-partial/source/shared/_footer.str
1974
- - fixtures/different-engine-partial/source/shared/_header.erb
1975
- - fixtures/dynamic-pages-app/config.rb
1976
- - fixtures/dynamic-pages-app/source/real.html
1977
- - fixtures/dynamic-pages-app/source/real/index.html.erb
1978
- - fixtures/dynamic-pages-app/source/should_be_ignored.html
1979
- - fixtures/dynamic-pages-app/source/should_be_ignored2.html
1980
- - fixtures/dynamic-pages-app/source/should_be_ignored3.html
1981
- - fixtures/dynamic-pages-app/source/should_be_ignored4.html
1982
- - fixtures/dynamic-pages-app/source/should_be_ignored5.html
1983
- - fixtures/dynamic-pages-app/source/should_be_ignored6.html
1984
- - fixtures/dynamic-pages-app/source/should_be_ignored7.html
1985
- - fixtures/dynamic-pages-app/source/should_be_ignored8.html
1986
- - fixtures/dynamic-pages-app/source/should_be_ignored9.html
1987
- - fixtures/ember-cli-app/config.rb
1988
- - fixtures/ember-cli-app/source/javascripts/file.js
1989
- - fixtures/ember-cli-app/test-app/.bowerrc
1990
- - fixtures/ember-cli-app/test-app/.gitignore
1991
- - fixtures/ember-cli-app/test-app/.jshintrc
1992
- - fixtures/ember-cli-app/test-app/Brocfile.js
1993
- - fixtures/ember-cli-app/test-app/README.md
1994
- - fixtures/ember-cli-app/test-app/app/app.js
1995
- - fixtures/ember-cli-app/test-app/app/components/.gitkeep
1996
- - fixtures/ember-cli-app/test-app/app/controllers/.gitkeep
1997
- - fixtures/ember-cli-app/test-app/app/helpers/.gitkeep
1998
- - fixtures/ember-cli-app/test-app/app/index.html
1999
- - fixtures/ember-cli-app/test-app/app/models/.gitkeep
2000
- - fixtures/ember-cli-app/test-app/app/router.js
2001
- - fixtures/ember-cli-app/test-app/app/routes/.gitkeep
2002
- - fixtures/ember-cli-app/test-app/app/styles/.gitkeep
2003
- - fixtures/ember-cli-app/test-app/app/styles/app.css
2004
- - fixtures/ember-cli-app/test-app/app/templates/.gitkeep
2005
- - fixtures/ember-cli-app/test-app/app/templates/application.hbs
2006
- - fixtures/ember-cli-app/test-app/app/templates/components/.gitkeep
2007
- - fixtures/ember-cli-app/test-app/app/views/.gitkeep
2008
- - fixtures/ember-cli-app/test-app/bower.json
2009
- - fixtures/ember-cli-app/test-app/config/environment.js
2010
- - fixtures/ember-cli-app/test-app/package.json
2011
- - fixtures/ember-cli-app/test-app/public/.gitkeep
2012
- - fixtures/ember-cli-app/test-app/testem.json
2013
- - fixtures/ember-cli-app/test-app/tests/.jshintrc
2014
- - fixtures/ember-cli-app/test-app/tests/helpers/resolver.js
2015
- - fixtures/ember-cli-app/test-app/tests/helpers/start-app.js
2016
- - fixtures/ember-cli-app/test-app/tests/index.html
2017
- - fixtures/ember-cli-app/test-app/tests/test-helper.js
2018
- - fixtures/ember-cli-app/test-app/tests/unit/.gitkeep
2019
- - fixtures/empty-app/not-config.rb
2020
- - fixtures/engine-matching-layout/config.rb
2021
- - fixtures/engine-matching-layout/source/index.html.erb
2022
- - fixtures/engine-matching-layout/source/layout.erb
2023
- - fixtures/env-app/config.rb
2024
- - fixtures/env-app/environments/development.rb
2025
- - fixtures/env-app/environments/production.rb
2026
- - fixtures/env-app/source/index.html.erb
2027
- - fixtures/env-app/source/stylesheets/site.css.scss
2028
- - fixtures/extension-api-deprecations-app/config.rb
2029
- - fixtures/extension-api-deprecations-app/source/index.html.erb
2030
- - fixtures/extension-api-deprecations-app/source/layouts/layout.erb
2031
- - fixtures/extension-hooks-app/config.rb
2032
- - fixtures/extension-hooks-app/source/index.html.erb
2033
- - fixtures/extensionless-text-files-app/config.rb
2034
- - fixtures/extensionless-text-files-app/source/CNAME
2035
- - fixtures/extensionless-text-files-app/source/LICENSE
2036
- - fixtures/extensionless-text-files-app/source/README
2037
- - fixtures/extensionless-text-files-app/source/index.html
2038
- - fixtures/external-helpers/config.rb
2039
- - fixtures/external-helpers/helpers/derp.rb
2040
- - fixtures/external-helpers/helpers/four_helpers.rb
2041
- - fixtures/external-helpers/helpers/one_helper.rb
2042
- - fixtures/external-helpers/helpers/yet_another_thingy.rb
2043
- - fixtures/external-helpers/lib/hello_helper.rb
2044
- - fixtures/external-helpers/source/automatic.html.erb
2045
- - fixtures/external-helpers/source/index.html.erb
2046
- - fixtures/external-pipeline-error/config.rb
2047
- - fixtures/external-pipeline-error/source/javascripts/file.js
2048
- - fixtures/feature-params-app/config.rb
2049
- - fixtures/feature-params-app/source/index.html.erb
2050
- - fixtures/fonts-app/config.rb
2051
- - fixtures/fonts-app/source/fonts/StMarie-Thin.otf
2052
- - fixtures/fonts-app/source/fonts/blank/blank.otf
2053
- - fixtures/fonts-app/source/stylesheets/fonts.css.scss
2054
- - fixtures/frontmatter-app/config.rb
2055
- - fixtures/frontmatter-app/source/front-matter-2.php.erb
2056
- - fixtures/frontmatter-app/source/front-matter-change.html.erb
2057
- - fixtures/frontmatter-app/source/front-matter-encoding.html.erb
2058
- - fixtures/frontmatter-app/source/front-matter-haml.html.haml
2059
- - fixtures/frontmatter-app/source/front-matter-line-2.html.erb
2060
- - fixtures/frontmatter-app/source/front-matter-pandoc.html.md.erb
2061
- - fixtures/frontmatter-app/source/raw-front-matter-toml.html
2062
- - fixtures/frontmatter-app/source/raw-front-matter.html
2063
- - fixtures/frontmatter-app/source/raw-front-matter.php
2064
- - fixtures/frontmatter-neighbor-app/config.rb
2065
- - fixtures/frontmatter-neighbor-app/source/front-matter-2.php.erb
2066
- - fixtures/frontmatter-neighbor-app/source/front-matter-2.php.erb.frontmatter
2067
- - fixtures/frontmatter-neighbor-app/source/front-matter-change.html.erb
2068
- - fixtures/frontmatter-neighbor-app/source/front-matter-change.html.erb.frontmatter
2069
- - fixtures/frontmatter-neighbor-app/source/front-matter-encoding.html.erb
2070
- - fixtures/frontmatter-neighbor-app/source/front-matter-encoding.html.erb.frontmatter
2071
- - fixtures/frontmatter-neighbor-app/source/raw-front-matter-toml.html
2072
- - fixtures/frontmatter-neighbor-app/source/raw-front-matter-toml.html.frontmatter
2073
- - fixtures/frontmatter-neighbor-app/source/raw-front-matter.html
2074
- - fixtures/frontmatter-neighbor-app/source/raw-front-matter.html.frontmatter
2075
- - fixtures/frontmatter-neighbor-app/source/raw-front-matter.php
2076
- - fixtures/frontmatter-neighbor-app/source/raw-front-matter.php.frontmatter
2077
- - fixtures/frontmatter-settings-app/config.rb
2078
- - fixtures/frontmatter-settings-app/source/alternate_layout.html.erb
2079
- - fixtures/frontmatter-settings-app/source/ignored.html.erb
2080
- - fixtures/frontmatter-settings-app/source/layouts/alternate.erb
2081
- - fixtures/frontmatter-settings-app/source/layouts/override.erb
2082
- - fixtures/frontmatter-settings-app/source/override_layout.html.erb
2083
- - fixtures/frontmatter-settings-app/source/page_mentioned.html.erb
2084
- - fixtures/frontmatter-settings-neighbor-app/config.rb
2085
- - fixtures/frontmatter-settings-neighbor-app/source/alternate_layout.html.erb
2086
- - fixtures/frontmatter-settings-neighbor-app/source/alternate_layout.html.erb.frontmatter
2087
- - fixtures/frontmatter-settings-neighbor-app/source/ignored.html.erb
2088
- - fixtures/frontmatter-settings-neighbor-app/source/ignored.html.erb.frontmatter
2089
- - fixtures/frontmatter-settings-neighbor-app/source/layouts/alternate.erb
2090
- - fixtures/frontmatter-settings-neighbor-app/source/layouts/override.erb
2091
- - fixtures/frontmatter-settings-neighbor-app/source/override_layout.html.erb
2092
- - fixtures/frontmatter-settings-neighbor-app/source/override_layout.html.erb.frontmatter
2093
- - fixtures/frontmatter-settings-neighbor-app/source/page_mentioned.html.erb
2094
- - fixtures/frontmatter-settings-neighbor-app/source/page_mentioned.html.erb.frontmatter
2095
- - fixtures/generator-test/config.rb
2096
- - fixtures/generator-test/source/index.html.erb
2097
- - fixtures/glob-app/config.rb
2098
- - fixtures/glob-app/source/index.html.erb
2099
- - fixtures/glob-app/source/stylesheets/site.css.str
2100
- - fixtures/gzip-app/config.rb
2101
- - fixtures/gzip-app/source/index.html
2102
- - fixtures/gzip-app/source/javascripts/test.js
2103
- - fixtures/gzip-app/source/stylesheets/test.css
2104
- - fixtures/i-8859-1-app/config.rb
2105
- - fixtures/i-8859-1-app/source/index.html.erb
2106
- - fixtures/i18n-alt-root-app/locales/en.yml
2107
- - fixtures/i18n-alt-root-app/locales/es.yml
2108
- - fixtures/i18n-alt-root-app/source/lang_data/hello.html.erb
2109
- - fixtures/i18n-alt-root-app/source/lang_data/index.html.erb
2110
- - fixtures/i18n-alt-root-app/source/layout.erb
2111
- - fixtures/i18n-default-app/locales/en.yml
2112
- - fixtures/i18n-default-app/locales/es.yml
2113
- - fixtures/i18n-default-app/source/localizable/index.html.erb
2114
- - fixtures/i18n-force-locale/config.rb
2115
- - fixtures/i18n-force-locale/locales/en.yml
2116
- - fixtures/i18n-force-locale/locales/es.yml
2117
- - fixtures/i18n-force-locale/locales/fr.yml
2118
- - fixtures/i18n-force-locale/source/index.html.haml
2119
- - fixtures/i18n-mixed-sources/config.rb
2120
- - fixtures/i18n-mixed-sources/locales/en.yml
2121
- - fixtures/i18n-mixed-sources/locales/es.yml
2122
- - fixtures/i18n-mixed-sources/source/a/sub.html.erb
2123
- - fixtures/i18n-mixed-sources/source/b/index.html.erb
2124
- - fixtures/i18n-mixed-sources/source/index.html.erb
2125
- - fixtures/i18n-mixed-sources/source/localizable/a/index.html.erb
2126
- - fixtures/i18n-mixed-sources/source/localizable/b/sub.html.erb
2127
- - fixtures/i18n-mixed-sources/source/localizable/index.html.erb
2128
- - fixtures/i18n-nested-app/locales/en.yml
2129
- - fixtures/i18n-nested-app/locales/en/more.yml
2130
- - fixtures/i18n-nested-app/locales/es.yml
2131
- - fixtures/i18n-nested-app/locales/es/mucho.yml
2132
- - fixtures/i18n-nested-app/source/localizable/index.html.erb
2133
- - fixtures/i18n-test-app/data/defaults_en.yml
2134
- - fixtures/i18n-test-app/data/defaults_es.yml
2135
- - fixtures/i18n-test-app/data/en_defaults.yml
2136
- - fixtures/i18n-test-app/locales/en.yml
2137
- - fixtures/i18n-test-app/locales/es.yml
2138
- - fixtures/i18n-test-app/source/CNAME
2139
- - fixtures/i18n-test-app/source/_country.en.erb
2140
- - fixtures/i18n-test-app/source/_country.es.erb
2141
- - fixtures/i18n-test-app/source/_site.erb
2142
- - fixtures/i18n-test-app/source/images/president.en.svg
2143
- - fixtures/i18n-test-app/source/images/president.es.svg
2144
- - fixtures/i18n-test-app/source/layouts/layout.erb
2145
- - fixtures/i18n-test-app/source/localizable/_state.en.erb
2146
- - fixtures/i18n-test-app/source/localizable/_state.es.erb
2147
- - fixtures/i18n-test-app/source/localizable/fallback.html.erb
2148
- - fixtures/i18n-test-app/source/localizable/hello.html.erb
2149
- - fixtures/i18n-test-app/source/localizable/images/flag.en.svg
2150
- - fixtures/i18n-test-app/source/localizable/images/flag.es.svg
2151
- - fixtures/i18n-test-app/source/localizable/index.html.erb
2152
- - fixtures/i18n-test-app/source/localizable/morning.en.html.erb
2153
- - fixtures/i18n-test-app/source/localizable/morning.es.html.erb
2154
- - fixtures/i18n-test-app/source/localizable/one.en.html.md
2155
- - fixtures/i18n-test-app/source/localizable/one.es.html.md
2156
- - fixtures/i18n-test-app/source/localizable/partials/_greeting.en.erb
2157
- - fixtures/i18n-test-app/source/localizable/partials/_greeting.es.erb
2158
- - fixtures/i18n-test-app/source/localizable/partials/index.html.erb
2159
- - fixtures/i18n-test-app/source/password.txt
2160
- - fixtures/i18n-test-app/source/stylesheets/site.css
2161
- - fixtures/ignore-app/source/about.html.erb
2162
- - fixtures/ignore-app/source/images/icon/messages.png
2163
- - fixtures/ignore-app/source/images/pic.png
2164
- - fixtures/ignore-app/source/images/portrait.jpg
2165
- - fixtures/ignore-app/source/index.html.erb
2166
- - fixtures/ignore-app/source/plain.html
2167
- - fixtures/ignore-app/source/reports/another.html
2168
- - fixtures/ignore-app/source/reports/index.html
2169
- - fixtures/image-srcset-paths-app/image-srcset-paths.html.erb
2170
- - fixtures/image-srcset-paths-app/images/blank.gif
2171
- - fixtures/import-app/bower.json
2172
- - fixtures/import-app/bower_components/jquery/.bower.json
2173
- - fixtures/import-app/bower_components/jquery/MIT-LICENSE.txt
2174
- - fixtures/import-app/bower_components/jquery/bower.json
2175
- - fixtures/import-app/bower_components/jquery/dist/jquery.js
2176
- - fixtures/import-app/bower_components/jquery/dist/jquery.min.js
2177
- - fixtures/import-app/bower_components/jquery/dist/jquery.min.map
2178
- - fixtures/import-app/bower_components/jquery/src/ajax.js
2179
- - fixtures/import-app/bower_components/jquery/src/ajax/jsonp.js
2180
- - fixtures/import-app/bower_components/jquery/src/ajax/load.js
2181
- - fixtures/import-app/bower_components/jquery/src/ajax/parseJSON.js
2182
- - fixtures/import-app/bower_components/jquery/src/ajax/parseXML.js
2183
- - fixtures/import-app/bower_components/jquery/src/ajax/script.js
2184
- - fixtures/import-app/bower_components/jquery/src/ajax/var/nonce.js
2185
- - fixtures/import-app/bower_components/jquery/src/ajax/var/rquery.js
2186
- - fixtures/import-app/bower_components/jquery/src/ajax/xhr.js
2187
- - fixtures/import-app/bower_components/jquery/src/attributes.js
2188
- - fixtures/import-app/bower_components/jquery/src/attributes/attr.js
2189
- - fixtures/import-app/bower_components/jquery/src/attributes/classes.js
2190
- - fixtures/import-app/bower_components/jquery/src/attributes/prop.js
2191
- - fixtures/import-app/bower_components/jquery/src/attributes/support.js
2192
- - fixtures/import-app/bower_components/jquery/src/attributes/val.js
2193
- - fixtures/import-app/bower_components/jquery/src/callbacks.js
2194
- - fixtures/import-app/bower_components/jquery/src/core.js
2195
- - fixtures/import-app/bower_components/jquery/src/core/access.js
2196
- - fixtures/import-app/bower_components/jquery/src/core/init.js
2197
- - fixtures/import-app/bower_components/jquery/src/core/parseHTML.js
2198
- - fixtures/import-app/bower_components/jquery/src/core/ready.js
2199
- - fixtures/import-app/bower_components/jquery/src/core/var/rsingleTag.js
2200
- - fixtures/import-app/bower_components/jquery/src/css.js
2201
- - fixtures/import-app/bower_components/jquery/src/css/addGetHookIf.js
2202
- - fixtures/import-app/bower_components/jquery/src/css/curCSS.js
2203
- - fixtures/import-app/bower_components/jquery/src/css/defaultDisplay.js
2204
- - fixtures/import-app/bower_components/jquery/src/css/hiddenVisibleSelectors.js
2205
- - fixtures/import-app/bower_components/jquery/src/css/support.js
2206
- - fixtures/import-app/bower_components/jquery/src/css/swap.js
2207
- - fixtures/import-app/bower_components/jquery/src/css/var/cssExpand.js
2208
- - fixtures/import-app/bower_components/jquery/src/css/var/getStyles.js
2209
- - fixtures/import-app/bower_components/jquery/src/css/var/isHidden.js
2210
- - fixtures/import-app/bower_components/jquery/src/css/var/rmargin.js
2211
- - fixtures/import-app/bower_components/jquery/src/css/var/rnumnonpx.js
2212
- - fixtures/import-app/bower_components/jquery/src/data.js
2213
- - fixtures/import-app/bower_components/jquery/src/data/Data.js
2214
- - fixtures/import-app/bower_components/jquery/src/data/accepts.js
2215
- - fixtures/import-app/bower_components/jquery/src/data/var/data_priv.js
2216
- - fixtures/import-app/bower_components/jquery/src/data/var/data_user.js
2217
- - fixtures/import-app/bower_components/jquery/src/deferred.js
2218
- - fixtures/import-app/bower_components/jquery/src/deprecated.js
2219
- - fixtures/import-app/bower_components/jquery/src/dimensions.js
2220
- - fixtures/import-app/bower_components/jquery/src/effects.js
2221
- - fixtures/import-app/bower_components/jquery/src/effects/Tween.js
2222
- - fixtures/import-app/bower_components/jquery/src/effects/animatedSelector.js
2223
- - fixtures/import-app/bower_components/jquery/src/event.js
2224
- - fixtures/import-app/bower_components/jquery/src/event/ajax.js
2225
- - fixtures/import-app/bower_components/jquery/src/event/alias.js
2226
- - fixtures/import-app/bower_components/jquery/src/event/support.js
2227
- - fixtures/import-app/bower_components/jquery/src/exports/amd.js
2228
- - fixtures/import-app/bower_components/jquery/src/exports/global.js
2229
- - fixtures/import-app/bower_components/jquery/src/intro.js
2230
- - fixtures/import-app/bower_components/jquery/src/jquery.js
2231
- - fixtures/import-app/bower_components/jquery/src/manipulation.js
2232
- - fixtures/import-app/bower_components/jquery/src/manipulation/_evalUrl.js
2233
- - fixtures/import-app/bower_components/jquery/src/manipulation/support.js
2234
- - fixtures/import-app/bower_components/jquery/src/manipulation/var/rcheckableType.js
2235
- - fixtures/import-app/bower_components/jquery/src/offset.js
2236
- - fixtures/import-app/bower_components/jquery/src/outro.js
2237
- - fixtures/import-app/bower_components/jquery/src/queue.js
2238
- - fixtures/import-app/bower_components/jquery/src/queue/delay.js
2239
- - fixtures/import-app/bower_components/jquery/src/selector-native.js
2240
- - fixtures/import-app/bower_components/jquery/src/selector-sizzle.js
2241
- - fixtures/import-app/bower_components/jquery/src/selector.js
2242
- - fixtures/import-app/bower_components/jquery/src/serialize.js
2243
- - fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.js
2244
- - fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.min.js
2245
- - fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.min.map
2246
- - fixtures/import-app/bower_components/jquery/src/traversing.js
2247
- - fixtures/import-app/bower_components/jquery/src/traversing/findFilter.js
2248
- - fixtures/import-app/bower_components/jquery/src/traversing/var/rneedsContext.js
2249
- - fixtures/import-app/bower_components/jquery/src/var/arr.js
2250
- - fixtures/import-app/bower_components/jquery/src/var/class2type.js
2251
- - fixtures/import-app/bower_components/jquery/src/var/concat.js
2252
- - fixtures/import-app/bower_components/jquery/src/var/hasOwn.js
2253
- - fixtures/import-app/bower_components/jquery/src/var/indexOf.js
2254
- - fixtures/import-app/bower_components/jquery/src/var/pnum.js
2255
- - fixtures/import-app/bower_components/jquery/src/var/push.js
2256
- - fixtures/import-app/bower_components/jquery/src/var/rnotwhite.js
2257
- - fixtures/import-app/bower_components/jquery/src/var/slice.js
2258
- - fixtures/import-app/bower_components/jquery/src/var/strundefined.js
2259
- - fixtures/import-app/bower_components/jquery/src/var/support.js
2260
- - fixtures/import-app/bower_components/jquery/src/var/toString.js
2261
- - fixtures/import-app/bower_components/jquery/src/wrap.js
2262
- - fixtures/import-app/config.rb
2263
- - fixtures/import-app/source/test.html
2264
- - fixtures/import-app/static.html
2265
- - fixtures/indexable-app/config.rb
2266
- - fixtures/indexable-app/source/.htaccess
2267
- - fixtures/indexable-app/source/.htpasswd
2268
- - fixtures/indexable-app/source/.nojekyll
2269
- - fixtures/indexable-app/source/a_folder/needs_index.html
2270
- - fixtures/indexable-app/source/evil spaces.html
2271
- - fixtures/indexable-app/source/leave_me_alone.html
2272
- - fixtures/indexable-app/source/needs_index.html
2273
- - fixtures/indexable-app/source/regex_leave_me_alone2.html
2274
- - fixtures/indexable-app/source/regular/index.html
2275
- - fixtures/indexable-app/source/wildcard_leave_me_alone.html
2276
- - fixtures/javascript-app/config.rb
2277
- - fixtures/javascript-app/source/index.html
2278
- - fixtures/large-build-app/config.rb
2279
- - fixtures/large-build-app/source/.htaccess
2280
- - fixtures/large-build-app/source/.htpasswd
2281
- - fixtures/large-build-app/source/_partial.erb
2282
- - fixtures/large-build-app/source/feed.xml.builder
2283
- - fixtures/large-build-app/source/images/Child folder/regular_file(example).txt
2284
- - fixtures/large-build-app/source/images/Read me (example).txt
2285
- - fixtures/large-build-app/source/images/blank.gif
2286
- - fixtures/large-build-app/source/index.html.erb
2287
- - fixtures/large-build-app/source/layout.erb
2288
- - fixtures/large-build-app/source/layouts/content_for.erb
2289
- - fixtures/large-build-app/source/layouts/custom.erb
2290
- - fixtures/large-build-app/source/link_test.html.erb
2291
- - fixtures/large-build-app/source/other_layout.erb
2292
- - fixtures/large-build-app/source/services/index.html.erb
2293
- - fixtures/large-build-app/source/spaces in file.html.erb
2294
- - fixtures/large-build-app/source/static.html
2295
- - fixtures/large-build-app/source/stylesheets/static.css
2296
- - fixtures/layouts-dir-app/source/ambiguous.html.erb
2297
- - fixtures/layouts-dir-app/source/index.html.erb
2298
- - fixtures/layouts-dir-app/source/layouts/layout.erb
2299
- - fixtures/layouts-dir-app/source/layouts/other.erb
2300
- - fixtures/layouts-dir-app/source/layouts2/layout.erb
2301
- - fixtures/layouts-dir-app/source/nested/layouts2/layout.erb
2302
- - fixtures/layouts-dir-app/source/other.erb
2303
- - fixtures/link-to-app/config.rb
2304
- - fixtures/link-to-app/source/link_to_erb.html.erb
2305
- - fixtures/link-to-app/source/link_to_haml.html.haml
2306
- - fixtures/link-to-app/source/link_to_slim.html.slim
2307
- - fixtures/liquid-app/config.rb
2308
- - fixtures/liquid-app/data/test.yml
2309
- - fixtures/liquid-app/data/test2.json
2310
- - fixtures/liquid-app/source/_liquid_partial.liquid
2311
- - fixtures/liquid-app/source/data2.html.liquid
2312
- - fixtures/liquid-app/source/liquid_master.html.liquid
2313
- - fixtures/lorem-app/config.rb
2314
- - fixtures/lorem-app/source/lorem.html.erb
2315
- - fixtures/manual-layout-missing/config.rb
2316
- - fixtures/manual-layout-missing/source/index.html.erb
2317
- - fixtures/manual-layout-override/config.rb
2318
- - fixtures/manual-layout-override/source/index.html.erb
2319
- - fixtures/manual-layout-override/source/layouts/another.erb
2320
- - fixtures/manual-layout-override/source/layouts/custom.erb
2321
- - fixtures/manual-layout/config.rb
2322
- - fixtures/manual-layout/source/index.html.erb
2323
- - fixtures/manual-layout/source/layouts/custom.erb
2324
- - fixtures/markdown-app/config.rb
2325
- - fixtures/markdown-app/source/autolink.html.markdown
2326
- - fixtures/markdown-app/source/fenced_code_blocks.html.markdown
2327
- - fixtures/markdown-app/source/filter_html.html.markdown
2328
- - fixtures/markdown-app/source/footnote.html.markdown
2329
- - fixtures/markdown-app/source/hard_wrap.html.markdown
2330
- - fixtures/markdown-app/source/highlighted.html.markdown
2331
- - fixtures/markdown-app/source/images/blank.gif
2332
- - fixtures/markdown-app/source/img.html.markdown
2333
- - fixtures/markdown-app/source/indented_code_blocks.html.markdown
2334
- - fixtures/markdown-app/source/index.html.markdown
2335
- - fixtures/markdown-app/source/lax_spacing.html.markdown
2336
- - fixtures/markdown-app/source/link.html.markdown
2337
- - fixtures/markdown-app/source/mailto.html.markdown
2338
- - fixtures/markdown-app/source/no_intra_emphasis.html.markdown
2339
- - fixtures/markdown-app/source/prettify.html.markdown
2340
- - fixtures/markdown-app/source/quote.html.markdown
2341
- - fixtures/markdown-app/source/safe_links.html.markdown
2342
- - fixtures/markdown-app/source/smarty_pants.html.markdown
2343
- - fixtures/markdown-app/source/space_after_headers.html.markdown
2344
- - fixtures/markdown-app/source/strikethrough.html.markdown
2345
- - fixtures/markdown-app/source/superscript.html.markdown
2346
- - fixtures/markdown-app/source/tables.html.markdown
2347
- - fixtures/markdown-app/source/underline.html.markdown
2348
- - fixtures/markdown-app/source/with_toc_data.html.markdown
2349
- - fixtures/markdown-frontmatter-options-app/config.rb
2350
- - fixtures/markdown-frontmatter-options-app/source/smarty_pants-default.html.markdown
2351
- - fixtures/markdown-frontmatter-options-app/source/smarty_pants-off.html.markdown
2352
- - fixtures/markdown-frontmatter-options-app/source/smarty_pants-on.html.markdown
2353
- - fixtures/markdown-frontmatter-options-app/source/tables-default.html.markdown
2354
- - fixtures/markdown-frontmatter-options-app/source/tables-off.html.markdown
2355
- - fixtures/markdown-frontmatter-options-app/source/tables-on.html.markdown
2356
- - fixtures/markdown-in-haml-app/config.rb
2357
- - fixtures/markdown-in-haml-app/source/images/blank.gif
2358
- - fixtures/markdown-in-haml-app/source/link_target.html.markdown
2359
- - fixtures/markdown-in-slim-app/config.rb
2360
- - fixtures/markdown-in-slim-app/source/images/blank.gif
2361
- - fixtures/markdown-in-slim-app/source/link_target.html.markdown
2362
- - fixtures/minify-css-app/source/inline-css.html.haml
2363
- - fixtures/minify-css-app/source/inline-css.php
2364
- - fixtures/minify-css-app/source/more-css/site.css
2365
- - fixtures/minify-css-app/source/stylesheets/base/_base.scss
2366
- - fixtures/minify-css-app/source/stylesheets/base/_buttons.scss
2367
- - fixtures/minify-css-app/source/stylesheets/base/_forms.scss
2368
- - fixtures/minify-css-app/source/stylesheets/base/_grid-settings.scss
2369
- - fixtures/minify-css-app/source/stylesheets/base/_lists.scss
2370
- - fixtures/minify-css-app/source/stylesheets/base/_tables.scss
2371
- - fixtures/minify-css-app/source/stylesheets/base/_typography.scss
2372
- - fixtures/minify-css-app/source/stylesheets/base/_variables.scss
2373
- - fixtures/minify-css-app/source/stylesheets/bourbon/_bourbon-deprecated-upcoming.scss
2374
- - fixtures/minify-css-app/source/stylesheets/bourbon/_bourbon.scss
2375
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-color.scss
2376
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-radius.scss
2377
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-style.scss
2378
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-width.scss
2379
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_buttons.scss
2380
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_clearfix.scss
2381
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_ellipsis.scss
2382
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_font-stacks.scss
2383
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_hide-text.scss
2384
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_margin.scss
2385
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_padding.scss
2386
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_position.scss
2387
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_prefixer.scss
2388
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_retina-image.scss
2389
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_size.scss
2390
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_text-inputs.scss
2391
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_timing-functions.scss
2392
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_triangle.scss
2393
- - fixtures/minify-css-app/source/stylesheets/bourbon/addons/_word-wrap.scss
2394
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_animation.scss
2395
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_appearance.scss
2396
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_backface-visibility.scss
2397
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_background-image.scss
2398
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_background.scss
2399
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_border-image.scss
2400
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_calc.scss
2401
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_columns.scss
2402
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_filter.scss
2403
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_flex-box.scss
2404
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_font-face.scss
2405
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_font-feature-settings.scss
2406
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_hidpi-media-query.scss
2407
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_hyphens.scss
2408
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_image-rendering.scss
2409
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_keyframes.scss
2410
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_linear-gradient.scss
2411
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_perspective.scss
2412
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_placeholder.scss
2413
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_radial-gradient.scss
2414
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_selection.scss
2415
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_text-decoration.scss
2416
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_transform.scss
2417
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_transition.scss
2418
- - fixtures/minify-css-app/source/stylesheets/bourbon/css3/_user-select.scss
2419
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_assign-inputs.scss
2420
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_contains-falsy.scss
2421
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_contains.scss
2422
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-length.scss
2423
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-light.scss
2424
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-number.scss
2425
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-size.scss
2426
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_modular-scale.scss
2427
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_px-to-em.scss
2428
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_px-to-rem.scss
2429
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_shade.scss
2430
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_strip-units.scss
2431
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_tint.scss
2432
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_transition-property-name.scss
2433
- - fixtures/minify-css-app/source/stylesheets/bourbon/functions/_unpack.scss
2434
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_convert-units.scss
2435
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_directional-values.scss
2436
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_font-source-declaration.scss
2437
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_gradient-positions-parser.scss
2438
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-angle-parser.scss
2439
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-gradient-parser.scss
2440
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-positions-parser.scss
2441
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-side-corner-parser.scss
2442
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-arg-parser.scss
2443
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-gradient-parser.scss
2444
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-positions-parser.scss
2445
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_render-gradients.scss
2446
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_shape-size-stripper.scss
2447
- - fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_str-to-num.scss
2448
- - fixtures/minify-css-app/source/stylesheets/bourbon/settings/_asset-pipeline.scss
2449
- - fixtures/minify-css-app/source/stylesheets/bourbon/settings/_prefixer.scss
2450
- - fixtures/minify-css-app/source/stylesheets/bourbon/settings/_px-to-em.scss
2451
- - fixtures/minify-css-app/source/stylesheets/report.css
2452
- - fixtures/minify-css-app/source/stylesheets/site.css.sass
2453
- - fixtures/minify-css-app/source/stylesheets/site.xcss.sass
2454
- - fixtures/minify-js-app/config.rb
2455
- - fixtures/minify-js-app/source/inline-coffeescript.html.haml
2456
- - fixtures/minify-js-app/source/inline-js.html.haml
2457
- - fixtures/minify-js-app/source/inline-js.php
2458
- - fixtures/minify-js-app/source/javascripts/coffee_test.js.coffee
2459
- - fixtures/minify-js-app/source/javascripts/js_test.js
2460
- - fixtures/minify-js-app/source/javascripts/js_test.xjs
2461
- - fixtures/minify-js-app/source/more-js/other.js
2462
- - fixtures/missing-tilt-library-app/config.rb
2463
- - fixtures/missing-tilt-library-app/source/danger-zone/more-wiki.html.wiki
2464
- - fixtures/missing-tilt-library-app/source/safe-zone/my-wiki.html.wiki
2465
- - fixtures/missing-tilt-library-app/source/textile-source.html.textile
2466
- - fixtures/missing-tilt-library-app/source/wiki-source.html.wiki
2467
- - fixtures/more-extensionless-text-files-app/config.rb
2468
- - fixtures/more-extensionless-text-files-app/source/CNAME
2469
- - fixtures/more-extensionless-text-files-app/source/LICENSE
2470
- - fixtures/more-extensionless-text-files-app/source/README
2471
- - fixtures/more-extensionless-text-files-app/source/index.html
2472
- - fixtures/more-frontmatter-settings-app/config.rb
2473
- - fixtures/more-frontmatter-settings-app/source/alternate_layout.html.erb
2474
- - fixtures/more-frontmatter-settings-app/source/ignored.html.erb
2475
- - fixtures/more-frontmatter-settings-app/source/layouts/alternate.erb
2476
- - fixtures/more-frontmatter-settings-app/source/no_index.html.erb
2477
- - fixtures/more-ignore-app/source/about.html.erb
2478
- - fixtures/more-ignore-app/source/images/icon/messages.png
2479
- - fixtures/more-ignore-app/source/images/pic.png
2480
- - fixtures/more-ignore-app/source/images/portrait.jpg
2481
- - fixtures/more-ignore-app/source/index.html.erb
2482
- - fixtures/more-ignore-app/source/plain.html
2483
- - fixtures/more-ignore-app/source/reports/another.html
2484
- - fixtures/more-ignore-app/source/reports/index.html
2485
- - fixtures/more-markdown-app/source/layouts/layout.erb
2486
- - fixtures/more-markdown-app/source/with_layout.html.markdown
2487
- - fixtures/more-markdown-app/source/with_layout_erb.html.markdown.erb
2488
- - fixtures/more-preview-app/config.rb
2489
- - fixtures/more-preview-app/source/content.html.erb
2490
- - fixtures/more-preview-app/source/layout.erb
2491
- - fixtures/more-preview-app/source/stylesheets/_partial.sass
2492
- - fixtures/more-preview-app/source/stylesheets/_partial2.css.sass
2493
- - fixtures/more-preview-app/source/stylesheets/main.css.sass
2494
- - fixtures/more-preview-app/source/stylesheets/main2.css.sass
2495
- - fixtures/more-preview-app/source/stylesheets/plain.css.sass
2496
- - fixtures/more-traversal-app/config.rb
2497
- - fixtures/more-traversal-app/source/directory-indexed.html.erb
2498
- - fixtures/more-traversal-app/source/directory-indexed/sibling.html.erb
2499
- - fixtures/more-traversal-app/source/directory-indexed/sibling2.html.erb
2500
- - fixtures/more-traversal-app/source/directory-indexed/sub2/index.html.erb
2501
- - fixtures/more-traversal-app/source/directory-indexed/sub3/deep.html.erb
2502
- - fixtures/more-traversal-app/source/index.html.erb
2503
- - fixtures/more-traversal-app/source/layout.erb
2504
- - fixtures/more-traversal-app/source/proxied.html.erb
2505
- - fixtures/more-traversal-app/source/root.html.erb
2506
- - fixtures/more-traversal-app/source/sub/index.html.erb
2507
- - fixtures/more-traversal-app/source/sub/sibling.html.erb
2508
- - fixtures/more-traversal-app/source/sub/sibling2.html.erb
2509
- - fixtures/more-traversal-app/source/sub/sub2/index.html.erb
2510
- - fixtures/more-traversal-app/source/sub/sub3/deep.html.erb
2511
- - fixtures/multiple-data-sources-app/config.rb
2512
- - fixtures/multiple-data-sources-app/data/data.yml
2513
- - fixtures/multiple-data-sources-app/data/two.yml
2514
- - fixtures/multiple-data-sources-app/data0/one.yml
2515
- - fixtures/multiple-data-sources-app/data1/data1.yml
2516
- - fixtures/multiple-data-sources-app/data1/one.yml
2517
- - fixtures/multiple-data-sources-app/data2/data2.yml
2518
- - fixtures/multiple-data-sources-app/data2/two.yml
2519
- - fixtures/multiple-data-sources-app/source/index.html.erb
2520
- - fixtures/multiple-layouts/config.rb
2521
- - fixtures/multiple-layouts/source/index.html.erb
2522
- - fixtures/multiple-layouts/source/layout.erb
2523
- - fixtures/multiple-layouts/source/layout.str
2524
- - fixtures/multiple-sources-app/config.rb
2525
- - fixtures/multiple-sources-app/source/index.html.erb
2526
- - fixtures/multiple-sources-app/source/override-in-two.html.erb
2527
- - fixtures/multiple-sources-app/source0/override-in-one.html.erb
2528
- - fixtures/multiple-sources-app/source1/index1.html.erb
2529
- - fixtures/multiple-sources-app/source1/override-in-one.html.erb
2530
- - fixtures/multiple-sources-app/source2/index2.html.erb
2531
- - fixtures/multiple-sources-app/source2/override-in-two.html.erb
2532
- - fixtures/multiple-sources-with-duplicate-file-names-app/config.rb
2533
- - fixtures/multiple-sources-with-duplicate-file-names-app/source/index.html.erb
2534
- - fixtures/multiple-sources-with-duplicate-file-names-app/source2/index.html.erb
2535
- - fixtures/nested-data-app/config.rb
2536
- - fixtures/nested-data-app/data/examples/deeper/stuff.yml
2537
- - fixtures/nested-data-app/data/examples/more.yml
2538
- - fixtures/nested-data-app/data/examples/test.yml
2539
- - fixtures/nested-data-app/data/examples/withcontent.yaml
2540
- - fixtures/nested-data-app/source/extracontent.html.haml.erb
2541
- - fixtures/nested-data-app/source/test.html.erb
2542
- - fixtures/nested-layout-app/config.rb
2543
- - fixtures/nested-layout-app/source/another.html.markdown
2544
- - fixtures/nested-layout-app/source/data-one.html.erb
2545
- - fixtures/nested-layout-app/source/data-two.html.erb
2546
- - fixtures/nested-layout-app/source/haml-test.html.markdown
2547
- - fixtures/nested-layout-app/source/index.html.erb
2548
- - fixtures/nested-layout-app/source/layouts/inner.erb
2549
- - fixtures/nested-layout-app/source/layouts/inner_haml.haml
2550
- - fixtures/nested-layout-app/source/layouts/inner_slim.slim
2551
- - fixtures/nested-layout-app/source/layouts/master.erb
2552
- - fixtures/nested-layout-app/source/layouts/master_haml.haml
2553
- - fixtures/nested-layout-app/source/layouts/master_slim.slim
2554
- - fixtures/nested-layout-app/source/layouts/outer.erb
2555
- - fixtures/nested-layout-app/source/layouts/outer_haml.haml
2556
- - fixtures/nested-layout-app/source/layouts/outer_slim.slim
2557
- - fixtures/nested-layout-app/source/slim-test.html.markdown
2558
- - fixtures/no-layout/config.rb
2559
- - fixtures/no-layout/source/index.html.erb
2560
- - fixtures/padrino-helpers-app/config.rb
2561
- - fixtures/padrino-helpers-app/source/former_padrino_test.html.erb
2562
- - fixtures/page-classes-app/config.rb
2563
- - fixtures/page-classes-app/source/1-folder/1-inside-with-numeric.html.erb
2564
- - fixtures/page-classes-app/source/1-starts-with-numeric.html.erb
2565
- - fixtures/page-classes-app/source/2-starts-with-numeric-custom.html.erb
2566
- - fixtures/page-classes-app/source/page-classes.html.erb
2567
- - fixtures/page-classes-app/source/sub1/page-classes.html.erb
2568
- - fixtures/page-classes-app/source/sub1/sub2/page-classes.html.erb
2569
- - fixtures/page-helper-layout-block-app/config.rb
2570
- - fixtures/page-helper-layout-block-app/source/index.html.erb
2571
- - fixtures/page-helper-layout-block-app/source/layouts/alt.erb
2572
- - fixtures/page-helper-layout-block-app/source/layouts/layout.erb
2573
- - fixtures/page-helper-layout-block-app/source/path/child.html.erb
2574
- - fixtures/page-helper-layout-block-app/source/path/index.html.erb
2575
- - fixtures/page-id-app/config-proc.rb
2576
- - fixtures/page-id-app/config.rb
2577
- - fixtures/page-id-app/source/feed.xml.erb
2578
- - fixtures/page-id-app/source/fm.html.erb
2579
- - fixtures/page-id-app/source/folder/foldern.html.erb
2580
- - fixtures/page-id-app/source/fourty-two.html.erb
2581
- - fixtures/page-id-app/source/implicit.html.erb
2582
- - fixtures/page-id-app/source/index.html.erb
2583
- - fixtures/page-id-app/source/overwrites/from-default.html.erb
2584
- - fixtures/page-id-app/source/overwrites/from-frontmatter.html.erb
2585
- - fixtures/paginate-app/config.rb
2586
- - fixtures/paginate-app/source/archive/2011/index.html.erb
2587
- - fixtures/paginate-app/source/blog/2011-01-01-test-article.html.markdown
2588
- - fixtures/paginate-app/source/blog/2011-01-02-test-article.html.markdown
2589
- - fixtures/paginate-app/source/blog/2011-01-03-test-article.html.markdown
2590
- - fixtures/paginate-app/source/blog/2011-01-04-test-article.html.markdown
2591
- - fixtures/paginate-app/source/blog/2011-01-05-test-article.html.markdown
2592
- - fixtures/paginate-app/source/blog/2011-02-01-test-article.html.markdown
2593
- - fixtures/paginate-app/source/blog/2011-02-02-test-article.html.markdown
2594
- - fixtures/paginate-app/source/index.html.erb
2595
- - fixtures/paginate-app/source/tag.html.erb
2596
- - fixtures/partial-chained_templates-app/config.rb
2597
- - fixtures/partials-app/config.rb
2598
- - fixtures/partials-app/source/_block.erb
2599
- - fixtures/partials-app/source/_code_snippet.html
2600
- - fixtures/partials-app/source/_locals.erb
2601
- - fixtures/partials-app/source/_main.erb
2602
- - fixtures/partials-app/source/_main.str
2603
- - fixtures/partials-app/source/block.html.erb
2604
- - fixtures/partials-app/source/images/tiger.svg
2605
- - fixtures/partials-app/source/index.html.erb
2606
- - fixtures/partials-app/source/index_missing.html.erb
2607
- - fixtures/partials-app/source/locals.html.erb
2608
- - fixtures/partials-app/source/second.html.str
2609
- - fixtures/partials-app/source/shared/_footer.erb
2610
- - fixtures/partials-app/source/shared/_header.erb
2611
- - fixtures/partials-app/source/shared/_snippet.html.erb
2612
- - fixtures/partials-app/source/static_underscore.html.erb
2613
- - fixtures/partials-app/source/sub/_local.erb
2614
- - fixtures/partials-app/source/sub/index.html.erb
2615
- - fixtures/partials-app/source/svg.html.erb
2616
- - fixtures/partials-app/source/using_snippet.html.erb
2617
- - fixtures/passthrough-app/source/.htaccess
2618
- - fixtures/passthrough-app/source/inline-coffeescript.html.haml
2619
- - fixtures/passthrough-app/source/inline-css.html.haml
2620
- - fixtures/passthrough-app/source/inline-js.html.haml
2621
- - fixtures/passthrough-app/source/javascripts/coffee_test.js.coffee
2622
- - fixtures/passthrough-app/source/javascripts/js_test.js
2623
- - fixtures/passthrough-app/source/stylesheets/site.css.sass
2624
- - fixtures/preview-app/config.rb
2625
- - fixtures/preview-app/source/content.html.erb
2626
- - fixtures/preview-app/source/layout.erb
2627
- - fixtures/proxy-pages-app/config.rb
2628
- - fixtures/proxy-pages-app/source/real.html
2629
- - fixtures/proxy-pages-app/source/real/index.html.erb
2630
- - fixtures/proxy-pages-app/source/should_be_ignored3.html
2631
- - fixtures/proxy-pages-app/source/should_be_ignored6.html
2632
- - fixtures/proxy-pages-app/source/should_be_ignored7.html
2633
- - fixtures/proxy-pages-app/source/should_be_ignored8.html
2634
- - fixtures/related-files-app/config.rb
2635
- - fixtures/related-files-app/source/index.html.erb
2636
- - fixtures/related-files-app/source/partials/_test.erb
2637
- - fixtures/related-files-app/source/partials/_test2.haml
2638
- - fixtures/related-files-app/source/stylesheets/_include3.sass
2639
- - fixtures/related-files-app/source/stylesheets/_include4.scss
2640
- - fixtures/related-files-app/source/stylesheets/include1.css
2641
- - fixtures/related-files-app/source/stylesheets/include2.css.scss
2642
- - fixtures/related-files-app/source/stylesheets/site.css.scss
2643
- - fixtures/relative-app/config.rb
2644
- - fixtures/relative-app/source/images/blank.gif
2645
- - fixtures/relative-app/source/stylesheets/relative_assets.css.sass
2646
- - fixtures/relative-assets-app/config.rb
2647
- - fixtures/relative-assets-app/source/absolute_image_relative_css.html.erb
2648
- - fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.eot
2649
- - fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.svg
2650
- - fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.ttf
2651
- - fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.woff
2652
- - fixtures/relative-assets-app/source/images/blank.gif
2653
- - fixtures/relative-assets-app/source/images/blank2.gif
2654
- - fixtures/relative-assets-app/source/img/blank.gif
2655
- - fixtures/relative-assets-app/source/javascripts/app.js
2656
- - fixtures/relative-assets-app/source/javascripts/application.js
2657
- - fixtures/relative-assets-app/source/relative_image.html.erb
2658
- - fixtures/relative-assets-app/source/relative_image_absolute_css.html.erb
2659
- - fixtures/relative-assets-app/source/stylesheets/fonts.css
2660
- - fixtures/relative-assets-app/source/stylesheets/fonts2.css.scss
2661
- - fixtures/relative-assets-app/source/stylesheets/relative_assets.css.sass
2662
- - fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset-sass.sass
2663
- - fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset.scss
2664
- - fixtures/sass-assets-path-app/config.rb
2665
- - fixtures/sass-assets-path-app/my-vendor/stylesheets/_partial.sass
2666
- - fixtures/sass-assets-path-app/source/stylesheets/plain.css.sass
2667
- - fixtures/sass-in-slim-app/config.rb
2668
- - fixtures/scss-app/config.rb
2669
- - fixtures/scss-app/source/stylesheets/error.css.sass
2670
- - fixtures/scss-app/source/stylesheets/layout.css.sass
2671
- - fixtures/scss-app/source/stylesheets/site_scss.css.scss
2672
- - fixtures/sinatra-app/config.rb
2673
- - fixtures/sinatra-app/source/index.html.erb
2674
- - fixtures/slim-content-for-app/config.rb
2675
- - fixtures/slim-content-for-app/source/index.html.slim
2676
- - fixtures/slim-content-for-app/source/layouts/layout.slim
2677
- - fixtures/strip-url-app/config.rb
2678
- - fixtures/strip-url-app/source/index.html.erb
2679
- - fixtures/strip-url-app/source/other.html.erb
2680
- - fixtures/strip-url-app/source/subdir/index.html.erb
2681
- - fixtures/stylus-preview-app/config.rb
2682
- - fixtures/stylus-preview-app/source/content.html.erb
2683
- - fixtures/stylus-preview-app/source/stylesheets/_partial.styl
2684
- - fixtures/stylus-preview-app/source/stylesheets/_partial2.css.styl
2685
- - fixtures/stylus-preview-app/source/stylesheets/main.css.styl
2686
- - fixtures/stylus-preview-app/source/stylesheets/main2.css.styl
2687
- - fixtures/stylus-preview-app/source/stylesheets/plain.css.styl
2688
- - fixtures/traversal-app/config.rb
2689
- - fixtures/traversal-app/source/.htaccess
2690
- - fixtures/traversal-app/source/directory-indexed.html.erb
2691
- - fixtures/traversal-app/source/directory-indexed/sibling.html.erb
2692
- - fixtures/traversal-app/source/directory-indexed/sibling2.html.erb
2693
- - fixtures/traversal-app/source/directory-indexed/sub2/index.html.erb
2694
- - fixtures/traversal-app/source/directory-indexed/sub3/deep.html.erb
2695
- - fixtures/traversal-app/source/index.html.erb
2696
- - fixtures/traversal-app/source/layout.erb
2697
- - fixtures/traversal-app/source/proxied.html.erb
2698
- - fixtures/traversal-app/source/root.html.erb
2699
- - fixtures/traversal-app/source/sub/index.html.erb
2700
- - fixtures/traversal-app/source/sub/sibling.html.erb
2701
- - fixtures/traversal-app/source/sub/sibling2.html.erb
2702
- - fixtures/traversal-app/source/sub/sub2/index.html.erb
2703
- - fixtures/traversal-app/source/sub/sub3/deep.html.erb
2704
- - fixtures/v4-extension-callbacks/config.rb
2705
- - fixtures/v4-extension-callbacks/source/index.html.erb
2706
- - fixtures/wildcard-app/config.rb
2707
- - fixtures/wildcard-app/source/admin/index.html.erb
2708
- - fixtures/wildcard-app/source/admin/page.html.erb
2709
- - fixtures/wildcard-app/source/index.html.erb
2710
- - fixtures/wildcard-app/source/layouts/admin.erb
2711
- - fixtures/wildcard-app/source/layouts/layout.erb
2712
- - fixtures/wildcard-directory-index-app/config.rb
2713
- - fixtures/wildcard-directory-index-app/source/admin/index.html.erb
2714
- - fixtures/wildcard-directory-index-app/source/admin/page.html.erb
2715
- - fixtures/wildcard-directory-index-app/source/index.html.erb
2716
- - fixtures/wildcard-directory-index-app/source/layouts/admin.erb
2717
- - fixtures/wildcard-directory-index-app/source/layouts/layout.erb
516
+ test_files: []