middleman-core 4.3.11 → 5.0.0.rc.1

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