middleman-core-with-external-sources-watch-fix 4.1.0

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