middleman-core 3.1.0.beta.3 → 3.1.0.rc.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (460) hide show
  1. checksums.yaml +4 -4
  2. data/features/asset_hash.feature +135 -0
  3. data/features/asset_host.feature +56 -0
  4. data/features/automatic_image_sizes.feature +16 -0
  5. data/features/cache_buster.feature +42 -0
  6. data/features/coffee-script.feature +22 -0
  7. data/features/compass-sprites.feature +6 -0
  8. data/features/content_for.feature +16 -0
  9. data/features/directory_index.feature +67 -0
  10. data/features/fonts.feature +15 -0
  11. data/features/former_padrino_helpers.feature +27 -0
  12. data/features/gzip.feature +21 -0
  13. data/features/helpers_auto_javascript_include_tag.feature +27 -0
  14. data/features/helpers_auto_stylesheet_link_tag.feature +27 -0
  15. data/features/helpers_form_tag.feature +26 -0
  16. data/features/helpers_link_to.feature +152 -0
  17. data/features/helpers_lorem.feature +6 -0
  18. data/features/helpers_page_classes.feature +17 -0
  19. data/features/helpers_url_for.feature +152 -0
  20. data/features/i18n_builder.feature +148 -0
  21. data/features/i18n_force_locale.feature +13 -0
  22. data/features/i18n_preview.feature +230 -0
  23. data/features/ignore_already_minified.feature +47 -0
  24. data/features/liquid.feature +11 -0
  25. data/features/markdown.feature +13 -0
  26. data/features/markdown_redcarpet.feature +86 -0
  27. data/features/markdown_redcarpet_in_haml.feature +42 -0
  28. data/features/minify_css.feature +127 -0
  29. data/features/minify_javascript.feature +225 -0
  30. data/features/more-clean_build.feature +14 -0
  31. data/features/more-extensionless_text_files.feature +28 -0
  32. data/features/more-frontmatter_page_settings.feature +42 -0
  33. data/features/more-ignore.feature +62 -0
  34. data/features/more-implied_extensions.feature +42 -0
  35. data/features/more-instance_vars.feature +18 -0
  36. data/features/more-sitemap_traversal.feature +73 -0
  37. data/features/more-wildcard_page_helper.feature +10 -0
  38. data/features/nested_layouts.feature +55 -0
  39. data/features/partials.feature +46 -0
  40. data/features/partials_dir.feature +30 -0
  41. data/features/relative_assets.feature +136 -0
  42. data/features/sass-assets-paths.feature +11 -0
  43. data/features/sass_cache_path.feature +22 -0
  44. data/features/sass_partials.feature +54 -0
  45. data/features/scss-support.feature +12 -0
  46. data/features/slim.feature +69 -0
  47. data/features/stylus.feature +55 -0
  48. data/features/twitter-bootstrap-compile.feature +6 -0
  49. data/fixtures/asset-hash-app/config.rb +8 -0
  50. data/fixtures/asset-hash-app/lib/middleware.rb +16 -0
  51. data/fixtures/asset-hash-app/source/apple-touch-icon.png +0 -0
  52. data/fixtures/asset-hash-app/source/favicon.ico +0 -0
  53. data/fixtures/asset-hash-app/source/images/100px.gif +0 -0
  54. data/fixtures/asset-hash-app/source/images/100px.jpg +0 -0
  55. data/fixtures/asset-hash-app/source/images/100px.png +0 -0
  56. data/fixtures/asset-hash-app/source/index.html.erb +311 -0
  57. data/fixtures/asset-hash-app/source/javascripts/application.js +8 -0
  58. data/fixtures/asset-hash-app/source/layout.erb +18 -0
  59. data/fixtures/asset-hash-app/source/other.html.erb +2 -0
  60. data/fixtures/asset-hash-app/source/partials.html.erb +1 -0
  61. data/fixtures/asset-hash-app/source/stylesheets/_partial.sass +2 -0
  62. data/fixtures/asset-hash-app/source/stylesheets/site.css.scss +4 -0
  63. data/fixtures/asset-hash-app/source/stylesheets/uses_partials.css.sass +4 -0
  64. data/fixtures/asset-hash-app/source/subdir/index.html.erb +308 -0
  65. data/fixtures/asset-hash-host-app/config.rb +6 -0
  66. data/fixtures/asset-hash-host-app/source/images/100px.gif +0 -0
  67. data/fixtures/asset-hash-host-app/source/images/100px.jpg +0 -0
  68. data/fixtures/asset-hash-host-app/source/images/100px.png +0 -0
  69. data/fixtures/asset-hash-host-app/source/index.html.erb +6 -0
  70. data/fixtures/asset-hash-host-app/source/layout.erb +17 -0
  71. data/fixtures/asset-hash-host-app/source/other.html.erb +2 -0
  72. data/fixtures/asset-hash-host-app/source/stylesheets/site.css.scss +4 -0
  73. data/fixtures/asset-hash-host-app/source/subdir/index.html.erb +6 -0
  74. data/fixtures/asset-host-app/config.rb +0 -0
  75. data/fixtures/asset-host-app/source/.htaccess +1 -0
  76. data/fixtures/asset-host-app/source/asset_host.html.erb +1 -0
  77. data/fixtures/asset-host-app/source/images/blank.gif +0 -0
  78. data/fixtures/asset-host-app/source/stylesheets/asset_host.css.sass +3 -0
  79. data/fixtures/auto-css-app/config.rb +11 -0
  80. data/fixtures/auto-css-app/source/auto-css/auto-css.html.erb +1 -0
  81. data/fixtures/auto-css-app/source/auto-css/index.html.erb +1 -0
  82. data/fixtures/auto-css-app/source/auto-css/sub/auto-css.html.erb +1 -0
  83. data/fixtures/auto-css-app/source/auto-css.html.erb +1 -0
  84. data/fixtures/auto-css-app/source/stylesheets/auto-css/auto-css.css +3 -0
  85. data/fixtures/auto-css-app/source/stylesheets/auto-css/index.css +0 -0
  86. data/fixtures/auto-css-app/source/stylesheets/auto-css/sub/auto-css.css +3 -0
  87. data/fixtures/auto-css-app/source/stylesheets/auto-css.css +3 -0
  88. data/fixtures/auto-js-app/config.rb +11 -0
  89. data/fixtures/auto-js-app/source/auto-js/auto-js.html.erb +1 -0
  90. data/fixtures/auto-js-app/source/auto-js/index.html.erb +1 -0
  91. data/fixtures/auto-js-app/source/auto-js/sub/auto-js.html.erb +1 -0
  92. data/fixtures/auto-js-app/source/auto-js.html.erb +1 -0
  93. data/fixtures/auto-js-app/source/javascripts/auto-js/auto-js.js +1 -0
  94. data/fixtures/auto-js-app/source/javascripts/auto-js/index.js +1 -0
  95. data/fixtures/auto-js-app/source/javascripts/auto-js/sub/auto-js.js +1 -0
  96. data/fixtures/auto-js-app/source/javascripts/auto-js.js +1 -0
  97. data/fixtures/automatic-image-size-app/config.rb +0 -0
  98. data/fixtures/automatic-image-size-app/source/auto-image-sizes.html.erb +1 -0
  99. data/fixtures/automatic-image-size-app/source/images/blank.gif +0 -0
  100. data/fixtures/cache-buster-app/config.rb +0 -0
  101. data/fixtures/cache-buster-app/source/cache-buster.html.erb +3 -0
  102. data/fixtures/cache-buster-app/source/images/blank.gif +0 -0
  103. data/fixtures/cache-buster-app/source/stylesheets/relative_assets.css.sass +3 -0
  104. data/fixtures/cache-buster-app/source/stylesheets/site.css.sass +1 -0
  105. data/fixtures/clean-dir-app/config.rb +2 -0
  106. data/fixtures/clean-dir-app/source/about.html +1 -0
  107. data/fixtures/coffeescript-app/config.rb +0 -0
  108. data/fixtures/coffeescript-app/source/inline-coffeescript.html.haml +3 -0
  109. data/fixtures/coffeescript-app/source/javascripts/broken-coffee.js.coffee +3 -0
  110. data/fixtures/coffeescript-app/source/javascripts/coffee_test.js.coffee +3 -0
  111. data/fixtures/compass-sprites-app/config.rb +0 -0
  112. data/fixtures/compass-sprites-app/source/images/icon/arrow_down.png +0 -0
  113. data/fixtures/compass-sprites-app/source/images/icon/arrow_left.png +0 -0
  114. data/fixtures/compass-sprites-app/source/images/icon/arrow_right.png +0 -0
  115. data/fixtures/compass-sprites-app/source/images/icon/arrow_up.png +0 -0
  116. data/fixtures/compass-sprites-app/source/stylesheets/site.css.scss +3 -0
  117. data/fixtures/content-for-app/config.rb +7 -0
  118. data/fixtures/content-for-app/source/content_for_erb.html.erb +5 -0
  119. data/fixtures/content-for-app/source/content_for_haml.html.haml +4 -0
  120. data/fixtures/content-for-app/source/content_for_slim.html.slim +4 -0
  121. data/fixtures/content-for-app/source/layouts/content_for.erb +4 -0
  122. data/fixtures/default-partials-dir-app/source/_partial.html.erb +1 -0
  123. data/fixtures/default-partials-dir-app/source/index.html.erb +2 -0
  124. data/fixtures/different-engine-layout/source/index.html.str +1 -0
  125. data/fixtures/different-engine-partial/config.rb +0 -0
  126. data/fixtures/different-engine-partial/source/index.html.erb +1 -0
  127. data/fixtures/different-engine-partial/source/layouts/layout.erb +7 -0
  128. data/fixtures/different-engine-partial/source/shared/_footer.str +1 -0
  129. data/fixtures/different-engine-partial/source/shared/_header.erb +1 -0
  130. data/fixtures/fonts-app/config.rb +0 -0
  131. data/fixtures/fonts-app/source/fonts/StMarie-Thin.otf +0 -0
  132. data/fixtures/fonts-app/source/fonts/blank/blank.otf +0 -0
  133. data/fixtures/fonts-app/source/stylesheets/fonts.css.sass +5 -0
  134. data/fixtures/gzip-app/config.rb +1 -0
  135. data/fixtures/gzip-app/source/index.html +0 -0
  136. data/fixtures/gzip-app/source/javascripts/test.js +1 -0
  137. data/fixtures/gzip-app/source/stylesheets/test.css +1 -0
  138. data/fixtures/i18n-alt-root-app/locales/en.yml +4 -0
  139. data/fixtures/i18n-alt-root-app/locales/es.yml +7 -0
  140. data/fixtures/i18n-alt-root-app/source/lang_data/hello.html.erb +1 -0
  141. data/fixtures/i18n-alt-root-app/source/lang_data/index.html.erb +1 -0
  142. data/fixtures/i18n-alt-root-app/source/layout.erb +1 -0
  143. data/fixtures/i18n-default-app/locales/en.yml +4 -0
  144. data/fixtures/i18n-default-app/locales/es.yml +8 -0
  145. data/fixtures/i18n-default-app/source/localizable/index.html.erb +5 -0
  146. data/fixtures/i18n-force-locale/config.rb +13 -0
  147. data/fixtures/i18n-force-locale/locales/en.yml +3 -0
  148. data/fixtures/i18n-force-locale/locales/es.yml +3 -0
  149. data/fixtures/i18n-force-locale/locales/fr.yml +3 -0
  150. data/fixtures/i18n-force-locale/source/index.haml +2 -0
  151. data/fixtures/i18n-test-app/locales/en.yml +4 -0
  152. data/fixtures/i18n-test-app/locales/es.yml +8 -0
  153. data/fixtures/i18n-test-app/source/CNAME +1 -0
  154. data/fixtures/i18n-test-app/source/layout.erb +8 -0
  155. data/fixtures/i18n-test-app/source/localizable/hello.html.erb +1 -0
  156. data/fixtures/i18n-test-app/source/localizable/index.html.erb +1 -0
  157. data/fixtures/i18n-test-app/source/morning.en.html.erb +1 -0
  158. data/fixtures/i18n-test-app/source/morning.es.html.erb +1 -0
  159. data/fixtures/i18n-test-app/source/password.txt +1 -0
  160. data/fixtures/i18n-test-app/source/stylesheets/site.css +3 -0
  161. data/fixtures/indexable-app/config.rb +4 -0
  162. data/fixtures/indexable-app/source/.htpasswd +1 -0
  163. data/fixtures/liquid-app/config.rb +0 -0
  164. data/fixtures/liquid-app/data/test.yml +4 -0
  165. data/fixtures/liquid-app/data/test2.json +4 -0
  166. data/fixtures/liquid-app/source/_liquid_partial.liquid +1 -0
  167. data/fixtures/liquid-app/source/data2.html.liquid +2 -0
  168. data/fixtures/liquid-app/source/liquid_master.html.liquid +1 -0
  169. data/fixtures/lorem-app/config.rb +1 -0
  170. data/fixtures/lorem-app/source/lorem.html.erb +13 -0
  171. data/fixtures/markdown-app/config.rb +1 -0
  172. data/fixtures/markdown-app/source/autolink.html.markdown +5 -0
  173. data/fixtures/markdown-app/source/fenced_code_blocks.html.markdown +7 -0
  174. data/fixtures/markdown-app/source/hard_wrap.html.markdown +2 -0
  175. data/fixtures/markdown-app/source/images/blank.gif +0 -0
  176. data/fixtures/markdown-app/source/index.html.markdown +4 -0
  177. data/fixtures/markdown-app/source/no_intra_emphasis.html.markdown +5 -0
  178. data/fixtures/markdown-app/source/smarty_pants.html.markdown +5 -0
  179. data/fixtures/markdown-app/source/space_after_headers.html.markdown +5 -0
  180. data/fixtures/markdown-app/source/strikethrough.html.markdown +5 -0
  181. data/fixtures/markdown-app/source/superscript.html.markdown +5 -0
  182. data/fixtures/markdown-app/source/tables.html.markdown +8 -0
  183. data/fixtures/markdown-app/source/with_toc_data.html.markdown +3 -0
  184. data/fixtures/markdown-frontmatter-options-app/config.rb +1 -0
  185. data/fixtures/markdown-frontmatter-options-app/source/smarty_pants-default.html.markdown +5 -0
  186. data/fixtures/markdown-frontmatter-options-app/source/smarty_pants-off.html.markdown +7 -0
  187. data/fixtures/markdown-frontmatter-options-app/source/smarty_pants-on.html.markdown +7 -0
  188. data/fixtures/markdown-frontmatter-options-app/source/tables-default.html.markdown +8 -0
  189. data/fixtures/markdown-frontmatter-options-app/source/tables-off.html.markdown +10 -0
  190. data/fixtures/markdown-frontmatter-options-app/source/tables-on.html.markdown +10 -0
  191. data/fixtures/markdown-in-haml-app/config.rb +0 -0
  192. data/fixtures/markdown-in-haml-app/source/images/blank.gif +0 -0
  193. data/fixtures/markdown-in-haml-app/source/link_target.html.markdown +4 -0
  194. data/fixtures/minify-css-app/source/inline-css.html.haml +5 -0
  195. data/fixtures/minify-css-app/source/more-css/site.css +3 -0
  196. data/fixtures/minify-css-app/source/stylesheets/report.css +1 -0
  197. data/fixtures/minify-css-app/source/stylesheets/site.css.sass +5 -0
  198. data/fixtures/minify-js-app/config.rb +0 -0
  199. data/fixtures/minify-js-app/source/inline-coffeescript.html.haml +3 -0
  200. data/fixtures/minify-js-app/source/inline-js.html.haml +28 -0
  201. data/fixtures/minify-js-app/source/javascripts/coffee_test.js.coffee +3 -0
  202. data/fixtures/minify-js-app/source/javascripts/js_test.js +8 -0
  203. data/fixtures/minify-js-app/source/more-js/other.js +8 -0
  204. data/fixtures/more-extensionless-text-files-app/config.rb +1 -0
  205. data/fixtures/more-extensionless-text-files-app/source/CNAME +1 -0
  206. data/fixtures/more-extensionless-text-files-app/source/LICENSE +1 -0
  207. data/fixtures/more-extensionless-text-files-app/source/README +1 -0
  208. data/fixtures/more-extensionless-text-files-app/source/index.html +1 -0
  209. data/fixtures/more-frontmatter-settings-app/config.rb +4 -0
  210. data/fixtures/more-frontmatter-settings-app/source/alternate_layout.html.erb +5 -0
  211. data/fixtures/more-frontmatter-settings-app/source/ignored.html.erb +5 -0
  212. data/fixtures/more-frontmatter-settings-app/source/layouts/alternate.erb +3 -0
  213. data/fixtures/more-frontmatter-settings-app/source/no_index.html.erb +5 -0
  214. data/fixtures/more-ignore-app/source/about.html.erb +1 -0
  215. data/fixtures/more-ignore-app/source/images/icon/messages.png +0 -0
  216. data/fixtures/more-ignore-app/source/images/pic.png +0 -0
  217. data/fixtures/more-ignore-app/source/images/portrait.jpg +0 -0
  218. data/fixtures/more-ignore-app/source/index.html.erb +0 -0
  219. data/fixtures/more-ignore-app/source/plain.html +1 -0
  220. data/fixtures/more-ignore-app/source/reports/another.html +0 -0
  221. data/fixtures/more-ignore-app/source/reports/index.html +0 -0
  222. data/fixtures/more-implied-extensions-app/config.rb +0 -0
  223. data/fixtures/more-implied-extensions-app/source/javascripts/app.coffee +1 -0
  224. data/fixtures/more-implied-extensions-app/source/stylesheets/style.scss +3 -0
  225. data/fixtures/more-implied-extensions-app/source/stylesheets/style2.sass +3 -0
  226. data/fixtures/more-implied-extensions-app/source/stylesheets/style3.less +4 -0
  227. data/fixtures/more-implied-extensions-app/source/test.haml +4 -0
  228. data/fixtures/more-implied-extensions-app/source/test2.markdown +3 -0
  229. data/fixtures/more-implied-extensions-app/source/test3.slim +3 -0
  230. data/fixtures/more-implied-extensions-app/source/test4.liquid +1 -0
  231. data/fixtures/more-instance-vars-app/config.rb +0 -0
  232. data/fixtures/more-instance-vars-app/source/_vartial.erb +5 -0
  233. data/fixtures/more-instance-vars-app/source/instance-var-set.html.erb +2 -0
  234. data/fixtures/more-instance-vars-app/source/layout.erb +3 -0
  235. data/fixtures/more-instance-vars-app/source/no-instance-var.html.erb +1 -0
  236. data/fixtures/more-preview-app/config.rb +0 -0
  237. data/fixtures/more-preview-app/source/content.html.erb +1 -0
  238. data/fixtures/more-preview-app/source/layout.erb +1 -0
  239. data/fixtures/more-preview-app/source/stylesheets/_partial.sass +2 -0
  240. data/fixtures/more-preview-app/source/stylesheets/_partial2.css.sass +2 -0
  241. data/fixtures/more-preview-app/source/stylesheets/main.css.sass +4 -0
  242. data/fixtures/more-preview-app/source/stylesheets/main2.css.sass +4 -0
  243. data/fixtures/more-preview-app/source/stylesheets/plain.css.sass +2 -0
  244. data/fixtures/more-traversal-app/config.rb +7 -0
  245. data/fixtures/more-traversal-app/source/directory-indexed/sibling.html.erb +3 -0
  246. data/fixtures/more-traversal-app/source/directory-indexed/sibling2.html.erb +3 -0
  247. data/fixtures/more-traversal-app/source/directory-indexed/sub2/index.html.erb +0 -0
  248. data/fixtures/more-traversal-app/source/directory-indexed/sub3/deep.html.erb +0 -0
  249. data/fixtures/more-traversal-app/source/directory-indexed.html.erb +0 -0
  250. data/fixtures/more-traversal-app/source/index.html.erb +0 -0
  251. data/fixtures/more-traversal-app/source/layout.erb +21 -0
  252. data/fixtures/more-traversal-app/source/proxied.html.erb +0 -0
  253. data/fixtures/more-traversal-app/source/root.html.erb +0 -0
  254. data/fixtures/more-traversal-app/source/sub/index.html.erb +0 -0
  255. data/fixtures/more-traversal-app/source/sub/sibling.html.erb +0 -0
  256. data/fixtures/more-traversal-app/source/sub/sibling2.html.erb +0 -0
  257. data/fixtures/more-traversal-app/source/sub/sub2/index.html.erb +0 -0
  258. data/fixtures/more-traversal-app/source/sub/sub3/deep.html.erb +0 -0
  259. data/fixtures/nested-layout-app/config.rb +1 -0
  260. data/fixtures/nested-layout-app/source/another.html.markdown +7 -0
  261. data/fixtures/nested-layout-app/source/data-one.html.erb +5 -0
  262. data/fixtures/nested-layout-app/source/data-two.html.erb +5 -0
  263. data/fixtures/nested-layout-app/source/haml-test.html.markdown +7 -0
  264. data/fixtures/nested-layout-app/source/index.html.erb +6 -0
  265. data/fixtures/nested-layout-app/source/layouts/inner.erb +4 -0
  266. data/fixtures/nested-layout-app/source/layouts/inner_haml.haml +3 -0
  267. data/fixtures/nested-layout-app/source/layouts/inner_slim.slim +3 -0
  268. data/fixtures/nested-layout-app/source/layouts/master.erb +3 -0
  269. data/fixtures/nested-layout-app/source/layouts/master_haml.haml +3 -0
  270. data/fixtures/nested-layout-app/source/layouts/master_slim.slim +3 -0
  271. data/fixtures/nested-layout-app/source/layouts/outer.erb +4 -0
  272. data/fixtures/nested-layout-app/source/layouts/outer_haml.haml +3 -0
  273. data/fixtures/nested-layout-app/source/layouts/outer_slim.slim +3 -0
  274. data/fixtures/nested-layout-app/source/slim-test.html.markdown +7 -0
  275. data/fixtures/padrino-helpers-app/config.rb +0 -0
  276. data/fixtures/padrino-helpers-app/source/former_padrino_test.html.erb +6 -0
  277. data/fixtures/page-classes-app/config.rb +4 -0
  278. data/fixtures/page-classes-app/source/page-classes.html.erb +1 -0
  279. data/fixtures/page-classes-app/source/sub1/page-classes.html.erb +1 -0
  280. data/fixtures/page-classes-app/source/sub1/sub2/page-classes.html.erb +1 -0
  281. data/fixtures/partials-app/config.rb +0 -0
  282. data/fixtures/partials-app/source/_locals.erb +1 -0
  283. data/fixtures/partials-app/source/_main.erb +1 -0
  284. data/fixtures/partials-app/source/_main.str +1 -0
  285. data/fixtures/partials-app/source/index.html.erb +3 -0
  286. data/fixtures/partials-app/source/locals.html.erb +1 -0
  287. data/fixtures/partials-app/source/second.html.str +3 -0
  288. data/fixtures/partials-app/source/shared/_footer.erb +1 -0
  289. data/fixtures/partials-app/source/shared/_header.erb +1 -0
  290. data/fixtures/partials-app/source/shared/snippet.erb +1 -0
  291. data/fixtures/partials-app/source/sub/_local.erb +1 -0
  292. data/fixtures/partials-app/source/sub/index.html.erb +3 -0
  293. data/fixtures/partials-app/source/using_snippet.html.erb +1 -0
  294. data/fixtures/partials-dir-app/source/index.html.erb +2 -0
  295. data/fixtures/partials-dir-app/source/nested/partials/_partial.html.erb +1 -0
  296. data/fixtures/partials-dir-app/source/partials/_partial.html.erb +1 -0
  297. data/fixtures/passthrough-app/source/.htaccess +1 -0
  298. data/fixtures/passthrough-app/source/inline-coffeescript.html.haml +3 -0
  299. data/fixtures/passthrough-app/source/inline-css.html.haml +4 -0
  300. data/fixtures/passthrough-app/source/inline-js.html.haml +28 -0
  301. data/fixtures/passthrough-app/source/javascripts/coffee_test.js.coffee +3 -0
  302. data/fixtures/passthrough-app/source/javascripts/js_test.js +8 -0
  303. data/fixtures/passthrough-app/source/stylesheets/site.css.sass +1 -0
  304. data/fixtures/relative-app/config.rb +0 -0
  305. data/fixtures/relative-app/source/images/blank.gif +0 -0
  306. data/fixtures/relative-app/source/stylesheets/relative_assets.css.sass +3 -0
  307. data/fixtures/relative-assets-app/config.rb +1 -0
  308. data/fixtures/relative-assets-app/source/images/blank.gif +0 -0
  309. data/fixtures/relative-assets-app/source/img/blank.gif +0 -0
  310. data/fixtures/relative-assets-app/source/relative_image.html.erb +8 -0
  311. data/fixtures/relative-assets-app/source/stylesheets/relative_assets.css.sass +3 -0
  312. data/fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset-sass.sass +1 -0
  313. data/fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset.scss +1 -0
  314. data/fixtures/sass-assets-path-app/config.rb +4 -0
  315. data/fixtures/sass-assets-path-app/my-vendor/stylesheets/_partial.sass +2 -0
  316. data/fixtures/sass-assets-path-app/source/stylesheets/plain.css.sass +16 -0
  317. data/fixtures/sass-cache-path-custom-app/config.rb +3 -0
  318. data/fixtures/sass-cache-path-custom-app/source/stylesheets/plain.css.sass +4 -0
  319. data/fixtures/sass-cache-path-default-app/config.rb +3 -0
  320. data/fixtures/sass-cache-path-default-app/source/stylesheets/plain.css.sass +4 -0
  321. data/fixtures/scss-app/config.rb +0 -0
  322. data/fixtures/scss-app/source/stylesheets/layout.css.sass +2 -0
  323. data/fixtures/scss-app/source/stylesheets/site_scss.css.scss +1 -0
  324. data/fixtures/stylus-preview-app/config.rb +0 -0
  325. data/fixtures/stylus-preview-app/source/content.html.erb +1 -0
  326. data/fixtures/stylus-preview-app/source/layout.erb +1 -0
  327. data/fixtures/stylus-preview-app/source/stylesheets/_partial.styl +2 -0
  328. data/fixtures/stylus-preview-app/source/stylesheets/_partial2.css.styl +2 -0
  329. data/fixtures/stylus-preview-app/source/stylesheets/main.css.styl +4 -0
  330. data/fixtures/stylus-preview-app/source/stylesheets/main2.css.styl +4 -0
  331. data/fixtures/stylus-preview-app/source/stylesheets/plain.css.styl +2 -0
  332. data/fixtures/twitter-bootstrap-app/config.rb +0 -0
  333. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/.gitignore +36 -0
  334. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/.travis.yml +3 -0
  335. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/LICENSE +176 -0
  336. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/README.md +137 -0
  337. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/img/glyphicons-halflings-white.png +0 -0
  338. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/img/glyphicons-halflings.png +0 -0
  339. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/.jshintrc +10 -0
  340. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/README.md +112 -0
  341. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-alert.js +90 -0
  342. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-button.js +96 -0
  343. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-carousel.js +169 -0
  344. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-collapse.js +157 -0
  345. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-dropdown.js +100 -0
  346. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-modal.js +218 -0
  347. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-popover.js +98 -0
  348. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-scrollspy.js +151 -0
  349. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-tab.js +135 -0
  350. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-tooltip.js +275 -0
  351. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-transition.js +61 -0
  352. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-typeahead.js +285 -0
  353. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/index.html +54 -0
  354. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/phantom.js +63 -0
  355. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/server.js +14 -0
  356. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-alert.js +56 -0
  357. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-button.js +77 -0
  358. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-carousel.js +28 -0
  359. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-collapse.js +54 -0
  360. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-dropdown.js +87 -0
  361. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-modal.js +114 -0
  362. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-phantom.js +21 -0
  363. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-popover.js +93 -0
  364. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-scrollspy.js +31 -0
  365. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-tab.js +61 -0
  366. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-tooltip.js +155 -0
  367. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-transition.js +13 -0
  368. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-typeahead.js +148 -0
  369. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/vendor/jquery.js +9252 -0
  370. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/vendor/qunit.css +232 -0
  371. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/vendor/qunit.js +1510 -0
  372. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_accordion.less +33 -0
  373. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_alerts.less +58 -0
  374. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_breadcrumbs.less +24 -0
  375. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_button-groups.less +191 -0
  376. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_buttons.less +191 -0
  377. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_carousel.less +121 -0
  378. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_close.less +29 -0
  379. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_code.less +57 -0
  380. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_component-animations.less +20 -0
  381. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_dropdowns.less +143 -0
  382. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_forms.less +583 -0
  383. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_grid.less +5 -0
  384. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_hero-unit.less +22 -0
  385. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_labels-badges.less +55 -0
  386. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_layouts.less +17 -0
  387. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_mixins.less +646 -0
  388. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_modals.less +90 -0
  389. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_navbar.less +358 -0
  390. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_navs.less +363 -0
  391. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_pager.less +36 -0
  392. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_pagination.less +56 -0
  393. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_popovers.less +49 -0
  394. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_progress-bars.less +117 -0
  395. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_reset.less +131 -0
  396. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-1200px-min.less +26 -0
  397. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-767px-max.less +149 -0
  398. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-768px-979px.less +17 -0
  399. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-navbar.less +153 -0
  400. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-utilities.less +41 -0
  401. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_scaffolding.less +29 -0
  402. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_sprites.less +191 -0
  403. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_tables.less +176 -0
  404. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_thumbnails.less +47 -0
  405. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_tooltip.less +35 -0
  406. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_type.less +232 -0
  407. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_utilities.less +23 -0
  408. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_variables.less +206 -0
  409. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_wells.less +27 -0
  410. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/bootstrap.less +62 -0
  411. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/responsive.less +48 -0
  412. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/css-tests.css +52 -0
  413. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/css-tests.html +917 -0
  414. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/forms.html +179 -0
  415. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/navbar.html +108 -0
  416. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/package.json +25 -0
  417. data/fixtures/wildcard-directory-index-app/config.rb +2 -0
  418. data/fixtures/wildcard-directory-index-app/source/admin/index.html.erb +1 -0
  419. data/fixtures/wildcard-directory-index-app/source/admin/page.html.erb +1 -0
  420. data/fixtures/wildcard-directory-index-app/source/index.html.erb +1 -0
  421. data/fixtures/wildcard-directory-index-app/source/layouts/admin.erb +2 -0
  422. data/fixtures/wildcard-directory-index-app/source/layouts/layout.erb +2 -0
  423. data/lib/middleman-core/cli/build.rb +8 -5
  424. data/lib/middleman-core/extensions.rb +0 -5
  425. data/lib/middleman-core/meta_pages/sitemap_resource.rb +2 -0
  426. data/lib/middleman-core/preview_server.rb +1 -1
  427. data/lib/middleman-core/templates/shared/Gemfile.tt +1 -1
  428. data/lib/middleman-core/util.rb +9 -7
  429. data/lib/middleman-core/version.rb +1 -1
  430. data/lib/middleman-core.rb +1 -0
  431. data/lib/middleman-more/core_extensions/compass.rb +75 -0
  432. data/lib/middleman-more/core_extensions/default_helpers.rb +235 -0
  433. data/lib/middleman-more/core_extensions/i18n.rb +182 -0
  434. data/lib/middleman-more/extensions/asset_hash.rb +114 -0
  435. data/lib/middleman-more/extensions/asset_host.rb +50 -0
  436. data/lib/middleman-more/extensions/automatic_image_sizes/fastimage.rb +287 -0
  437. data/lib/middleman-more/extensions/automatic_image_sizes.rb +42 -0
  438. data/lib/middleman-more/extensions/cache_buster.rb +56 -0
  439. data/lib/middleman-more/extensions/directory_indexes.rb +24 -0
  440. data/lib/middleman-more/extensions/gzip.rb +75 -0
  441. data/lib/middleman-more/extensions/lorem.rb +176 -0
  442. data/lib/middleman-more/extensions/minify_css.rb +77 -0
  443. data/lib/middleman-more/extensions/minify_javascript.rb +83 -0
  444. data/lib/middleman-more/extensions/relative_assets.rb +29 -0
  445. data/lib/middleman-more/templates/smacss/source/_footer.haml +1 -0
  446. data/lib/middleman-more/templates/smacss/source/index.html.haml +1 -0
  447. data/lib/middleman-more/templates/smacss/source/layouts/layout.haml +13 -0
  448. data/lib/middleman-more/templates/smacss/source/stylesheets/base/README.markdown +11 -0
  449. data/lib/middleman-more/templates/smacss/source/stylesheets/base/base.scss +1 -0
  450. data/lib/middleman-more/templates/smacss/source/stylesheets/base/normalize.scss +375 -0
  451. data/lib/middleman-more/templates/smacss/source/stylesheets/layout/README.markdown +9 -0
  452. data/lib/middleman-more/templates/smacss/source/stylesheets/modules/README.markdown +9 -0
  453. data/lib/middleman-more/templates/smacss/source/stylesheets/states/README.markdown +12 -0
  454. data/lib/middleman-more/templates/smacss/source/stylesheets/style.css.scss +12 -0
  455. data/lib/middleman-more/templates/smacss.rb +30 -0
  456. data/lib/middleman-more.rb +102 -0
  457. data/middleman-core.gemspec +4 -1
  458. metadata +885 -7
  459. data/.cane +0 -2
  460. data/.cane-exclusions.yml +0 -5
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: middleman-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.0.beta.3
4
+ version: 3.1.0.rc.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas Reynolds
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-05-03 00:00:00.000000000 Z
12
+ date: 2013-05-17 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -101,14 +101,28 @@ dependencies:
101
101
  requirements:
102
102
  - - ~>
103
103
  - !ruby/object:Gem::Version
104
- version: 1.0.2
104
+ version: 1.1.1
105
105
  type: :runtime
106
106
  prerelease: false
107
107
  version_requirements: !ruby/object:Gem::Requirement
108
108
  requirements:
109
109
  - - ~>
110
110
  - !ruby/object:Gem::Version
111
- version: 1.0.2
111
+ version: 1.1.1
112
+ - !ruby/object:Gem::Dependency
113
+ name: i18n
114
+ requirement: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - ~>
117
+ - !ruby/object:Gem::Version
118
+ version: 0.6.1
119
+ type: :runtime
120
+ prerelease: false
121
+ version_requirements: !ruby/object:Gem::Requirement
122
+ requirements:
123
+ - - ~>
124
+ - !ruby/object:Gem::Version
125
+ version: 0.6.1
112
126
  description: A static site generator. Provides dozens of templating languages (Haml,
113
127
  Sass, Compass, Slim, CoffeeScript, and more). Makes minification, compression, cache
114
128
  busting, Yaml data (and more) an easy part of your development cycle.
@@ -120,50 +134,143 @@ executables:
120
134
  extensions: []
121
135
  extra_rdoc_files: []
122
136
  files:
123
- - .cane
124
- - .cane-exclusions.yml
125
137
  - .gemtest
126
138
  - Rakefile
127
139
  - bin/middleman
128
140
  - features/3rd_party_cli.feature
141
+ - features/asset_hash.feature
142
+ - features/asset_host.feature
129
143
  - features/auto_layout.feature
130
144
  - features/automatic_directory_matcher.feature
145
+ - features/automatic_image_sizes.feature
131
146
  - features/builder.feature
147
+ - features/cache_buster.feature
132
148
  - features/chained_templates.feature
133
149
  - features/clean_build.feature
134
150
  - features/cli_extension.feature
135
151
  - features/cli_init.feature
152
+ - features/coffee-script.feature
153
+ - features/compass-sprites.feature
154
+ - features/content_for.feature
136
155
  - features/content_type.feature
137
156
  - features/current_page_request_path_backwards.feature
138
157
  - features/custom_layout_engines.feature
139
158
  - features/custom_layouts.feature
140
159
  - features/data.feature
160
+ - features/directory_index.feature
141
161
  - features/dynamic_pages.feature
142
162
  - features/extensionless_text_files.feature
143
163
  - features/feature_params.feature
164
+ - features/fonts.feature
165
+ - features/former_padrino_helpers.feature
144
166
  - features/front-matter-neighbor.feature
145
167
  - features/front-matter.feature
146
168
  - features/frontmatter_page_settings.feature
169
+ - features/gzip.feature
170
+ - features/helpers_auto_javascript_include_tag.feature
171
+ - features/helpers_auto_stylesheet_link_tag.feature
147
172
  - features/helpers_external.feature
173
+ - features/helpers_form_tag.feature
174
+ - features/helpers_link_to.feature
175
+ - features/helpers_lorem.feature
176
+ - features/helpers_page_classes.feature
177
+ - features/helpers_url_for.feature
178
+ - features/i18n_builder.feature
179
+ - features/i18n_force_locale.feature
180
+ - features/i18n_preview.feature
148
181
  - features/ignore.feature
182
+ - features/ignore_already_minified.feature
149
183
  - features/implied_extensions.feature
150
184
  - features/instance_vars.feature
185
+ - features/liquid.feature
186
+ - features/markdown.feature
187
+ - features/markdown_redcarpet.feature
188
+ - features/markdown_redcarpet_in_haml.feature
189
+ - features/minify_css.feature
190
+ - features/minify_javascript.feature
151
191
  - features/missing-tilt-lib.feature
192
+ - features/more-clean_build.feature
193
+ - features/more-extensionless_text_files.feature
194
+ - features/more-frontmatter_page_settings.feature
195
+ - features/more-ignore.feature
196
+ - features/more-implied_extensions.feature
197
+ - features/more-instance_vars.feature
198
+ - features/more-sitemap_traversal.feature
199
+ - features/more-wildcard_page_helper.feature
152
200
  - features/mount_rack.feature
201
+ - features/nested_layouts.feature
202
+ - features/partials.feature
203
+ - features/partials_dir.feature
153
204
  - features/preview_changes.feature
154
205
  - features/proxy_pages.feature
155
206
  - features/queryable.feature
207
+ - features/relative_assets.feature
156
208
  - features/request_params.feature
209
+ - features/sass-assets-paths.feature
210
+ - features/sass_cache_path.feature
211
+ - features/sass_partials.feature
212
+ - features/scss-support.feature
157
213
  - features/sitemap_traversal.feature
214
+ - features/slim.feature
158
215
  - features/static_server.feature
159
216
  - features/step_definitions/page_layout_steps.rb
160
217
  - features/step_definitions/queryable_steps.rb
161
218
  - features/strip_url.feature
219
+ - features/stylus.feature
162
220
  - features/support/env.rb
163
221
  - features/tilde_directories.feature
222
+ - features/twitter-bootstrap-compile.feature
164
223
  - features/unicode_filecontents.feature
165
224
  - features/unicode_filenames.feature
166
225
  - features/wildcard_page_helper.feature
226
+ - fixtures/asset-hash-app/config.rb
227
+ - fixtures/asset-hash-app/lib/middleware.rb
228
+ - fixtures/asset-hash-app/source/apple-touch-icon.png
229
+ - fixtures/asset-hash-app/source/favicon.ico
230
+ - fixtures/asset-hash-app/source/images/100px.gif
231
+ - fixtures/asset-hash-app/source/images/100px.jpg
232
+ - fixtures/asset-hash-app/source/images/100px.png
233
+ - fixtures/asset-hash-app/source/index.html.erb
234
+ - fixtures/asset-hash-app/source/javascripts/application.js
235
+ - fixtures/asset-hash-app/source/layout.erb
236
+ - fixtures/asset-hash-app/source/other.html.erb
237
+ - fixtures/asset-hash-app/source/partials.html.erb
238
+ - fixtures/asset-hash-app/source/stylesheets/_partial.sass
239
+ - fixtures/asset-hash-app/source/stylesheets/site.css.scss
240
+ - fixtures/asset-hash-app/source/stylesheets/uses_partials.css.sass
241
+ - fixtures/asset-hash-app/source/subdir/index.html.erb
242
+ - fixtures/asset-hash-host-app/config.rb
243
+ - fixtures/asset-hash-host-app/source/images/100px.gif
244
+ - fixtures/asset-hash-host-app/source/images/100px.jpg
245
+ - fixtures/asset-hash-host-app/source/images/100px.png
246
+ - fixtures/asset-hash-host-app/source/index.html.erb
247
+ - fixtures/asset-hash-host-app/source/layout.erb
248
+ - fixtures/asset-hash-host-app/source/other.html.erb
249
+ - fixtures/asset-hash-host-app/source/stylesheets/site.css.scss
250
+ - fixtures/asset-hash-host-app/source/subdir/index.html.erb
251
+ - fixtures/asset-host-app/config.rb
252
+ - fixtures/asset-host-app/source/.htaccess
253
+ - fixtures/asset-host-app/source/asset_host.html.erb
254
+ - fixtures/asset-host-app/source/images/blank.gif
255
+ - fixtures/asset-host-app/source/stylesheets/asset_host.css.sass
256
+ - fixtures/auto-css-app/config.rb
257
+ - fixtures/auto-css-app/source/auto-css.html.erb
258
+ - fixtures/auto-css-app/source/auto-css/auto-css.html.erb
259
+ - fixtures/auto-css-app/source/auto-css/index.html.erb
260
+ - fixtures/auto-css-app/source/auto-css/sub/auto-css.html.erb
261
+ - fixtures/auto-css-app/source/stylesheets/auto-css.css
262
+ - fixtures/auto-css-app/source/stylesheets/auto-css/auto-css.css
263
+ - fixtures/auto-css-app/source/stylesheets/auto-css/index.css
264
+ - fixtures/auto-css-app/source/stylesheets/auto-css/sub/auto-css.css
265
+ - fixtures/auto-js-app/config.rb
266
+ - fixtures/auto-js-app/source/auto-js.html.erb
267
+ - fixtures/auto-js-app/source/auto-js/auto-js.html.erb
268
+ - fixtures/auto-js-app/source/auto-js/index.html.erb
269
+ - fixtures/auto-js-app/source/auto-js/sub/auto-js.html.erb
270
+ - fixtures/auto-js-app/source/javascripts/auto-js.js
271
+ - fixtures/auto-js-app/source/javascripts/auto-js/auto-js.js
272
+ - fixtures/auto-js-app/source/javascripts/auto-js/index.js
273
+ - fixtures/auto-js-app/source/javascripts/auto-js/sub/auto-js.js
167
274
  - fixtures/automatic-directory-matcher-app/config.rb
168
275
  - fixtures/automatic-directory-matcher-app/source/root-plain.html
169
276
  - fixtures/automatic-directory-matcher-app/source/root.html.erb
@@ -171,6 +278,9 @@ files:
171
278
  - fixtures/automatic-directory-matcher-app/source/sub--sub--sub.html.erb
172
279
  - fixtures/automatic-directory-matcher-app/source/sub--sub-plain.html
173
280
  - fixtures/automatic-directory-matcher-app/source/sub--sub.html.erb
281
+ - fixtures/automatic-image-size-app/config.rb
282
+ - fixtures/automatic-image-size-app/source/auto-image-sizes.html.erb
283
+ - fixtures/automatic-image-size-app/source/images/blank.gif
174
284
  - fixtures/basic-data-app/config.rb
175
285
  - fixtures/basic-data-app/data/test.yml
176
286
  - fixtures/basic-data-app/data/test2.json
@@ -178,6 +288,11 @@ files:
178
288
  - fixtures/basic-data-app/source/data3.html.erb
179
289
  - fixtures/build-with-errors-app/config.rb
180
290
  - fixtures/build-with-errors-app/source/index.html.erb
291
+ - fixtures/cache-buster-app/config.rb
292
+ - fixtures/cache-buster-app/source/cache-buster.html.erb
293
+ - fixtures/cache-buster-app/source/images/blank.gif
294
+ - fixtures/cache-buster-app/source/stylesheets/relative_assets.css.sass
295
+ - fixtures/cache-buster-app/source/stylesheets/site.css.sass
181
296
  - fixtures/chained-app/config.rb
182
297
  - fixtures/chained-app/data/article.yml
183
298
  - fixtures/chained-app/source/index.html.str.erb
@@ -193,8 +308,25 @@ files:
193
308
  - fixtures/clean-app/source/should_be_ignored2.html
194
309
  - fixtures/clean-app/source/should_be_ignored3.html
195
310
  - fixtures/clean-app/source/static.html
311
+ - fixtures/clean-dir-app/config.rb
312
+ - fixtures/clean-dir-app/source/about.html
196
313
  - fixtures/clean-nested-app/config.rb
197
314
  - fixtures/clean-nested-app/source/about.html
315
+ - fixtures/coffeescript-app/config.rb
316
+ - fixtures/coffeescript-app/source/inline-coffeescript.html.haml
317
+ - fixtures/coffeescript-app/source/javascripts/broken-coffee.js.coffee
318
+ - fixtures/coffeescript-app/source/javascripts/coffee_test.js.coffee
319
+ - fixtures/compass-sprites-app/config.rb
320
+ - fixtures/compass-sprites-app/source/images/icon/arrow_down.png
321
+ - fixtures/compass-sprites-app/source/images/icon/arrow_left.png
322
+ - fixtures/compass-sprites-app/source/images/icon/arrow_right.png
323
+ - fixtures/compass-sprites-app/source/images/icon/arrow_up.png
324
+ - fixtures/compass-sprites-app/source/stylesheets/site.css.scss
325
+ - fixtures/content-for-app/config.rb
326
+ - fixtures/content-for-app/source/content_for_erb.html.erb
327
+ - fixtures/content-for-app/source/content_for_haml.html.haml
328
+ - fixtures/content-for-app/source/content_for_slim.html.slim
329
+ - fixtures/content-for-app/source/layouts/content_for.erb
198
330
  - fixtures/content-type-app/config.rb
199
331
  - fixtures/content-type-app/source/.htaccess
200
332
  - fixtures/content-type-app/source/README
@@ -218,9 +350,17 @@ files:
218
350
  - fixtures/data-app/data/pages.yml
219
351
  - fixtures/data-app/source/index.html.erb
220
352
  - fixtures/data-app/source/layout.erb
353
+ - fixtures/default-partials-dir-app/source/_partial.html.erb
354
+ - fixtures/default-partials-dir-app/source/index.html.erb
221
355
  - fixtures/different-engine-layout/config.rb
222
356
  - fixtures/different-engine-layout/source/index.haml
357
+ - fixtures/different-engine-layout/source/index.html.str
223
358
  - fixtures/different-engine-layout/source/layout.erb
359
+ - fixtures/different-engine-partial/config.rb
360
+ - fixtures/different-engine-partial/source/index.html.erb
361
+ - fixtures/different-engine-partial/source/layouts/layout.erb
362
+ - fixtures/different-engine-partial/source/shared/_footer.str
363
+ - fixtures/different-engine-partial/source/shared/_header.erb
224
364
  - fixtures/dynamic-pages-app/config.rb
225
365
  - fixtures/dynamic-pages-app/source/real.html
226
366
  - fixtures/dynamic-pages-app/source/real/index.html.erb
@@ -251,6 +391,10 @@ files:
251
391
  - fixtures/external-helpers/source/index.html.erb
252
392
  - fixtures/feature-params-app/config.rb
253
393
  - fixtures/feature-params-app/source/index.html.erb
394
+ - fixtures/fonts-app/config.rb
395
+ - fixtures/fonts-app/source/fonts/StMarie-Thin.otf
396
+ - fixtures/fonts-app/source/fonts/blank/blank.otf
397
+ - fixtures/fonts-app/source/stylesheets/fonts.css.sass
254
398
  - fixtures/frontmatter-app/config.rb
255
399
  - fixtures/frontmatter-app/source/front-matter-2.php.erb
256
400
  - fixtures/frontmatter-app/source/front-matter-auto.erb
@@ -306,6 +450,33 @@ files:
306
450
  - fixtures/glob-app/config.rb
307
451
  - fixtures/glob-app/source/index.html.erb
308
452
  - fixtures/glob-app/source/stylesheets/site.css.str
453
+ - fixtures/gzip-app/config.rb
454
+ - fixtures/gzip-app/source/index.html
455
+ - fixtures/gzip-app/source/javascripts/test.js
456
+ - fixtures/gzip-app/source/stylesheets/test.css
457
+ - fixtures/i18n-alt-root-app/locales/en.yml
458
+ - fixtures/i18n-alt-root-app/locales/es.yml
459
+ - fixtures/i18n-alt-root-app/source/lang_data/hello.html.erb
460
+ - fixtures/i18n-alt-root-app/source/lang_data/index.html.erb
461
+ - fixtures/i18n-alt-root-app/source/layout.erb
462
+ - fixtures/i18n-default-app/locales/en.yml
463
+ - fixtures/i18n-default-app/locales/es.yml
464
+ - fixtures/i18n-default-app/source/localizable/index.html.erb
465
+ - fixtures/i18n-force-locale/config.rb
466
+ - fixtures/i18n-force-locale/locales/en.yml
467
+ - fixtures/i18n-force-locale/locales/es.yml
468
+ - fixtures/i18n-force-locale/locales/fr.yml
469
+ - fixtures/i18n-force-locale/source/index.haml
470
+ - fixtures/i18n-test-app/locales/en.yml
471
+ - fixtures/i18n-test-app/locales/es.yml
472
+ - fixtures/i18n-test-app/source/CNAME
473
+ - fixtures/i18n-test-app/source/layout.erb
474
+ - fixtures/i18n-test-app/source/localizable/hello.html.erb
475
+ - fixtures/i18n-test-app/source/localizable/index.html.erb
476
+ - fixtures/i18n-test-app/source/morning.en.html.erb
477
+ - fixtures/i18n-test-app/source/morning.es.html.erb
478
+ - fixtures/i18n-test-app/source/password.txt
479
+ - fixtures/i18n-test-app/source/stylesheets/site.css
309
480
  - fixtures/ignore-app/source/about.html.erb
310
481
  - fixtures/ignore-app/source/images/icon/messages.png
311
482
  - fixtures/ignore-app/source/images/pic.png
@@ -318,6 +489,7 @@ files:
318
489
  - fixtures/implied-extensions-app/source/index.erb
319
490
  - fixtures/indexable-app/config.rb
320
491
  - fixtures/indexable-app/source/.htaccess
492
+ - fixtures/indexable-app/source/.htpasswd
321
493
  - fixtures/indexable-app/source/a_folder/needs_index.html
322
494
  - fixtures/indexable-app/source/leave_me_alone.html
323
495
  - fixtures/indexable-app/source/needs_index.html
@@ -343,6 +515,14 @@ files:
343
515
  - fixtures/large-build-app/source/spaces in file.html.erb
344
516
  - fixtures/large-build-app/source/static.html
345
517
  - fixtures/large-build-app/source/stylesheets/static.css
518
+ - fixtures/liquid-app/config.rb
519
+ - fixtures/liquid-app/data/test.yml
520
+ - fixtures/liquid-app/data/test2.json
521
+ - fixtures/liquid-app/source/_liquid_partial.liquid
522
+ - fixtures/liquid-app/source/data2.html.liquid
523
+ - fixtures/liquid-app/source/liquid_master.html.liquid
524
+ - fixtures/lorem-app/config.rb
525
+ - fixtures/lorem-app/source/lorem.html.erb
346
526
  - fixtures/manual-layout-missing/config.rb
347
527
  - fixtures/manual-layout-missing/source/index.html.erb
348
528
  - fixtures/manual-layout-override/config.rb
@@ -352,11 +532,99 @@ files:
352
532
  - fixtures/manual-layout/config.rb
353
533
  - fixtures/manual-layout/source/index.html.erb
354
534
  - fixtures/manual-layout/source/layouts/custom.erb
535
+ - fixtures/markdown-app/config.rb
536
+ - fixtures/markdown-app/source/autolink.html.markdown
537
+ - fixtures/markdown-app/source/fenced_code_blocks.html.markdown
538
+ - fixtures/markdown-app/source/hard_wrap.html.markdown
539
+ - fixtures/markdown-app/source/images/blank.gif
540
+ - fixtures/markdown-app/source/index.html.markdown
541
+ - fixtures/markdown-app/source/no_intra_emphasis.html.markdown
542
+ - fixtures/markdown-app/source/smarty_pants.html.markdown
543
+ - fixtures/markdown-app/source/space_after_headers.html.markdown
544
+ - fixtures/markdown-app/source/strikethrough.html.markdown
545
+ - fixtures/markdown-app/source/superscript.html.markdown
546
+ - fixtures/markdown-app/source/tables.html.markdown
547
+ - fixtures/markdown-app/source/with_toc_data.html.markdown
548
+ - fixtures/markdown-frontmatter-options-app/config.rb
549
+ - fixtures/markdown-frontmatter-options-app/source/smarty_pants-default.html.markdown
550
+ - fixtures/markdown-frontmatter-options-app/source/smarty_pants-off.html.markdown
551
+ - fixtures/markdown-frontmatter-options-app/source/smarty_pants-on.html.markdown
552
+ - fixtures/markdown-frontmatter-options-app/source/tables-default.html.markdown
553
+ - fixtures/markdown-frontmatter-options-app/source/tables-off.html.markdown
554
+ - fixtures/markdown-frontmatter-options-app/source/tables-on.html.markdown
555
+ - fixtures/markdown-in-haml-app/config.rb
556
+ - fixtures/markdown-in-haml-app/source/images/blank.gif
557
+ - fixtures/markdown-in-haml-app/source/link_target.html.markdown
558
+ - fixtures/minify-css-app/source/inline-css.html.haml
559
+ - fixtures/minify-css-app/source/more-css/site.css
560
+ - fixtures/minify-css-app/source/stylesheets/report.css
561
+ - fixtures/minify-css-app/source/stylesheets/site.css.sass
562
+ - fixtures/minify-js-app/config.rb
563
+ - fixtures/minify-js-app/source/inline-coffeescript.html.haml
564
+ - fixtures/minify-js-app/source/inline-js.html.haml
565
+ - fixtures/minify-js-app/source/javascripts/coffee_test.js.coffee
566
+ - fixtures/minify-js-app/source/javascripts/js_test.js
567
+ - fixtures/minify-js-app/source/more-js/other.js
355
568
  - fixtures/missing-tilt-library-app/config.rb
356
569
  - fixtures/missing-tilt-library-app/source/danger-zone/more-wiki.html.wiki
357
570
  - fixtures/missing-tilt-library-app/source/safe-zone/my-wiki.html.wiki
358
571
  - fixtures/missing-tilt-library-app/source/textile-source.html.textile
359
572
  - fixtures/missing-tilt-library-app/source/wiki-source.html.wiki
573
+ - fixtures/more-extensionless-text-files-app/config.rb
574
+ - fixtures/more-extensionless-text-files-app/source/CNAME
575
+ - fixtures/more-extensionless-text-files-app/source/LICENSE
576
+ - fixtures/more-extensionless-text-files-app/source/README
577
+ - fixtures/more-extensionless-text-files-app/source/index.html
578
+ - fixtures/more-frontmatter-settings-app/config.rb
579
+ - fixtures/more-frontmatter-settings-app/source/alternate_layout.html.erb
580
+ - fixtures/more-frontmatter-settings-app/source/ignored.html.erb
581
+ - fixtures/more-frontmatter-settings-app/source/layouts/alternate.erb
582
+ - fixtures/more-frontmatter-settings-app/source/no_index.html.erb
583
+ - fixtures/more-ignore-app/source/about.html.erb
584
+ - fixtures/more-ignore-app/source/images/icon/messages.png
585
+ - fixtures/more-ignore-app/source/images/pic.png
586
+ - fixtures/more-ignore-app/source/images/portrait.jpg
587
+ - fixtures/more-ignore-app/source/index.html.erb
588
+ - fixtures/more-ignore-app/source/plain.html
589
+ - fixtures/more-ignore-app/source/reports/another.html
590
+ - fixtures/more-ignore-app/source/reports/index.html
591
+ - fixtures/more-implied-extensions-app/config.rb
592
+ - fixtures/more-implied-extensions-app/source/javascripts/app.coffee
593
+ - fixtures/more-implied-extensions-app/source/stylesheets/style.scss
594
+ - fixtures/more-implied-extensions-app/source/stylesheets/style2.sass
595
+ - fixtures/more-implied-extensions-app/source/stylesheets/style3.less
596
+ - fixtures/more-implied-extensions-app/source/test.haml
597
+ - fixtures/more-implied-extensions-app/source/test2.markdown
598
+ - fixtures/more-implied-extensions-app/source/test3.slim
599
+ - fixtures/more-implied-extensions-app/source/test4.liquid
600
+ - fixtures/more-instance-vars-app/config.rb
601
+ - fixtures/more-instance-vars-app/source/_vartial.erb
602
+ - fixtures/more-instance-vars-app/source/instance-var-set.html.erb
603
+ - fixtures/more-instance-vars-app/source/layout.erb
604
+ - fixtures/more-instance-vars-app/source/no-instance-var.html.erb
605
+ - fixtures/more-preview-app/config.rb
606
+ - fixtures/more-preview-app/source/content.html.erb
607
+ - fixtures/more-preview-app/source/layout.erb
608
+ - fixtures/more-preview-app/source/stylesheets/_partial.sass
609
+ - fixtures/more-preview-app/source/stylesheets/_partial2.css.sass
610
+ - fixtures/more-preview-app/source/stylesheets/main.css.sass
611
+ - fixtures/more-preview-app/source/stylesheets/main2.css.sass
612
+ - fixtures/more-preview-app/source/stylesheets/plain.css.sass
613
+ - fixtures/more-traversal-app/config.rb
614
+ - fixtures/more-traversal-app/source/directory-indexed.html.erb
615
+ - fixtures/more-traversal-app/source/directory-indexed/sibling.html.erb
616
+ - fixtures/more-traversal-app/source/directory-indexed/sibling2.html.erb
617
+ - fixtures/more-traversal-app/source/directory-indexed/sub2/index.html.erb
618
+ - fixtures/more-traversal-app/source/directory-indexed/sub3/deep.html.erb
619
+ - fixtures/more-traversal-app/source/index.html.erb
620
+ - fixtures/more-traversal-app/source/layout.erb
621
+ - fixtures/more-traversal-app/source/proxied.html.erb
622
+ - fixtures/more-traversal-app/source/root.html.erb
623
+ - fixtures/more-traversal-app/source/sub/index.html.erb
624
+ - fixtures/more-traversal-app/source/sub/sibling.html.erb
625
+ - fixtures/more-traversal-app/source/sub/sibling2.html.erb
626
+ - fixtures/more-traversal-app/source/sub/sub2/index.html.erb
627
+ - fixtures/more-traversal-app/source/sub/sub3/deep.html.erb
360
628
  - fixtures/multiple-layouts/config.rb
361
629
  - fixtures/multiple-layouts/source/index.html.erb
362
630
  - fixtures/multiple-layouts/source/layout.erb
@@ -364,14 +632,59 @@ files:
364
632
  - fixtures/nested-data-app/config.rb
365
633
  - fixtures/nested-data-app/data/examples/test.yml
366
634
  - fixtures/nested-data-app/source/test.html.erb
635
+ - fixtures/nested-layout-app/config.rb
636
+ - fixtures/nested-layout-app/source/another.html.markdown
637
+ - fixtures/nested-layout-app/source/data-one.html.erb
638
+ - fixtures/nested-layout-app/source/data-two.html.erb
639
+ - fixtures/nested-layout-app/source/haml-test.html.markdown
640
+ - fixtures/nested-layout-app/source/index.html.erb
641
+ - fixtures/nested-layout-app/source/layouts/inner.erb
642
+ - fixtures/nested-layout-app/source/layouts/inner_haml.haml
643
+ - fixtures/nested-layout-app/source/layouts/inner_slim.slim
644
+ - fixtures/nested-layout-app/source/layouts/master.erb
645
+ - fixtures/nested-layout-app/source/layouts/master_haml.haml
646
+ - fixtures/nested-layout-app/source/layouts/master_slim.slim
647
+ - fixtures/nested-layout-app/source/layouts/outer.erb
648
+ - fixtures/nested-layout-app/source/layouts/outer_haml.haml
649
+ - fixtures/nested-layout-app/source/layouts/outer_slim.slim
650
+ - fixtures/nested-layout-app/source/slim-test.html.markdown
367
651
  - fixtures/no-layout/config.rb
368
652
  - fixtures/no-layout/source/index.html.erb
653
+ - fixtures/padrino-helpers-app/config.rb
654
+ - fixtures/padrino-helpers-app/source/former_padrino_test.html.erb
655
+ - fixtures/page-classes-app/config.rb
656
+ - fixtures/page-classes-app/source/page-classes.html.erb
657
+ - fixtures/page-classes-app/source/sub1/page-classes.html.erb
658
+ - fixtures/page-classes-app/source/sub1/sub2/page-classes.html.erb
369
659
  - fixtures/page-helper-layout-block-app/config.rb
370
660
  - fixtures/page-helper-layout-block-app/source/index.html.erb
371
661
  - fixtures/page-helper-layout-block-app/source/layouts/alt.erb
372
662
  - fixtures/page-helper-layout-block-app/source/layouts/layout.erb
373
663
  - fixtures/page-helper-layout-block-app/source/path/child.html.erb
374
664
  - fixtures/page-helper-layout-block-app/source/path/index.html.erb
665
+ - fixtures/partials-app/config.rb
666
+ - fixtures/partials-app/source/_locals.erb
667
+ - fixtures/partials-app/source/_main.erb
668
+ - fixtures/partials-app/source/_main.str
669
+ - fixtures/partials-app/source/index.html.erb
670
+ - fixtures/partials-app/source/locals.html.erb
671
+ - fixtures/partials-app/source/second.html.str
672
+ - fixtures/partials-app/source/shared/_footer.erb
673
+ - fixtures/partials-app/source/shared/_header.erb
674
+ - fixtures/partials-app/source/shared/snippet.erb
675
+ - fixtures/partials-app/source/sub/_local.erb
676
+ - fixtures/partials-app/source/sub/index.html.erb
677
+ - fixtures/partials-app/source/using_snippet.html.erb
678
+ - fixtures/partials-dir-app/source/index.html.erb
679
+ - fixtures/partials-dir-app/source/nested/partials/_partial.html.erb
680
+ - fixtures/partials-dir-app/source/partials/_partial.html.erb
681
+ - fixtures/passthrough-app/source/.htaccess
682
+ - fixtures/passthrough-app/source/inline-coffeescript.html.haml
683
+ - fixtures/passthrough-app/source/inline-css.html.haml
684
+ - fixtures/passthrough-app/source/inline-js.html.haml
685
+ - fixtures/passthrough-app/source/javascripts/coffee_test.js.coffee
686
+ - fixtures/passthrough-app/source/javascripts/js_test.js
687
+ - fixtures/passthrough-app/source/stylesheets/site.css.sass
375
688
  - fixtures/plain-app/index.html
376
689
  - fixtures/preview-app/config.rb
377
690
  - fixtures/preview-app/source/content.html.erb
@@ -390,14 +703,42 @@ files:
390
703
  - fixtures/queryable-app/source/2011-12-26-some-test-document.html.markdown
391
704
  - fixtures/queryable-app/source/document_with_date_in_yaml.html.markdown
392
705
  - fixtures/queryable-app/source/document_without_date.html.markdown
706
+ - fixtures/relative-app/config.rb
707
+ - fixtures/relative-app/source/images/blank.gif
708
+ - fixtures/relative-app/source/stylesheets/relative_assets.css.sass
709
+ - fixtures/relative-assets-app/config.rb
710
+ - fixtures/relative-assets-app/source/images/blank.gif
711
+ - fixtures/relative-assets-app/source/img/blank.gif
712
+ - fixtures/relative-assets-app/source/relative_image.html.erb
713
+ - fixtures/relative-assets-app/source/stylesheets/relative_assets.css.sass
393
714
  - fixtures/request-app/config.rb
394
715
  - fixtures/request-app/source/index.html.erb
716
+ - fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset-sass.sass
717
+ - fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset.scss
718
+ - fixtures/sass-assets-path-app/config.rb
719
+ - fixtures/sass-assets-path-app/my-vendor/stylesheets/_partial.sass
720
+ - fixtures/sass-assets-path-app/source/stylesheets/plain.css.sass
721
+ - fixtures/sass-cache-path-custom-app/config.rb
722
+ - fixtures/sass-cache-path-custom-app/source/stylesheets/plain.css.sass
723
+ - fixtures/sass-cache-path-default-app/config.rb
724
+ - fixtures/sass-cache-path-default-app/source/stylesheets/plain.css.sass
725
+ - fixtures/scss-app/config.rb
726
+ - fixtures/scss-app/source/stylesheets/layout.css.sass
727
+ - fixtures/scss-app/source/stylesheets/site_scss.css.scss
395
728
  - fixtures/sinatra-app/config.rb
396
729
  - fixtures/sinatra-app/source/index.html.erb
397
730
  - fixtures/strip-url-app/config.rb
398
731
  - fixtures/strip-url-app/source/index.html.erb
399
732
  - fixtures/strip-url-app/source/other.html.erb
400
733
  - fixtures/strip-url-app/source/subdir/index.html.erb
734
+ - fixtures/stylus-preview-app/config.rb
735
+ - fixtures/stylus-preview-app/source/content.html.erb
736
+ - fixtures/stylus-preview-app/source/layout.erb
737
+ - fixtures/stylus-preview-app/source/stylesheets/_partial.styl
738
+ - fixtures/stylus-preview-app/source/stylesheets/_partial2.css.styl
739
+ - fixtures/stylus-preview-app/source/stylesheets/main.css.styl
740
+ - fixtures/stylus-preview-app/source/stylesheets/main2.css.styl
741
+ - fixtures/stylus-preview-app/source/stylesheets/plain.css.styl
401
742
  - fixtures/traversal-app/config.rb
402
743
  - fixtures/traversal-app/source/directory-indexed.html.erb
403
744
  - fixtures/traversal-app/source/directory-indexed/sibling.html.erb
@@ -413,12 +754,103 @@ files:
413
754
  - fixtures/traversal-app/source/sub/sibling2.html.erb
414
755
  - fixtures/traversal-app/source/sub/sub2/index.html.erb
415
756
  - fixtures/traversal-app/source/sub/sub3/deep.html.erb
757
+ - fixtures/twitter-bootstrap-app/config.rb
758
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/.gitignore
759
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/.travis.yml
760
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/LICENSE
761
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/README.md
762
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/img/glyphicons-halflings-white.png
763
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/img/glyphicons-halflings.png
764
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/.jshintrc
765
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/README.md
766
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-alert.js
767
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-button.js
768
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-carousel.js
769
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-collapse.js
770
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-dropdown.js
771
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-modal.js
772
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-popover.js
773
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-scrollspy.js
774
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-tab.js
775
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-tooltip.js
776
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-transition.js
777
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-typeahead.js
778
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/index.html
779
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/phantom.js
780
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/server.js
781
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-alert.js
782
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-button.js
783
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-carousel.js
784
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-collapse.js
785
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-dropdown.js
786
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-modal.js
787
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-phantom.js
788
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-popover.js
789
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-scrollspy.js
790
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-tab.js
791
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-tooltip.js
792
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-transition.js
793
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-typeahead.js
794
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/vendor/jquery.js
795
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/vendor/qunit.css
796
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/vendor/qunit.js
797
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_accordion.less
798
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_alerts.less
799
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_breadcrumbs.less
800
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_button-groups.less
801
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_buttons.less
802
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_carousel.less
803
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_close.less
804
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_code.less
805
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_component-animations.less
806
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_dropdowns.less
807
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_forms.less
808
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_grid.less
809
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_hero-unit.less
810
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_labels-badges.less
811
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_layouts.less
812
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_mixins.less
813
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_modals.less
814
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_navbar.less
815
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_navs.less
816
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_pager.less
817
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_pagination.less
818
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_popovers.less
819
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_progress-bars.less
820
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_reset.less
821
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-1200px-min.less
822
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-767px-max.less
823
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-768px-979px.less
824
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-navbar.less
825
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-utilities.less
826
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_scaffolding.less
827
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_sprites.less
828
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_tables.less
829
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_thumbnails.less
830
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_tooltip.less
831
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_type.less
832
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_utilities.less
833
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_variables.less
834
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_wells.less
835
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/bootstrap.less
836
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/responsive.less
837
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/css-tests.css
838
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/css-tests.html
839
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/forms.html
840
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/navbar.html
841
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/package.json
416
842
  - fixtures/wildcard-app/config.rb
417
843
  - fixtures/wildcard-app/source/admin/index.html.erb
418
844
  - fixtures/wildcard-app/source/admin/page.html.erb
419
845
  - fixtures/wildcard-app/source/index.html.erb
420
846
  - fixtures/wildcard-app/source/layouts/admin.erb
421
847
  - fixtures/wildcard-app/source/layouts/layout.erb
848
+ - fixtures/wildcard-directory-index-app/config.rb
849
+ - fixtures/wildcard-directory-index-app/source/admin/index.html.erb
850
+ - fixtures/wildcard-directory-index-app/source/admin/page.html.erb
851
+ - fixtures/wildcard-directory-index-app/source/index.html.erb
852
+ - fixtures/wildcard-directory-index-app/source/layouts/admin.erb
853
+ - fixtures/wildcard-directory-index-app/source/layouts/layout.erb
422
854
  - lib/middleman-core.rb
423
855
  - lib/middleman-core/application.rb
424
856
  - lib/middleman-core/cli.rb
@@ -609,6 +1041,32 @@ files:
609
1041
  - lib/middleman-core/vendor/hooks-0.2.0/test/inheritable_attribute_test.rb
610
1042
  - lib/middleman-core/vendor/hooks-0.2.0/test/test_helper.rb
611
1043
  - lib/middleman-core/version.rb
1044
+ - lib/middleman-more.rb
1045
+ - lib/middleman-more/core_extensions/compass.rb
1046
+ - lib/middleman-more/core_extensions/default_helpers.rb
1047
+ - lib/middleman-more/core_extensions/i18n.rb
1048
+ - lib/middleman-more/extensions/asset_hash.rb
1049
+ - lib/middleman-more/extensions/asset_host.rb
1050
+ - lib/middleman-more/extensions/automatic_image_sizes.rb
1051
+ - lib/middleman-more/extensions/automatic_image_sizes/fastimage.rb
1052
+ - lib/middleman-more/extensions/cache_buster.rb
1053
+ - lib/middleman-more/extensions/directory_indexes.rb
1054
+ - lib/middleman-more/extensions/gzip.rb
1055
+ - lib/middleman-more/extensions/lorem.rb
1056
+ - lib/middleman-more/extensions/minify_css.rb
1057
+ - lib/middleman-more/extensions/minify_javascript.rb
1058
+ - lib/middleman-more/extensions/relative_assets.rb
1059
+ - lib/middleman-more/templates/smacss.rb
1060
+ - lib/middleman-more/templates/smacss/source/_footer.haml
1061
+ - lib/middleman-more/templates/smacss/source/index.html.haml
1062
+ - lib/middleman-more/templates/smacss/source/layouts/layout.haml
1063
+ - lib/middleman-more/templates/smacss/source/stylesheets/base/README.markdown
1064
+ - lib/middleman-more/templates/smacss/source/stylesheets/base/base.scss
1065
+ - lib/middleman-more/templates/smacss/source/stylesheets/base/normalize.scss
1066
+ - lib/middleman-more/templates/smacss/source/stylesheets/layout/README.markdown
1067
+ - lib/middleman-more/templates/smacss/source/stylesheets/modules/README.markdown
1068
+ - lib/middleman-more/templates/smacss/source/stylesheets/states/README.markdown
1069
+ - lib/middleman-more/templates/smacss/source/stylesheets/style.css.scss
612
1070
  - lib/middleman/rack.rb
613
1071
  - middleman-core.gemspec
614
1072
  - spec/middleman-core/binary_spec.rb
@@ -640,50 +1098,145 @@ required_rubygems_version: !ruby/object:Gem::Requirement
640
1098
  version: 1.3.1
641
1099
  requirements: []
642
1100
  rubyforge_project:
643
- rubygems_version: 2.0.0
1101
+ rubygems_version: 2.0.2
644
1102
  signing_key:
645
1103
  specification_version: 4
646
1104
  summary: Hand-crafted frontend development
647
1105
  test_files:
648
1106
  - features/3rd_party_cli.feature
1107
+ - features/asset_hash.feature
1108
+ - features/asset_host.feature
649
1109
  - features/auto_layout.feature
650
1110
  - features/automatic_directory_matcher.feature
1111
+ - features/automatic_image_sizes.feature
651
1112
  - features/builder.feature
1113
+ - features/cache_buster.feature
652
1114
  - features/chained_templates.feature
653
1115
  - features/clean_build.feature
654
1116
  - features/cli_extension.feature
655
1117
  - features/cli_init.feature
1118
+ - features/coffee-script.feature
1119
+ - features/compass-sprites.feature
1120
+ - features/content_for.feature
656
1121
  - features/content_type.feature
657
1122
  - features/current_page_request_path_backwards.feature
658
1123
  - features/custom_layout_engines.feature
659
1124
  - features/custom_layouts.feature
660
1125
  - features/data.feature
1126
+ - features/directory_index.feature
661
1127
  - features/dynamic_pages.feature
662
1128
  - features/extensionless_text_files.feature
663
1129
  - features/feature_params.feature
1130
+ - features/fonts.feature
1131
+ - features/former_padrino_helpers.feature
664
1132
  - features/front-matter-neighbor.feature
665
1133
  - features/front-matter.feature
666
1134
  - features/frontmatter_page_settings.feature
1135
+ - features/gzip.feature
1136
+ - features/helpers_auto_javascript_include_tag.feature
1137
+ - features/helpers_auto_stylesheet_link_tag.feature
667
1138
  - features/helpers_external.feature
1139
+ - features/helpers_form_tag.feature
1140
+ - features/helpers_link_to.feature
1141
+ - features/helpers_lorem.feature
1142
+ - features/helpers_page_classes.feature
1143
+ - features/helpers_url_for.feature
1144
+ - features/i18n_builder.feature
1145
+ - features/i18n_force_locale.feature
1146
+ - features/i18n_preview.feature
668
1147
  - features/ignore.feature
1148
+ - features/ignore_already_minified.feature
669
1149
  - features/implied_extensions.feature
670
1150
  - features/instance_vars.feature
1151
+ - features/liquid.feature
1152
+ - features/markdown.feature
1153
+ - features/markdown_redcarpet.feature
1154
+ - features/markdown_redcarpet_in_haml.feature
1155
+ - features/minify_css.feature
1156
+ - features/minify_javascript.feature
671
1157
  - features/missing-tilt-lib.feature
1158
+ - features/more-clean_build.feature
1159
+ - features/more-extensionless_text_files.feature
1160
+ - features/more-frontmatter_page_settings.feature
1161
+ - features/more-ignore.feature
1162
+ - features/more-implied_extensions.feature
1163
+ - features/more-instance_vars.feature
1164
+ - features/more-sitemap_traversal.feature
1165
+ - features/more-wildcard_page_helper.feature
672
1166
  - features/mount_rack.feature
1167
+ - features/nested_layouts.feature
1168
+ - features/partials.feature
1169
+ - features/partials_dir.feature
673
1170
  - features/preview_changes.feature
674
1171
  - features/proxy_pages.feature
675
1172
  - features/queryable.feature
1173
+ - features/relative_assets.feature
676
1174
  - features/request_params.feature
1175
+ - features/sass-assets-paths.feature
1176
+ - features/sass_cache_path.feature
1177
+ - features/sass_partials.feature
1178
+ - features/scss-support.feature
677
1179
  - features/sitemap_traversal.feature
1180
+ - features/slim.feature
678
1181
  - features/static_server.feature
679
1182
  - features/step_definitions/page_layout_steps.rb
680
1183
  - features/step_definitions/queryable_steps.rb
681
1184
  - features/strip_url.feature
1185
+ - features/stylus.feature
682
1186
  - features/support/env.rb
683
1187
  - features/tilde_directories.feature
1188
+ - features/twitter-bootstrap-compile.feature
684
1189
  - features/unicode_filecontents.feature
685
1190
  - features/unicode_filenames.feature
686
1191
  - features/wildcard_page_helper.feature
1192
+ - fixtures/asset-hash-app/config.rb
1193
+ - fixtures/asset-hash-app/lib/middleware.rb
1194
+ - fixtures/asset-hash-app/source/apple-touch-icon.png
1195
+ - fixtures/asset-hash-app/source/favicon.ico
1196
+ - fixtures/asset-hash-app/source/images/100px.gif
1197
+ - fixtures/asset-hash-app/source/images/100px.jpg
1198
+ - fixtures/asset-hash-app/source/images/100px.png
1199
+ - fixtures/asset-hash-app/source/index.html.erb
1200
+ - fixtures/asset-hash-app/source/javascripts/application.js
1201
+ - fixtures/asset-hash-app/source/layout.erb
1202
+ - fixtures/asset-hash-app/source/other.html.erb
1203
+ - fixtures/asset-hash-app/source/partials.html.erb
1204
+ - fixtures/asset-hash-app/source/stylesheets/_partial.sass
1205
+ - fixtures/asset-hash-app/source/stylesheets/site.css.scss
1206
+ - fixtures/asset-hash-app/source/stylesheets/uses_partials.css.sass
1207
+ - fixtures/asset-hash-app/source/subdir/index.html.erb
1208
+ - fixtures/asset-hash-host-app/config.rb
1209
+ - fixtures/asset-hash-host-app/source/images/100px.gif
1210
+ - fixtures/asset-hash-host-app/source/images/100px.jpg
1211
+ - fixtures/asset-hash-host-app/source/images/100px.png
1212
+ - fixtures/asset-hash-host-app/source/index.html.erb
1213
+ - fixtures/asset-hash-host-app/source/layout.erb
1214
+ - fixtures/asset-hash-host-app/source/other.html.erb
1215
+ - fixtures/asset-hash-host-app/source/stylesheets/site.css.scss
1216
+ - fixtures/asset-hash-host-app/source/subdir/index.html.erb
1217
+ - fixtures/asset-host-app/config.rb
1218
+ - fixtures/asset-host-app/source/.htaccess
1219
+ - fixtures/asset-host-app/source/asset_host.html.erb
1220
+ - fixtures/asset-host-app/source/images/blank.gif
1221
+ - fixtures/asset-host-app/source/stylesheets/asset_host.css.sass
1222
+ - fixtures/auto-css-app/config.rb
1223
+ - fixtures/auto-css-app/source/auto-css.html.erb
1224
+ - fixtures/auto-css-app/source/auto-css/auto-css.html.erb
1225
+ - fixtures/auto-css-app/source/auto-css/index.html.erb
1226
+ - fixtures/auto-css-app/source/auto-css/sub/auto-css.html.erb
1227
+ - fixtures/auto-css-app/source/stylesheets/auto-css.css
1228
+ - fixtures/auto-css-app/source/stylesheets/auto-css/auto-css.css
1229
+ - fixtures/auto-css-app/source/stylesheets/auto-css/index.css
1230
+ - fixtures/auto-css-app/source/stylesheets/auto-css/sub/auto-css.css
1231
+ - fixtures/auto-js-app/config.rb
1232
+ - fixtures/auto-js-app/source/auto-js.html.erb
1233
+ - fixtures/auto-js-app/source/auto-js/auto-js.html.erb
1234
+ - fixtures/auto-js-app/source/auto-js/index.html.erb
1235
+ - fixtures/auto-js-app/source/auto-js/sub/auto-js.html.erb
1236
+ - fixtures/auto-js-app/source/javascripts/auto-js.js
1237
+ - fixtures/auto-js-app/source/javascripts/auto-js/auto-js.js
1238
+ - fixtures/auto-js-app/source/javascripts/auto-js/index.js
1239
+ - fixtures/auto-js-app/source/javascripts/auto-js/sub/auto-js.js
687
1240
  - fixtures/automatic-directory-matcher-app/config.rb
688
1241
  - fixtures/automatic-directory-matcher-app/source/root-plain.html
689
1242
  - fixtures/automatic-directory-matcher-app/source/root.html.erb
@@ -691,6 +1244,9 @@ test_files:
691
1244
  - fixtures/automatic-directory-matcher-app/source/sub--sub--sub.html.erb
692
1245
  - fixtures/automatic-directory-matcher-app/source/sub--sub-plain.html
693
1246
  - fixtures/automatic-directory-matcher-app/source/sub--sub.html.erb
1247
+ - fixtures/automatic-image-size-app/config.rb
1248
+ - fixtures/automatic-image-size-app/source/auto-image-sizes.html.erb
1249
+ - fixtures/automatic-image-size-app/source/images/blank.gif
694
1250
  - fixtures/basic-data-app/config.rb
695
1251
  - fixtures/basic-data-app/data/test.yml
696
1252
  - fixtures/basic-data-app/data/test2.json
@@ -698,6 +1254,11 @@ test_files:
698
1254
  - fixtures/basic-data-app/source/data3.html.erb
699
1255
  - fixtures/build-with-errors-app/config.rb
700
1256
  - fixtures/build-with-errors-app/source/index.html.erb
1257
+ - fixtures/cache-buster-app/config.rb
1258
+ - fixtures/cache-buster-app/source/cache-buster.html.erb
1259
+ - fixtures/cache-buster-app/source/images/blank.gif
1260
+ - fixtures/cache-buster-app/source/stylesheets/relative_assets.css.sass
1261
+ - fixtures/cache-buster-app/source/stylesheets/site.css.sass
701
1262
  - fixtures/chained-app/config.rb
702
1263
  - fixtures/chained-app/data/article.yml
703
1264
  - fixtures/chained-app/source/index.html.str.erb
@@ -713,8 +1274,25 @@ test_files:
713
1274
  - fixtures/clean-app/source/should_be_ignored2.html
714
1275
  - fixtures/clean-app/source/should_be_ignored3.html
715
1276
  - fixtures/clean-app/source/static.html
1277
+ - fixtures/clean-dir-app/config.rb
1278
+ - fixtures/clean-dir-app/source/about.html
716
1279
  - fixtures/clean-nested-app/config.rb
717
1280
  - fixtures/clean-nested-app/source/about.html
1281
+ - fixtures/coffeescript-app/config.rb
1282
+ - fixtures/coffeescript-app/source/inline-coffeescript.html.haml
1283
+ - fixtures/coffeescript-app/source/javascripts/broken-coffee.js.coffee
1284
+ - fixtures/coffeescript-app/source/javascripts/coffee_test.js.coffee
1285
+ - fixtures/compass-sprites-app/config.rb
1286
+ - fixtures/compass-sprites-app/source/images/icon/arrow_down.png
1287
+ - fixtures/compass-sprites-app/source/images/icon/arrow_left.png
1288
+ - fixtures/compass-sprites-app/source/images/icon/arrow_right.png
1289
+ - fixtures/compass-sprites-app/source/images/icon/arrow_up.png
1290
+ - fixtures/compass-sprites-app/source/stylesheets/site.css.scss
1291
+ - fixtures/content-for-app/config.rb
1292
+ - fixtures/content-for-app/source/content_for_erb.html.erb
1293
+ - fixtures/content-for-app/source/content_for_haml.html.haml
1294
+ - fixtures/content-for-app/source/content_for_slim.html.slim
1295
+ - fixtures/content-for-app/source/layouts/content_for.erb
718
1296
  - fixtures/content-type-app/config.rb
719
1297
  - fixtures/content-type-app/source/.htaccess
720
1298
  - fixtures/content-type-app/source/README
@@ -738,9 +1316,17 @@ test_files:
738
1316
  - fixtures/data-app/data/pages.yml
739
1317
  - fixtures/data-app/source/index.html.erb
740
1318
  - fixtures/data-app/source/layout.erb
1319
+ - fixtures/default-partials-dir-app/source/_partial.html.erb
1320
+ - fixtures/default-partials-dir-app/source/index.html.erb
741
1321
  - fixtures/different-engine-layout/config.rb
742
1322
  - fixtures/different-engine-layout/source/index.haml
1323
+ - fixtures/different-engine-layout/source/index.html.str
743
1324
  - fixtures/different-engine-layout/source/layout.erb
1325
+ - fixtures/different-engine-partial/config.rb
1326
+ - fixtures/different-engine-partial/source/index.html.erb
1327
+ - fixtures/different-engine-partial/source/layouts/layout.erb
1328
+ - fixtures/different-engine-partial/source/shared/_footer.str
1329
+ - fixtures/different-engine-partial/source/shared/_header.erb
744
1330
  - fixtures/dynamic-pages-app/config.rb
745
1331
  - fixtures/dynamic-pages-app/source/real.html
746
1332
  - fixtures/dynamic-pages-app/source/real/index.html.erb
@@ -771,6 +1357,10 @@ test_files:
771
1357
  - fixtures/external-helpers/source/index.html.erb
772
1358
  - fixtures/feature-params-app/config.rb
773
1359
  - fixtures/feature-params-app/source/index.html.erb
1360
+ - fixtures/fonts-app/config.rb
1361
+ - fixtures/fonts-app/source/fonts/StMarie-Thin.otf
1362
+ - fixtures/fonts-app/source/fonts/blank/blank.otf
1363
+ - fixtures/fonts-app/source/stylesheets/fonts.css.sass
774
1364
  - fixtures/frontmatter-app/config.rb
775
1365
  - fixtures/frontmatter-app/source/front-matter-2.php.erb
776
1366
  - fixtures/frontmatter-app/source/front-matter-auto.erb
@@ -826,6 +1416,33 @@ test_files:
826
1416
  - fixtures/glob-app/config.rb
827
1417
  - fixtures/glob-app/source/index.html.erb
828
1418
  - fixtures/glob-app/source/stylesheets/site.css.str
1419
+ - fixtures/gzip-app/config.rb
1420
+ - fixtures/gzip-app/source/index.html
1421
+ - fixtures/gzip-app/source/javascripts/test.js
1422
+ - fixtures/gzip-app/source/stylesheets/test.css
1423
+ - fixtures/i18n-alt-root-app/locales/en.yml
1424
+ - fixtures/i18n-alt-root-app/locales/es.yml
1425
+ - fixtures/i18n-alt-root-app/source/lang_data/hello.html.erb
1426
+ - fixtures/i18n-alt-root-app/source/lang_data/index.html.erb
1427
+ - fixtures/i18n-alt-root-app/source/layout.erb
1428
+ - fixtures/i18n-default-app/locales/en.yml
1429
+ - fixtures/i18n-default-app/locales/es.yml
1430
+ - fixtures/i18n-default-app/source/localizable/index.html.erb
1431
+ - fixtures/i18n-force-locale/config.rb
1432
+ - fixtures/i18n-force-locale/locales/en.yml
1433
+ - fixtures/i18n-force-locale/locales/es.yml
1434
+ - fixtures/i18n-force-locale/locales/fr.yml
1435
+ - fixtures/i18n-force-locale/source/index.haml
1436
+ - fixtures/i18n-test-app/locales/en.yml
1437
+ - fixtures/i18n-test-app/locales/es.yml
1438
+ - fixtures/i18n-test-app/source/CNAME
1439
+ - fixtures/i18n-test-app/source/layout.erb
1440
+ - fixtures/i18n-test-app/source/localizable/hello.html.erb
1441
+ - fixtures/i18n-test-app/source/localizable/index.html.erb
1442
+ - fixtures/i18n-test-app/source/morning.en.html.erb
1443
+ - fixtures/i18n-test-app/source/morning.es.html.erb
1444
+ - fixtures/i18n-test-app/source/password.txt
1445
+ - fixtures/i18n-test-app/source/stylesheets/site.css
829
1446
  - fixtures/ignore-app/source/about.html.erb
830
1447
  - fixtures/ignore-app/source/images/icon/messages.png
831
1448
  - fixtures/ignore-app/source/images/pic.png
@@ -838,6 +1455,7 @@ test_files:
838
1455
  - fixtures/implied-extensions-app/source/index.erb
839
1456
  - fixtures/indexable-app/config.rb
840
1457
  - fixtures/indexable-app/source/.htaccess
1458
+ - fixtures/indexable-app/source/.htpasswd
841
1459
  - fixtures/indexable-app/source/a_folder/needs_index.html
842
1460
  - fixtures/indexable-app/source/leave_me_alone.html
843
1461
  - fixtures/indexable-app/source/needs_index.html
@@ -863,6 +1481,14 @@ test_files:
863
1481
  - fixtures/large-build-app/source/spaces in file.html.erb
864
1482
  - fixtures/large-build-app/source/static.html
865
1483
  - fixtures/large-build-app/source/stylesheets/static.css
1484
+ - fixtures/liquid-app/config.rb
1485
+ - fixtures/liquid-app/data/test.yml
1486
+ - fixtures/liquid-app/data/test2.json
1487
+ - fixtures/liquid-app/source/_liquid_partial.liquid
1488
+ - fixtures/liquid-app/source/data2.html.liquid
1489
+ - fixtures/liquid-app/source/liquid_master.html.liquid
1490
+ - fixtures/lorem-app/config.rb
1491
+ - fixtures/lorem-app/source/lorem.html.erb
866
1492
  - fixtures/manual-layout-missing/config.rb
867
1493
  - fixtures/manual-layout-missing/source/index.html.erb
868
1494
  - fixtures/manual-layout-override/config.rb
@@ -872,11 +1498,99 @@ test_files:
872
1498
  - fixtures/manual-layout/config.rb
873
1499
  - fixtures/manual-layout/source/index.html.erb
874
1500
  - fixtures/manual-layout/source/layouts/custom.erb
1501
+ - fixtures/markdown-app/config.rb
1502
+ - fixtures/markdown-app/source/autolink.html.markdown
1503
+ - fixtures/markdown-app/source/fenced_code_blocks.html.markdown
1504
+ - fixtures/markdown-app/source/hard_wrap.html.markdown
1505
+ - fixtures/markdown-app/source/images/blank.gif
1506
+ - fixtures/markdown-app/source/index.html.markdown
1507
+ - fixtures/markdown-app/source/no_intra_emphasis.html.markdown
1508
+ - fixtures/markdown-app/source/smarty_pants.html.markdown
1509
+ - fixtures/markdown-app/source/space_after_headers.html.markdown
1510
+ - fixtures/markdown-app/source/strikethrough.html.markdown
1511
+ - fixtures/markdown-app/source/superscript.html.markdown
1512
+ - fixtures/markdown-app/source/tables.html.markdown
1513
+ - fixtures/markdown-app/source/with_toc_data.html.markdown
1514
+ - fixtures/markdown-frontmatter-options-app/config.rb
1515
+ - fixtures/markdown-frontmatter-options-app/source/smarty_pants-default.html.markdown
1516
+ - fixtures/markdown-frontmatter-options-app/source/smarty_pants-off.html.markdown
1517
+ - fixtures/markdown-frontmatter-options-app/source/smarty_pants-on.html.markdown
1518
+ - fixtures/markdown-frontmatter-options-app/source/tables-default.html.markdown
1519
+ - fixtures/markdown-frontmatter-options-app/source/tables-off.html.markdown
1520
+ - fixtures/markdown-frontmatter-options-app/source/tables-on.html.markdown
1521
+ - fixtures/markdown-in-haml-app/config.rb
1522
+ - fixtures/markdown-in-haml-app/source/images/blank.gif
1523
+ - fixtures/markdown-in-haml-app/source/link_target.html.markdown
1524
+ - fixtures/minify-css-app/source/inline-css.html.haml
1525
+ - fixtures/minify-css-app/source/more-css/site.css
1526
+ - fixtures/minify-css-app/source/stylesheets/report.css
1527
+ - fixtures/minify-css-app/source/stylesheets/site.css.sass
1528
+ - fixtures/minify-js-app/config.rb
1529
+ - fixtures/minify-js-app/source/inline-coffeescript.html.haml
1530
+ - fixtures/minify-js-app/source/inline-js.html.haml
1531
+ - fixtures/minify-js-app/source/javascripts/coffee_test.js.coffee
1532
+ - fixtures/minify-js-app/source/javascripts/js_test.js
1533
+ - fixtures/minify-js-app/source/more-js/other.js
875
1534
  - fixtures/missing-tilt-library-app/config.rb
876
1535
  - fixtures/missing-tilt-library-app/source/danger-zone/more-wiki.html.wiki
877
1536
  - fixtures/missing-tilt-library-app/source/safe-zone/my-wiki.html.wiki
878
1537
  - fixtures/missing-tilt-library-app/source/textile-source.html.textile
879
1538
  - fixtures/missing-tilt-library-app/source/wiki-source.html.wiki
1539
+ - fixtures/more-extensionless-text-files-app/config.rb
1540
+ - fixtures/more-extensionless-text-files-app/source/CNAME
1541
+ - fixtures/more-extensionless-text-files-app/source/LICENSE
1542
+ - fixtures/more-extensionless-text-files-app/source/README
1543
+ - fixtures/more-extensionless-text-files-app/source/index.html
1544
+ - fixtures/more-frontmatter-settings-app/config.rb
1545
+ - fixtures/more-frontmatter-settings-app/source/alternate_layout.html.erb
1546
+ - fixtures/more-frontmatter-settings-app/source/ignored.html.erb
1547
+ - fixtures/more-frontmatter-settings-app/source/layouts/alternate.erb
1548
+ - fixtures/more-frontmatter-settings-app/source/no_index.html.erb
1549
+ - fixtures/more-ignore-app/source/about.html.erb
1550
+ - fixtures/more-ignore-app/source/images/icon/messages.png
1551
+ - fixtures/more-ignore-app/source/images/pic.png
1552
+ - fixtures/more-ignore-app/source/images/portrait.jpg
1553
+ - fixtures/more-ignore-app/source/index.html.erb
1554
+ - fixtures/more-ignore-app/source/plain.html
1555
+ - fixtures/more-ignore-app/source/reports/another.html
1556
+ - fixtures/more-ignore-app/source/reports/index.html
1557
+ - fixtures/more-implied-extensions-app/config.rb
1558
+ - fixtures/more-implied-extensions-app/source/javascripts/app.coffee
1559
+ - fixtures/more-implied-extensions-app/source/stylesheets/style.scss
1560
+ - fixtures/more-implied-extensions-app/source/stylesheets/style2.sass
1561
+ - fixtures/more-implied-extensions-app/source/stylesheets/style3.less
1562
+ - fixtures/more-implied-extensions-app/source/test.haml
1563
+ - fixtures/more-implied-extensions-app/source/test2.markdown
1564
+ - fixtures/more-implied-extensions-app/source/test3.slim
1565
+ - fixtures/more-implied-extensions-app/source/test4.liquid
1566
+ - fixtures/more-instance-vars-app/config.rb
1567
+ - fixtures/more-instance-vars-app/source/_vartial.erb
1568
+ - fixtures/more-instance-vars-app/source/instance-var-set.html.erb
1569
+ - fixtures/more-instance-vars-app/source/layout.erb
1570
+ - fixtures/more-instance-vars-app/source/no-instance-var.html.erb
1571
+ - fixtures/more-preview-app/config.rb
1572
+ - fixtures/more-preview-app/source/content.html.erb
1573
+ - fixtures/more-preview-app/source/layout.erb
1574
+ - fixtures/more-preview-app/source/stylesheets/_partial.sass
1575
+ - fixtures/more-preview-app/source/stylesheets/_partial2.css.sass
1576
+ - fixtures/more-preview-app/source/stylesheets/main.css.sass
1577
+ - fixtures/more-preview-app/source/stylesheets/main2.css.sass
1578
+ - fixtures/more-preview-app/source/stylesheets/plain.css.sass
1579
+ - fixtures/more-traversal-app/config.rb
1580
+ - fixtures/more-traversal-app/source/directory-indexed.html.erb
1581
+ - fixtures/more-traversal-app/source/directory-indexed/sibling.html.erb
1582
+ - fixtures/more-traversal-app/source/directory-indexed/sibling2.html.erb
1583
+ - fixtures/more-traversal-app/source/directory-indexed/sub2/index.html.erb
1584
+ - fixtures/more-traversal-app/source/directory-indexed/sub3/deep.html.erb
1585
+ - fixtures/more-traversal-app/source/index.html.erb
1586
+ - fixtures/more-traversal-app/source/layout.erb
1587
+ - fixtures/more-traversal-app/source/proxied.html.erb
1588
+ - fixtures/more-traversal-app/source/root.html.erb
1589
+ - fixtures/more-traversal-app/source/sub/index.html.erb
1590
+ - fixtures/more-traversal-app/source/sub/sibling.html.erb
1591
+ - fixtures/more-traversal-app/source/sub/sibling2.html.erb
1592
+ - fixtures/more-traversal-app/source/sub/sub2/index.html.erb
1593
+ - fixtures/more-traversal-app/source/sub/sub3/deep.html.erb
880
1594
  - fixtures/multiple-layouts/config.rb
881
1595
  - fixtures/multiple-layouts/source/index.html.erb
882
1596
  - fixtures/multiple-layouts/source/layout.erb
@@ -884,14 +1598,59 @@ test_files:
884
1598
  - fixtures/nested-data-app/config.rb
885
1599
  - fixtures/nested-data-app/data/examples/test.yml
886
1600
  - fixtures/nested-data-app/source/test.html.erb
1601
+ - fixtures/nested-layout-app/config.rb
1602
+ - fixtures/nested-layout-app/source/another.html.markdown
1603
+ - fixtures/nested-layout-app/source/data-one.html.erb
1604
+ - fixtures/nested-layout-app/source/data-two.html.erb
1605
+ - fixtures/nested-layout-app/source/haml-test.html.markdown
1606
+ - fixtures/nested-layout-app/source/index.html.erb
1607
+ - fixtures/nested-layout-app/source/layouts/inner.erb
1608
+ - fixtures/nested-layout-app/source/layouts/inner_haml.haml
1609
+ - fixtures/nested-layout-app/source/layouts/inner_slim.slim
1610
+ - fixtures/nested-layout-app/source/layouts/master.erb
1611
+ - fixtures/nested-layout-app/source/layouts/master_haml.haml
1612
+ - fixtures/nested-layout-app/source/layouts/master_slim.slim
1613
+ - fixtures/nested-layout-app/source/layouts/outer.erb
1614
+ - fixtures/nested-layout-app/source/layouts/outer_haml.haml
1615
+ - fixtures/nested-layout-app/source/layouts/outer_slim.slim
1616
+ - fixtures/nested-layout-app/source/slim-test.html.markdown
887
1617
  - fixtures/no-layout/config.rb
888
1618
  - fixtures/no-layout/source/index.html.erb
1619
+ - fixtures/padrino-helpers-app/config.rb
1620
+ - fixtures/padrino-helpers-app/source/former_padrino_test.html.erb
1621
+ - fixtures/page-classes-app/config.rb
1622
+ - fixtures/page-classes-app/source/page-classes.html.erb
1623
+ - fixtures/page-classes-app/source/sub1/page-classes.html.erb
1624
+ - fixtures/page-classes-app/source/sub1/sub2/page-classes.html.erb
889
1625
  - fixtures/page-helper-layout-block-app/config.rb
890
1626
  - fixtures/page-helper-layout-block-app/source/index.html.erb
891
1627
  - fixtures/page-helper-layout-block-app/source/layouts/alt.erb
892
1628
  - fixtures/page-helper-layout-block-app/source/layouts/layout.erb
893
1629
  - fixtures/page-helper-layout-block-app/source/path/child.html.erb
894
1630
  - fixtures/page-helper-layout-block-app/source/path/index.html.erb
1631
+ - fixtures/partials-app/config.rb
1632
+ - fixtures/partials-app/source/_locals.erb
1633
+ - fixtures/partials-app/source/_main.erb
1634
+ - fixtures/partials-app/source/_main.str
1635
+ - fixtures/partials-app/source/index.html.erb
1636
+ - fixtures/partials-app/source/locals.html.erb
1637
+ - fixtures/partials-app/source/second.html.str
1638
+ - fixtures/partials-app/source/shared/_footer.erb
1639
+ - fixtures/partials-app/source/shared/_header.erb
1640
+ - fixtures/partials-app/source/shared/snippet.erb
1641
+ - fixtures/partials-app/source/sub/_local.erb
1642
+ - fixtures/partials-app/source/sub/index.html.erb
1643
+ - fixtures/partials-app/source/using_snippet.html.erb
1644
+ - fixtures/partials-dir-app/source/index.html.erb
1645
+ - fixtures/partials-dir-app/source/nested/partials/_partial.html.erb
1646
+ - fixtures/partials-dir-app/source/partials/_partial.html.erb
1647
+ - fixtures/passthrough-app/source/.htaccess
1648
+ - fixtures/passthrough-app/source/inline-coffeescript.html.haml
1649
+ - fixtures/passthrough-app/source/inline-css.html.haml
1650
+ - fixtures/passthrough-app/source/inline-js.html.haml
1651
+ - fixtures/passthrough-app/source/javascripts/coffee_test.js.coffee
1652
+ - fixtures/passthrough-app/source/javascripts/js_test.js
1653
+ - fixtures/passthrough-app/source/stylesheets/site.css.sass
895
1654
  - fixtures/plain-app/index.html
896
1655
  - fixtures/preview-app/config.rb
897
1656
  - fixtures/preview-app/source/content.html.erb
@@ -910,14 +1669,42 @@ test_files:
910
1669
  - fixtures/queryable-app/source/2011-12-26-some-test-document.html.markdown
911
1670
  - fixtures/queryable-app/source/document_with_date_in_yaml.html.markdown
912
1671
  - fixtures/queryable-app/source/document_without_date.html.markdown
1672
+ - fixtures/relative-app/config.rb
1673
+ - fixtures/relative-app/source/images/blank.gif
1674
+ - fixtures/relative-app/source/stylesheets/relative_assets.css.sass
1675
+ - fixtures/relative-assets-app/config.rb
1676
+ - fixtures/relative-assets-app/source/images/blank.gif
1677
+ - fixtures/relative-assets-app/source/img/blank.gif
1678
+ - fixtures/relative-assets-app/source/relative_image.html.erb
1679
+ - fixtures/relative-assets-app/source/stylesheets/relative_assets.css.sass
913
1680
  - fixtures/request-app/config.rb
914
1681
  - fixtures/request-app/source/index.html.erb
1682
+ - fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset-sass.sass
1683
+ - fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset.scss
1684
+ - fixtures/sass-assets-path-app/config.rb
1685
+ - fixtures/sass-assets-path-app/my-vendor/stylesheets/_partial.sass
1686
+ - fixtures/sass-assets-path-app/source/stylesheets/plain.css.sass
1687
+ - fixtures/sass-cache-path-custom-app/config.rb
1688
+ - fixtures/sass-cache-path-custom-app/source/stylesheets/plain.css.sass
1689
+ - fixtures/sass-cache-path-default-app/config.rb
1690
+ - fixtures/sass-cache-path-default-app/source/stylesheets/plain.css.sass
1691
+ - fixtures/scss-app/config.rb
1692
+ - fixtures/scss-app/source/stylesheets/layout.css.sass
1693
+ - fixtures/scss-app/source/stylesheets/site_scss.css.scss
915
1694
  - fixtures/sinatra-app/config.rb
916
1695
  - fixtures/sinatra-app/source/index.html.erb
917
1696
  - fixtures/strip-url-app/config.rb
918
1697
  - fixtures/strip-url-app/source/index.html.erb
919
1698
  - fixtures/strip-url-app/source/other.html.erb
920
1699
  - fixtures/strip-url-app/source/subdir/index.html.erb
1700
+ - fixtures/stylus-preview-app/config.rb
1701
+ - fixtures/stylus-preview-app/source/content.html.erb
1702
+ - fixtures/stylus-preview-app/source/layout.erb
1703
+ - fixtures/stylus-preview-app/source/stylesheets/_partial.styl
1704
+ - fixtures/stylus-preview-app/source/stylesheets/_partial2.css.styl
1705
+ - fixtures/stylus-preview-app/source/stylesheets/main.css.styl
1706
+ - fixtures/stylus-preview-app/source/stylesheets/main2.css.styl
1707
+ - fixtures/stylus-preview-app/source/stylesheets/plain.css.styl
921
1708
  - fixtures/traversal-app/config.rb
922
1709
  - fixtures/traversal-app/source/directory-indexed.html.erb
923
1710
  - fixtures/traversal-app/source/directory-indexed/sibling.html.erb
@@ -933,10 +1720,101 @@ test_files:
933
1720
  - fixtures/traversal-app/source/sub/sibling2.html.erb
934
1721
  - fixtures/traversal-app/source/sub/sub2/index.html.erb
935
1722
  - fixtures/traversal-app/source/sub/sub3/deep.html.erb
1723
+ - fixtures/twitter-bootstrap-app/config.rb
1724
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/.gitignore
1725
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/.travis.yml
1726
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/LICENSE
1727
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/README.md
1728
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/img/glyphicons-halflings-white.png
1729
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/img/glyphicons-halflings.png
1730
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/.jshintrc
1731
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/README.md
1732
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-alert.js
1733
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-button.js
1734
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-carousel.js
1735
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-collapse.js
1736
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-dropdown.js
1737
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-modal.js
1738
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-popover.js
1739
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-scrollspy.js
1740
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-tab.js
1741
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-tooltip.js
1742
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-transition.js
1743
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-typeahead.js
1744
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/index.html
1745
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/phantom.js
1746
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/server.js
1747
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-alert.js
1748
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-button.js
1749
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-carousel.js
1750
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-collapse.js
1751
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-dropdown.js
1752
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-modal.js
1753
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-phantom.js
1754
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-popover.js
1755
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-scrollspy.js
1756
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-tab.js
1757
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-tooltip.js
1758
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-transition.js
1759
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-typeahead.js
1760
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/vendor/jquery.js
1761
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/vendor/qunit.css
1762
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/vendor/qunit.js
1763
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_accordion.less
1764
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_alerts.less
1765
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_breadcrumbs.less
1766
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_button-groups.less
1767
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_buttons.less
1768
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_carousel.less
1769
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_close.less
1770
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_code.less
1771
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_component-animations.less
1772
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_dropdowns.less
1773
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_forms.less
1774
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_grid.less
1775
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_hero-unit.less
1776
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_labels-badges.less
1777
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_layouts.less
1778
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_mixins.less
1779
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_modals.less
1780
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_navbar.less
1781
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_navs.less
1782
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_pager.less
1783
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_pagination.less
1784
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_popovers.less
1785
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_progress-bars.less
1786
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_reset.less
1787
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-1200px-min.less
1788
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-767px-max.less
1789
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-768px-979px.less
1790
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-navbar.less
1791
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-utilities.less
1792
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_scaffolding.less
1793
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_sprites.less
1794
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_tables.less
1795
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_thumbnails.less
1796
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_tooltip.less
1797
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_type.less
1798
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_utilities.less
1799
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_variables.less
1800
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_wells.less
1801
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/bootstrap.less
1802
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/responsive.less
1803
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/css-tests.css
1804
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/css-tests.html
1805
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/forms.html
1806
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/navbar.html
1807
+ - fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/package.json
936
1808
  - fixtures/wildcard-app/config.rb
937
1809
  - fixtures/wildcard-app/source/admin/index.html.erb
938
1810
  - fixtures/wildcard-app/source/admin/page.html.erb
939
1811
  - fixtures/wildcard-app/source/index.html.erb
940
1812
  - fixtures/wildcard-app/source/layouts/admin.erb
941
1813
  - fixtures/wildcard-app/source/layouts/layout.erb
1814
+ - fixtures/wildcard-directory-index-app/config.rb
1815
+ - fixtures/wildcard-directory-index-app/source/admin/index.html.erb
1816
+ - fixtures/wildcard-directory-index-app/source/admin/page.html.erb
1817
+ - fixtures/wildcard-directory-index-app/source/index.html.erb
1818
+ - fixtures/wildcard-directory-index-app/source/layouts/admin.erb
1819
+ - fixtures/wildcard-directory-index-app/source/layouts/layout.erb
942
1820
  has_rdoc: