middleman-core-cj 3.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1046) hide show
  1. checksums.yaml +7 -0
  2. data/.gemtest +0 -0
  3. data/.simplecov +7 -0
  4. data/.yardopts +10 -0
  5. data/Rakefile +7 -0
  6. data/bin/middleman +18 -0
  7. data/features/3rd_party_cli.feature +15 -0
  8. data/features/asciidoc.feature +155 -0
  9. data/features/asset_hash.feature +149 -0
  10. data/features/asset_host.feature +56 -0
  11. data/features/auto_layout.feature +36 -0
  12. data/features/automatic_alt_tags.feature +8 -0
  13. data/features/automatic_directory_matcher.feature +32 -0
  14. data/features/automatic_image_sizes.feature +16 -0
  15. data/features/builder.feature +51 -0
  16. data/features/cache_buster.feature +42 -0
  17. data/features/capture_html.feature +18 -0
  18. data/features/chained_templates.feature +19 -0
  19. data/features/clean_build.feature +44 -0
  20. data/features/cli_extension.feature +14 -0
  21. data/features/cli_init.feature +100 -0
  22. data/features/coffee-script.feature +22 -0
  23. data/features/compass-sprites.feature +6 -0
  24. data/features/content_for.feature +16 -0
  25. data/features/content_type.feature +43 -0
  26. data/features/current_page_request_path_backwards.feature +6 -0
  27. data/features/custom-source.feature +7 -0
  28. data/features/custom_layout_engines.feature +8 -0
  29. data/features/custom_layouts.feature +64 -0
  30. data/features/data.feature +53 -0
  31. data/features/directory_index.feature +82 -0
  32. data/features/dynamic_pages.feature +133 -0
  33. data/features/extensionless_text_files.feature +24 -0
  34. data/features/feature_params.feature +6 -0
  35. data/features/fonts.feature +15 -0
  36. data/features/former_padrino_helpers.feature +27 -0
  37. data/features/front-matter-neighbor.feature +151 -0
  38. data/features/front-matter.feature +93 -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 +167 -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_partials.feature +23 -0
  54. data/features/i18n_preview.feature +252 -0
  55. data/features/ignore.feature +121 -0
  56. data/features/ignore_already_minified.feature +47 -0
  57. data/features/implied_extensions.feature +69 -0
  58. data/features/instance_vars.feature +9 -0
  59. data/features/layouts_dir.feature +38 -0
  60. data/features/liquid.feature +11 -0
  61. data/features/markdown.feature +23 -0
  62. data/features/markdown_kramdown.feature +38 -0
  63. data/features/markdown_kramdown_in_haml.feature +41 -0
  64. data/features/markdown_redcarpet.feature +168 -0
  65. data/features/markdown_redcarpet_in_haml.feature +42 -0
  66. data/features/minify_css.feature +127 -0
  67. data/features/minify_javascript.feature +225 -0
  68. data/features/missing-tilt-lib.feature +20 -0
  69. data/features/more-clean_build.feature +14 -0
  70. data/features/more-extensionless_text_files.feature +28 -0
  71. data/features/more-frontmatter_page_settings.feature +42 -0
  72. data/features/more-ignore.feature +62 -0
  73. data/features/more-implied_extensions.feature +44 -0
  74. data/features/more-instance_vars.feature +18 -0
  75. data/features/more-sitemap_traversal.feature +83 -0
  76. data/features/more-wildcard_page_helper.feature +10 -0
  77. data/features/mount_rack.feature +67 -0
  78. data/features/nested_layouts.feature +55 -0
  79. data/features/partials.feature +57 -0
  80. data/features/partials_dir.feature +30 -0
  81. data/features/preview_changes.feature +29 -0
  82. data/features/proxy_pages.feature +94 -0
  83. data/features/queryable.feature +35 -0
  84. data/features/redirects.feature +60 -0
  85. data/features/relative_assets.feature +147 -0
  86. data/features/request_params.feature +6 -0
  87. data/features/sass-assets-paths.feature +11 -0
  88. data/features/sass_partials.feature +54 -0
  89. data/features/scss-support.feature +12 -0
  90. data/features/sitemap_traversal.feature +83 -0
  91. data/features/slim.feature +77 -0
  92. data/features/static_server.feature +6 -0
  93. data/features/step_definitions/page_layout_steps.rb +15 -0
  94. data/features/step_definitions/queryable_steps.rb +135 -0
  95. data/features/strip_url.feature +40 -0
  96. data/features/stylus.feature +55 -0
  97. data/features/support/env.rb +12 -0
  98. data/features/tilde_directories.feature +14 -0
  99. data/features/twitter-bootstrap-compile.feature +6 -0
  100. data/features/unicode_filecontents.feature +13 -0
  101. data/features/unicode_filenames.feature +36 -0
  102. data/features/v3_extensions.feature +20 -0
  103. data/features/v4_extension_callbacks.feature +8 -0
  104. data/features/wildcard_page_helper.feature +10 -0
  105. data/fixtures/asciidoc-app/config.rb +0 -0
  106. data/fixtures/asciidoc-app/source/_include.adoc +1 -0
  107. data/fixtures/asciidoc-app/source/code.adoc +3 -0
  108. data/fixtures/asciidoc-app/source/custom-attribute.adoc +3 -0
  109. data/fixtures/asciidoc-app/source/gallery.adoc +1 -0
  110. data/fixtures/asciidoc-app/source/hello-no-layout.adoc +2 -0
  111. data/fixtures/asciidoc-app/source/hello-with-front-matter.adoc +5 -0
  112. data/fixtures/asciidoc-app/source/hello-with-layout.adoc +2 -0
  113. data/fixtures/asciidoc-app/source/hello-with-title.adoc +4 -0
  114. data/fixtures/asciidoc-app/source/hello.adoc +4 -0
  115. data/fixtures/asciidoc-app/source/images/tiger.gif +0 -0
  116. data/fixtures/asciidoc-app/source/layouts/default.erb +9 -0
  117. data/fixtures/asciidoc-app/source/master.adoc +3 -0
  118. data/fixtures/asset-hash-app/config.rb +8 -0
  119. data/fixtures/asset-hash-app/lib/middleware.rb +16 -0
  120. data/fixtures/asset-hash-app/source/apple-touch-icon.png +0 -0
  121. data/fixtures/asset-hash-app/source/favicon.ico +0 -0
  122. data/fixtures/asset-hash-app/source/images/100px.gif +0 -0
  123. data/fixtures/asset-hash-app/source/images/100px.jpg +0 -0
  124. data/fixtures/asset-hash-app/source/images/100px.png +0 -0
  125. data/fixtures/asset-hash-app/source/index.html.erb +311 -0
  126. data/fixtures/asset-hash-app/source/javascripts/application.js +8 -0
  127. data/fixtures/asset-hash-app/source/layout.erb +18 -0
  128. data/fixtures/asset-hash-app/source/other.html.erb +2 -0
  129. data/fixtures/asset-hash-app/source/partials.html.erb +1 -0
  130. data/fixtures/asset-hash-app/source/stylesheets/_partial.sass +2 -0
  131. data/fixtures/asset-hash-app/source/stylesheets/site.css.scss +4 -0
  132. data/fixtures/asset-hash-app/source/stylesheets/uses_partials.css.sass +4 -0
  133. data/fixtures/asset-hash-app/source/subdir/index.html.erb +308 -0
  134. data/fixtures/asset-hash-host-app/config.rb +6 -0
  135. data/fixtures/asset-hash-host-app/source/images/100px.gif +0 -0
  136. data/fixtures/asset-hash-host-app/source/images/100px.jpg +0 -0
  137. data/fixtures/asset-hash-host-app/source/images/100px.png +0 -0
  138. data/fixtures/asset-hash-host-app/source/index.html.erb +6 -0
  139. data/fixtures/asset-hash-host-app/source/layout.erb +17 -0
  140. data/fixtures/asset-hash-host-app/source/other.html.erb +2 -0
  141. data/fixtures/asset-hash-host-app/source/stylesheets/fragment.css.scss +4 -0
  142. data/fixtures/asset-hash-host-app/source/stylesheets/site.css.scss +4 -0
  143. data/fixtures/asset-hash-host-app/source/subdir/index.html.erb +6 -0
  144. data/fixtures/asset-host-app/config.rb +0 -0
  145. data/fixtures/asset-host-app/source/.htaccess +1 -0
  146. data/fixtures/asset-host-app/source/asset_host.html.erb +1 -0
  147. data/fixtures/asset-host-app/source/images/blank.gif +0 -0
  148. data/fixtures/asset-host-app/source/stylesheets/asset_host.css.sass +3 -0
  149. data/fixtures/auto-css-app/config.rb +11 -0
  150. data/fixtures/auto-css-app/source/auto-css.html.erb +1 -0
  151. data/fixtures/auto-css-app/source/auto-css/auto-css.html.erb +1 -0
  152. data/fixtures/auto-css-app/source/auto-css/index.html.erb +1 -0
  153. data/fixtures/auto-css-app/source/auto-css/sub/auto-css.html.erb +1 -0
  154. data/fixtures/auto-css-app/source/stylesheets/auto-css.css +3 -0
  155. data/fixtures/auto-css-app/source/stylesheets/auto-css/auto-css.css +3 -0
  156. data/fixtures/auto-css-app/source/stylesheets/auto-css/index.css +0 -0
  157. data/fixtures/auto-css-app/source/stylesheets/auto-css/sub/auto-css.css +3 -0
  158. data/fixtures/auto-js-app/config.rb +11 -0
  159. data/fixtures/auto-js-app/source/auto-js.html.erb +1 -0
  160. data/fixtures/auto-js-app/source/auto-js/auto-js.html.erb +1 -0
  161. data/fixtures/auto-js-app/source/auto-js/index.html.erb +1 -0
  162. data/fixtures/auto-js-app/source/auto-js/sub/auto-js.html.erb +1 -0
  163. data/fixtures/auto-js-app/source/javascripts/auto-js.js +1 -0
  164. data/fixtures/auto-js-app/source/javascripts/auto-js/auto-js.js +1 -0
  165. data/fixtures/auto-js-app/source/javascripts/auto-js/index.js +1 -0
  166. data/fixtures/auto-js-app/source/javascripts/auto-js/sub/auto-js.js +1 -0
  167. data/fixtures/auto-js-directory-index-app/config.rb +1 -0
  168. data/fixtures/auto-js-directory-index-app/source/auto-js.html.erb +1 -0
  169. data/fixtures/auto-js-directory-index-app/source/javascripts/auto-js.js +1 -0
  170. data/fixtures/automatic-alt-tags-app/config.rb +0 -0
  171. data/fixtures/automatic-alt-tags-app/source/auto-image-sizes.html.erb +1 -0
  172. data/fixtures/automatic-alt-tags-app/source/images/blank.gif +0 -0
  173. data/fixtures/automatic-directory-matcher-app/config.rb +1 -0
  174. data/fixtures/automatic-directory-matcher-app/source/root-plain.html +1 -0
  175. data/fixtures/automatic-directory-matcher-app/source/root.html.erb +1 -0
  176. data/fixtures/automatic-directory-matcher-app/source/sub--sub--sub-plain.html +1 -0
  177. data/fixtures/automatic-directory-matcher-app/source/sub--sub--sub.html.erb +1 -0
  178. data/fixtures/automatic-directory-matcher-app/source/sub--sub-plain.html +1 -0
  179. data/fixtures/automatic-directory-matcher-app/source/sub--sub.html.erb +1 -0
  180. data/fixtures/automatic-image-size-app/config.rb +0 -0
  181. data/fixtures/automatic-image-size-app/source/auto-image-sizes.html.erb +1 -0
  182. data/fixtures/automatic-image-size-app/source/images/blank.gif +0 -0
  183. data/fixtures/basic-data-app/config.rb +4 -0
  184. data/fixtures/basic-data-app/data/test.yml +4 -0
  185. data/fixtures/basic-data-app/data/test2.json +4 -0
  186. data/fixtures/basic-data-app/source/data.html.erb +5 -0
  187. data/fixtures/basic-data-app/source/data3.html.erb +5 -0
  188. data/fixtures/build-with-errors-app/config.rb +1 -0
  189. data/fixtures/build-with-errors-app/source/index.html.erb +1 -0
  190. data/fixtures/cache-buster-app/config.rb +0 -0
  191. data/fixtures/cache-buster-app/source/cache-buster.html.erb +3 -0
  192. data/fixtures/cache-buster-app/source/images/blank.gif +0 -0
  193. data/fixtures/cache-buster-app/source/stylesheets/relative_assets.css.sass +3 -0
  194. data/fixtures/cache-buster-app/source/stylesheets/site.css.sass +1 -0
  195. data/fixtures/capture-html-app/config.rb +7 -0
  196. data/fixtures/capture-html-app/source/capture_html_erb.html.erb +5 -0
  197. data/fixtures/capture-html-app/source/capture_html_haml.html.haml +4 -0
  198. data/fixtures/capture-html-app/source/capture_html_slim.html.slim +4 -0
  199. data/fixtures/capture-html-app/source/layouts/capture_html.erb +4 -0
  200. data/fixtures/chained-app/config.rb +0 -0
  201. data/fixtures/chained-app/data/article.yml +2 -0
  202. data/fixtures/chained-app/source/index.html.str.erb +8 -0
  203. data/fixtures/clean-app/config-complications.rb +11 -0
  204. data/fixtures/clean-app/config-empty.rb +0 -0
  205. data/fixtures/clean-app/config.rb +11 -0
  206. data/fixtures/clean-app/source/index.html.erb +1 -0
  207. data/fixtures/clean-app/source/layout.erb +9 -0
  208. data/fixtures/clean-app/source/layouts/custom.erb +8 -0
  209. data/fixtures/clean-app/source/real.html +1 -0
  210. data/fixtures/clean-app/source/real/index.html.erb +5 -0
  211. data/fixtures/clean-app/source/should_be_ignored.html +1 -0
  212. data/fixtures/clean-app/source/should_be_ignored2.html +1 -0
  213. data/fixtures/clean-app/source/should_be_ignored3.html +1 -0
  214. data/fixtures/clean-app/source/static.html +1 -0
  215. data/fixtures/clean-dir-app/config.rb +2 -0
  216. data/fixtures/clean-dir-app/source/about.html +1 -0
  217. data/fixtures/clean-nested-app/config.rb +1 -0
  218. data/fixtures/clean-nested-app/source/about.html +1 -0
  219. data/fixtures/clean-nested-app/source/nested/nested.html +1 -0
  220. data/fixtures/coffeescript-app/config.rb +0 -0
  221. data/fixtures/coffeescript-app/source/inline-coffeescript.html.haml +3 -0
  222. data/fixtures/coffeescript-app/source/javascripts/broken-coffee.js.coffee +3 -0
  223. data/fixtures/coffeescript-app/source/javascripts/coffee_test.js.coffee +3 -0
  224. data/fixtures/compass-sprites-app/config.rb +0 -0
  225. data/fixtures/compass-sprites-app/source/images/icon/arrow_down.png +0 -0
  226. data/fixtures/compass-sprites-app/source/images/icon/arrow_left.png +0 -0
  227. data/fixtures/compass-sprites-app/source/images/icon/arrow_right.png +0 -0
  228. data/fixtures/compass-sprites-app/source/images/icon/arrow_up.png +0 -0
  229. data/fixtures/compass-sprites-app/source/stylesheets/site.css.scss +3 -0
  230. data/fixtures/content-for-app/config.rb +7 -0
  231. data/fixtures/content-for-app/source/content_for_erb.html.erb +5 -0
  232. data/fixtures/content-for-app/source/content_for_haml.html.haml +4 -0
  233. data/fixtures/content-for-app/source/content_for_slim.html.slim +5 -0
  234. data/fixtures/content-for-app/source/layouts/content_for.erb +4 -0
  235. data/fixtures/content-type-app/config.rb +1 -0
  236. data/fixtures/content-type-app/source/.htaccess +1 -0
  237. data/fixtures/content-type-app/source/README +1 -0
  238. data/fixtures/content-type-app/source/images/blank.gif +0 -0
  239. data/fixtures/content-type-app/source/index.html +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/current-page-app/config.rb +3 -0
  246. data/fixtures/current-page-app/source/request-path.html.erb +1 -0
  247. data/fixtures/custom-layout-app/config.rb +1 -0
  248. data/fixtures/custom-layout-app/source/index.html.erb +1 -0
  249. data/fixtures/custom-layout-app/source/layout.str +9 -0
  250. data/fixtures/custom-layout-app2/config.rb +0 -0
  251. data/fixtures/custom-layout-app2/source/custom-layout-dir/index.html.erb +1 -0
  252. data/fixtures/custom-layout-app2/source/custom-layout.html.erb +1 -0
  253. data/fixtures/custom-layout-app2/source/layouts/custom.erb +8 -0
  254. data/fixtures/custom-src-app/config.rb +1 -0
  255. data/fixtures/custom-src-app/src/index.html +0 -0
  256. data/fixtures/custom-src-app/src/layouts/layout.html.erb +1 -0
  257. data/fixtures/data-app/config.rb +3 -0
  258. data/fixtures/data-app/data/pages.yml +6 -0
  259. data/fixtures/data-app/source/index.html.erb +1 -0
  260. data/fixtures/data-app/source/layout.erb +5 -0
  261. data/fixtures/default-partials-dir-app/source/_partial.html.erb +1 -0
  262. data/fixtures/default-partials-dir-app/source/index.html.erb +2 -0
  263. data/fixtures/different-engine-layout/config.rb +0 -0
  264. data/fixtures/different-engine-layout/source/index.haml +1 -0
  265. data/fixtures/different-engine-layout/source/index.html.str +1 -0
  266. data/fixtures/different-engine-layout/source/layout.erb +9 -0
  267. data/fixtures/different-engine-partial/config.rb +0 -0
  268. data/fixtures/different-engine-partial/source/index.html.erb +1 -0
  269. data/fixtures/different-engine-partial/source/layouts/layout.erb +7 -0
  270. data/fixtures/different-engine-partial/source/shared/_footer.str +1 -0
  271. data/fixtures/different-engine-partial/source/shared/_header.erb +1 -0
  272. data/fixtures/dynamic-pages-app/config.rb +52 -0
  273. data/fixtures/dynamic-pages-app/source/real.html +1 -0
  274. data/fixtures/dynamic-pages-app/source/real/index.html.erb +9 -0
  275. data/fixtures/dynamic-pages-app/source/should_be_ignored.html +1 -0
  276. data/fixtures/dynamic-pages-app/source/should_be_ignored2.html +1 -0
  277. data/fixtures/dynamic-pages-app/source/should_be_ignored3.html +1 -0
  278. data/fixtures/dynamic-pages-app/source/should_be_ignored4.html +1 -0
  279. data/fixtures/dynamic-pages-app/source/should_be_ignored5.html +1 -0
  280. data/fixtures/dynamic-pages-app/source/should_be_ignored6.html +1 -0
  281. data/fixtures/dynamic-pages-app/source/should_be_ignored7.html +1 -0
  282. data/fixtures/dynamic-pages-app/source/should_be_ignored8.html +1 -0
  283. data/fixtures/empty-app/not-config.rb +0 -0
  284. data/fixtures/engine-matching-layout/config.rb +0 -0
  285. data/fixtures/engine-matching-layout/source/index.html.erb +1 -0
  286. data/fixtures/engine-matching-layout/source/layout.erb +9 -0
  287. data/fixtures/extensionless-text-files-app/config.rb +0 -0
  288. data/fixtures/extensionless-text-files-app/source/CNAME +1 -0
  289. data/fixtures/extensionless-text-files-app/source/LICENSE +1 -0
  290. data/fixtures/extensionless-text-files-app/source/README +1 -0
  291. data/fixtures/extensionless-text-files-app/source/index.html +1 -0
  292. data/fixtures/external-helpers/config.rb +4 -0
  293. data/fixtures/external-helpers/helpers/derp.rb +3 -0
  294. data/fixtures/external-helpers/helpers/four_helpers.rb +3 -0
  295. data/fixtures/external-helpers/helpers/one_helper.rb +3 -0
  296. data/fixtures/external-helpers/helpers/yet_another_thingy.rb +3 -0
  297. data/fixtures/external-helpers/lib/hello_helper.rb +5 -0
  298. data/fixtures/external-helpers/source/automatic.html.erb +1 -0
  299. data/fixtures/external-helpers/source/index.html.erb +1 -0
  300. data/fixtures/feature-params-app/config.rb +12 -0
  301. data/fixtures/feature-params-app/source/index.html.erb +3 -0
  302. data/fixtures/fonts-app/config.rb +0 -0
  303. data/fixtures/fonts-app/source/fonts/StMarie-Thin.otf +0 -0
  304. data/fixtures/fonts-app/source/fonts/blank/blank.otf +0 -0
  305. data/fixtures/fonts-app/source/stylesheets/fonts.css.sass +5 -0
  306. data/fixtures/frontmatter-app/config.rb +0 -0
  307. data/fixtures/frontmatter-app/source/front-matter-2.php.erb +7 -0
  308. data/fixtures/frontmatter-app/source/front-matter-auto.erb +6 -0
  309. data/fixtures/frontmatter-app/source/front-matter-change.html.erb +5 -0
  310. data/fixtures/frontmatter-app/source/front-matter-encoding.html.erb +7 -0
  311. data/fixtures/frontmatter-app/source/front-matter-line-2.html.erb +7 -0
  312. data/fixtures/frontmatter-app/source/json-front-matter-2.php.erb +7 -0
  313. data/fixtures/frontmatter-app/source/json-front-matter-auto.erb +6 -0
  314. data/fixtures/frontmatter-app/source/json-front-matter-encoding.html.erb +7 -0
  315. data/fixtures/frontmatter-app/source/json-front-matter-line-2.html.erb +7 -0
  316. data/fixtures/frontmatter-app/source/json-front-matter.html.erb +6 -0
  317. data/fixtures/frontmatter-app/source/raw-front-matter.html +6 -0
  318. data/fixtures/frontmatter-app/source/raw-front-matter.php +6 -0
  319. data/fixtures/frontmatter-neighbor-app/config.rb +0 -0
  320. data/fixtures/frontmatter-neighbor-app/source/front-matter-2.php.erb +2 -0
  321. data/fixtures/frontmatter-neighbor-app/source/front-matter-2.php.erb.frontmatter +4 -0
  322. data/fixtures/frontmatter-neighbor-app/source/front-matter-auto.erb +1 -0
  323. data/fixtures/frontmatter-neighbor-app/source/front-matter-auto.erb.frontmatter +4 -0
  324. data/fixtures/frontmatter-neighbor-app/source/front-matter-change.html.erb +1 -0
  325. data/fixtures/frontmatter-neighbor-app/source/front-matter-change.html.erb.frontmatter +4 -0
  326. data/fixtures/frontmatter-neighbor-app/source/front-matter-encoding.html.erb +1 -0
  327. data/fixtures/frontmatter-neighbor-app/source/front-matter-encoding.html.erb.frontmatter +5 -0
  328. data/fixtures/frontmatter-neighbor-app/source/json-front-matter-2.php.erb +2 -0
  329. data/fixtures/frontmatter-neighbor-app/source/json-front-matter-2.php.erb.frontmatter +4 -0
  330. data/fixtures/frontmatter-neighbor-app/source/json-front-matter-auto.erb +1 -0
  331. data/fixtures/frontmatter-neighbor-app/source/json-front-matter-auto.erb.frontmatter +4 -0
  332. data/fixtures/frontmatter-neighbor-app/source/json-front-matter.html.erb +1 -0
  333. data/fixtures/frontmatter-neighbor-app/source/json-front-matter.html.erb.frontmatter +4 -0
  334. data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.html +1 -0
  335. data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.html.frontmatter +4 -0
  336. data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.php +1 -0
  337. data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.php.frontmatter +4 -0
  338. data/fixtures/frontmatter-settings-app/config.rb +4 -0
  339. data/fixtures/frontmatter-settings-app/source/alternate_layout.html.erb +5 -0
  340. data/fixtures/frontmatter-settings-app/source/ignored.html.erb +5 -0
  341. data/fixtures/frontmatter-settings-app/source/layouts/alternate.erb +3 -0
  342. data/fixtures/frontmatter-settings-app/source/layouts/override.erb +1 -0
  343. data/fixtures/frontmatter-settings-app/source/override_layout.html.erb +4 -0
  344. data/fixtures/frontmatter-settings-app/source/page_mentioned.html.erb +4 -0
  345. data/fixtures/frontmatter-settings-neighbor-app/config.rb +4 -0
  346. data/fixtures/frontmatter-settings-neighbor-app/source/alternate_layout.html.erb +1 -0
  347. data/fixtures/frontmatter-settings-neighbor-app/source/alternate_layout.html.erb.frontmatter +3 -0
  348. data/fixtures/frontmatter-settings-neighbor-app/source/ignored.html.erb +1 -0
  349. data/fixtures/frontmatter-settings-neighbor-app/source/ignored.html.erb.frontmatter +3 -0
  350. data/fixtures/frontmatter-settings-neighbor-app/source/layouts/alternate.erb +3 -0
  351. data/fixtures/frontmatter-settings-neighbor-app/source/layouts/override.erb +1 -0
  352. data/fixtures/frontmatter-settings-neighbor-app/source/override_layout.html.erb +1 -0
  353. data/fixtures/frontmatter-settings-neighbor-app/source/override_layout.html.erb.frontmatter +3 -0
  354. data/fixtures/frontmatter-settings-neighbor-app/source/page_mentioned.html.erb +1 -0
  355. data/fixtures/frontmatter-settings-neighbor-app/source/page_mentioned.html.erb.frontmatter +3 -0
  356. data/fixtures/generator-test/config.rb +80 -0
  357. data/fixtures/generator-test/source/index.html.erb +10 -0
  358. data/fixtures/glob-app/config.rb +1 -0
  359. data/fixtures/glob-app/source/index.html.erb +4 -0
  360. data/fixtures/glob-app/source/stylesheets/site.css.str +3 -0
  361. data/fixtures/gzip-app/config.rb +1 -0
  362. data/fixtures/gzip-app/source/index.html +0 -0
  363. data/fixtures/gzip-app/source/javascripts/test.js +1 -0
  364. data/fixtures/gzip-app/source/stylesheets/test.css +1 -0
  365. data/fixtures/i18n-alt-root-app/locales/en.yml +4 -0
  366. data/fixtures/i18n-alt-root-app/locales/es.yml +7 -0
  367. data/fixtures/i18n-alt-root-app/source/lang_data/hello.html.erb +1 -0
  368. data/fixtures/i18n-alt-root-app/source/lang_data/index.html.erb +1 -0
  369. data/fixtures/i18n-alt-root-app/source/layout.erb +1 -0
  370. data/fixtures/i18n-default-app/locales/en.yml +4 -0
  371. data/fixtures/i18n-default-app/locales/es.yml +8 -0
  372. data/fixtures/i18n-default-app/source/localizable/index.html.erb +5 -0
  373. data/fixtures/i18n-force-locale/config.rb +13 -0
  374. data/fixtures/i18n-force-locale/locales/en.yml +3 -0
  375. data/fixtures/i18n-force-locale/locales/es.yml +3 -0
  376. data/fixtures/i18n-force-locale/locales/fr.yml +3 -0
  377. data/fixtures/i18n-force-locale/source/index.haml +2 -0
  378. data/fixtures/i18n-nested-app/locales/en.yml +4 -0
  379. data/fixtures/i18n-nested-app/locales/en/more.yml +3 -0
  380. data/fixtures/i18n-nested-app/locales/es.yml +4 -0
  381. data/fixtures/i18n-nested-app/locales/es/mucho.yml +3 -0
  382. data/fixtures/i18n-nested-app/source/localizable/index.html.erb +3 -0
  383. data/fixtures/i18n-test-app/data/defaults_en.yml +0 -0
  384. data/fixtures/i18n-test-app/data/defaults_es.yml +0 -0
  385. data/fixtures/i18n-test-app/data/en_defaults.yml +0 -0
  386. data/fixtures/i18n-test-app/locales/en.yml +4 -0
  387. data/fixtures/i18n-test-app/locales/es.yml +9 -0
  388. data/fixtures/i18n-test-app/source/CNAME +1 -0
  389. data/fixtures/i18n-test-app/source/_country.en.erb +1 -0
  390. data/fixtures/i18n-test-app/source/_country.es.erb +1 -0
  391. data/fixtures/i18n-test-app/source/_site.erb +1 -0
  392. data/fixtures/i18n-test-app/source/images/president.en.svg +1 -0
  393. data/fixtures/i18n-test-app/source/images/president.es.svg +1 -0
  394. data/fixtures/i18n-test-app/source/layouts/layout.erb +8 -0
  395. data/fixtures/i18n-test-app/source/localizable/_state.en.erb +1 -0
  396. data/fixtures/i18n-test-app/source/localizable/_state.es.erb +1 -0
  397. data/fixtures/i18n-test-app/source/localizable/hello.html.erb +1 -0
  398. data/fixtures/i18n-test-app/source/localizable/images/flag.en.svg +1 -0
  399. data/fixtures/i18n-test-app/source/localizable/images/flag.es.svg +1 -0
  400. data/fixtures/i18n-test-app/source/localizable/index.html.erb +1 -0
  401. data/fixtures/i18n-test-app/source/localizable/morning.en.html.erb +1 -0
  402. data/fixtures/i18n-test-app/source/localizable/morning.es.html.erb +1 -0
  403. data/fixtures/i18n-test-app/source/localizable/one.en.md +1 -0
  404. data/fixtures/i18n-test-app/source/localizable/one.es.md +1 -0
  405. data/fixtures/i18n-test-app/source/localizable/partials/_greeting.en.erb +1 -0
  406. data/fixtures/i18n-test-app/source/localizable/partials/_greeting.es.erb +1 -0
  407. data/fixtures/i18n-test-app/source/localizable/partials/index.html.erb +6 -0
  408. data/fixtures/i18n-test-app/source/password.txt +1 -0
  409. data/fixtures/i18n-test-app/source/stylesheets/site.css +3 -0
  410. data/fixtures/ignore-app/source/about.html.erb +1 -0
  411. data/fixtures/ignore-app/source/images/icon/messages.png +0 -0
  412. data/fixtures/ignore-app/source/images/pic.png +0 -0
  413. data/fixtures/ignore-app/source/images/portrait.jpg +0 -0
  414. data/fixtures/ignore-app/source/index.html.erb +0 -0
  415. data/fixtures/ignore-app/source/plain.html +1 -0
  416. data/fixtures/ignore-app/source/reports/another.html +0 -0
  417. data/fixtures/ignore-app/source/reports/index.html +0 -0
  418. data/fixtures/implied-extensions-app/config.rb +0 -0
  419. data/fixtures/implied-extensions-app/source/index.erb +1 -0
  420. data/fixtures/indexable-app/config.rb +4 -0
  421. data/fixtures/indexable-app/source/.htaccess +1 -0
  422. data/fixtures/indexable-app/source/.htpasswd +1 -0
  423. data/fixtures/indexable-app/source/.nojekyll +0 -0
  424. data/fixtures/indexable-app/source/a_folder/needs_index.html +1 -0
  425. data/fixtures/indexable-app/source/evil spaces.html +1 -0
  426. data/fixtures/indexable-app/source/leave_me_alone.html +1 -0
  427. data/fixtures/indexable-app/source/needs_index.html +1 -0
  428. data/fixtures/indexable-app/source/regular/index.html +1 -0
  429. data/fixtures/indexable-app/source/wildcard_leave_me_alone.html +1 -0
  430. data/fixtures/instance-vars-app/config.rb +7 -0
  431. data/fixtures/instance-vars-app/source/content.html.erb +2 -0
  432. data/fixtures/instance-vars-app/source/layout.erb +1 -0
  433. data/fixtures/large-build-app/config.rb +3 -0
  434. data/fixtures/large-build-app/source/.htaccess +1 -0
  435. data/fixtures/large-build-app/source/.htpasswd +1 -0
  436. data/fixtures/large-build-app/source/_partial.erb +1 -0
  437. data/fixtures/large-build-app/source/feed.xml.builder +4 -0
  438. data/fixtures/large-build-app/source/images/Child folder/regular_file(example).txt +1 -0
  439. data/fixtures/large-build-app/source/images/Read me (example).txt +1 -0
  440. data/fixtures/large-build-app/source/images/blank.gif +0 -0
  441. data/fixtures/large-build-app/source/index.html.erb +1 -0
  442. data/fixtures/large-build-app/source/layout.erb +9 -0
  443. data/fixtures/large-build-app/source/layouts/content_for.erb +4 -0
  444. data/fixtures/large-build-app/source/layouts/custom.erb +8 -0
  445. data/fixtures/large-build-app/source/link_test.html.erb +5 -0
  446. data/fixtures/large-build-app/source/other_layout.erb +1 -0
  447. data/fixtures/large-build-app/source/services/index.html.erb +1 -0
  448. data/fixtures/large-build-app/source/spaces in file.html.erb +1 -0
  449. data/fixtures/large-build-app/source/static.html +1 -0
  450. data/fixtures/large-build-app/source/stylesheets/static.css +2 -0
  451. data/fixtures/layouts-dir-app/source/ambiguous.html.erb +5 -0
  452. data/fixtures/layouts-dir-app/source/index.html.erb +2 -0
  453. data/fixtures/layouts-dir-app/source/layouts/layout.erb +3 -0
  454. data/fixtures/layouts-dir-app/source/layouts/other.erb +3 -0
  455. data/fixtures/layouts-dir-app/source/layouts2/layout.erb +3 -0
  456. data/fixtures/layouts-dir-app/source/nested/layouts2/layout.erb +3 -0
  457. data/fixtures/layouts-dir-app/source/other.erb +3 -0
  458. data/fixtures/link-to-app/config.rb +0 -0
  459. data/fixtures/link-to-app/source/link_to_erb.html.erb +3 -0
  460. data/fixtures/link-to-app/source/link_to_haml.html.haml +2 -0
  461. data/fixtures/link-to-app/source/link_to_slim.html.slim +2 -0
  462. data/fixtures/liquid-app/config.rb +0 -0
  463. data/fixtures/liquid-app/data/test.yml +4 -0
  464. data/fixtures/liquid-app/data/test2.json +4 -0
  465. data/fixtures/liquid-app/source/_liquid_partial.liquid +1 -0
  466. data/fixtures/liquid-app/source/data2.html.liquid +2 -0
  467. data/fixtures/liquid-app/source/liquid_master.html.liquid +1 -0
  468. data/fixtures/lorem-app/config.rb +1 -0
  469. data/fixtures/lorem-app/source/lorem.html.erb +13 -0
  470. data/fixtures/manual-layout-missing/config.rb +1 -0
  471. data/fixtures/manual-layout-missing/source/index.html.erb +1 -0
  472. data/fixtures/manual-layout-override/config.rb +3 -0
  473. data/fixtures/manual-layout-override/source/index.html.erb +1 -0
  474. data/fixtures/manual-layout-override/source/layouts/another.erb +9 -0
  475. data/fixtures/manual-layout-override/source/layouts/custom.erb +9 -0
  476. data/fixtures/manual-layout/config.rb +1 -0
  477. data/fixtures/manual-layout/source/index.html.erb +1 -0
  478. data/fixtures/manual-layout/source/layouts/custom.erb +9 -0
  479. data/fixtures/markdown-app/config.rb +1 -0
  480. data/fixtures/markdown-app/source/autolink.html.markdown +5 -0
  481. data/fixtures/markdown-app/source/fenced_code_blocks.html.markdown +7 -0
  482. data/fixtures/markdown-app/source/filter_html.html.markdown +1 -0
  483. data/fixtures/markdown-app/source/footnote.html.markdown +3 -0
  484. data/fixtures/markdown-app/source/hard_wrap.html.markdown +2 -0
  485. data/fixtures/markdown-app/source/highlighted.html.markdown +1 -0
  486. data/fixtures/markdown-app/source/images/blank.gif +0 -0
  487. data/fixtures/markdown-app/source/img.html.markdown +1 -0
  488. data/fixtures/markdown-app/source/indented_code_blocks.html.markdown +5 -0
  489. data/fixtures/markdown-app/source/index.html.markdown +4 -0
  490. data/fixtures/markdown-app/source/lax_spacing.html.markdown +3 -0
  491. data/fixtures/markdown-app/source/link.html.markdown +1 -0
  492. data/fixtures/markdown-app/source/mailto.html.markdown +1 -0
  493. data/fixtures/markdown-app/source/no_intra_emphasis.html.markdown +5 -0
  494. data/fixtures/markdown-app/source/prettify.html.markdown +3 -0
  495. data/fixtures/markdown-app/source/quote.html.markdown +1 -0
  496. data/fixtures/markdown-app/source/safe_links.html.markdown +1 -0
  497. data/fixtures/markdown-app/source/smarty_pants.html.markdown +5 -0
  498. data/fixtures/markdown-app/source/space_after_headers.html.markdown +5 -0
  499. data/fixtures/markdown-app/source/strikethrough.html.markdown +5 -0
  500. data/fixtures/markdown-app/source/superscript.html.markdown +5 -0
  501. data/fixtures/markdown-app/source/tables.html.markdown +8 -0
  502. data/fixtures/markdown-app/source/underline.html.markdown +1 -0
  503. data/fixtures/markdown-app/source/with_toc_data.html.markdown +3 -0
  504. data/fixtures/markdown-frontmatter-options-app/config.rb +1 -0
  505. data/fixtures/markdown-frontmatter-options-app/source/smarty_pants-default.html.markdown +5 -0
  506. data/fixtures/markdown-frontmatter-options-app/source/smarty_pants-off.html.markdown +7 -0
  507. data/fixtures/markdown-frontmatter-options-app/source/smarty_pants-on.html.markdown +7 -0
  508. data/fixtures/markdown-frontmatter-options-app/source/tables-default.html.markdown +8 -0
  509. data/fixtures/markdown-frontmatter-options-app/source/tables-off.html.markdown +10 -0
  510. data/fixtures/markdown-frontmatter-options-app/source/tables-on.html.markdown +10 -0
  511. data/fixtures/markdown-in-haml-app/config.rb +0 -0
  512. data/fixtures/markdown-in-haml-app/source/images/blank.gif +0 -0
  513. data/fixtures/markdown-in-haml-app/source/link_target.html.markdown +4 -0
  514. data/fixtures/minify-css-app/source/inline-css.html.haml +5 -0
  515. data/fixtures/minify-css-app/source/more-css/site.css +3 -0
  516. data/fixtures/minify-css-app/source/stylesheets/report.css +1 -0
  517. data/fixtures/minify-css-app/source/stylesheets/site.css.sass +5 -0
  518. data/fixtures/minify-js-app/config.rb +0 -0
  519. data/fixtures/minify-js-app/source/inline-coffeescript.html.haml +3 -0
  520. data/fixtures/minify-js-app/source/inline-js.html.haml +28 -0
  521. data/fixtures/minify-js-app/source/javascripts/coffee_test.js.coffee +3 -0
  522. data/fixtures/minify-js-app/source/javascripts/js_test.js +8 -0
  523. data/fixtures/minify-js-app/source/more-js/other.js +8 -0
  524. data/fixtures/missing-tilt-library-app/config.rb +2 -0
  525. data/fixtures/missing-tilt-library-app/source/danger-zone/more-wiki.html.wiki +1 -0
  526. data/fixtures/missing-tilt-library-app/source/safe-zone/my-wiki.html.wiki +1 -0
  527. data/fixtures/missing-tilt-library-app/source/textile-source.html.textile +1 -0
  528. data/fixtures/missing-tilt-library-app/source/wiki-source.html.wiki +1 -0
  529. data/fixtures/more-extensionless-text-files-app/config.rb +1 -0
  530. data/fixtures/more-extensionless-text-files-app/source/CNAME +1 -0
  531. data/fixtures/more-extensionless-text-files-app/source/LICENSE +1 -0
  532. data/fixtures/more-extensionless-text-files-app/source/README +1 -0
  533. data/fixtures/more-extensionless-text-files-app/source/index.html +1 -0
  534. data/fixtures/more-frontmatter-settings-app/config.rb +4 -0
  535. data/fixtures/more-frontmatter-settings-app/source/alternate_layout.html.erb +5 -0
  536. data/fixtures/more-frontmatter-settings-app/source/ignored.html.erb +5 -0
  537. data/fixtures/more-frontmatter-settings-app/source/layouts/alternate.erb +3 -0
  538. data/fixtures/more-frontmatter-settings-app/source/no_index.html.erb +5 -0
  539. data/fixtures/more-ignore-app/source/about.html.erb +1 -0
  540. data/fixtures/more-ignore-app/source/images/icon/messages.png +0 -0
  541. data/fixtures/more-ignore-app/source/images/pic.png +0 -0
  542. data/fixtures/more-ignore-app/source/images/portrait.jpg +0 -0
  543. data/fixtures/more-ignore-app/source/index.html.erb +0 -0
  544. data/fixtures/more-ignore-app/source/plain.html +1 -0
  545. data/fixtures/more-ignore-app/source/reports/another.html +0 -0
  546. data/fixtures/more-ignore-app/source/reports/index.html +0 -0
  547. data/fixtures/more-implied-extensions-app/config.rb +0 -0
  548. data/fixtures/more-implied-extensions-app/source/javascripts/app.coffee +1 -0
  549. data/fixtures/more-implied-extensions-app/source/layouts/layout.erb +3 -0
  550. data/fixtures/more-implied-extensions-app/source/stylesheets/style.scss +3 -0
  551. data/fixtures/more-implied-extensions-app/source/stylesheets/style2.sass +3 -0
  552. data/fixtures/more-implied-extensions-app/source/test.haml +4 -0
  553. data/fixtures/more-implied-extensions-app/source/test2.markdown +3 -0
  554. data/fixtures/more-implied-extensions-app/source/test3.slim +3 -0
  555. data/fixtures/more-implied-extensions-app/source/test4.liquid +1 -0
  556. data/fixtures/more-instance-vars-app/config.rb +0 -0
  557. data/fixtures/more-instance-vars-app/source/_vartial.erb +5 -0
  558. data/fixtures/more-instance-vars-app/source/instance-var-set.html.erb +2 -0
  559. data/fixtures/more-instance-vars-app/source/layout.erb +3 -0
  560. data/fixtures/more-instance-vars-app/source/no-instance-var.html.erb +1 -0
  561. data/fixtures/more-markdown-app/source/layouts/layout.erb +13 -0
  562. data/fixtures/more-markdown-app/source/with_layout.markdown +4 -0
  563. data/fixtures/more-markdown-app/source/with_layout_erb.markdown.erb +4 -0
  564. data/fixtures/more-preview-app/config.rb +0 -0
  565. data/fixtures/more-preview-app/source/content.html.erb +1 -0
  566. data/fixtures/more-preview-app/source/layout.erb +1 -0
  567. data/fixtures/more-preview-app/source/stylesheets/_partial.sass +2 -0
  568. data/fixtures/more-preview-app/source/stylesheets/_partial2.css.sass +2 -0
  569. data/fixtures/more-preview-app/source/stylesheets/main.css.sass +4 -0
  570. data/fixtures/more-preview-app/source/stylesheets/main2.css.sass +4 -0
  571. data/fixtures/more-preview-app/source/stylesheets/plain.css.sass +2 -0
  572. data/fixtures/more-traversal-app/config.rb +7 -0
  573. data/fixtures/more-traversal-app/source/directory-indexed.html.erb +0 -0
  574. data/fixtures/more-traversal-app/source/directory-indexed/sibling.html.erb +3 -0
  575. data/fixtures/more-traversal-app/source/directory-indexed/sibling2.html.erb +3 -0
  576. data/fixtures/more-traversal-app/source/directory-indexed/sub2/index.html.erb +0 -0
  577. data/fixtures/more-traversal-app/source/directory-indexed/sub3/deep.html.erb +0 -0
  578. data/fixtures/more-traversal-app/source/index.html.erb +0 -0
  579. data/fixtures/more-traversal-app/source/layout.erb +21 -0
  580. data/fixtures/more-traversal-app/source/proxied.html.erb +0 -0
  581. data/fixtures/more-traversal-app/source/root.html.erb +0 -0
  582. data/fixtures/more-traversal-app/source/sub/index.html.erb +0 -0
  583. data/fixtures/more-traversal-app/source/sub/sibling.html.erb +0 -0
  584. data/fixtures/more-traversal-app/source/sub/sibling2.html.erb +0 -0
  585. data/fixtures/more-traversal-app/source/sub/sub2/index.html.erb +0 -0
  586. data/fixtures/more-traversal-app/source/sub/sub3/deep.html.erb +0 -0
  587. data/fixtures/multiple-layouts/config.rb +0 -0
  588. data/fixtures/multiple-layouts/source/index.html.erb +1 -0
  589. data/fixtures/multiple-layouts/source/layout.erb +9 -0
  590. data/fixtures/multiple-layouts/source/layout.str +9 -0
  591. data/fixtures/nested-data-app/config.rb +1 -0
  592. data/fixtures/nested-data-app/data/examples/deeper/stuff.yml +1 -0
  593. data/fixtures/nested-data-app/data/examples/more.yml +1 -0
  594. data/fixtures/nested-data-app/data/examples/test.yml +1 -0
  595. data/fixtures/nested-data-app/source/test.html.erb +3 -0
  596. data/fixtures/nested-layout-app/config.rb +1 -0
  597. data/fixtures/nested-layout-app/source/another.html.markdown +7 -0
  598. data/fixtures/nested-layout-app/source/data-one.html.erb +5 -0
  599. data/fixtures/nested-layout-app/source/data-two.html.erb +5 -0
  600. data/fixtures/nested-layout-app/source/haml-test.html.markdown +7 -0
  601. data/fixtures/nested-layout-app/source/index.html.erb +6 -0
  602. data/fixtures/nested-layout-app/source/layouts/inner.erb +4 -0
  603. data/fixtures/nested-layout-app/source/layouts/inner_haml.haml +3 -0
  604. data/fixtures/nested-layout-app/source/layouts/inner_slim.slim +3 -0
  605. data/fixtures/nested-layout-app/source/layouts/master.erb +3 -0
  606. data/fixtures/nested-layout-app/source/layouts/master_haml.haml +3 -0
  607. data/fixtures/nested-layout-app/source/layouts/master_slim.slim +3 -0
  608. data/fixtures/nested-layout-app/source/layouts/outer.erb +4 -0
  609. data/fixtures/nested-layout-app/source/layouts/outer_haml.haml +3 -0
  610. data/fixtures/nested-layout-app/source/layouts/outer_slim.slim +3 -0
  611. data/fixtures/nested-layout-app/source/slim-test.html.markdown +7 -0
  612. data/fixtures/no-layout/config.rb +0 -0
  613. data/fixtures/no-layout/source/index.html.erb +1 -0
  614. data/fixtures/padrino-helpers-app/config.rb +7 -0
  615. data/fixtures/padrino-helpers-app/source/former_padrino_test.html.erb +6 -0
  616. data/fixtures/page-classes-app/config.rb +4 -0
  617. data/fixtures/page-classes-app/source/1-folder/1-inside-with-numeric.html.erb +1 -0
  618. data/fixtures/page-classes-app/source/1-starts-with-numeric.html.erb +1 -0
  619. data/fixtures/page-classes-app/source/2-starts-with-numeric-custom.html.erb +1 -0
  620. data/fixtures/page-classes-app/source/page-classes.html.erb +1 -0
  621. data/fixtures/page-classes-app/source/sub1/page-classes.html.erb +1 -0
  622. data/fixtures/page-classes-app/source/sub1/sub2/page-classes.html.erb +1 -0
  623. data/fixtures/page-helper-layout-block-app/config.rb +6 -0
  624. data/fixtures/page-helper-layout-block-app/source/index.html.erb +1 -0
  625. data/fixtures/page-helper-layout-block-app/source/layouts/alt.erb +3 -0
  626. data/fixtures/page-helper-layout-block-app/source/layouts/layout.erb +3 -0
  627. data/fixtures/page-helper-layout-block-app/source/path/child.html.erb +1 -0
  628. data/fixtures/page-helper-layout-block-app/source/path/index.html.erb +1 -0
  629. data/fixtures/partials-app/config.rb +0 -0
  630. data/fixtures/partials-app/source/_code_snippet.html +1 -0
  631. data/fixtures/partials-app/source/_locals.erb +1 -0
  632. data/fixtures/partials-app/source/_main.erb +1 -0
  633. data/fixtures/partials-app/source/_main.str +1 -0
  634. data/fixtures/partials-app/source/images/tiger.svg +725 -0
  635. data/fixtures/partials-app/source/index.html.erb +3 -0
  636. data/fixtures/partials-app/source/locals.html.erb +1 -0
  637. data/fixtures/partials-app/source/second.html.str +3 -0
  638. data/fixtures/partials-app/source/shared/_footer.erb +1 -0
  639. data/fixtures/partials-app/source/shared/_header.erb +1 -0
  640. data/fixtures/partials-app/source/shared/snippet.erb +1 -0
  641. data/fixtures/partials-app/source/static_underscore.html.erb +1 -0
  642. data/fixtures/partials-app/source/sub/_local.erb +1 -0
  643. data/fixtures/partials-app/source/sub/index.html.erb +3 -0
  644. data/fixtures/partials-app/source/svg.html.erb +1 -0
  645. data/fixtures/partials-app/source/using_snippet.html.erb +1 -0
  646. data/fixtures/partials-dir-app/source/index.html.erb +2 -0
  647. data/fixtures/partials-dir-app/source/nested/partials/_partial.html.erb +1 -0
  648. data/fixtures/partials-dir-app/source/partials/_partial.html.erb +1 -0
  649. data/fixtures/passthrough-app/source/.htaccess +1 -0
  650. data/fixtures/passthrough-app/source/inline-coffeescript.html.haml +3 -0
  651. data/fixtures/passthrough-app/source/inline-css.html.haml +4 -0
  652. data/fixtures/passthrough-app/source/inline-js.html.haml +28 -0
  653. data/fixtures/passthrough-app/source/javascripts/coffee_test.js.coffee +3 -0
  654. data/fixtures/passthrough-app/source/javascripts/js_test.js +8 -0
  655. data/fixtures/passthrough-app/source/stylesheets/site.css.sass +1 -0
  656. data/fixtures/plain-app/index.html +1 -0
  657. data/fixtures/preview-app/config.rb +0 -0
  658. data/fixtures/preview-app/source/content.html.erb +1 -0
  659. data/fixtures/preview-app/source/layout.erb +1 -0
  660. data/fixtures/proxy-pages-app/config.rb +21 -0
  661. data/fixtures/proxy-pages-app/source/real.html +1 -0
  662. data/fixtures/proxy-pages-app/source/real/index-ivars.html.erb +6 -0
  663. data/fixtures/proxy-pages-app/source/real/index.html.erb +5 -0
  664. data/fixtures/proxy-pages-app/source/should_be_ignored3.html +1 -0
  665. data/fixtures/proxy-pages-app/source/should_be_ignored6.html +1 -0
  666. data/fixtures/proxy-pages-app/source/should_be_ignored7.html +1 -0
  667. data/fixtures/proxy-pages-app/source/should_be_ignored8.html +1 -0
  668. data/fixtures/queryable-app/config.rb +0 -0
  669. data/fixtures/queryable-app/source/2010-08-08-test-document-file.html.markdown +8 -0
  670. data/fixtures/queryable-app/source/2010-08-09-another-test-document.html.markdown +10 -0
  671. data/fixtures/queryable-app/source/2011-12-26-some-test-document.html.markdown +6 -0
  672. data/fixtures/queryable-app/source/document_with_date_in_yaml.html.markdown +7 -0
  673. data/fixtures/queryable-app/source/document_without_date.html.markdown +7 -0
  674. data/fixtures/relative-app/config.rb +0 -0
  675. data/fixtures/relative-app/source/images/blank.gif +0 -0
  676. data/fixtures/relative-app/source/stylesheets/relative_assets.css.sass +3 -0
  677. data/fixtures/relative-assets-app/config.rb +1 -0
  678. data/fixtures/relative-assets-app/source/images/blank.gif +0 -0
  679. data/fixtures/relative-assets-app/source/img/blank.gif +0 -0
  680. data/fixtures/relative-assets-app/source/relative_image.html.erb +8 -0
  681. data/fixtures/relative-assets-app/source/stylesheets/relative_assets.css.sass +3 -0
  682. data/fixtures/request-app/config.rb +0 -0
  683. data/fixtures/request-app/source/index.html.erb +3 -0
  684. data/fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset-sass.sass +1 -0
  685. data/fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset.scss +1 -0
  686. data/fixtures/sass-assets-path-app/config.rb +4 -0
  687. data/fixtures/sass-assets-path-app/my-vendor/stylesheets/_partial.sass +2 -0
  688. data/fixtures/sass-assets-path-app/source/stylesheets/plain.css.sass +16 -0
  689. data/fixtures/scss-app/config.rb +0 -0
  690. data/fixtures/scss-app/source/stylesheets/layout.css.sass +2 -0
  691. data/fixtures/scss-app/source/stylesheets/site_scss.css.scss +1 -0
  692. data/fixtures/sinatra-app/config.rb +14 -0
  693. data/fixtures/sinatra-app/source/index.html.erb +5 -0
  694. data/fixtures/slim-content-for-app/config.rb +0 -0
  695. data/fixtures/slim-content-for-app/source/index.html.slim +7 -0
  696. data/fixtures/slim-content-for-app/source/layouts/layout.slim +15 -0
  697. data/fixtures/strip-url-app/config.rb +0 -0
  698. data/fixtures/strip-url-app/source/index.html.erb +1 -0
  699. data/fixtures/strip-url-app/source/other.html.erb +1 -0
  700. data/fixtures/strip-url-app/source/subdir/index.html.erb +1 -0
  701. data/fixtures/stylus-preview-app/config.rb +0 -0
  702. data/fixtures/stylus-preview-app/source/content.html.erb +1 -0
  703. data/fixtures/stylus-preview-app/source/layout.erb +1 -0
  704. data/fixtures/stylus-preview-app/source/stylesheets/_partial.styl +2 -0
  705. data/fixtures/stylus-preview-app/source/stylesheets/_partial2.css.styl +2 -0
  706. data/fixtures/stylus-preview-app/source/stylesheets/main.css.styl +4 -0
  707. data/fixtures/stylus-preview-app/source/stylesheets/main2.css.styl +4 -0
  708. data/fixtures/stylus-preview-app/source/stylesheets/plain.css.styl +2 -0
  709. data/fixtures/traversal-app/config.rb +5 -0
  710. data/fixtures/traversal-app/source/directory-indexed.html.erb +0 -0
  711. data/fixtures/traversal-app/source/directory-indexed/sibling.html.erb +3 -0
  712. data/fixtures/traversal-app/source/directory-indexed/sibling2.html.erb +3 -0
  713. data/fixtures/traversal-app/source/directory-indexed/sub2/index.html.erb +0 -0
  714. data/fixtures/traversal-app/source/directory-indexed/sub3/deep.html.erb +0 -0
  715. data/fixtures/traversal-app/source/index.html.erb +0 -0
  716. data/fixtures/traversal-app/source/layout.erb +21 -0
  717. data/fixtures/traversal-app/source/proxied.html.erb +0 -0
  718. data/fixtures/traversal-app/source/root.html.erb +0 -0
  719. data/fixtures/traversal-app/source/sub/index.html.erb +0 -0
  720. data/fixtures/traversal-app/source/sub/sibling.html.erb +0 -0
  721. data/fixtures/traversal-app/source/sub/sibling2.html.erb +0 -0
  722. data/fixtures/traversal-app/source/sub/sub2/index.html.erb +0 -0
  723. data/fixtures/traversal-app/source/sub/sub3/deep.html.erb +0 -0
  724. data/fixtures/twitter-bootstrap-app/config.rb +0 -0
  725. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/.gitignore +36 -0
  726. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/.travis.yml +3 -0
  727. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/LICENSE +176 -0
  728. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/README.md +137 -0
  729. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/img/glyphicons-halflings-white.png +0 -0
  730. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/img/glyphicons-halflings.png +0 -0
  731. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/.jshintrc +10 -0
  732. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/README.md +112 -0
  733. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-alert.js +90 -0
  734. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-button.js +96 -0
  735. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-carousel.js +169 -0
  736. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-collapse.js +157 -0
  737. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-dropdown.js +100 -0
  738. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-modal.js +218 -0
  739. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-popover.js +98 -0
  740. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-scrollspy.js +151 -0
  741. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-tab.js +135 -0
  742. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-tooltip.js +275 -0
  743. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-transition.js +61 -0
  744. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-typeahead.js +285 -0
  745. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/index.html +54 -0
  746. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/phantom.js +63 -0
  747. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/server.js +14 -0
  748. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-alert.js +56 -0
  749. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-button.js +77 -0
  750. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-carousel.js +28 -0
  751. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-collapse.js +54 -0
  752. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-dropdown.js +87 -0
  753. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-modal.js +114 -0
  754. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-phantom.js +21 -0
  755. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-popover.js +93 -0
  756. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-scrollspy.js +31 -0
  757. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-tab.js +61 -0
  758. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-tooltip.js +155 -0
  759. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-transition.js +13 -0
  760. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-typeahead.js +148 -0
  761. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/vendor/jquery.js +9252 -0
  762. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/vendor/qunit.css +232 -0
  763. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/vendor/qunit.js +1510 -0
  764. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_accordion.less +33 -0
  765. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_alerts.less +58 -0
  766. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_breadcrumbs.less +24 -0
  767. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_button-groups.less +191 -0
  768. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_buttons.less +191 -0
  769. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_carousel.less +121 -0
  770. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_close.less +29 -0
  771. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_code.less +57 -0
  772. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_component-animations.less +20 -0
  773. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_dropdowns.less +143 -0
  774. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_forms.less +583 -0
  775. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_grid.less +5 -0
  776. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_hero-unit.less +22 -0
  777. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_labels-badges.less +55 -0
  778. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_layouts.less +17 -0
  779. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_mixins.less +646 -0
  780. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_modals.less +90 -0
  781. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_navbar.less +358 -0
  782. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_navs.less +363 -0
  783. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_pager.less +36 -0
  784. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_pagination.less +56 -0
  785. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_popovers.less +49 -0
  786. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_progress-bars.less +117 -0
  787. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_reset.less +131 -0
  788. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-1200px-min.less +26 -0
  789. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-767px-max.less +149 -0
  790. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-768px-979px.less +17 -0
  791. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-navbar.less +153 -0
  792. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-utilities.less +41 -0
  793. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_scaffolding.less +29 -0
  794. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_sprites.less +191 -0
  795. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_tables.less +176 -0
  796. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_thumbnails.less +47 -0
  797. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_tooltip.less +35 -0
  798. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_type.less +232 -0
  799. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_utilities.less +23 -0
  800. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_variables.less +206 -0
  801. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_wells.less +27 -0
  802. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/bootstrap.less +62 -0
  803. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/responsive.less +48 -0
  804. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/css-tests.css +52 -0
  805. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/css-tests.html +917 -0
  806. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/forms.html +179 -0
  807. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/navbar.html +108 -0
  808. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/package.json +25 -0
  809. data/fixtures/v4-extension-callbacks/config.rb +26 -0
  810. data/fixtures/v4-extension-callbacks/source/index.html.erb +2 -0
  811. data/fixtures/wildcard-app/config.rb +1 -0
  812. data/fixtures/wildcard-app/source/admin/index.html.erb +1 -0
  813. data/fixtures/wildcard-app/source/admin/page.html.erb +1 -0
  814. data/fixtures/wildcard-app/source/index.html.erb +1 -0
  815. data/fixtures/wildcard-app/source/layouts/admin.erb +2 -0
  816. data/fixtures/wildcard-app/source/layouts/layout.erb +2 -0
  817. data/fixtures/wildcard-directory-index-app/config.rb +2 -0
  818. data/fixtures/wildcard-directory-index-app/source/admin/index.html.erb +1 -0
  819. data/fixtures/wildcard-directory-index-app/source/admin/page.html.erb +1 -0
  820. data/fixtures/wildcard-directory-index-app/source/index.html.erb +1 -0
  821. data/fixtures/wildcard-directory-index-app/source/layouts/admin.erb +2 -0
  822. data/fixtures/wildcard-directory-index-app/source/layouts/layout.erb +2 -0
  823. data/lib/middleman-core.rb +16 -0
  824. data/lib/middleman-core/application.rb +247 -0
  825. data/lib/middleman-core/cli.rb +88 -0
  826. data/lib/middleman-core/cli/build.rb +298 -0
  827. data/lib/middleman-core/cli/bundler.rb +39 -0
  828. data/lib/middleman-core/cli/console.rb +43 -0
  829. data/lib/middleman-core/cli/extension.rb +47 -0
  830. data/lib/middleman-core/cli/init.rb +66 -0
  831. data/lib/middleman-core/cli/server.rb +88 -0
  832. data/lib/middleman-core/configuration.rb +237 -0
  833. data/lib/middleman-core/core_extensions.rb +94 -0
  834. data/lib/middleman-core/core_extensions/data.rb +213 -0
  835. data/lib/middleman-core/core_extensions/extensions.rb +197 -0
  836. data/lib/middleman-core/core_extensions/external_helpers.rb +37 -0
  837. data/lib/middleman-core/core_extensions/file_watcher.rb +179 -0
  838. data/lib/middleman-core/core_extensions/front_matter.rb +201 -0
  839. data/lib/middleman-core/core_extensions/rendering.rb +512 -0
  840. data/lib/middleman-core/core_extensions/request.rb +305 -0
  841. data/lib/middleman-core/core_extensions/routing.rb +71 -0
  842. data/lib/middleman-core/core_extensions/show_exceptions.rb +25 -0
  843. data/lib/middleman-core/extension.rb +166 -0
  844. data/lib/middleman-core/extensions.rb +98 -0
  845. data/lib/middleman-core/load_paths.rb +53 -0
  846. data/lib/middleman-core/logger.rb +46 -0
  847. data/lib/middleman-core/meta_pages.rb +107 -0
  848. data/lib/middleman-core/meta_pages/assets/config.css +49 -0
  849. data/lib/middleman-core/meta_pages/assets/glyphicons-halflings.png +0 -0
  850. data/lib/middleman-core/meta_pages/assets/jquery-1.8.2.min.js +2 -0
  851. data/lib/middleman-core/meta_pages/assets/jquery.details-1.6.min.js +6 -0
  852. data/lib/middleman-core/meta_pages/assets/meta.css +384 -0
  853. data/lib/middleman-core/meta_pages/assets/sitemap.css +652 -0
  854. data/lib/middleman-core/meta_pages/assets/sitemap.js +0 -0
  855. data/lib/middleman-core/meta_pages/config_setting.rb +37 -0
  856. data/lib/middleman-core/meta_pages/sitemap_resource.rb +66 -0
  857. data/lib/middleman-core/meta_pages/sitemap_tree.rb +77 -0
  858. data/lib/middleman-core/meta_pages/templates/config.html.erb +57 -0
  859. data/lib/middleman-core/meta_pages/templates/index.html.erb +31 -0
  860. data/lib/middleman-core/meta_pages/templates/sitemap.html.erb +30 -0
  861. data/lib/middleman-core/preview_server.rb +237 -0
  862. data/lib/middleman-core/profiling.rb +56 -0
  863. data/lib/middleman-core/renderers/asciidoc.rb +58 -0
  864. data/lib/middleman-core/renderers/coffee_script.rb +47 -0
  865. data/lib/middleman-core/renderers/erb.rb +33 -0
  866. data/lib/middleman-core/renderers/haml.rb +38 -0
  867. data/lib/middleman-core/renderers/kramdown.rb +43 -0
  868. data/lib/middleman-core/renderers/less.rb +43 -0
  869. data/lib/middleman-core/renderers/liquid.rb +31 -0
  870. data/lib/middleman-core/renderers/markdown.rb +62 -0
  871. data/lib/middleman-core/renderers/redcarpet.rb +85 -0
  872. data/lib/middleman-core/renderers/sass.rb +120 -0
  873. data/lib/middleman-core/renderers/slim.rb +54 -0
  874. data/lib/middleman-core/renderers/stylus.rb +24 -0
  875. data/lib/middleman-core/sitemap.rb +76 -0
  876. data/lib/middleman-core/sitemap/extensions/content_type.rb +16 -0
  877. data/lib/middleman-core/sitemap/extensions/ignores.rb +86 -0
  878. data/lib/middleman-core/sitemap/extensions/on_disk.rb +92 -0
  879. data/lib/middleman-core/sitemap/extensions/proxies.rb +166 -0
  880. data/lib/middleman-core/sitemap/extensions/redirects.rb +119 -0
  881. data/lib/middleman-core/sitemap/extensions/request_endpoints.rb +107 -0
  882. data/lib/middleman-core/sitemap/extensions/traversal.rb +92 -0
  883. data/lib/middleman-core/sitemap/queryable.rb +150 -0
  884. data/lib/middleman-core/sitemap/resource.rb +155 -0
  885. data/lib/middleman-core/sitemap/store.rb +279 -0
  886. data/lib/middleman-core/step_definitions.rb +21 -0
  887. data/lib/middleman-core/step_definitions/builder_steps.rb +77 -0
  888. data/lib/middleman-core/step_definitions/middleman_steps.rb +17 -0
  889. data/lib/middleman-core/step_definitions/server_steps.rb +104 -0
  890. data/lib/middleman-core/templates.rb +101 -0
  891. data/lib/middleman-core/templates/default.rb +37 -0
  892. data/lib/middleman-core/templates/default/source/images/background.png +0 -0
  893. data/lib/middleman-core/templates/default/source/images/middleman.png +0 -0
  894. data/lib/middleman-core/templates/default/source/index.html.erb +10 -0
  895. data/lib/middleman-core/templates/default/source/javascripts/all.js +1 -0
  896. data/lib/middleman-core/templates/default/source/layouts/layout.erb +19 -0
  897. data/lib/middleman-core/templates/default/source/stylesheets/all.css +55 -0
  898. data/lib/middleman-core/templates/default/source/stylesheets/normalize.css +375 -0
  899. data/lib/middleman-core/templates/empty.rb +22 -0
  900. data/lib/middleman-core/templates/empty/Gemfile.tt +6 -0
  901. data/lib/middleman-core/templates/extension/Gemfile +19 -0
  902. data/lib/middleman-core/templates/extension/Rakefile +14 -0
  903. data/lib/middleman-core/templates/extension/features/support/env.rb +4 -0
  904. data/lib/middleman-core/templates/extension/gemspec +24 -0
  905. data/lib/middleman-core/templates/extension/gitignore +5 -0
  906. data/lib/middleman-core/templates/extension/lib/lib.rb +38 -0
  907. data/lib/middleman-core/templates/extension/lib/middleman_extension.rb +1 -0
  908. data/lib/middleman-core/templates/html5.rb +29 -0
  909. data/lib/middleman-core/templates/html5/source/.htaccess +540 -0
  910. data/lib/middleman-core/templates/html5/source/404.html +157 -0
  911. data/lib/middleman-core/templates/html5/source/LICENSE.md +19 -0
  912. data/lib/middleman-core/templates/html5/source/README.md +63 -0
  913. data/lib/middleman-core/templates/html5/source/apple-touch-icon-114x114-precomposed.png +0 -0
  914. data/lib/middleman-core/templates/html5/source/apple-touch-icon-144x144-precomposed.png +0 -0
  915. data/lib/middleman-core/templates/html5/source/apple-touch-icon-57x57-precomposed.png +0 -0
  916. data/lib/middleman-core/templates/html5/source/apple-touch-icon-72x72-precomposed.png +0 -0
  917. data/lib/middleman-core/templates/html5/source/apple-touch-icon-precomposed.png +0 -0
  918. data/lib/middleman-core/templates/html5/source/apple-touch-icon.png +0 -0
  919. data/lib/middleman-core/templates/html5/source/crossdomain.xml +15 -0
  920. data/lib/middleman-core/templates/html5/source/css/main.css +298 -0
  921. data/lib/middleman-core/templates/html5/source/css/normalize.css +504 -0
  922. data/lib/middleman-core/templates/html5/source/favicon.ico +0 -0
  923. data/lib/middleman-core/templates/html5/source/humans.txt +15 -0
  924. data/lib/middleman-core/templates/html5/source/img/.gitignore +0 -0
  925. data/lib/middleman-core/templates/html5/source/index.html.erb +6 -0
  926. data/lib/middleman-core/templates/html5/source/js/main.js +1 -0
  927. data/lib/middleman-core/templates/html5/source/js/plugins.js +14 -0
  928. data/lib/middleman-core/templates/html5/source/js/vendor/jquery-1.8.0.min.js +2 -0
  929. data/lib/middleman-core/templates/html5/source/js/vendor/modernizr-2.6.1.min.js +4 -0
  930. data/lib/middleman-core/templates/html5/source/layouts/layout.erb +40 -0
  931. data/lib/middleman-core/templates/html5/source/robots.txt +3 -0
  932. data/lib/middleman-core/templates/local.rb +27 -0
  933. data/lib/middleman-core/templates/mobile.rb +24 -0
  934. data/lib/middleman-core/templates/mobile/source/404.html +37 -0
  935. data/lib/middleman-core/templates/mobile/source/README.markdown +21 -0
  936. data/lib/middleman-core/templates/mobile/source/crossdomain.xml +25 -0
  937. data/lib/middleman-core/templates/mobile/source/css/style.css +315 -0
  938. data/lib/middleman-core/templates/mobile/source/humans.txt +43 -0
  939. data/lib/middleman-core/templates/mobile/source/img/h/apple-touch-icon.png +0 -0
  940. data/lib/middleman-core/templates/mobile/source/img/h/splash.png +0 -0
  941. data/lib/middleman-core/templates/mobile/source/img/l/apple-touch-icon-precomposed.png +0 -0
  942. data/lib/middleman-core/templates/mobile/source/img/l/apple-touch-icon.png +0 -0
  943. data/lib/middleman-core/templates/mobile/source/img/l/splash.png +0 -0
  944. data/lib/middleman-core/templates/mobile/source/img/m/apple-touch-icon.png +0 -0
  945. data/lib/middleman-core/templates/mobile/source/index.html +92 -0
  946. data/lib/middleman-core/templates/mobile/source/js/libs/modernizr-custom.js +14 -0
  947. data/lib/middleman-core/templates/mobile/source/js/libs/respond.min.js +7 -0
  948. data/lib/middleman-core/templates/mobile/source/js/mylibs/helper.js +171 -0
  949. data/lib/middleman-core/templates/mobile/source/js/plugins.js +20 -0
  950. data/lib/middleman-core/templates/mobile/source/js/script.js +0 -0
  951. data/lib/middleman-core/templates/mobile/source/robots.txt +4 -0
  952. data/lib/middleman-core/templates/mobile/source/sitemap.xml +9 -0
  953. data/lib/middleman-core/templates/mobile/source/test/index.html +31 -0
  954. data/lib/middleman-core/templates/mobile/source/test/qunit/qunit.css +148 -0
  955. data/lib/middleman-core/templates/mobile/source/test/qunit/qunit.js +1265 -0
  956. data/lib/middleman-core/templates/mobile/source/test/tests.js +21 -0
  957. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/Readme.PDF +0 -0
  958. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/aspx/aspx1.snippet +31 -0
  959. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/aspx/aspx2.snippet +2 -0
  960. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/aspx/ga.aspx +195 -0
  961. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/aspx/sample.aspx +44 -0
  962. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/jsp/ga.jsp +225 -0
  963. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/jsp/jsp1.snippet +35 -0
  964. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/jsp/jsp2.snippet +2 -0
  965. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/jsp/sample.jsp +51 -0
  966. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/php/ga.php +176 -0
  967. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/php/php1.snippet +30 -0
  968. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/php/php2.snippet +4 -0
  969. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/php/sample.php +44 -0
  970. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/pl/ga.pl +195 -0
  971. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/pl/perl1.snippet +27 -0
  972. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/pl/perl2.snippet +1 -0
  973. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/pl/sample.pl +38 -0
  974. data/lib/middleman-core/templates/mobile/source/tools/mobile-bookmark-bubble/COPYING +202 -0
  975. data/lib/middleman-core/templates/mobile/source/tools/mobile-bookmark-bubble/bookmark_bubble.js +559 -0
  976. data/lib/middleman-core/templates/mobile/source/tools/mobile-bookmark-bubble/example/example.html +43 -0
  977. data/lib/middleman-core/templates/mobile/source/tools/mobile-bookmark-bubble/example/example.js +57 -0
  978. data/lib/middleman-core/templates/mobile/source/tools/mobile-bookmark-bubble/images/arrow.png +0 -0
  979. data/lib/middleman-core/templates/mobile/source/tools/mobile-bookmark-bubble/images/close.png +0 -0
  980. data/lib/middleman-core/templates/mobile/source/tools/mobile-bookmark-bubble/images/generate_base64_images +33 -0
  981. data/lib/middleman-core/templates/mobile/source/tools/mobile-bookmark-bubble/images/icon_calendar.png +0 -0
  982. data/lib/middleman-core/templates/mobile/source/tools/wspl/README +27 -0
  983. data/lib/middleman-core/templates/mobile/source/tools/wspl/databasefactory.js +45 -0
  984. data/lib/middleman-core/templates/mobile/source/tools/wspl/dbworker.js +324 -0
  985. data/lib/middleman-core/templates/mobile/source/tools/wspl/dbworker_test.html +393 -0
  986. data/lib/middleman-core/templates/mobile/source/tools/wspl/dbworkerstarter.js +32 -0
  987. data/lib/middleman-core/templates/mobile/source/tools/wspl/dbwrapper_gears.js +595 -0
  988. data/lib/middleman-core/templates/mobile/source/tools/wspl/dbwrapper_gears_test.html +404 -0
  989. data/lib/middleman-core/templates/mobile/source/tools/wspl/dbwrapper_html5.js +203 -0
  990. data/lib/middleman-core/templates/mobile/source/tools/wspl/dbwrapper_html5_test.html +468 -0
  991. data/lib/middleman-core/templates/mobile/source/tools/wspl/dbwrapperapi.js +202 -0
  992. data/lib/middleman-core/templates/mobile/source/tools/wspl/dbwrapperapi_test.html +51 -0
  993. data/lib/middleman-core/templates/mobile/source/tools/wspl/gears_resultset.js +71 -0
  994. data/lib/middleman-core/templates/mobile/source/tools/wspl/gears_resultset_test.html +86 -0
  995. data/lib/middleman-core/templates/mobile/source/tools/wspl/gears_transaction.js +196 -0
  996. data/lib/middleman-core/templates/mobile/source/tools/wspl/gears_transaction_test.html +221 -0
  997. data/lib/middleman-core/templates/mobile/source/tools/wspl/gearsutils.js +94 -0
  998. data/lib/middleman-core/templates/mobile/source/tools/wspl/gearsutils_test.html +84 -0
  999. data/lib/middleman-core/templates/mobile/source/tools/wspl/global_functions.js +72 -0
  1000. data/lib/middleman-core/templates/mobile/source/tools/wspl/simplenotes/index.html +347 -0
  1001. data/lib/middleman-core/templates/mobile/source/tools/wspl/simplenotes/simplenotes.js +503 -0
  1002. data/lib/middleman-core/templates/mobile/source/tools/wspl/simplenotes/styles.css +66 -0
  1003. data/lib/middleman-core/templates/mobile/source/tools/wspl/simplenotes/template.js +75 -0
  1004. data/lib/middleman-core/templates/shared/Gemfile.tt +14 -0
  1005. data/lib/middleman-core/templates/shared/config.ru +4 -0
  1006. data/lib/middleman-core/templates/shared/config.tt +87 -0
  1007. data/lib/middleman-core/templates/shared/gitignore +18 -0
  1008. data/lib/middleman-core/util.rb +286 -0
  1009. data/lib/middleman-core/version.rb +5 -0
  1010. data/lib/middleman-more/core_extensions/compass.rb +74 -0
  1011. data/lib/middleman-more/core_extensions/default_helpers.rb +261 -0
  1012. data/lib/middleman-more/core_extensions/i18n.rb +238 -0
  1013. data/lib/middleman-more/extensions/asset_hash.rb +128 -0
  1014. data/lib/middleman-more/extensions/asset_host.rb +50 -0
  1015. data/lib/middleman-more/extensions/automatic_alt_tags.rb +27 -0
  1016. data/lib/middleman-more/extensions/automatic_image_sizes.rb +41 -0
  1017. data/lib/middleman-more/extensions/cache_buster.rb +55 -0
  1018. data/lib/middleman-more/extensions/directory_indexes.rb +24 -0
  1019. data/lib/middleman-more/extensions/gzip.rb +106 -0
  1020. data/lib/middleman-more/extensions/lorem.rb +176 -0
  1021. data/lib/middleman-more/extensions/minify_css.rb +78 -0
  1022. data/lib/middleman-more/extensions/minify_javascript.rb +88 -0
  1023. data/lib/middleman-more/extensions/relative_assets.rb +28 -0
  1024. data/lib/middleman-more/templates/smacss.rb +29 -0
  1025. data/lib/middleman-more/templates/smacss/source/_footer.haml +1 -0
  1026. data/lib/middleman-more/templates/smacss/source/index.html.haml +1 -0
  1027. data/lib/middleman-more/templates/smacss/source/layouts/layout.haml +13 -0
  1028. data/lib/middleman-more/templates/smacss/source/stylesheets/base/README.markdown +11 -0
  1029. data/lib/middleman-more/templates/smacss/source/stylesheets/base/base.scss +1 -0
  1030. data/lib/middleman-more/templates/smacss/source/stylesheets/base/normalize.scss +375 -0
  1031. data/lib/middleman-more/templates/smacss/source/stylesheets/layout/README.markdown +9 -0
  1032. data/lib/middleman-more/templates/smacss/source/stylesheets/modules/README.markdown +9 -0
  1033. data/lib/middleman-more/templates/smacss/source/stylesheets/states/README.markdown +12 -0
  1034. data/lib/middleman-more/templates/smacss/source/stylesheets/style.css.scss +12 -0
  1035. data/lib/middleman/rack.rb +4 -0
  1036. data/lib/vendored-middleman-deps/fastimage.rb +287 -0
  1037. data/middleman-core.gemspec +43 -0
  1038. data/spec/middleman-core/binary_spec.rb +15 -0
  1039. data/spec/middleman-core/binary_spec/middleman +0 -0
  1040. data/spec/middleman-core/binary_spec/middleman.png +0 -0
  1041. data/spec/middleman-core/binary_spec/plain.txt +1 -0
  1042. data/spec/middleman-core/binary_spec/stars.svgz +0 -0
  1043. data/spec/middleman-core/binary_spec/unicode +1 -0
  1044. data/spec/middleman-core/binary_spec/unicode.txt +1 -0
  1045. data/spec/spec_helper.rb +5 -0
  1046. metadata +1268 -0
@@ -0,0 +1,9 @@
1
+ # SMACSS
2
+
3
+ ### Layout
4
+
5
+ > CSS, by its very nature, is used to lay elements out on the page. However, there is a distinction between layouts dictating the major and minor components of a page. The minor components—such as a callout, or login form, or a navigation item—sit within the scope of major components such as a header or footer. I refer to the minor components as Modules [...] The major components are referred to as Layout styles.
6
+
7
+ > - SMACSS, Jonathan Snook
8
+
9
+ Use this directory for files that contain the CSS to layout major elements on the page. We typically use one file per major component and `@import` them in `style.css.scss`.
@@ -0,0 +1,9 @@
1
+ # SMACSS
2
+
3
+ ### Modules
4
+
5
+ > A Module is a more discrete component of the page. It is your navigation bars and your carousels and your dialogs and your widgets and so on. This is the meat of the page. Modules sit inside Layout components. Modules can sometimes sit within other Modules, too. Each Module should be designed to exist as a standalone component. In doing so, the page will be more flexible. If done right, Modules can easily be moved to different parts of the layout without breaking.
6
+
7
+ > - SMACSS, Jonathan Snook
8
+
9
+ In this directory we typically use one file per module.
@@ -0,0 +1,12 @@
1
+ # SMACSS
2
+
3
+ ### States
4
+
5
+ > A state is something that augments and overrides all other styles. For example, an accordion section may be in a collapsed or expanded state. A message may be in a success or error state. [Modules and states] differ in two key ways:
6
+
7
+ > 1. State styles can apply to layout and/or module styles; and
8
+ > 2. State styles indicate a JavaScript dependency.
9
+
10
+ > - SMACSS, Jonathan Snook
11
+
12
+ State styles typically refer to styles that only exist on an element for a short period time, for example: styles for invalid form fields would go in `validations.scss`.
@@ -0,0 +1,12 @@
1
+ // Import Base Styles
2
+ @import "base/normalize"
3
+ // @import "base/all_your"
4
+
5
+ // Import Layout Styles
6
+ // @import "layout/grid"
7
+
8
+ // Import Module Styles
9
+ // @import "modules/buttons"
10
+
11
+ // Import State Styles
12
+ // @import "states/validation"
@@ -0,0 +1,4 @@
1
+ require 'middleman-core/load_paths'
2
+ ::Middleman.setup_load_paths
3
+
4
+ require 'middleman-core'
@@ -0,0 +1,287 @@
1
+ # FastImage finds the size or type of an image given its uri.
2
+ # It is careful to only fetch and parse as much of the image as is needed to determine the result.
3
+ # It does this by using a feature of Net::HTTP that yields strings from the resource being fetched
4
+ # as soon as the packets arrive.
5
+ #
6
+ # No external libraries such as ImageMagick are used here, this is a very lightweight solution to
7
+ # finding image information.
8
+ #
9
+ # FastImage knows about GIF, JPEG, BMP and PNG files.
10
+ #
11
+ # FastImage can also read files from the local filesystem by supplying the path instead of a uri.
12
+ # In this case FastImage uses the open-uri library to read the file in chunks of 256 bytes until
13
+ # it has enough. This is possibly a useful bandwidth-saving feature if the file is on a network
14
+ # attached disk rather than truly local.
15
+ #
16
+ # === Examples
17
+ # require 'fastimage'
18
+ #
19
+ # FastImage.size("http://stephensykes.com/images/ss.com_x.gif")
20
+ # => [266, 56]
21
+ # FastImage.type("http://stephensykes.com/images/pngimage")
22
+ # => :png
23
+ # FastImage.type("/some/local/file.gif")
24
+ # => :gif
25
+ #
26
+ # === References
27
+ # * http://snippets.dzone.com/posts/show/805
28
+ # * http://www.anttikupila.com/flash/getting-jpg-dimensions-with-as3-without-loading-the-entire-file/
29
+ # * http://pennysmalls.com/2008/08/19/find-jpeg-dimensions-fast-in-ruby/
30
+ # * http://imagesize.rubyforge.org/
31
+ #
32
+ require 'net/https'
33
+ require 'open-uri'
34
+
35
+ class FastImage
36
+ attr_reader :size, :type
37
+
38
+ class FastImageException < StandardError # :nodoc:
39
+ end
40
+ class MoreCharsNeeded < FastImageException # :nodoc:
41
+ end
42
+ class UnknownImageType < FastImageException # :nodoc:
43
+ end
44
+ class ImageFetchFailure < FastImageException # :nodoc:
45
+ end
46
+ class SizeNotFound < FastImageException # :nodoc:
47
+ end
48
+
49
+ DefaultTimeout = 2
50
+
51
+ LocalFileChunkSize = 256
52
+
53
+ # Returns an array containing the width and height of the image.
54
+ # It will return nil if the image could not be fetched, or if the image type was not recognised.
55
+ #
56
+ # By default there is a timeout of 2 seconds for opening and reading from a remote server.
57
+ # This can be changed by passing a :timeout => number_of_seconds in the options.
58
+ #
59
+ # If you wish FastImage to raise if it cannot size the image for any reason, then pass
60
+ # :raise_on_failure => true in the options.
61
+ #
62
+ # FastImage knows about GIF, JPEG, BMP and PNG files.
63
+ #
64
+ # === Example
65
+ #
66
+ # require 'fastimage'
67
+ #
68
+ # FastImage.size("http://stephensykes.com/images/ss.com_x.gif")
69
+ # => [266, 56]
70
+ # FastImage.size("http://stephensykes.com/images/pngimage")
71
+ # => [16, 16]
72
+ # FastImage.size("http://farm4.static.flickr.com/3023/3047236863_9dce98b836.jpg")
73
+ # => [500, 375]
74
+ # FastImage.size("http://www-ece.rice.edu/~wakin/images/lena512.bmp")
75
+ # => [512, 512]
76
+ # FastImage.size("test/fixtures/test.jpg")
77
+ # => [882, 470]
78
+ # FastImage.size("http://pennysmalls.com/does_not_exist")
79
+ # => nil
80
+ # FastImage.size("http://pennysmalls.com/does_not_exist", :raise_on_failure=>true)
81
+ # => raises FastImage::ImageFetchFailure
82
+ # FastImage.size("http://stephensykes.com/favicon.ico", :raise_on_failure=>true)
83
+ # => raises FastImage::UnknownImageType
84
+ # FastImage.size("http://stephensykes.com/favicon.ico", :raise_on_failure=>true, :timeout=>0.01)
85
+ # => raises FastImage::ImageFetchFailure
86
+ # FastImage.size("http://stephensykes.com/images/faulty.jpg", :raise_on_failure=>true)
87
+ # => raises FastImage::SizeNotFound
88
+ #
89
+ # === Supported options
90
+ # [:timeout]
91
+ # Overrides the default timeout of 2 seconds. Applies both to reading from and opening the http connection.
92
+ # [:raise_on_failure]
93
+ # If set to true causes an exception to be raised if the image size cannot be found for any reason.
94
+ #
95
+ def self.size(uri, options={})
96
+ new(uri, options).size
97
+ end
98
+
99
+ # Returns an symbol indicating the image type fetched from a uri.
100
+ # It will return nil if the image could not be fetched, or if the image type was not recognised.
101
+ #
102
+ # By default there is a timeout of 2 seconds for opening and reading from a remote server.
103
+ # This can be changed by passing a :timeout => number_of_seconds in the options.
104
+ #
105
+ # If you wish FastImage to raise if it cannot find the type of the image for any reason, then pass
106
+ # :raise_on_failure => true in the options.
107
+ #
108
+ # === Example
109
+ #
110
+ # require 'fastimage'
111
+ #
112
+ # FastImage.type("http://stephensykes.com/images/ss.com_x.gif")
113
+ # => :gif
114
+ # FastImage.type("http://stephensykes.com/images/pngimage")
115
+ # => :png
116
+ # FastImage.type("http://farm4.static.flickr.com/3023/3047236863_9dce98b836.jpg")
117
+ # => :jpeg
118
+ # FastImage.type("http://www-ece.rice.edu/~wakin/images/lena512.bmp")
119
+ # => :bmp
120
+ # FastImage.type("test/fixtures/test.jpg")
121
+ # => :jpeg
122
+ # FastImage.type("http://pennysmalls.com/does_not_exist")
123
+ # => nil
124
+ #
125
+ # === Supported options
126
+ # [:timeout]
127
+ # Overrides the default timeout of 2 seconds. Applies both to reading from and opening the http connection.
128
+ # [:raise_on_failure]
129
+ # If set to true causes an exception to be raised if the image type cannot be found for any reason.
130
+ #
131
+ def self.type(uri, options={})
132
+ new(uri, options.merge(:type_only=>true)).type
133
+ end
134
+
135
+ def initialize(uri, options={})
136
+ @property = options[:type_only] ? :type : :size
137
+ @timeout = options[:timeout] || DefaultTimeout
138
+ @uri = uri
139
+ begin
140
+ @parsed_uri = URI.parse(uri)
141
+ rescue URI::InvalidURIError
142
+ fetch_using_open_uri
143
+ else
144
+ if @parsed_uri.scheme == "http" || @parsed_uri.scheme == "https"
145
+ fetch_using_http
146
+ else
147
+ fetch_using_open_uri
148
+ end
149
+ end
150
+ raise SizeNotFound if options[:raise_on_failure] && @property == :size && !@size
151
+ rescue Timeout::Error, SocketError, Errno::ECONNREFUSED, Errno::EHOSTUNREACH, Errno::ECONNRESET,
152
+ ImageFetchFailure, Net::HTTPBadResponse, EOFError, Errno::ENOENT
153
+ raise ImageFetchFailure if options[:raise_on_failure]
154
+ rescue NoMethodError # 1.8.7p248 can raise this due to a net/http bug
155
+ raise ImageFetchFailure if options[:raise_on_failure]
156
+ rescue UnknownImageType
157
+ raise UnknownImageType if options[:raise_on_failure]
158
+ end
159
+
160
+ private
161
+
162
+ def fetch_using_http
163
+ setup_http
164
+ @http.request_get(@parsed_uri.request_uri) do |res|
165
+ raise ImageFetchFailure unless res.is_a?(Net::HTTPSuccess)
166
+ res.read_body do |str|
167
+ break if parse_packet(str)
168
+ end
169
+ end
170
+ end
171
+
172
+ def setup_http
173
+ @http = Net::HTTP.new(@parsed_uri.host, @parsed_uri.port)
174
+ @http.use_ssl = (@parsed_uri.scheme == "https")
175
+ @http.verify_mode = OpenSSL::SSL::VERIFY_NONE
176
+ @http.open_timeout = @timeout
177
+ @http.read_timeout = @timeout
178
+ end
179
+
180
+ def fetch_using_open_uri
181
+ open(@uri) do |s|
182
+ while str = s.read(LocalFileChunkSize)
183
+ break if parse_packet(str)
184
+ end
185
+ end
186
+ end
187
+
188
+ # returns true once result is achieved
189
+ #
190
+ def parse_packet(str)
191
+ @str = (@unused_str || "") + str
192
+ @strpos = 0
193
+ begin
194
+ result = send("parse_#{@property}")
195
+ if result
196
+ instance_variable_set("@#{@property}", result)
197
+ true
198
+ end
199
+ rescue MoreCharsNeeded
200
+ false
201
+ end
202
+ end
203
+
204
+ def parse_size
205
+ @type = parse_type unless @type
206
+ @strpos = 0
207
+ send("parse_size_for_#{@type}")
208
+ end
209
+
210
+ def get_chars(n)
211
+ if @strpos + n - 1 >= @str.size
212
+ @unused_str = @str[@strpos..-1]
213
+ raise MoreCharsNeeded
214
+ else
215
+ result = @str[@strpos..(@strpos + n - 1)]
216
+ @strpos += n
217
+ result
218
+ end
219
+ end
220
+
221
+ def get_byte
222
+ get_chars(1).unpack("C")[0]
223
+ end
224
+
225
+ def read_int(str)
226
+ size_bytes = str.unpack("CC")
227
+ (size_bytes[0] << 8) + size_bytes[1]
228
+ end
229
+
230
+ def parse_type
231
+ case get_chars(2)
232
+ when "BM"
233
+ :bmp
234
+ when "GI"
235
+ :gif
236
+ when 0xff.chr + 0xd8.chr
237
+ :jpeg
238
+ when 0x89.chr + "P"
239
+ :png
240
+ else
241
+ raise UnknownImageType
242
+ end
243
+ end
244
+
245
+ def parse_size_for_gif
246
+ get_chars(11)[6..10].unpack('SS')
247
+ end
248
+
249
+ def parse_size_for_png
250
+ get_chars(25)[16..24].unpack('NN')
251
+ end
252
+
253
+ def parse_size_for_jpeg
254
+ loop do
255
+ @state = case @state
256
+ when nil
257
+ get_chars(2)
258
+ :started
259
+ when :started
260
+ get_byte == 0xFF ? :sof : :started
261
+ when :sof
262
+ c = get_byte
263
+ if (0xe0..0xef).include?(c)
264
+ :skipframe
265
+ elsif [0xC0..0xC3, 0xC5..0xC7, 0xC9..0xCB, 0xCD..0xCF].detect {|r| r.include? c}
266
+ :readsize
267
+ else
268
+ :skipframe
269
+ end
270
+ when :skipframe
271
+ @skip_chars = read_int(get_chars(2)) - 2
272
+ :do_skip
273
+ when :do_skip
274
+ get_chars(@skip_chars)
275
+ :started
276
+ when :readsize
277
+ s = get_chars(7)
278
+ return [read_int(s[5..6]), read_int(s[3..4])]
279
+ end
280
+ end
281
+ end
282
+
283
+ def parse_size_for_bmp
284
+ d = get_chars(29)[14..28]
285
+ d.unpack("C")[0] == 40 ? d[4..-1].unpack('LL') : d[4..8].unpack('SS')
286
+ end
287
+ end
@@ -0,0 +1,43 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path("../lib/middleman-core/version", __FILE__)
3
+
4
+ Gem::Specification.new do |s|
5
+ s.name = "middleman-core-cj"
6
+ s.version = Middleman::VERSION
7
+ s.platform = Gem::Platform::RUBY
8
+ s.license = "MIT"
9
+ s.authors = ["Thomas Reynolds", "Ben Hollis", "Karl Freeman"]
10
+ s.email = ["me@tdreyno.com", "ben@benhollis.net", "karlfreeman@gmail.com"]
11
+ s.homepage = "http://middlemanapp.com"
12
+ s.summary = "Hand-crafted frontend development"
13
+ s.description = "A static site generator. Provides dozens of templating languages (Haml, Sass, Compass, Slim, CoffeeScript, and more). Makes minification, compression, cache busting, Yaml data (and more) an easy part of your development cycle."
14
+
15
+ s.files = `git ls-files -z`.split("\0")
16
+ s.test_files = `git ls-files -z -- {fixtures,features}/*`.split("\0")
17
+ s.executable = "middleman"
18
+ s.require_path = "lib"
19
+ s.required_ruby_version = '>= 1.9.3'
20
+
21
+ # Core
22
+ s.add_dependency("bundler", ["~> 1.1"])
23
+ s.add_dependency("rack", [">= 1.4.5", "< 2.0"])
24
+ s.add_dependency("tilt")
25
+ s.add_dependency("erubis")
26
+ s.add_dependency("hooks", ["~> 0.3"])
27
+
28
+ # Builder
29
+ s.add_dependency("rack-test", ["~> 0.6.2"])
30
+
31
+ # CLI
32
+ s.add_dependency("thor", [">= 0.15.2", "< 2.0"])
33
+
34
+ # Helpers
35
+ s.add_dependency("activesupport", ["~> 4.1.0"])
36
+ s.add_dependency("padrino-helpers", ["~> 0.12.1"])
37
+
38
+ # Watcher
39
+ s.add_dependency("listen", [">= 2.7.9", "< 3.0"])
40
+
41
+ # i18n
42
+ s.add_dependency("i18n", ["~> 0.6.9"])
43
+ end
@@ -0,0 +1,15 @@
1
+ require 'middleman-core/util'
2
+
3
+ describe "Middleman::Util#binary?" do
4
+ %w(plain.txt unicode.txt unicode).each do |file|
5
+ it "recognizes #{file} as not binary" do
6
+ expect(Middleman::Util.binary?(File.join(File.dirname(__FILE__), "binary_spec/#{file}"))).to be false
7
+ end
8
+ end
9
+
10
+ %w(middleman.png middleman stars.svgz).each do |file|
11
+ it "recognizes #{file} as binary" do
12
+ expect(Middleman::Util.binary?(File.join(File.dirname(__FILE__), "binary_spec/#{file}"))).to be true
13
+ end
14
+ end
15
+ end
@@ -0,0 +1 @@
1
+ Some plain text
@@ -0,0 +1 @@
1
+ 明日がある。
@@ -0,0 +1 @@
1
+ 明日がある。
@@ -0,0 +1,5 @@
1
+ require 'simplecov'
2
+ SimpleCov.root(File.expand_path(File.dirname(__FILE__) + '/..'))
3
+
4
+ require 'coveralls'
5
+ Coveralls.wear!
metadata ADDED
@@ -0,0 +1,1268 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: middleman-core-cj
3
+ version: !ruby/object:Gem::Version
4
+ version: 3.3.4
5
+ platform: ruby
6
+ authors:
7
+ - Thomas Reynolds
8
+ - Ben Hollis
9
+ - Karl Freeman
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2014-08-11 00:00:00.000000000 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: bundler
17
+ requirement: !ruby/object:Gem::Requirement
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: '1.1'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - ~>
27
+ - !ruby/object:Gem::Version
28
+ version: '1.1'
29
+ - !ruby/object:Gem::Dependency
30
+ name: rack
31
+ requirement: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - '>='
34
+ - !ruby/object:Gem::Version
35
+ version: 1.4.5
36
+ - - <
37
+ - !ruby/object:Gem::Version
38
+ version: '2.0'
39
+ type: :runtime
40
+ prerelease: false
41
+ version_requirements: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - '>='
44
+ - !ruby/object:Gem::Version
45
+ version: 1.4.5
46
+ - - <
47
+ - !ruby/object:Gem::Version
48
+ version: '2.0'
49
+ - !ruby/object:Gem::Dependency
50
+ name: tilt
51
+ requirement: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - '>='
54
+ - !ruby/object:Gem::Version
55
+ version: '0'
56
+ type: :runtime
57
+ prerelease: false
58
+ version_requirements: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - '>='
61
+ - !ruby/object:Gem::Version
62
+ version: '0'
63
+ - !ruby/object:Gem::Dependency
64
+ name: erubis
65
+ requirement: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ type: :runtime
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - '>='
75
+ - !ruby/object:Gem::Version
76
+ version: '0'
77
+ - !ruby/object:Gem::Dependency
78
+ name: hooks
79
+ requirement: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ~>
82
+ - !ruby/object:Gem::Version
83
+ version: '0.3'
84
+ type: :runtime
85
+ prerelease: false
86
+ version_requirements: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ~>
89
+ - !ruby/object:Gem::Version
90
+ version: '0.3'
91
+ - !ruby/object:Gem::Dependency
92
+ name: rack-test
93
+ requirement: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - ~>
96
+ - !ruby/object:Gem::Version
97
+ version: 0.6.2
98
+ type: :runtime
99
+ prerelease: false
100
+ version_requirements: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - ~>
103
+ - !ruby/object:Gem::Version
104
+ version: 0.6.2
105
+ - !ruby/object:Gem::Dependency
106
+ name: thor
107
+ requirement: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - '>='
110
+ - !ruby/object:Gem::Version
111
+ version: 0.15.2
112
+ - - <
113
+ - !ruby/object:Gem::Version
114
+ version: '2.0'
115
+ type: :runtime
116
+ prerelease: false
117
+ version_requirements: !ruby/object:Gem::Requirement
118
+ requirements:
119
+ - - '>='
120
+ - !ruby/object:Gem::Version
121
+ version: 0.15.2
122
+ - - <
123
+ - !ruby/object:Gem::Version
124
+ version: '2.0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: activesupport
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ~>
130
+ - !ruby/object:Gem::Version
131
+ version: 4.1.0
132
+ type: :runtime
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ~>
137
+ - !ruby/object:Gem::Version
138
+ version: 4.1.0
139
+ - !ruby/object:Gem::Dependency
140
+ name: padrino-helpers
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - ~>
144
+ - !ruby/object:Gem::Version
145
+ version: 0.12.1
146
+ type: :runtime
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ~>
151
+ - !ruby/object:Gem::Version
152
+ version: 0.12.1
153
+ - !ruby/object:Gem::Dependency
154
+ name: listen
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - '>='
158
+ - !ruby/object:Gem::Version
159
+ version: 2.7.9
160
+ - - <
161
+ - !ruby/object:Gem::Version
162
+ version: '3.0'
163
+ type: :runtime
164
+ prerelease: false
165
+ version_requirements: !ruby/object:Gem::Requirement
166
+ requirements:
167
+ - - '>='
168
+ - !ruby/object:Gem::Version
169
+ version: 2.7.9
170
+ - - <
171
+ - !ruby/object:Gem::Version
172
+ version: '3.0'
173
+ - !ruby/object:Gem::Dependency
174
+ name: i18n
175
+ requirement: !ruby/object:Gem::Requirement
176
+ requirements:
177
+ - - ~>
178
+ - !ruby/object:Gem::Version
179
+ version: 0.6.9
180
+ type: :runtime
181
+ prerelease: false
182
+ version_requirements: !ruby/object:Gem::Requirement
183
+ requirements:
184
+ - - ~>
185
+ - !ruby/object:Gem::Version
186
+ version: 0.6.9
187
+ description: A static site generator. Provides dozens of templating languages (Haml,
188
+ Sass, Compass, Slim, CoffeeScript, and more). Makes minification, compression, cache
189
+ busting, Yaml data (and more) an easy part of your development cycle.
190
+ email:
191
+ - me@tdreyno.com
192
+ - ben@benhollis.net
193
+ - karlfreeman@gmail.com
194
+ executables:
195
+ - middleman
196
+ extensions: []
197
+ extra_rdoc_files: []
198
+ files:
199
+ - .gemtest
200
+ - .simplecov
201
+ - .yardopts
202
+ - Rakefile
203
+ - bin/middleman
204
+ - features/3rd_party_cli.feature
205
+ - features/asciidoc.feature
206
+ - features/asset_hash.feature
207
+ - features/asset_host.feature
208
+ - features/auto_layout.feature
209
+ - features/automatic_alt_tags.feature
210
+ - features/automatic_directory_matcher.feature
211
+ - features/automatic_image_sizes.feature
212
+ - features/builder.feature
213
+ - features/cache_buster.feature
214
+ - features/capture_html.feature
215
+ - features/chained_templates.feature
216
+ - features/clean_build.feature
217
+ - features/cli_extension.feature
218
+ - features/cli_init.feature
219
+ - features/coffee-script.feature
220
+ - features/compass-sprites.feature
221
+ - features/content_for.feature
222
+ - features/content_type.feature
223
+ - features/current_page_request_path_backwards.feature
224
+ - features/custom-source.feature
225
+ - features/custom_layout_engines.feature
226
+ - features/custom_layouts.feature
227
+ - features/data.feature
228
+ - features/directory_index.feature
229
+ - features/dynamic_pages.feature
230
+ - features/extensionless_text_files.feature
231
+ - features/feature_params.feature
232
+ - features/fonts.feature
233
+ - features/former_padrino_helpers.feature
234
+ - features/front-matter-neighbor.feature
235
+ - features/front-matter.feature
236
+ - features/frontmatter_page_settings.feature
237
+ - features/gzip.feature
238
+ - features/helpers_auto_javascript_include_tag.feature
239
+ - features/helpers_auto_stylesheet_link_tag.feature
240
+ - features/helpers_content_tag.feature
241
+ - features/helpers_external.feature
242
+ - features/helpers_form_tag.feature
243
+ - features/helpers_link_to.feature
244
+ - features/helpers_lorem.feature
245
+ - features/helpers_page_classes.feature
246
+ - features/helpers_select_tag.feature
247
+ - features/helpers_url_for.feature
248
+ - features/i18n_builder.feature
249
+ - features/i18n_force_locale.feature
250
+ - features/i18n_partials.feature
251
+ - features/i18n_preview.feature
252
+ - features/ignore.feature
253
+ - features/ignore_already_minified.feature
254
+ - features/implied_extensions.feature
255
+ - features/instance_vars.feature
256
+ - features/layouts_dir.feature
257
+ - features/liquid.feature
258
+ - features/markdown.feature
259
+ - features/markdown_kramdown.feature
260
+ - features/markdown_kramdown_in_haml.feature
261
+ - features/markdown_redcarpet.feature
262
+ - features/markdown_redcarpet_in_haml.feature
263
+ - features/minify_css.feature
264
+ - features/minify_javascript.feature
265
+ - features/missing-tilt-lib.feature
266
+ - features/more-clean_build.feature
267
+ - features/more-extensionless_text_files.feature
268
+ - features/more-frontmatter_page_settings.feature
269
+ - features/more-ignore.feature
270
+ - features/more-implied_extensions.feature
271
+ - features/more-instance_vars.feature
272
+ - features/more-sitemap_traversal.feature
273
+ - features/more-wildcard_page_helper.feature
274
+ - features/mount_rack.feature
275
+ - features/nested_layouts.feature
276
+ - features/partials.feature
277
+ - features/partials_dir.feature
278
+ - features/preview_changes.feature
279
+ - features/proxy_pages.feature
280
+ - features/queryable.feature
281
+ - features/redirects.feature
282
+ - features/relative_assets.feature
283
+ - features/request_params.feature
284
+ - features/sass-assets-paths.feature
285
+ - features/sass_partials.feature
286
+ - features/scss-support.feature
287
+ - features/sitemap_traversal.feature
288
+ - features/slim.feature
289
+ - features/static_server.feature
290
+ - features/step_definitions/page_layout_steps.rb
291
+ - features/step_definitions/queryable_steps.rb
292
+ - features/strip_url.feature
293
+ - features/stylus.feature
294
+ - features/support/env.rb
295
+ - features/tilde_directories.feature
296
+ - features/twitter-bootstrap-compile.feature
297
+ - features/unicode_filecontents.feature
298
+ - features/unicode_filenames.feature
299
+ - features/v3_extensions.feature
300
+ - features/v4_extension_callbacks.feature
301
+ - features/wildcard_page_helper.feature
302
+ - fixtures/asciidoc-app/config.rb
303
+ - fixtures/asciidoc-app/source/_include.adoc
304
+ - fixtures/asciidoc-app/source/code.adoc
305
+ - fixtures/asciidoc-app/source/custom-attribute.adoc
306
+ - fixtures/asciidoc-app/source/gallery.adoc
307
+ - fixtures/asciidoc-app/source/hello-no-layout.adoc
308
+ - fixtures/asciidoc-app/source/hello-with-front-matter.adoc
309
+ - fixtures/asciidoc-app/source/hello-with-layout.adoc
310
+ - fixtures/asciidoc-app/source/hello-with-title.adoc
311
+ - fixtures/asciidoc-app/source/hello.adoc
312
+ - fixtures/asciidoc-app/source/images/tiger.gif
313
+ - fixtures/asciidoc-app/source/layouts/default.erb
314
+ - fixtures/asciidoc-app/source/master.adoc
315
+ - fixtures/asset-hash-app/config.rb
316
+ - fixtures/asset-hash-app/lib/middleware.rb
317
+ - fixtures/asset-hash-app/source/apple-touch-icon.png
318
+ - fixtures/asset-hash-app/source/favicon.ico
319
+ - fixtures/asset-hash-app/source/images/100px.gif
320
+ - fixtures/asset-hash-app/source/images/100px.jpg
321
+ - fixtures/asset-hash-app/source/images/100px.png
322
+ - fixtures/asset-hash-app/source/index.html.erb
323
+ - fixtures/asset-hash-app/source/javascripts/application.js
324
+ - fixtures/asset-hash-app/source/layout.erb
325
+ - fixtures/asset-hash-app/source/other.html.erb
326
+ - fixtures/asset-hash-app/source/partials.html.erb
327
+ - fixtures/asset-hash-app/source/stylesheets/_partial.sass
328
+ - fixtures/asset-hash-app/source/stylesheets/site.css.scss
329
+ - fixtures/asset-hash-app/source/stylesheets/uses_partials.css.sass
330
+ - fixtures/asset-hash-app/source/subdir/index.html.erb
331
+ - fixtures/asset-hash-host-app/config.rb
332
+ - fixtures/asset-hash-host-app/source/images/100px.gif
333
+ - fixtures/asset-hash-host-app/source/images/100px.jpg
334
+ - fixtures/asset-hash-host-app/source/images/100px.png
335
+ - fixtures/asset-hash-host-app/source/index.html.erb
336
+ - fixtures/asset-hash-host-app/source/layout.erb
337
+ - fixtures/asset-hash-host-app/source/other.html.erb
338
+ - fixtures/asset-hash-host-app/source/stylesheets/fragment.css.scss
339
+ - fixtures/asset-hash-host-app/source/stylesheets/site.css.scss
340
+ - fixtures/asset-hash-host-app/source/subdir/index.html.erb
341
+ - fixtures/asset-host-app/config.rb
342
+ - fixtures/asset-host-app/source/.htaccess
343
+ - fixtures/asset-host-app/source/asset_host.html.erb
344
+ - fixtures/asset-host-app/source/images/blank.gif
345
+ - fixtures/asset-host-app/source/stylesheets/asset_host.css.sass
346
+ - fixtures/auto-css-app/config.rb
347
+ - fixtures/auto-css-app/source/auto-css.html.erb
348
+ - fixtures/auto-css-app/source/auto-css/auto-css.html.erb
349
+ - fixtures/auto-css-app/source/auto-css/index.html.erb
350
+ - fixtures/auto-css-app/source/auto-css/sub/auto-css.html.erb
351
+ - fixtures/auto-css-app/source/stylesheets/auto-css.css
352
+ - fixtures/auto-css-app/source/stylesheets/auto-css/auto-css.css
353
+ - fixtures/auto-css-app/source/stylesheets/auto-css/index.css
354
+ - fixtures/auto-css-app/source/stylesheets/auto-css/sub/auto-css.css
355
+ - fixtures/auto-js-app/config.rb
356
+ - fixtures/auto-js-app/source/auto-js.html.erb
357
+ - fixtures/auto-js-app/source/auto-js/auto-js.html.erb
358
+ - fixtures/auto-js-app/source/auto-js/index.html.erb
359
+ - fixtures/auto-js-app/source/auto-js/sub/auto-js.html.erb
360
+ - fixtures/auto-js-app/source/javascripts/auto-js.js
361
+ - fixtures/auto-js-app/source/javascripts/auto-js/auto-js.js
362
+ - fixtures/auto-js-app/source/javascripts/auto-js/index.js
363
+ - fixtures/auto-js-app/source/javascripts/auto-js/sub/auto-js.js
364
+ - fixtures/auto-js-directory-index-app/config.rb
365
+ - fixtures/auto-js-directory-index-app/source/auto-js.html.erb
366
+ - fixtures/auto-js-directory-index-app/source/javascripts/auto-js.js
367
+ - fixtures/automatic-alt-tags-app/config.rb
368
+ - fixtures/automatic-alt-tags-app/source/auto-image-sizes.html.erb
369
+ - fixtures/automatic-alt-tags-app/source/images/blank.gif
370
+ - fixtures/automatic-directory-matcher-app/config.rb
371
+ - fixtures/automatic-directory-matcher-app/source/root-plain.html
372
+ - fixtures/automatic-directory-matcher-app/source/root.html.erb
373
+ - fixtures/automatic-directory-matcher-app/source/sub--sub--sub-plain.html
374
+ - fixtures/automatic-directory-matcher-app/source/sub--sub--sub.html.erb
375
+ - fixtures/automatic-directory-matcher-app/source/sub--sub-plain.html
376
+ - fixtures/automatic-directory-matcher-app/source/sub--sub.html.erb
377
+ - fixtures/automatic-image-size-app/config.rb
378
+ - fixtures/automatic-image-size-app/source/auto-image-sizes.html.erb
379
+ - fixtures/automatic-image-size-app/source/images/blank.gif
380
+ - fixtures/basic-data-app/config.rb
381
+ - fixtures/basic-data-app/data/test.yml
382
+ - fixtures/basic-data-app/data/test2.json
383
+ - fixtures/basic-data-app/source/data.html.erb
384
+ - fixtures/basic-data-app/source/data3.html.erb
385
+ - fixtures/build-with-errors-app/config.rb
386
+ - fixtures/build-with-errors-app/source/index.html.erb
387
+ - fixtures/cache-buster-app/config.rb
388
+ - fixtures/cache-buster-app/source/cache-buster.html.erb
389
+ - fixtures/cache-buster-app/source/images/blank.gif
390
+ - fixtures/cache-buster-app/source/stylesheets/relative_assets.css.sass
391
+ - fixtures/cache-buster-app/source/stylesheets/site.css.sass
392
+ - fixtures/capture-html-app/config.rb
393
+ - fixtures/capture-html-app/source/capture_html_erb.html.erb
394
+ - fixtures/capture-html-app/source/capture_html_haml.html.haml
395
+ - fixtures/capture-html-app/source/capture_html_slim.html.slim
396
+ - fixtures/capture-html-app/source/layouts/capture_html.erb
397
+ - fixtures/chained-app/config.rb
398
+ - fixtures/chained-app/data/article.yml
399
+ - fixtures/chained-app/source/index.html.str.erb
400
+ - fixtures/clean-app/config-complications.rb
401
+ - fixtures/clean-app/config-empty.rb
402
+ - fixtures/clean-app/config.rb
403
+ - fixtures/clean-app/source/index.html.erb
404
+ - fixtures/clean-app/source/layout.erb
405
+ - fixtures/clean-app/source/layouts/custom.erb
406
+ - fixtures/clean-app/source/real.html
407
+ - fixtures/clean-app/source/real/index.html.erb
408
+ - fixtures/clean-app/source/should_be_ignored.html
409
+ - fixtures/clean-app/source/should_be_ignored2.html
410
+ - fixtures/clean-app/source/should_be_ignored3.html
411
+ - fixtures/clean-app/source/static.html
412
+ - fixtures/clean-dir-app/config.rb
413
+ - fixtures/clean-dir-app/source/about.html
414
+ - fixtures/clean-nested-app/config.rb
415
+ - fixtures/clean-nested-app/source/about.html
416
+ - fixtures/clean-nested-app/source/nested/nested.html
417
+ - fixtures/coffeescript-app/config.rb
418
+ - fixtures/coffeescript-app/source/inline-coffeescript.html.haml
419
+ - fixtures/coffeescript-app/source/javascripts/broken-coffee.js.coffee
420
+ - fixtures/coffeescript-app/source/javascripts/coffee_test.js.coffee
421
+ - fixtures/compass-sprites-app/config.rb
422
+ - fixtures/compass-sprites-app/source/images/icon/arrow_down.png
423
+ - fixtures/compass-sprites-app/source/images/icon/arrow_left.png
424
+ - fixtures/compass-sprites-app/source/images/icon/arrow_right.png
425
+ - fixtures/compass-sprites-app/source/images/icon/arrow_up.png
426
+ - fixtures/compass-sprites-app/source/stylesheets/site.css.scss
427
+ - fixtures/content-for-app/config.rb
428
+ - fixtures/content-for-app/source/content_for_erb.html.erb
429
+ - fixtures/content-for-app/source/content_for_haml.html.haml
430
+ - fixtures/content-for-app/source/content_for_slim.html.slim
431
+ - fixtures/content-for-app/source/layouts/content_for.erb
432
+ - fixtures/content-type-app/config.rb
433
+ - fixtures/content-type-app/source/.htaccess
434
+ - fixtures/content-type-app/source/README
435
+ - fixtures/content-type-app/source/images/blank.gif
436
+ - fixtures/content-type-app/source/index.html
437
+ - fixtures/content-type-app/source/javascripts/app.js
438
+ - fixtures/content-type-app/source/override.html
439
+ - fixtures/content-type-app/source/stylesheets/site.css
440
+ - fixtures/csspie/config.rb
441
+ - fixtures/csspie/source/stylesheets/PIE.htc
442
+ - fixtures/current-page-app/config.rb
443
+ - fixtures/current-page-app/source/request-path.html.erb
444
+ - fixtures/custom-layout-app/config.rb
445
+ - fixtures/custom-layout-app/source/index.html.erb
446
+ - fixtures/custom-layout-app/source/layout.str
447
+ - fixtures/custom-layout-app2/config.rb
448
+ - fixtures/custom-layout-app2/source/custom-layout-dir/index.html.erb
449
+ - fixtures/custom-layout-app2/source/custom-layout.html.erb
450
+ - fixtures/custom-layout-app2/source/layouts/custom.erb
451
+ - fixtures/custom-src-app/config.rb
452
+ - fixtures/custom-src-app/src/index.html
453
+ - fixtures/custom-src-app/src/layouts/layout.html.erb
454
+ - fixtures/data-app/config.rb
455
+ - fixtures/data-app/data/pages.yml
456
+ - fixtures/data-app/source/index.html.erb
457
+ - fixtures/data-app/source/layout.erb
458
+ - fixtures/default-partials-dir-app/source/_partial.html.erb
459
+ - fixtures/default-partials-dir-app/source/index.html.erb
460
+ - fixtures/different-engine-layout/config.rb
461
+ - fixtures/different-engine-layout/source/index.haml
462
+ - fixtures/different-engine-layout/source/index.html.str
463
+ - fixtures/different-engine-layout/source/layout.erb
464
+ - fixtures/different-engine-partial/config.rb
465
+ - fixtures/different-engine-partial/source/index.html.erb
466
+ - fixtures/different-engine-partial/source/layouts/layout.erb
467
+ - fixtures/different-engine-partial/source/shared/_footer.str
468
+ - fixtures/different-engine-partial/source/shared/_header.erb
469
+ - fixtures/dynamic-pages-app/config.rb
470
+ - fixtures/dynamic-pages-app/source/real.html
471
+ - fixtures/dynamic-pages-app/source/real/index.html.erb
472
+ - fixtures/dynamic-pages-app/source/should_be_ignored.html
473
+ - fixtures/dynamic-pages-app/source/should_be_ignored2.html
474
+ - fixtures/dynamic-pages-app/source/should_be_ignored3.html
475
+ - fixtures/dynamic-pages-app/source/should_be_ignored4.html
476
+ - fixtures/dynamic-pages-app/source/should_be_ignored5.html
477
+ - fixtures/dynamic-pages-app/source/should_be_ignored6.html
478
+ - fixtures/dynamic-pages-app/source/should_be_ignored7.html
479
+ - fixtures/dynamic-pages-app/source/should_be_ignored8.html
480
+ - fixtures/empty-app/not-config.rb
481
+ - fixtures/engine-matching-layout/config.rb
482
+ - fixtures/engine-matching-layout/source/index.html.erb
483
+ - fixtures/engine-matching-layout/source/layout.erb
484
+ - fixtures/extensionless-text-files-app/config.rb
485
+ - fixtures/extensionless-text-files-app/source/CNAME
486
+ - fixtures/extensionless-text-files-app/source/LICENSE
487
+ - fixtures/extensionless-text-files-app/source/README
488
+ - fixtures/extensionless-text-files-app/source/index.html
489
+ - fixtures/external-helpers/config.rb
490
+ - fixtures/external-helpers/helpers/derp.rb
491
+ - fixtures/external-helpers/helpers/four_helpers.rb
492
+ - fixtures/external-helpers/helpers/one_helper.rb
493
+ - fixtures/external-helpers/helpers/yet_another_thingy.rb
494
+ - fixtures/external-helpers/lib/hello_helper.rb
495
+ - fixtures/external-helpers/source/automatic.html.erb
496
+ - fixtures/external-helpers/source/index.html.erb
497
+ - fixtures/feature-params-app/config.rb
498
+ - fixtures/feature-params-app/source/index.html.erb
499
+ - fixtures/fonts-app/config.rb
500
+ - fixtures/fonts-app/source/fonts/StMarie-Thin.otf
501
+ - fixtures/fonts-app/source/fonts/blank/blank.otf
502
+ - fixtures/fonts-app/source/stylesheets/fonts.css.sass
503
+ - fixtures/frontmatter-app/config.rb
504
+ - fixtures/frontmatter-app/source/front-matter-2.php.erb
505
+ - fixtures/frontmatter-app/source/front-matter-auto.erb
506
+ - fixtures/frontmatter-app/source/front-matter-change.html.erb
507
+ - fixtures/frontmatter-app/source/front-matter-encoding.html.erb
508
+ - fixtures/frontmatter-app/source/front-matter-line-2.html.erb
509
+ - fixtures/frontmatter-app/source/json-front-matter-2.php.erb
510
+ - fixtures/frontmatter-app/source/json-front-matter-auto.erb
511
+ - fixtures/frontmatter-app/source/json-front-matter-encoding.html.erb
512
+ - fixtures/frontmatter-app/source/json-front-matter-line-2.html.erb
513
+ - fixtures/frontmatter-app/source/json-front-matter.html.erb
514
+ - fixtures/frontmatter-app/source/raw-front-matter.html
515
+ - fixtures/frontmatter-app/source/raw-front-matter.php
516
+ - fixtures/frontmatter-neighbor-app/config.rb
517
+ - fixtures/frontmatter-neighbor-app/source/front-matter-2.php.erb
518
+ - fixtures/frontmatter-neighbor-app/source/front-matter-2.php.erb.frontmatter
519
+ - fixtures/frontmatter-neighbor-app/source/front-matter-auto.erb
520
+ - fixtures/frontmatter-neighbor-app/source/front-matter-auto.erb.frontmatter
521
+ - fixtures/frontmatter-neighbor-app/source/front-matter-change.html.erb
522
+ - fixtures/frontmatter-neighbor-app/source/front-matter-change.html.erb.frontmatter
523
+ - fixtures/frontmatter-neighbor-app/source/front-matter-encoding.html.erb
524
+ - fixtures/frontmatter-neighbor-app/source/front-matter-encoding.html.erb.frontmatter
525
+ - fixtures/frontmatter-neighbor-app/source/json-front-matter-2.php.erb
526
+ - fixtures/frontmatter-neighbor-app/source/json-front-matter-2.php.erb.frontmatter
527
+ - fixtures/frontmatter-neighbor-app/source/json-front-matter-auto.erb
528
+ - fixtures/frontmatter-neighbor-app/source/json-front-matter-auto.erb.frontmatter
529
+ - fixtures/frontmatter-neighbor-app/source/json-front-matter.html.erb
530
+ - fixtures/frontmatter-neighbor-app/source/json-front-matter.html.erb.frontmatter
531
+ - fixtures/frontmatter-neighbor-app/source/raw-front-matter.html
532
+ - fixtures/frontmatter-neighbor-app/source/raw-front-matter.html.frontmatter
533
+ - fixtures/frontmatter-neighbor-app/source/raw-front-matter.php
534
+ - fixtures/frontmatter-neighbor-app/source/raw-front-matter.php.frontmatter
535
+ - fixtures/frontmatter-settings-app/config.rb
536
+ - fixtures/frontmatter-settings-app/source/alternate_layout.html.erb
537
+ - fixtures/frontmatter-settings-app/source/ignored.html.erb
538
+ - fixtures/frontmatter-settings-app/source/layouts/alternate.erb
539
+ - fixtures/frontmatter-settings-app/source/layouts/override.erb
540
+ - fixtures/frontmatter-settings-app/source/override_layout.html.erb
541
+ - fixtures/frontmatter-settings-app/source/page_mentioned.html.erb
542
+ - fixtures/frontmatter-settings-neighbor-app/config.rb
543
+ - fixtures/frontmatter-settings-neighbor-app/source/alternate_layout.html.erb
544
+ - fixtures/frontmatter-settings-neighbor-app/source/alternate_layout.html.erb.frontmatter
545
+ - fixtures/frontmatter-settings-neighbor-app/source/ignored.html.erb
546
+ - fixtures/frontmatter-settings-neighbor-app/source/ignored.html.erb.frontmatter
547
+ - fixtures/frontmatter-settings-neighbor-app/source/layouts/alternate.erb
548
+ - fixtures/frontmatter-settings-neighbor-app/source/layouts/override.erb
549
+ - fixtures/frontmatter-settings-neighbor-app/source/override_layout.html.erb
550
+ - fixtures/frontmatter-settings-neighbor-app/source/override_layout.html.erb.frontmatter
551
+ - fixtures/frontmatter-settings-neighbor-app/source/page_mentioned.html.erb
552
+ - fixtures/frontmatter-settings-neighbor-app/source/page_mentioned.html.erb.frontmatter
553
+ - fixtures/generator-test/config.rb
554
+ - fixtures/generator-test/source/index.html.erb
555
+ - fixtures/glob-app/config.rb
556
+ - fixtures/glob-app/source/index.html.erb
557
+ - fixtures/glob-app/source/stylesheets/site.css.str
558
+ - fixtures/gzip-app/config.rb
559
+ - fixtures/gzip-app/source/index.html
560
+ - fixtures/gzip-app/source/javascripts/test.js
561
+ - fixtures/gzip-app/source/stylesheets/test.css
562
+ - fixtures/i18n-alt-root-app/locales/en.yml
563
+ - fixtures/i18n-alt-root-app/locales/es.yml
564
+ - fixtures/i18n-alt-root-app/source/lang_data/hello.html.erb
565
+ - fixtures/i18n-alt-root-app/source/lang_data/index.html.erb
566
+ - fixtures/i18n-alt-root-app/source/layout.erb
567
+ - fixtures/i18n-default-app/locales/en.yml
568
+ - fixtures/i18n-default-app/locales/es.yml
569
+ - fixtures/i18n-default-app/source/localizable/index.html.erb
570
+ - fixtures/i18n-force-locale/config.rb
571
+ - fixtures/i18n-force-locale/locales/en.yml
572
+ - fixtures/i18n-force-locale/locales/es.yml
573
+ - fixtures/i18n-force-locale/locales/fr.yml
574
+ - fixtures/i18n-force-locale/source/index.haml
575
+ - fixtures/i18n-nested-app/locales/en.yml
576
+ - fixtures/i18n-nested-app/locales/en/more.yml
577
+ - fixtures/i18n-nested-app/locales/es.yml
578
+ - fixtures/i18n-nested-app/locales/es/mucho.yml
579
+ - fixtures/i18n-nested-app/source/localizable/index.html.erb
580
+ - fixtures/i18n-test-app/data/defaults_en.yml
581
+ - fixtures/i18n-test-app/data/defaults_es.yml
582
+ - fixtures/i18n-test-app/data/en_defaults.yml
583
+ - fixtures/i18n-test-app/locales/en.yml
584
+ - fixtures/i18n-test-app/locales/es.yml
585
+ - fixtures/i18n-test-app/source/CNAME
586
+ - fixtures/i18n-test-app/source/_country.en.erb
587
+ - fixtures/i18n-test-app/source/_country.es.erb
588
+ - fixtures/i18n-test-app/source/_site.erb
589
+ - fixtures/i18n-test-app/source/images/president.en.svg
590
+ - fixtures/i18n-test-app/source/images/president.es.svg
591
+ - fixtures/i18n-test-app/source/layouts/layout.erb
592
+ - fixtures/i18n-test-app/source/localizable/_state.en.erb
593
+ - fixtures/i18n-test-app/source/localizable/_state.es.erb
594
+ - fixtures/i18n-test-app/source/localizable/hello.html.erb
595
+ - fixtures/i18n-test-app/source/localizable/images/flag.en.svg
596
+ - fixtures/i18n-test-app/source/localizable/images/flag.es.svg
597
+ - fixtures/i18n-test-app/source/localizable/index.html.erb
598
+ - fixtures/i18n-test-app/source/localizable/morning.en.html.erb
599
+ - fixtures/i18n-test-app/source/localizable/morning.es.html.erb
600
+ - fixtures/i18n-test-app/source/localizable/one.en.md
601
+ - fixtures/i18n-test-app/source/localizable/one.es.md
602
+ - fixtures/i18n-test-app/source/localizable/partials/_greeting.en.erb
603
+ - fixtures/i18n-test-app/source/localizable/partials/_greeting.es.erb
604
+ - fixtures/i18n-test-app/source/localizable/partials/index.html.erb
605
+ - fixtures/i18n-test-app/source/password.txt
606
+ - fixtures/i18n-test-app/source/stylesheets/site.css
607
+ - fixtures/ignore-app/source/about.html.erb
608
+ - fixtures/ignore-app/source/images/icon/messages.png
609
+ - fixtures/ignore-app/source/images/pic.png
610
+ - fixtures/ignore-app/source/images/portrait.jpg
611
+ - fixtures/ignore-app/source/index.html.erb
612
+ - fixtures/ignore-app/source/plain.html
613
+ - fixtures/ignore-app/source/reports/another.html
614
+ - fixtures/ignore-app/source/reports/index.html
615
+ - fixtures/implied-extensions-app/config.rb
616
+ - fixtures/implied-extensions-app/source/index.erb
617
+ - fixtures/indexable-app/config.rb
618
+ - fixtures/indexable-app/source/.htaccess
619
+ - fixtures/indexable-app/source/.htpasswd
620
+ - fixtures/indexable-app/source/.nojekyll
621
+ - fixtures/indexable-app/source/a_folder/needs_index.html
622
+ - fixtures/indexable-app/source/evil spaces.html
623
+ - fixtures/indexable-app/source/leave_me_alone.html
624
+ - fixtures/indexable-app/source/needs_index.html
625
+ - fixtures/indexable-app/source/regular/index.html
626
+ - fixtures/indexable-app/source/wildcard_leave_me_alone.html
627
+ - fixtures/instance-vars-app/config.rb
628
+ - fixtures/instance-vars-app/source/content.html.erb
629
+ - fixtures/instance-vars-app/source/layout.erb
630
+ - fixtures/large-build-app/config.rb
631
+ - fixtures/large-build-app/source/.htaccess
632
+ - fixtures/large-build-app/source/.htpasswd
633
+ - fixtures/large-build-app/source/_partial.erb
634
+ - fixtures/large-build-app/source/feed.xml.builder
635
+ - fixtures/large-build-app/source/images/Child folder/regular_file(example).txt
636
+ - fixtures/large-build-app/source/images/Read me (example).txt
637
+ - fixtures/large-build-app/source/images/blank.gif
638
+ - fixtures/large-build-app/source/index.html.erb
639
+ - fixtures/large-build-app/source/layout.erb
640
+ - fixtures/large-build-app/source/layouts/content_for.erb
641
+ - fixtures/large-build-app/source/layouts/custom.erb
642
+ - fixtures/large-build-app/source/link_test.html.erb
643
+ - fixtures/large-build-app/source/other_layout.erb
644
+ - fixtures/large-build-app/source/services/index.html.erb
645
+ - fixtures/large-build-app/source/spaces in file.html.erb
646
+ - fixtures/large-build-app/source/static.html
647
+ - fixtures/large-build-app/source/stylesheets/static.css
648
+ - fixtures/layouts-dir-app/source/ambiguous.html.erb
649
+ - fixtures/layouts-dir-app/source/index.html.erb
650
+ - fixtures/layouts-dir-app/source/layouts/layout.erb
651
+ - fixtures/layouts-dir-app/source/layouts/other.erb
652
+ - fixtures/layouts-dir-app/source/layouts2/layout.erb
653
+ - fixtures/layouts-dir-app/source/nested/layouts2/layout.erb
654
+ - fixtures/layouts-dir-app/source/other.erb
655
+ - fixtures/link-to-app/config.rb
656
+ - fixtures/link-to-app/source/link_to_erb.html.erb
657
+ - fixtures/link-to-app/source/link_to_haml.html.haml
658
+ - fixtures/link-to-app/source/link_to_slim.html.slim
659
+ - fixtures/liquid-app/config.rb
660
+ - fixtures/liquid-app/data/test.yml
661
+ - fixtures/liquid-app/data/test2.json
662
+ - fixtures/liquid-app/source/_liquid_partial.liquid
663
+ - fixtures/liquid-app/source/data2.html.liquid
664
+ - fixtures/liquid-app/source/liquid_master.html.liquid
665
+ - fixtures/lorem-app/config.rb
666
+ - fixtures/lorem-app/source/lorem.html.erb
667
+ - fixtures/manual-layout-missing/config.rb
668
+ - fixtures/manual-layout-missing/source/index.html.erb
669
+ - fixtures/manual-layout-override/config.rb
670
+ - fixtures/manual-layout-override/source/index.html.erb
671
+ - fixtures/manual-layout-override/source/layouts/another.erb
672
+ - fixtures/manual-layout-override/source/layouts/custom.erb
673
+ - fixtures/manual-layout/config.rb
674
+ - fixtures/manual-layout/source/index.html.erb
675
+ - fixtures/manual-layout/source/layouts/custom.erb
676
+ - fixtures/markdown-app/config.rb
677
+ - fixtures/markdown-app/source/autolink.html.markdown
678
+ - fixtures/markdown-app/source/fenced_code_blocks.html.markdown
679
+ - fixtures/markdown-app/source/filter_html.html.markdown
680
+ - fixtures/markdown-app/source/footnote.html.markdown
681
+ - fixtures/markdown-app/source/hard_wrap.html.markdown
682
+ - fixtures/markdown-app/source/highlighted.html.markdown
683
+ - fixtures/markdown-app/source/images/blank.gif
684
+ - fixtures/markdown-app/source/img.html.markdown
685
+ - fixtures/markdown-app/source/indented_code_blocks.html.markdown
686
+ - fixtures/markdown-app/source/index.html.markdown
687
+ - fixtures/markdown-app/source/lax_spacing.html.markdown
688
+ - fixtures/markdown-app/source/link.html.markdown
689
+ - fixtures/markdown-app/source/mailto.html.markdown
690
+ - fixtures/markdown-app/source/no_intra_emphasis.html.markdown
691
+ - fixtures/markdown-app/source/prettify.html.markdown
692
+ - fixtures/markdown-app/source/quote.html.markdown
693
+ - fixtures/markdown-app/source/safe_links.html.markdown
694
+ - fixtures/markdown-app/source/smarty_pants.html.markdown
695
+ - fixtures/markdown-app/source/space_after_headers.html.markdown
696
+ - fixtures/markdown-app/source/strikethrough.html.markdown
697
+ - fixtures/markdown-app/source/superscript.html.markdown
698
+ - fixtures/markdown-app/source/tables.html.markdown
699
+ - fixtures/markdown-app/source/underline.html.markdown
700
+ - fixtures/markdown-app/source/with_toc_data.html.markdown
701
+ - fixtures/markdown-frontmatter-options-app/config.rb
702
+ - fixtures/markdown-frontmatter-options-app/source/smarty_pants-default.html.markdown
703
+ - fixtures/markdown-frontmatter-options-app/source/smarty_pants-off.html.markdown
704
+ - fixtures/markdown-frontmatter-options-app/source/smarty_pants-on.html.markdown
705
+ - fixtures/markdown-frontmatter-options-app/source/tables-default.html.markdown
706
+ - fixtures/markdown-frontmatter-options-app/source/tables-off.html.markdown
707
+ - fixtures/markdown-frontmatter-options-app/source/tables-on.html.markdown
708
+ - fixtures/markdown-in-haml-app/config.rb
709
+ - fixtures/markdown-in-haml-app/source/images/blank.gif
710
+ - fixtures/markdown-in-haml-app/source/link_target.html.markdown
711
+ - fixtures/minify-css-app/source/inline-css.html.haml
712
+ - fixtures/minify-css-app/source/more-css/site.css
713
+ - fixtures/minify-css-app/source/stylesheets/report.css
714
+ - fixtures/minify-css-app/source/stylesheets/site.css.sass
715
+ - fixtures/minify-js-app/config.rb
716
+ - fixtures/minify-js-app/source/inline-coffeescript.html.haml
717
+ - fixtures/minify-js-app/source/inline-js.html.haml
718
+ - fixtures/minify-js-app/source/javascripts/coffee_test.js.coffee
719
+ - fixtures/minify-js-app/source/javascripts/js_test.js
720
+ - fixtures/minify-js-app/source/more-js/other.js
721
+ - fixtures/missing-tilt-library-app/config.rb
722
+ - fixtures/missing-tilt-library-app/source/danger-zone/more-wiki.html.wiki
723
+ - fixtures/missing-tilt-library-app/source/safe-zone/my-wiki.html.wiki
724
+ - fixtures/missing-tilt-library-app/source/textile-source.html.textile
725
+ - fixtures/missing-tilt-library-app/source/wiki-source.html.wiki
726
+ - fixtures/more-extensionless-text-files-app/config.rb
727
+ - fixtures/more-extensionless-text-files-app/source/CNAME
728
+ - fixtures/more-extensionless-text-files-app/source/LICENSE
729
+ - fixtures/more-extensionless-text-files-app/source/README
730
+ - fixtures/more-extensionless-text-files-app/source/index.html
731
+ - fixtures/more-frontmatter-settings-app/config.rb
732
+ - fixtures/more-frontmatter-settings-app/source/alternate_layout.html.erb
733
+ - fixtures/more-frontmatter-settings-app/source/ignored.html.erb
734
+ - fixtures/more-frontmatter-settings-app/source/layouts/alternate.erb
735
+ - fixtures/more-frontmatter-settings-app/source/no_index.html.erb
736
+ - fixtures/more-ignore-app/source/about.html.erb
737
+ - fixtures/more-ignore-app/source/images/icon/messages.png
738
+ - fixtures/more-ignore-app/source/images/pic.png
739
+ - fixtures/more-ignore-app/source/images/portrait.jpg
740
+ - fixtures/more-ignore-app/source/index.html.erb
741
+ - fixtures/more-ignore-app/source/plain.html
742
+ - fixtures/more-ignore-app/source/reports/another.html
743
+ - fixtures/more-ignore-app/source/reports/index.html
744
+ - fixtures/more-implied-extensions-app/config.rb
745
+ - fixtures/more-implied-extensions-app/source/javascripts/app.coffee
746
+ - fixtures/more-implied-extensions-app/source/layouts/layout.erb
747
+ - fixtures/more-implied-extensions-app/source/stylesheets/style.scss
748
+ - fixtures/more-implied-extensions-app/source/stylesheets/style2.sass
749
+ - fixtures/more-implied-extensions-app/source/test.haml
750
+ - fixtures/more-implied-extensions-app/source/test2.markdown
751
+ - fixtures/more-implied-extensions-app/source/test3.slim
752
+ - fixtures/more-implied-extensions-app/source/test4.liquid
753
+ - fixtures/more-instance-vars-app/config.rb
754
+ - fixtures/more-instance-vars-app/source/_vartial.erb
755
+ - fixtures/more-instance-vars-app/source/instance-var-set.html.erb
756
+ - fixtures/more-instance-vars-app/source/layout.erb
757
+ - fixtures/more-instance-vars-app/source/no-instance-var.html.erb
758
+ - fixtures/more-markdown-app/source/layouts/layout.erb
759
+ - fixtures/more-markdown-app/source/with_layout.markdown
760
+ - fixtures/more-markdown-app/source/with_layout_erb.markdown.erb
761
+ - fixtures/more-preview-app/config.rb
762
+ - fixtures/more-preview-app/source/content.html.erb
763
+ - fixtures/more-preview-app/source/layout.erb
764
+ - fixtures/more-preview-app/source/stylesheets/_partial.sass
765
+ - fixtures/more-preview-app/source/stylesheets/_partial2.css.sass
766
+ - fixtures/more-preview-app/source/stylesheets/main.css.sass
767
+ - fixtures/more-preview-app/source/stylesheets/main2.css.sass
768
+ - fixtures/more-preview-app/source/stylesheets/plain.css.sass
769
+ - fixtures/more-traversal-app/config.rb
770
+ - fixtures/more-traversal-app/source/directory-indexed.html.erb
771
+ - fixtures/more-traversal-app/source/directory-indexed/sibling.html.erb
772
+ - fixtures/more-traversal-app/source/directory-indexed/sibling2.html.erb
773
+ - fixtures/more-traversal-app/source/directory-indexed/sub2/index.html.erb
774
+ - fixtures/more-traversal-app/source/directory-indexed/sub3/deep.html.erb
775
+ - fixtures/more-traversal-app/source/index.html.erb
776
+ - fixtures/more-traversal-app/source/layout.erb
777
+ - fixtures/more-traversal-app/source/proxied.html.erb
778
+ - fixtures/more-traversal-app/source/root.html.erb
779
+ - fixtures/more-traversal-app/source/sub/index.html.erb
780
+ - fixtures/more-traversal-app/source/sub/sibling.html.erb
781
+ - fixtures/more-traversal-app/source/sub/sibling2.html.erb
782
+ - fixtures/more-traversal-app/source/sub/sub2/index.html.erb
783
+ - fixtures/more-traversal-app/source/sub/sub3/deep.html.erb
784
+ - fixtures/multiple-layouts/config.rb
785
+ - fixtures/multiple-layouts/source/index.html.erb
786
+ - fixtures/multiple-layouts/source/layout.erb
787
+ - fixtures/multiple-layouts/source/layout.str
788
+ - fixtures/nested-data-app/config.rb
789
+ - fixtures/nested-data-app/data/examples/deeper/stuff.yml
790
+ - fixtures/nested-data-app/data/examples/more.yml
791
+ - fixtures/nested-data-app/data/examples/test.yml
792
+ - fixtures/nested-data-app/source/test.html.erb
793
+ - fixtures/nested-layout-app/config.rb
794
+ - fixtures/nested-layout-app/source/another.html.markdown
795
+ - fixtures/nested-layout-app/source/data-one.html.erb
796
+ - fixtures/nested-layout-app/source/data-two.html.erb
797
+ - fixtures/nested-layout-app/source/haml-test.html.markdown
798
+ - fixtures/nested-layout-app/source/index.html.erb
799
+ - fixtures/nested-layout-app/source/layouts/inner.erb
800
+ - fixtures/nested-layout-app/source/layouts/inner_haml.haml
801
+ - fixtures/nested-layout-app/source/layouts/inner_slim.slim
802
+ - fixtures/nested-layout-app/source/layouts/master.erb
803
+ - fixtures/nested-layout-app/source/layouts/master_haml.haml
804
+ - fixtures/nested-layout-app/source/layouts/master_slim.slim
805
+ - fixtures/nested-layout-app/source/layouts/outer.erb
806
+ - fixtures/nested-layout-app/source/layouts/outer_haml.haml
807
+ - fixtures/nested-layout-app/source/layouts/outer_slim.slim
808
+ - fixtures/nested-layout-app/source/slim-test.html.markdown
809
+ - fixtures/no-layout/config.rb
810
+ - fixtures/no-layout/source/index.html.erb
811
+ - fixtures/padrino-helpers-app/config.rb
812
+ - fixtures/padrino-helpers-app/source/former_padrino_test.html.erb
813
+ - fixtures/page-classes-app/config.rb
814
+ - fixtures/page-classes-app/source/1-folder/1-inside-with-numeric.html.erb
815
+ - fixtures/page-classes-app/source/1-starts-with-numeric.html.erb
816
+ - fixtures/page-classes-app/source/2-starts-with-numeric-custom.html.erb
817
+ - fixtures/page-classes-app/source/page-classes.html.erb
818
+ - fixtures/page-classes-app/source/sub1/page-classes.html.erb
819
+ - fixtures/page-classes-app/source/sub1/sub2/page-classes.html.erb
820
+ - fixtures/page-helper-layout-block-app/config.rb
821
+ - fixtures/page-helper-layout-block-app/source/index.html.erb
822
+ - fixtures/page-helper-layout-block-app/source/layouts/alt.erb
823
+ - fixtures/page-helper-layout-block-app/source/layouts/layout.erb
824
+ - fixtures/page-helper-layout-block-app/source/path/child.html.erb
825
+ - fixtures/page-helper-layout-block-app/source/path/index.html.erb
826
+ - fixtures/partials-app/config.rb
827
+ - fixtures/partials-app/source/_code_snippet.html
828
+ - fixtures/partials-app/source/_locals.erb
829
+ - fixtures/partials-app/source/_main.erb
830
+ - fixtures/partials-app/source/_main.str
831
+ - fixtures/partials-app/source/images/tiger.svg
832
+ - fixtures/partials-app/source/index.html.erb
833
+ - fixtures/partials-app/source/locals.html.erb
834
+ - fixtures/partials-app/source/second.html.str
835
+ - fixtures/partials-app/source/shared/_footer.erb
836
+ - fixtures/partials-app/source/shared/_header.erb
837
+ - fixtures/partials-app/source/shared/snippet.erb
838
+ - fixtures/partials-app/source/static_underscore.html.erb
839
+ - fixtures/partials-app/source/sub/_local.erb
840
+ - fixtures/partials-app/source/sub/index.html.erb
841
+ - fixtures/partials-app/source/svg.html.erb
842
+ - fixtures/partials-app/source/using_snippet.html.erb
843
+ - fixtures/partials-dir-app/source/index.html.erb
844
+ - fixtures/partials-dir-app/source/nested/partials/_partial.html.erb
845
+ - fixtures/partials-dir-app/source/partials/_partial.html.erb
846
+ - fixtures/passthrough-app/source/.htaccess
847
+ - fixtures/passthrough-app/source/inline-coffeescript.html.haml
848
+ - fixtures/passthrough-app/source/inline-css.html.haml
849
+ - fixtures/passthrough-app/source/inline-js.html.haml
850
+ - fixtures/passthrough-app/source/javascripts/coffee_test.js.coffee
851
+ - fixtures/passthrough-app/source/javascripts/js_test.js
852
+ - fixtures/passthrough-app/source/stylesheets/site.css.sass
853
+ - fixtures/plain-app/index.html
854
+ - fixtures/preview-app/config.rb
855
+ - fixtures/preview-app/source/content.html.erb
856
+ - fixtures/preview-app/source/layout.erb
857
+ - fixtures/proxy-pages-app/config.rb
858
+ - fixtures/proxy-pages-app/source/real.html
859
+ - fixtures/proxy-pages-app/source/real/index-ivars.html.erb
860
+ - fixtures/proxy-pages-app/source/real/index.html.erb
861
+ - fixtures/proxy-pages-app/source/should_be_ignored3.html
862
+ - fixtures/proxy-pages-app/source/should_be_ignored6.html
863
+ - fixtures/proxy-pages-app/source/should_be_ignored7.html
864
+ - fixtures/proxy-pages-app/source/should_be_ignored8.html
865
+ - fixtures/queryable-app/config.rb
866
+ - fixtures/queryable-app/source/2010-08-08-test-document-file.html.markdown
867
+ - fixtures/queryable-app/source/2010-08-09-another-test-document.html.markdown
868
+ - fixtures/queryable-app/source/2011-12-26-some-test-document.html.markdown
869
+ - fixtures/queryable-app/source/document_with_date_in_yaml.html.markdown
870
+ - fixtures/queryable-app/source/document_without_date.html.markdown
871
+ - fixtures/relative-app/config.rb
872
+ - fixtures/relative-app/source/images/blank.gif
873
+ - fixtures/relative-app/source/stylesheets/relative_assets.css.sass
874
+ - fixtures/relative-assets-app/config.rb
875
+ - fixtures/relative-assets-app/source/images/blank.gif
876
+ - fixtures/relative-assets-app/source/img/blank.gif
877
+ - fixtures/relative-assets-app/source/relative_image.html.erb
878
+ - fixtures/relative-assets-app/source/stylesheets/relative_assets.css.sass
879
+ - fixtures/request-app/config.rb
880
+ - fixtures/request-app/source/index.html.erb
881
+ - fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset-sass.sass
882
+ - fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset.scss
883
+ - fixtures/sass-assets-path-app/config.rb
884
+ - fixtures/sass-assets-path-app/my-vendor/stylesheets/_partial.sass
885
+ - fixtures/sass-assets-path-app/source/stylesheets/plain.css.sass
886
+ - fixtures/scss-app/config.rb
887
+ - fixtures/scss-app/source/stylesheets/layout.css.sass
888
+ - fixtures/scss-app/source/stylesheets/site_scss.css.scss
889
+ - fixtures/sinatra-app/config.rb
890
+ - fixtures/sinatra-app/source/index.html.erb
891
+ - fixtures/slim-content-for-app/config.rb
892
+ - fixtures/slim-content-for-app/source/index.html.slim
893
+ - fixtures/slim-content-for-app/source/layouts/layout.slim
894
+ - fixtures/strip-url-app/config.rb
895
+ - fixtures/strip-url-app/source/index.html.erb
896
+ - fixtures/strip-url-app/source/other.html.erb
897
+ - fixtures/strip-url-app/source/subdir/index.html.erb
898
+ - fixtures/stylus-preview-app/config.rb
899
+ - fixtures/stylus-preview-app/source/content.html.erb
900
+ - fixtures/stylus-preview-app/source/layout.erb
901
+ - fixtures/stylus-preview-app/source/stylesheets/_partial.styl
902
+ - fixtures/stylus-preview-app/source/stylesheets/_partial2.css.styl
903
+ - fixtures/stylus-preview-app/source/stylesheets/main.css.styl
904
+ - fixtures/stylus-preview-app/source/stylesheets/main2.css.styl
905
+ - fixtures/stylus-preview-app/source/stylesheets/plain.css.styl
906
+ - fixtures/traversal-app/config.rb
907
+ - fixtures/traversal-app/source/directory-indexed.html.erb
908
+ - fixtures/traversal-app/source/directory-indexed/sibling.html.erb
909
+ - fixtures/traversal-app/source/directory-indexed/sibling2.html.erb
910
+ - fixtures/traversal-app/source/directory-indexed/sub2/index.html.erb
911
+ - fixtures/traversal-app/source/directory-indexed/sub3/deep.html.erb
912
+ - fixtures/traversal-app/source/index.html.erb
913
+ - fixtures/traversal-app/source/layout.erb
914
+ - fixtures/traversal-app/source/proxied.html.erb
915
+ - fixtures/traversal-app/source/root.html.erb
916
+ - fixtures/traversal-app/source/sub/index.html.erb
917
+ - fixtures/traversal-app/source/sub/sibling.html.erb
918
+ - fixtures/traversal-app/source/sub/sibling2.html.erb
919
+ - fixtures/traversal-app/source/sub/sub2/index.html.erb
920
+ - fixtures/traversal-app/source/sub/sub3/deep.html.erb
921
+ - fixtures/twitter-bootstrap-app/config.rb
922
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/.gitignore
923
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/.travis.yml
924
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/LICENSE
925
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/README.md
926
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/img/glyphicons-halflings-white.png
927
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/img/glyphicons-halflings.png
928
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/.jshintrc
929
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/README.md
930
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-alert.js
931
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-button.js
932
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-carousel.js
933
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-collapse.js
934
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-dropdown.js
935
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-modal.js
936
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-popover.js
937
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-scrollspy.js
938
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-tab.js
939
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-tooltip.js
940
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-transition.js
941
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-typeahead.js
942
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/index.html
943
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/phantom.js
944
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/server.js
945
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-alert.js
946
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-button.js
947
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-carousel.js
948
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-collapse.js
949
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-dropdown.js
950
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-modal.js
951
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-phantom.js
952
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-popover.js
953
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-scrollspy.js
954
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-tab.js
955
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-tooltip.js
956
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-transition.js
957
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-typeahead.js
958
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/vendor/jquery.js
959
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/vendor/qunit.css
960
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/vendor/qunit.js
961
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_accordion.less
962
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_alerts.less
963
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_breadcrumbs.less
964
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_button-groups.less
965
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_buttons.less
966
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_carousel.less
967
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_close.less
968
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_code.less
969
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_component-animations.less
970
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_dropdowns.less
971
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_forms.less
972
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_grid.less
973
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_hero-unit.less
974
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_labels-badges.less
975
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_layouts.less
976
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_mixins.less
977
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_modals.less
978
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_navbar.less
979
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_navs.less
980
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_pager.less
981
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_pagination.less
982
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_popovers.less
983
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_progress-bars.less
984
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_reset.less
985
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-1200px-min.less
986
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-767px-max.less
987
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-768px-979px.less
988
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-navbar.less
989
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-utilities.less
990
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_scaffolding.less
991
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_sprites.less
992
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_tables.less
993
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_thumbnails.less
994
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_tooltip.less
995
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_type.less
996
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_utilities.less
997
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_variables.less
998
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_wells.less
999
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/bootstrap.less
1000
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/responsive.less
1001
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/css-tests.css
1002
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/css-tests.html
1003
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/forms.html
1004
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/navbar.html
1005
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/package.json
1006
+ - fixtures/v4-extension-callbacks/config.rb
1007
+ - fixtures/v4-extension-callbacks/source/index.html.erb
1008
+ - fixtures/wildcard-app/config.rb
1009
+ - fixtures/wildcard-app/source/admin/index.html.erb
1010
+ - fixtures/wildcard-app/source/admin/page.html.erb
1011
+ - fixtures/wildcard-app/source/index.html.erb
1012
+ - fixtures/wildcard-app/source/layouts/admin.erb
1013
+ - fixtures/wildcard-app/source/layouts/layout.erb
1014
+ - fixtures/wildcard-directory-index-app/config.rb
1015
+ - fixtures/wildcard-directory-index-app/source/admin/index.html.erb
1016
+ - fixtures/wildcard-directory-index-app/source/admin/page.html.erb
1017
+ - fixtures/wildcard-directory-index-app/source/index.html.erb
1018
+ - fixtures/wildcard-directory-index-app/source/layouts/admin.erb
1019
+ - fixtures/wildcard-directory-index-app/source/layouts/layout.erb
1020
+ - lib/middleman-core.rb
1021
+ - lib/middleman-core/application.rb
1022
+ - lib/middleman-core/cli.rb
1023
+ - lib/middleman-core/cli/build.rb
1024
+ - lib/middleman-core/cli/bundler.rb
1025
+ - lib/middleman-core/cli/console.rb
1026
+ - lib/middleman-core/cli/extension.rb
1027
+ - lib/middleman-core/cli/init.rb
1028
+ - lib/middleman-core/cli/server.rb
1029
+ - lib/middleman-core/configuration.rb
1030
+ - lib/middleman-core/core_extensions.rb
1031
+ - lib/middleman-core/core_extensions/data.rb
1032
+ - lib/middleman-core/core_extensions/extensions.rb
1033
+ - lib/middleman-core/core_extensions/external_helpers.rb
1034
+ - lib/middleman-core/core_extensions/file_watcher.rb
1035
+ - lib/middleman-core/core_extensions/front_matter.rb
1036
+ - lib/middleman-core/core_extensions/rendering.rb
1037
+ - lib/middleman-core/core_extensions/request.rb
1038
+ - lib/middleman-core/core_extensions/routing.rb
1039
+ - lib/middleman-core/core_extensions/show_exceptions.rb
1040
+ - lib/middleman-core/extension.rb
1041
+ - lib/middleman-core/extensions.rb
1042
+ - lib/middleman-core/load_paths.rb
1043
+ - lib/middleman-core/logger.rb
1044
+ - lib/middleman-core/meta_pages.rb
1045
+ - lib/middleman-core/meta_pages/assets/config.css
1046
+ - lib/middleman-core/meta_pages/assets/glyphicons-halflings.png
1047
+ - lib/middleman-core/meta_pages/assets/jquery-1.8.2.min.js
1048
+ - lib/middleman-core/meta_pages/assets/jquery.details-1.6.min.js
1049
+ - lib/middleman-core/meta_pages/assets/meta.css
1050
+ - lib/middleman-core/meta_pages/assets/sitemap.css
1051
+ - lib/middleman-core/meta_pages/assets/sitemap.js
1052
+ - lib/middleman-core/meta_pages/config_setting.rb
1053
+ - lib/middleman-core/meta_pages/sitemap_resource.rb
1054
+ - lib/middleman-core/meta_pages/sitemap_tree.rb
1055
+ - lib/middleman-core/meta_pages/templates/config.html.erb
1056
+ - lib/middleman-core/meta_pages/templates/index.html.erb
1057
+ - lib/middleman-core/meta_pages/templates/sitemap.html.erb
1058
+ - lib/middleman-core/preview_server.rb
1059
+ - lib/middleman-core/profiling.rb
1060
+ - lib/middleman-core/renderers/asciidoc.rb
1061
+ - lib/middleman-core/renderers/coffee_script.rb
1062
+ - lib/middleman-core/renderers/erb.rb
1063
+ - lib/middleman-core/renderers/haml.rb
1064
+ - lib/middleman-core/renderers/kramdown.rb
1065
+ - lib/middleman-core/renderers/less.rb
1066
+ - lib/middleman-core/renderers/liquid.rb
1067
+ - lib/middleman-core/renderers/markdown.rb
1068
+ - lib/middleman-core/renderers/redcarpet.rb
1069
+ - lib/middleman-core/renderers/sass.rb
1070
+ - lib/middleman-core/renderers/slim.rb
1071
+ - lib/middleman-core/renderers/stylus.rb
1072
+ - lib/middleman-core/sitemap.rb
1073
+ - lib/middleman-core/sitemap/extensions/content_type.rb
1074
+ - lib/middleman-core/sitemap/extensions/ignores.rb
1075
+ - lib/middleman-core/sitemap/extensions/on_disk.rb
1076
+ - lib/middleman-core/sitemap/extensions/proxies.rb
1077
+ - lib/middleman-core/sitemap/extensions/redirects.rb
1078
+ - lib/middleman-core/sitemap/extensions/request_endpoints.rb
1079
+ - lib/middleman-core/sitemap/extensions/traversal.rb
1080
+ - lib/middleman-core/sitemap/queryable.rb
1081
+ - lib/middleman-core/sitemap/resource.rb
1082
+ - lib/middleman-core/sitemap/store.rb
1083
+ - lib/middleman-core/step_definitions.rb
1084
+ - lib/middleman-core/step_definitions/builder_steps.rb
1085
+ - lib/middleman-core/step_definitions/middleman_steps.rb
1086
+ - lib/middleman-core/step_definitions/server_steps.rb
1087
+ - lib/middleman-core/templates.rb
1088
+ - lib/middleman-core/templates/default.rb
1089
+ - lib/middleman-core/templates/default/source/images/background.png
1090
+ - lib/middleman-core/templates/default/source/images/middleman.png
1091
+ - lib/middleman-core/templates/default/source/index.html.erb
1092
+ - lib/middleman-core/templates/default/source/javascripts/all.js
1093
+ - lib/middleman-core/templates/default/source/layouts/layout.erb
1094
+ - lib/middleman-core/templates/default/source/stylesheets/all.css
1095
+ - lib/middleman-core/templates/default/source/stylesheets/normalize.css
1096
+ - lib/middleman-core/templates/empty.rb
1097
+ - lib/middleman-core/templates/empty/Gemfile.tt
1098
+ - lib/middleman-core/templates/extension/Gemfile
1099
+ - lib/middleman-core/templates/extension/Rakefile
1100
+ - lib/middleman-core/templates/extension/features/support/env.rb
1101
+ - lib/middleman-core/templates/extension/gemspec
1102
+ - lib/middleman-core/templates/extension/gitignore
1103
+ - lib/middleman-core/templates/extension/lib/lib.rb
1104
+ - lib/middleman-core/templates/extension/lib/middleman_extension.rb
1105
+ - lib/middleman-core/templates/html5.rb
1106
+ - lib/middleman-core/templates/html5/source/.htaccess
1107
+ - lib/middleman-core/templates/html5/source/404.html
1108
+ - lib/middleman-core/templates/html5/source/LICENSE.md
1109
+ - lib/middleman-core/templates/html5/source/README.md
1110
+ - lib/middleman-core/templates/html5/source/apple-touch-icon-114x114-precomposed.png
1111
+ - lib/middleman-core/templates/html5/source/apple-touch-icon-144x144-precomposed.png
1112
+ - lib/middleman-core/templates/html5/source/apple-touch-icon-57x57-precomposed.png
1113
+ - lib/middleman-core/templates/html5/source/apple-touch-icon-72x72-precomposed.png
1114
+ - lib/middleman-core/templates/html5/source/apple-touch-icon-precomposed.png
1115
+ - lib/middleman-core/templates/html5/source/apple-touch-icon.png
1116
+ - lib/middleman-core/templates/html5/source/crossdomain.xml
1117
+ - lib/middleman-core/templates/html5/source/css/main.css
1118
+ - lib/middleman-core/templates/html5/source/css/normalize.css
1119
+ - lib/middleman-core/templates/html5/source/favicon.ico
1120
+ - lib/middleman-core/templates/html5/source/humans.txt
1121
+ - lib/middleman-core/templates/html5/source/img/.gitignore
1122
+ - lib/middleman-core/templates/html5/source/index.html.erb
1123
+ - lib/middleman-core/templates/html5/source/js/main.js
1124
+ - lib/middleman-core/templates/html5/source/js/plugins.js
1125
+ - lib/middleman-core/templates/html5/source/js/vendor/jquery-1.8.0.min.js
1126
+ - lib/middleman-core/templates/html5/source/js/vendor/modernizr-2.6.1.min.js
1127
+ - lib/middleman-core/templates/html5/source/layouts/layout.erb
1128
+ - lib/middleman-core/templates/html5/source/robots.txt
1129
+ - lib/middleman-core/templates/local.rb
1130
+ - lib/middleman-core/templates/mobile.rb
1131
+ - lib/middleman-core/templates/mobile/source/404.html
1132
+ - lib/middleman-core/templates/mobile/source/README.markdown
1133
+ - lib/middleman-core/templates/mobile/source/crossdomain.xml
1134
+ - lib/middleman-core/templates/mobile/source/css/style.css
1135
+ - lib/middleman-core/templates/mobile/source/humans.txt
1136
+ - lib/middleman-core/templates/mobile/source/img/h/apple-touch-icon.png
1137
+ - lib/middleman-core/templates/mobile/source/img/h/splash.png
1138
+ - lib/middleman-core/templates/mobile/source/img/l/apple-touch-icon-precomposed.png
1139
+ - lib/middleman-core/templates/mobile/source/img/l/apple-touch-icon.png
1140
+ - lib/middleman-core/templates/mobile/source/img/l/splash.png
1141
+ - lib/middleman-core/templates/mobile/source/img/m/apple-touch-icon.png
1142
+ - lib/middleman-core/templates/mobile/source/index.html
1143
+ - lib/middleman-core/templates/mobile/source/js/libs/modernizr-custom.js
1144
+ - lib/middleman-core/templates/mobile/source/js/libs/respond.min.js
1145
+ - lib/middleman-core/templates/mobile/source/js/mylibs/helper.js
1146
+ - lib/middleman-core/templates/mobile/source/js/plugins.js
1147
+ - lib/middleman-core/templates/mobile/source/js/script.js
1148
+ - lib/middleman-core/templates/mobile/source/robots.txt
1149
+ - lib/middleman-core/templates/mobile/source/sitemap.xml
1150
+ - lib/middleman-core/templates/mobile/source/test/index.html
1151
+ - lib/middleman-core/templates/mobile/source/test/qunit/qunit.css
1152
+ - lib/middleman-core/templates/mobile/source/test/qunit/qunit.js
1153
+ - lib/middleman-core/templates/mobile/source/test/tests.js
1154
+ - lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/Readme.PDF
1155
+ - lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/aspx/aspx1.snippet
1156
+ - lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/aspx/aspx2.snippet
1157
+ - lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/aspx/ga.aspx
1158
+ - lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/aspx/sample.aspx
1159
+ - lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/jsp/ga.jsp
1160
+ - lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/jsp/jsp1.snippet
1161
+ - lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/jsp/jsp2.snippet
1162
+ - lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/jsp/sample.jsp
1163
+ - lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/php/ga.php
1164
+ - lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/php/php1.snippet
1165
+ - lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/php/php2.snippet
1166
+ - lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/php/sample.php
1167
+ - lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/pl/ga.pl
1168
+ - lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/pl/perl1.snippet
1169
+ - lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/pl/perl2.snippet
1170
+ - lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/pl/sample.pl
1171
+ - lib/middleman-core/templates/mobile/source/tools/mobile-bookmark-bubble/COPYING
1172
+ - lib/middleman-core/templates/mobile/source/tools/mobile-bookmark-bubble/bookmark_bubble.js
1173
+ - lib/middleman-core/templates/mobile/source/tools/mobile-bookmark-bubble/example/example.html
1174
+ - lib/middleman-core/templates/mobile/source/tools/mobile-bookmark-bubble/example/example.js
1175
+ - lib/middleman-core/templates/mobile/source/tools/mobile-bookmark-bubble/images/arrow.png
1176
+ - lib/middleman-core/templates/mobile/source/tools/mobile-bookmark-bubble/images/close.png
1177
+ - lib/middleman-core/templates/mobile/source/tools/mobile-bookmark-bubble/images/generate_base64_images
1178
+ - lib/middleman-core/templates/mobile/source/tools/mobile-bookmark-bubble/images/icon_calendar.png
1179
+ - lib/middleman-core/templates/mobile/source/tools/wspl/README
1180
+ - lib/middleman-core/templates/mobile/source/tools/wspl/databasefactory.js
1181
+ - lib/middleman-core/templates/mobile/source/tools/wspl/dbworker.js
1182
+ - lib/middleman-core/templates/mobile/source/tools/wspl/dbworker_test.html
1183
+ - lib/middleman-core/templates/mobile/source/tools/wspl/dbworkerstarter.js
1184
+ - lib/middleman-core/templates/mobile/source/tools/wspl/dbwrapper_gears.js
1185
+ - lib/middleman-core/templates/mobile/source/tools/wspl/dbwrapper_gears_test.html
1186
+ - lib/middleman-core/templates/mobile/source/tools/wspl/dbwrapper_html5.js
1187
+ - lib/middleman-core/templates/mobile/source/tools/wspl/dbwrapper_html5_test.html
1188
+ - lib/middleman-core/templates/mobile/source/tools/wspl/dbwrapperapi.js
1189
+ - lib/middleman-core/templates/mobile/source/tools/wspl/dbwrapperapi_test.html
1190
+ - lib/middleman-core/templates/mobile/source/tools/wspl/gears_resultset.js
1191
+ - lib/middleman-core/templates/mobile/source/tools/wspl/gears_resultset_test.html
1192
+ - lib/middleman-core/templates/mobile/source/tools/wspl/gears_transaction.js
1193
+ - lib/middleman-core/templates/mobile/source/tools/wspl/gears_transaction_test.html
1194
+ - lib/middleman-core/templates/mobile/source/tools/wspl/gearsutils.js
1195
+ - lib/middleman-core/templates/mobile/source/tools/wspl/gearsutils_test.html
1196
+ - lib/middleman-core/templates/mobile/source/tools/wspl/global_functions.js
1197
+ - lib/middleman-core/templates/mobile/source/tools/wspl/simplenotes/index.html
1198
+ - lib/middleman-core/templates/mobile/source/tools/wspl/simplenotes/simplenotes.js
1199
+ - lib/middleman-core/templates/mobile/source/tools/wspl/simplenotes/styles.css
1200
+ - lib/middleman-core/templates/mobile/source/tools/wspl/simplenotes/template.js
1201
+ - lib/middleman-core/templates/shared/Gemfile.tt
1202
+ - lib/middleman-core/templates/shared/config.ru
1203
+ - lib/middleman-core/templates/shared/config.tt
1204
+ - lib/middleman-core/templates/shared/gitignore
1205
+ - lib/middleman-core/util.rb
1206
+ - lib/middleman-core/version.rb
1207
+ - lib/middleman-more/core_extensions/compass.rb
1208
+ - lib/middleman-more/core_extensions/default_helpers.rb
1209
+ - lib/middleman-more/core_extensions/i18n.rb
1210
+ - lib/middleman-more/extensions/asset_hash.rb
1211
+ - lib/middleman-more/extensions/asset_host.rb
1212
+ - lib/middleman-more/extensions/automatic_alt_tags.rb
1213
+ - lib/middleman-more/extensions/automatic_image_sizes.rb
1214
+ - lib/middleman-more/extensions/cache_buster.rb
1215
+ - lib/middleman-more/extensions/directory_indexes.rb
1216
+ - lib/middleman-more/extensions/gzip.rb
1217
+ - lib/middleman-more/extensions/lorem.rb
1218
+ - lib/middleman-more/extensions/minify_css.rb
1219
+ - lib/middleman-more/extensions/minify_javascript.rb
1220
+ - lib/middleman-more/extensions/relative_assets.rb
1221
+ - lib/middleman-more/templates/smacss.rb
1222
+ - lib/middleman-more/templates/smacss/source/_footer.haml
1223
+ - lib/middleman-more/templates/smacss/source/index.html.haml
1224
+ - lib/middleman-more/templates/smacss/source/layouts/layout.haml
1225
+ - lib/middleman-more/templates/smacss/source/stylesheets/base/README.markdown
1226
+ - lib/middleman-more/templates/smacss/source/stylesheets/base/base.scss
1227
+ - lib/middleman-more/templates/smacss/source/stylesheets/base/normalize.scss
1228
+ - lib/middleman-more/templates/smacss/source/stylesheets/layout/README.markdown
1229
+ - lib/middleman-more/templates/smacss/source/stylesheets/modules/README.markdown
1230
+ - lib/middleman-more/templates/smacss/source/stylesheets/states/README.markdown
1231
+ - lib/middleman-more/templates/smacss/source/stylesheets/style.css.scss
1232
+ - lib/middleman/rack.rb
1233
+ - lib/vendored-middleman-deps/fastimage.rb
1234
+ - middleman-core.gemspec
1235
+ - spec/middleman-core/binary_spec.rb
1236
+ - spec/middleman-core/binary_spec/middleman
1237
+ - spec/middleman-core/binary_spec/middleman.png
1238
+ - spec/middleman-core/binary_spec/plain.txt
1239
+ - spec/middleman-core/binary_spec/stars.svgz
1240
+ - spec/middleman-core/binary_spec/unicode
1241
+ - spec/middleman-core/binary_spec/unicode.txt
1242
+ - spec/spec_helper.rb
1243
+ homepage: http://middlemanapp.com
1244
+ licenses:
1245
+ - MIT
1246
+ metadata: {}
1247
+ post_install_message:
1248
+ rdoc_options: []
1249
+ require_paths:
1250
+ - lib
1251
+ required_ruby_version: !ruby/object:Gem::Requirement
1252
+ requirements:
1253
+ - - '>='
1254
+ - !ruby/object:Gem::Version
1255
+ version: 1.9.3
1256
+ required_rubygems_version: !ruby/object:Gem::Requirement
1257
+ requirements:
1258
+ - - '>='
1259
+ - !ruby/object:Gem::Version
1260
+ version: '0'
1261
+ requirements: []
1262
+ rubyforge_project:
1263
+ rubygems_version: 2.0.14
1264
+ signing_key:
1265
+ specification_version: 4
1266
+ summary: Hand-crafted frontend development
1267
+ test_files: []
1268
+ has_rdoc: