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

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1131) hide show
  1. checksums.yaml +7 -0
  2. data/.gemtest +0 -0
  3. data/.rspec +1 -0
  4. data/.simplecov +7 -0
  5. data/.yardopts +6 -0
  6. data/Rakefile +4 -0
  7. data/cucumber.yml +2 -0
  8. data/features/asset_hash.feature +287 -0
  9. data/features/asset_host.feature +54 -0
  10. data/features/auto_layout.feature +36 -0
  11. data/features/automatic_alt_tags.feature +8 -0
  12. data/features/automatic_directory_matcher.feature +32 -0
  13. data/features/automatic_image_sizes.feature +29 -0
  14. data/features/builder.feature +57 -0
  15. data/features/cache_buster.feature +56 -0
  16. data/features/capture_html.feature +18 -0
  17. data/features/chained_templates.feature +109 -0
  18. data/features/clean_build.feature +78 -0
  19. data/features/coffee-script.feature +22 -0
  20. data/features/collections.feature +238 -0
  21. data/features/console.feature +11 -0
  22. data/features/content_for.feature +16 -0
  23. data/features/content_type.feature +46 -0
  24. data/features/custom-source.feature +7 -0
  25. data/features/custom_layout_engines.feature +8 -0
  26. data/features/custom_layouts.feature +68 -0
  27. data/features/data.feature +60 -0
  28. data/features/default-layout.feature +90 -0
  29. data/features/directory_index.feature +82 -0
  30. data/features/dynamic_pages.feature +133 -0
  31. data/features/encoding_option.feature +28 -0
  32. data/features/extension_api_deprecations.feature +10 -0
  33. data/features/extension_hooks.feature +13 -0
  34. data/features/extensionless_text_files.feature +24 -0
  35. data/features/feature_params.feature +6 -0
  36. data/features/former_padrino_helpers.feature +27 -0
  37. data/features/front-matter-neighbor.feature +147 -0
  38. data/features/front-matter.feature +81 -0
  39. data/features/frontmatter_page_settings.feature +43 -0
  40. data/features/gzip.feature +51 -0
  41. data/features/helpers_auto_javascript_include_tag.feature +53 -0
  42. data/features/helpers_auto_stylesheet_link_tag.feature +48 -0
  43. data/features/helpers_content_tag.feature +16 -0
  44. data/features/helpers_external.feature +12 -0
  45. data/features/helpers_form_tag.feature +26 -0
  46. data/features/helpers_link_to.feature +185 -0
  47. data/features/helpers_lorem.feature +6 -0
  48. data/features/helpers_page_classes.feature +32 -0
  49. data/features/helpers_select_tag.feature +17 -0
  50. data/features/helpers_url_for.feature +152 -0
  51. data/features/i18n_builder.feature +164 -0
  52. data/features/i18n_force_locale.feature +13 -0
  53. data/features/i18n_link_to.feature +209 -0
  54. data/features/i18n_mixed_sources.feature +39 -0
  55. data/features/i18n_partials.feature +23 -0
  56. data/features/i18n_preview.feature +252 -0
  57. data/features/ignore.feature +150 -0
  58. data/features/ignore_already_minified.feature +47 -0
  59. data/features/image_srcset_paths.feature +7 -0
  60. data/features/import_files.feature +15 -0
  61. data/features/javascript-testing.feature +18 -0
  62. data/features/layouts_dir.feature +38 -0
  63. data/features/liquid.feature +11 -0
  64. data/features/markdown.feature +23 -0
  65. data/features/markdown_kramdown.feature +38 -0
  66. data/features/markdown_kramdown_in_haml.feature +42 -0
  67. data/features/markdown_kramdown_in_slim.feature +42 -0
  68. data/features/markdown_redcarpet.feature +167 -0
  69. data/features/markdown_redcarpet_in_haml.feature +41 -0
  70. data/features/minify_css.feature +205 -0
  71. data/features/minify_javascript.feature +266 -0
  72. data/features/missing-tilt-lib.feature +20 -0
  73. data/features/more-clean_build.feature +14 -0
  74. data/features/more-extensionless_text_files.feature +28 -0
  75. data/features/more-frontmatter_page_settings.feature +42 -0
  76. data/features/more-ignore.feature +62 -0
  77. data/features/more-sitemap_traversal.feature +83 -0
  78. data/features/more-wildcard_page_helper.feature +10 -0
  79. data/features/mount_rack.feature +65 -0
  80. data/features/move_files.feature +44 -0
  81. data/features/multiple-sources-reload.feature +40 -0
  82. data/features/multiple-sources.feature +35 -0
  83. data/features/nested_layouts.feature +58 -0
  84. data/features/paginate.feature +204 -0
  85. data/features/partials.feature +52 -0
  86. data/features/preview_changes.feature +29 -0
  87. data/features/proxy_pages.feature +84 -0
  88. data/features/redirects.feature +61 -0
  89. data/features/relative_assets.feature +148 -0
  90. data/features/sass-assets-paths.feature +11 -0
  91. data/features/sass_partials.feature +54 -0
  92. data/features/scss-support.feature +12 -0
  93. data/features/sitemap_traversal.feature +83 -0
  94. data/features/slim.feature +81 -0
  95. data/features/strip_url.feature +40 -0
  96. data/features/stylus.feature +54 -0
  97. data/features/support/env.rb +19 -0
  98. data/features/support/preserve_mime_types.rb +7 -0
  99. data/features/tilde_directories.feature +14 -0
  100. data/features/unicode_filecontents.feature +13 -0
  101. data/features/unicode_filenames.feature +36 -0
  102. data/features/v4_extension_callbacks.feature +8 -0
  103. data/features/wildcard_page_helper.feature +10 -0
  104. data/fixtures/asset-hash-app/config.rb +6 -0
  105. data/fixtures/asset-hash-app/lib/middleware.rb +16 -0
  106. data/fixtures/asset-hash-app/source/api.json.erb +1 -0
  107. data/fixtures/asset-hash-app/source/apple-touch-icon.png +0 -0
  108. data/fixtures/asset-hash-app/source/favicon.ico +0 -0
  109. data/fixtures/asset-hash-app/source/fonts/fontawesome-webfont.woff +0 -0
  110. data/fixtures/asset-hash-app/source/fonts/fontawesome-webfont.woff2 +0 -0
  111. data/fixtures/asset-hash-app/source/images/100px.gif +0 -0
  112. data/fixtures/asset-hash-app/source/images/100px.jpg +0 -0
  113. data/fixtures/asset-hash-app/source/images/100px.png +0 -0
  114. data/fixtures/asset-hash-app/source/images/200px.jpg +0 -0
  115. data/fixtures/asset-hash-app/source/images/300px.jpg +0 -0
  116. data/fixtures/asset-hash-app/source/index.html.erb +314 -0
  117. data/fixtures/asset-hash-app/source/javascripts/application.js +8 -0
  118. data/fixtures/asset-hash-app/source/layout.erb +18 -0
  119. data/fixtures/asset-hash-app/source/other.html.erb +5 -0
  120. data/fixtures/asset-hash-app/source/partials.html.erb +1 -0
  121. data/fixtures/asset-hash-app/source/slim.html.slim +8 -0
  122. data/fixtures/asset-hash-app/source/stylesheets/_partial.sass +2 -0
  123. data/fixtures/asset-hash-app/source/stylesheets/fragment.css.scss +7 -0
  124. data/fixtures/asset-hash-app/source/stylesheets/site.css.scss +4 -0
  125. data/fixtures/asset-hash-app/source/stylesheets/uses_fonts.css +4 -0
  126. data/fixtures/asset-hash-app/source/stylesheets/uses_partials.css.sass +4 -0
  127. data/fixtures/asset-hash-app/source/subdir/api.json.erb +1 -0
  128. data/fixtures/asset-hash-app/source/subdir/index.html.erb +317 -0
  129. data/fixtures/asset-hash-host-app/source/images/100px.gif +0 -0
  130. data/fixtures/asset-hash-host-app/source/images/100px.jpg +0 -0
  131. data/fixtures/asset-hash-host-app/source/images/100px.png +0 -0
  132. data/fixtures/asset-hash-host-app/source/index.html.erb +9 -0
  133. data/fixtures/asset-hash-host-app/source/layout.erb +17 -0
  134. data/fixtures/asset-hash-host-app/source/other.html.erb +5 -0
  135. data/fixtures/asset-hash-host-app/source/stylesheets/fragment.css.scss +7 -0
  136. data/fixtures/asset-hash-host-app/source/stylesheets/site.css.scss +4 -0
  137. data/fixtures/asset-hash-host-app/source/subdir/index.html.erb +6 -0
  138. data/fixtures/asset-hash-minified-app/config.rb +5 -0
  139. data/fixtures/asset-hash-minified-app/source/javascripts/jquery.min.js +5 -0
  140. data/fixtures/asset-host-app/config.rb +1 -0
  141. data/fixtures/asset-host-app/source/.htaccess +1 -0
  142. data/fixtures/asset-host-app/source/asset_host.html.erb +55 -0
  143. data/fixtures/asset-host-app/source/images/blank.gif +0 -0
  144. data/fixtures/asset-host-app/source/javascripts/asset_host.js +2 -0
  145. data/fixtures/asset-host-app/source/stylesheets/asset_host.css.sass +48 -0
  146. data/fixtures/auto-css-app/config.rb +9 -0
  147. data/fixtures/auto-css-app/source/auto-css.html.erb +1 -0
  148. data/fixtures/auto-css-app/source/auto-css/auto-css.html.erb +1 -0
  149. data/fixtures/auto-css-app/source/auto-css/index.html.erb +1 -0
  150. data/fixtures/auto-css-app/source/auto-css/sub/auto-css.html.erb +1 -0
  151. data/fixtures/auto-css-app/source/stylesheets/auto-css.css +3 -0
  152. data/fixtures/auto-css-app/source/stylesheets/auto-css/auto-css.css +3 -0
  153. data/fixtures/auto-css-app/source/stylesheets/auto-css/index.css +0 -0
  154. data/fixtures/auto-css-app/source/stylesheets/auto-css/sub/auto-css.css +3 -0
  155. data/fixtures/auto-js-app/config.rb +9 -0
  156. data/fixtures/auto-js-app/source/auto-js.html.erb +1 -0
  157. data/fixtures/auto-js-app/source/auto-js/auto-js.html.erb +1 -0
  158. data/fixtures/auto-js-app/source/auto-js/index.html.erb +1 -0
  159. data/fixtures/auto-js-app/source/auto-js/sub/auto-js.html.erb +1 -0
  160. data/fixtures/auto-js-app/source/javascripts/auto-js.js +1 -0
  161. data/fixtures/auto-js-app/source/javascripts/auto-js/auto-js.js +1 -0
  162. data/fixtures/auto-js-app/source/javascripts/auto-js/index.js +1 -0
  163. data/fixtures/auto-js-app/source/javascripts/auto-js/sub/auto-js.js +1 -0
  164. data/fixtures/auto-js-directory-index-app/config.rb +1 -0
  165. data/fixtures/auto-js-directory-index-app/source/auto-js.html.erb +1 -0
  166. data/fixtures/auto-js-directory-index-app/source/javascripts/auto-js.js +1 -0
  167. data/fixtures/automatic-alt-tags-app/config.rb +0 -0
  168. data/fixtures/automatic-alt-tags-app/source/auto-image-sizes.html.erb +1 -0
  169. data/fixtures/automatic-alt-tags-app/source/images/blank.gif +0 -0
  170. data/fixtures/automatic-directory-matcher-app/config.rb +1 -0
  171. data/fixtures/automatic-directory-matcher-app/source/root-plain.html +1 -0
  172. data/fixtures/automatic-directory-matcher-app/source/root.html.erb +1 -0
  173. data/fixtures/automatic-directory-matcher-app/source/sub--sub--sub-plain.html +1 -0
  174. data/fixtures/automatic-directory-matcher-app/source/sub--sub--sub.html.erb +1 -0
  175. data/fixtures/automatic-directory-matcher-app/source/sub--sub-plain.html +1 -0
  176. data/fixtures/automatic-directory-matcher-app/source/sub--sub.html.erb +1 -0
  177. data/fixtures/automatic-image-size-app/config.rb +0 -0
  178. data/fixtures/automatic-image-size-app/source/auto-image-sizes.html.erb +1 -0
  179. data/fixtures/automatic-image-size-app/source/images/blank.gif +0 -0
  180. data/fixtures/automatic-image-size-app/source/markdown-sizes.html.markdown +1 -0
  181. data/fixtures/basic-data-app/config.rb +2 -0
  182. data/fixtures/basic-data-app/data/test.yml +4 -0
  183. data/fixtures/basic-data-app/data/test2.json +4 -0
  184. data/fixtures/basic-data-app/source/data.html.erb +5 -0
  185. data/fixtures/basic-data-app/source/data3.html.erb +5 -0
  186. data/fixtures/build-with-errors-app/config.rb +1 -0
  187. data/fixtures/build-with-errors-app/source/index.html.erb +1 -0
  188. data/fixtures/cache-buster-app/config.rb +0 -0
  189. data/fixtures/cache-buster-app/source/cache-buster.html.erb +3 -0
  190. data/fixtures/cache-buster-app/source/images/blank.gif +0 -0
  191. data/fixtures/cache-buster-app/source/stylesheets/relative_assets.css.sass +2 -0
  192. data/fixtures/cache-buster-app/source/stylesheets/site.css.sass +3 -0
  193. data/fixtures/capture-html-app/config.rb +5 -0
  194. data/fixtures/capture-html-app/source/capture_html_erb.html.erb +5 -0
  195. data/fixtures/capture-html-app/source/capture_html_haml.html.haml +4 -0
  196. data/fixtures/capture-html-app/source/capture_html_slim.html.slim +4 -0
  197. data/fixtures/capture-html-app/source/layouts/capture_html.erb +4 -0
  198. data/fixtures/chained-app/config.rb +0 -0
  199. data/fixtures/chained-app/data/article.yml +2 -0
  200. data/fixtures/chained-app/source/index.html.str.erb +8 -0
  201. data/fixtures/chained-app/source/test.erb.combobreaker.str.erb +8 -0
  202. data/fixtures/clean-app/config-complications.rb +9 -0
  203. data/fixtures/clean-app/config-empty.rb +0 -0
  204. data/fixtures/clean-app/config-hidden-dir-after.rb +5 -0
  205. data/fixtures/clean-app/config-hidden-dir-before.rb +1 -0
  206. data/fixtures/clean-app/config.rb +9 -0
  207. data/fixtures/clean-app/source/index.html.erb +1 -0
  208. data/fixtures/clean-app/source/layout.erb +9 -0
  209. data/fixtures/clean-app/source/layouts/custom.erb +8 -0
  210. data/fixtures/clean-app/source/real.html +1 -0
  211. data/fixtures/clean-app/source/real/index.html.erb +5 -0
  212. data/fixtures/clean-app/source/should_be_ignored.html +1 -0
  213. data/fixtures/clean-app/source/should_be_ignored2.html +1 -0
  214. data/fixtures/clean-app/source/should_be_ignored3.html +1 -0
  215. data/fixtures/clean-app/source/static.html +1 -0
  216. data/fixtures/clean-dir-app/config.rb +2 -0
  217. data/fixtures/clean-dir-app/source/about.html +1 -0
  218. data/fixtures/clean-nested-app/config.rb +1 -0
  219. data/fixtures/clean-nested-app/source/about.html +1 -0
  220. data/fixtures/clean-nested-app/source/nested/nested.html +1 -0
  221. data/fixtures/coffeescript-app/config.rb +0 -0
  222. data/fixtures/coffeescript-app/source/inline-coffeescript.html.haml +3 -0
  223. data/fixtures/coffeescript-app/source/javascripts/broken-coffee.js.coffee +3 -0
  224. data/fixtures/coffeescript-app/source/javascripts/coffee_test.js.coffee +3 -0
  225. data/fixtures/collections-app/source/blog1/2011-01-01-new-article.html.markdown +7 -0
  226. data/fixtures/collections-app/source/blog1/2011-01-02-another-article.html.markdown +9 -0
  227. data/fixtures/collections-app/source/blog2/2011-01-01-new-article.html.markdown +9 -0
  228. data/fixtures/collections-app/source/blog2/2011-01-02-another-article.html.markdown +8 -0
  229. data/fixtures/content-for-app/config.rb +5 -0
  230. data/fixtures/content-for-app/source/content_for_erb.html.erb +5 -0
  231. data/fixtures/content-for-app/source/content_for_haml.html.haml +4 -0
  232. data/fixtures/content-for-app/source/content_for_slim.html.slim +5 -0
  233. data/fixtures/content-for-app/source/layouts/content_for.erb +4 -0
  234. data/fixtures/content-type-app/config.rb +1 -0
  235. data/fixtures/content-type-app/source/.htaccess +1 -0
  236. data/fixtures/content-type-app/source/README +1 -0
  237. data/fixtures/content-type-app/source/images/blank.gif +0 -0
  238. data/fixtures/content-type-app/source/index.html +1 -0
  239. data/fixtures/content-type-app/source/index.php +1 -0
  240. data/fixtures/content-type-app/source/javascripts/app.js +1 -0
  241. data/fixtures/content-type-app/source/override.html +5 -0
  242. data/fixtures/content-type-app/source/stylesheets/site.css +1 -0
  243. data/fixtures/csspie/config.rb +0 -0
  244. data/fixtures/csspie/source/stylesheets/PIE.htc +96 -0
  245. data/fixtures/custom-layout-app/config.rb +1 -0
  246. data/fixtures/custom-layout-app/source/index.html.erb +1 -0
  247. data/fixtures/custom-layout-app/source/layout.str +9 -0
  248. data/fixtures/custom-layout-app2/config.rb +0 -0
  249. data/fixtures/custom-layout-app2/source/custom-layout-dir/index.html.erb +1 -0
  250. data/fixtures/custom-layout-app2/source/custom-layout.html.erb +1 -0
  251. data/fixtures/custom-layout-app2/source/layouts/custom.erb +8 -0
  252. data/fixtures/custom-src-app/config.rb +1 -0
  253. data/fixtures/custom-src-app/src/index.html +0 -0
  254. data/fixtures/custom-src-app/src/layouts/layout.html.erb +1 -0
  255. data/fixtures/data-app/config.rb +3 -0
  256. data/fixtures/data-app/data/pages.yml +6 -0
  257. data/fixtures/data-app/source/index.html.erb +1 -0
  258. data/fixtures/data-app/source/layout.erb +5 -0
  259. data/fixtures/destination-dir-different-from-source-dir-name/external/page.html.erb +1 -0
  260. data/fixtures/destination-dir-different-from-source-dir-name/my-app/config.rb +2 -0
  261. data/fixtures/destination-dir-different-from-source-dir-name/my-app/source/index.html.erb +1 -0
  262. data/fixtures/different-engine-layout/config.rb +0 -0
  263. data/fixtures/different-engine-layout/source/index.haml +1 -0
  264. data/fixtures/different-engine-layout/source/index.html.str +1 -0
  265. data/fixtures/different-engine-layout/source/layout.erb +9 -0
  266. data/fixtures/different-engine-partial/config.rb +0 -0
  267. data/fixtures/different-engine-partial/source/index.html.erb +1 -0
  268. data/fixtures/different-engine-partial/source/layouts/layout.erb +7 -0
  269. data/fixtures/different-engine-partial/source/shared/_footer.str +1 -0
  270. data/fixtures/different-engine-partial/source/shared/_header.erb +1 -0
  271. data/fixtures/dynamic-pages-app/config.rb +30 -0
  272. data/fixtures/dynamic-pages-app/source/real.html +1 -0
  273. data/fixtures/dynamic-pages-app/source/real/index.html.erb +9 -0
  274. data/fixtures/dynamic-pages-app/source/should_be_ignored.html +1 -0
  275. data/fixtures/dynamic-pages-app/source/should_be_ignored2.html +1 -0
  276. data/fixtures/dynamic-pages-app/source/should_be_ignored3.html +1 -0
  277. data/fixtures/dynamic-pages-app/source/should_be_ignored4.html +1 -0
  278. data/fixtures/dynamic-pages-app/source/should_be_ignored5.html +1 -0
  279. data/fixtures/dynamic-pages-app/source/should_be_ignored6.html +1 -0
  280. data/fixtures/dynamic-pages-app/source/should_be_ignored7.html +1 -0
  281. data/fixtures/dynamic-pages-app/source/should_be_ignored8.html +1 -0
  282. data/fixtures/ember-cli-app/config.rb +5 -0
  283. data/fixtures/ember-cli-app/source/javascripts/file.js +0 -0
  284. data/fixtures/ember-cli-app/test-app/.bowerrc +3 -0
  285. data/fixtures/ember-cli-app/test-app/.gitignore +17 -0
  286. data/fixtures/ember-cli-app/test-app/.jshintrc +32 -0
  287. data/fixtures/ember-cli-app/test-app/Brocfile.js +20 -0
  288. data/fixtures/ember-cli-app/test-app/README.md +25 -0
  289. data/fixtures/ember-cli-app/test-app/app/app.js +14 -0
  290. data/fixtures/ember-cli-app/test-app/app/components/.gitkeep +0 -0
  291. data/fixtures/ember-cli-app/test-app/app/controllers/.gitkeep +0 -0
  292. data/fixtures/ember-cli-app/test-app/app/helpers/.gitkeep +0 -0
  293. data/fixtures/ember-cli-app/test-app/app/index.html +26 -0
  294. data/fixtures/ember-cli-app/test-app/app/models/.gitkeep +0 -0
  295. data/fixtures/ember-cli-app/test-app/app/router.js +10 -0
  296. data/fixtures/ember-cli-app/test-app/app/routes/.gitkeep +0 -0
  297. data/fixtures/ember-cli-app/test-app/app/styles/.gitkeep +0 -0
  298. data/fixtures/ember-cli-app/test-app/app/styles/app.css +3 -0
  299. data/fixtures/ember-cli-app/test-app/app/templates/.gitkeep +0 -0
  300. data/fixtures/ember-cli-app/test-app/app/templates/application.hbs +3 -0
  301. data/fixtures/ember-cli-app/test-app/app/templates/components/.gitkeep +0 -0
  302. data/fixtures/ember-cli-app/test-app/app/views/.gitkeep +0 -0
  303. data/fixtures/ember-cli-app/test-app/bower.json +16 -0
  304. data/fixtures/ember-cli-app/test-app/config/environment.js +38 -0
  305. data/fixtures/ember-cli-app/test-app/package.json +31 -0
  306. data/fixtures/ember-cli-app/test-app/public/.gitkeep +0 -0
  307. data/fixtures/ember-cli-app/test-app/testem.json +6 -0
  308. data/fixtures/ember-cli-app/test-app/tests/.jshintrc +73 -0
  309. data/fixtures/ember-cli-app/test-app/tests/helpers/resolver.js +9 -0
  310. data/fixtures/ember-cli-app/test-app/tests/helpers/start-app.js +30 -0
  311. data/fixtures/ember-cli-app/test-app/tests/index.html +50 -0
  312. data/fixtures/ember-cli-app/test-app/tests/test-helper.js +6 -0
  313. data/fixtures/ember-cli-app/test-app/tests/unit/.gitkeep +0 -0
  314. data/fixtures/empty-app/not-config.rb +0 -0
  315. data/fixtures/engine-matching-layout/config.rb +0 -0
  316. data/fixtures/engine-matching-layout/source/index.html.erb +1 -0
  317. data/fixtures/engine-matching-layout/source/layout.erb +9 -0
  318. data/fixtures/env-app/config.rb +0 -0
  319. data/fixtures/env-app/environments/development.rb +1 -0
  320. data/fixtures/env-app/environments/production.rb +2 -0
  321. data/fixtures/env-app/source/index.html.erb +3 -0
  322. data/fixtures/env-app/source/stylesheets/site.css.scss +3 -0
  323. data/fixtures/extension-api-deprecations-app/config.rb +11 -0
  324. data/fixtures/extension-api-deprecations-app/source/index.html.erb +1 -0
  325. data/fixtures/extension-api-deprecations-app/source/layouts/layout.erb +3 -0
  326. data/fixtures/extension-hooks-app/config.rb +39 -0
  327. data/fixtures/extension-hooks-app/source/index.html.erb +9 -0
  328. data/fixtures/extensionless-text-files-app/config.rb +0 -0
  329. data/fixtures/extensionless-text-files-app/source/CNAME +1 -0
  330. data/fixtures/extensionless-text-files-app/source/LICENSE +1 -0
  331. data/fixtures/extensionless-text-files-app/source/README +1 -0
  332. data/fixtures/extensionless-text-files-app/source/index.html +1 -0
  333. data/fixtures/external-helpers/config.rb +4 -0
  334. data/fixtures/external-helpers/helpers/derp.rb +3 -0
  335. data/fixtures/external-helpers/helpers/four_helpers.rb +3 -0
  336. data/fixtures/external-helpers/helpers/one_helper.rb +3 -0
  337. data/fixtures/external-helpers/helpers/yet_another_thingy.rb +3 -0
  338. data/fixtures/external-helpers/lib/hello_helper.rb +5 -0
  339. data/fixtures/external-helpers/source/automatic.html.erb +1 -0
  340. data/fixtures/external-helpers/source/index.html.erb +1 -0
  341. data/fixtures/feature-params-app/config.rb +16 -0
  342. data/fixtures/feature-params-app/source/index.html.erb +2 -0
  343. data/fixtures/fonts-app/config.rb +0 -0
  344. data/fixtures/fonts-app/source/fonts/StMarie-Thin.otf +0 -0
  345. data/fixtures/fonts-app/source/fonts/blank/blank.otf +0 -0
  346. data/fixtures/fonts-app/source/stylesheets/fonts.css.scss +6 -0
  347. data/fixtures/frontmatter-app/config.rb +1 -0
  348. data/fixtures/frontmatter-app/source/front-matter-2.php.erb +7 -0
  349. data/fixtures/frontmatter-app/source/front-matter-change.html.erb +5 -0
  350. data/fixtures/frontmatter-app/source/front-matter-encoding.html.erb +7 -0
  351. data/fixtures/frontmatter-app/source/front-matter-haml.html.haml +6 -0
  352. data/fixtures/frontmatter-app/source/front-matter-line-2.html.erb +10 -0
  353. data/fixtures/frontmatter-app/source/front-matter-pandoc.html.md.erb +13 -0
  354. data/fixtures/frontmatter-app/source/raw-front-matter.html +6 -0
  355. data/fixtures/frontmatter-app/source/raw-front-matter.php +6 -0
  356. data/fixtures/frontmatter-neighbor-app/config.rb +30 -0
  357. data/fixtures/frontmatter-neighbor-app/source/front-matter-2.php.erb +2 -0
  358. data/fixtures/frontmatter-neighbor-app/source/front-matter-2.php.erb.frontmatter +4 -0
  359. data/fixtures/frontmatter-neighbor-app/source/front-matter-change.html.erb +1 -0
  360. data/fixtures/frontmatter-neighbor-app/source/front-matter-change.html.erb.frontmatter +4 -0
  361. data/fixtures/frontmatter-neighbor-app/source/front-matter-encoding.html.erb +1 -0
  362. data/fixtures/frontmatter-neighbor-app/source/front-matter-encoding.html.erb.frontmatter +5 -0
  363. data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.html +1 -0
  364. data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.html.frontmatter +4 -0
  365. data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.php +1 -0
  366. data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.php.frontmatter +4 -0
  367. data/fixtures/frontmatter-settings-app/config.rb +4 -0
  368. data/fixtures/frontmatter-settings-app/source/alternate_layout.html.erb +5 -0
  369. data/fixtures/frontmatter-settings-app/source/ignored.html.erb +5 -0
  370. data/fixtures/frontmatter-settings-app/source/layouts/alternate.erb +3 -0
  371. data/fixtures/frontmatter-settings-app/source/layouts/override.erb +1 -0
  372. data/fixtures/frontmatter-settings-app/source/override_layout.html.erb +4 -0
  373. data/fixtures/frontmatter-settings-app/source/page_mentioned.html.erb +4 -0
  374. data/fixtures/frontmatter-settings-neighbor-app/config.rb +40 -0
  375. data/fixtures/frontmatter-settings-neighbor-app/source/alternate_layout.html.erb +1 -0
  376. data/fixtures/frontmatter-settings-neighbor-app/source/alternate_layout.html.erb.frontmatter +3 -0
  377. data/fixtures/frontmatter-settings-neighbor-app/source/ignored.html.erb +1 -0
  378. data/fixtures/frontmatter-settings-neighbor-app/source/ignored.html.erb.frontmatter +3 -0
  379. data/fixtures/frontmatter-settings-neighbor-app/source/layouts/alternate.erb +3 -0
  380. data/fixtures/frontmatter-settings-neighbor-app/source/layouts/override.erb +1 -0
  381. data/fixtures/frontmatter-settings-neighbor-app/source/override_layout.html.erb +1 -0
  382. data/fixtures/frontmatter-settings-neighbor-app/source/override_layout.html.erb.frontmatter +3 -0
  383. data/fixtures/frontmatter-settings-neighbor-app/source/page_mentioned.html.erb +1 -0
  384. data/fixtures/frontmatter-settings-neighbor-app/source/page_mentioned.html.erb.frontmatter +3 -0
  385. data/fixtures/generator-test/config.rb +70 -0
  386. data/fixtures/generator-test/source/index.html.erb +10 -0
  387. data/fixtures/glob-app/config.rb +1 -0
  388. data/fixtures/glob-app/source/index.html.erb +4 -0
  389. data/fixtures/glob-app/source/stylesheets/site.css.str +3 -0
  390. data/fixtures/gzip-app/config.rb +1 -0
  391. data/fixtures/gzip-app/source/index.html +0 -0
  392. data/fixtures/gzip-app/source/javascripts/test.js +1 -0
  393. data/fixtures/gzip-app/source/stylesheets/test.css +1 -0
  394. data/fixtures/i-8859-1-app/config.rb +1 -0
  395. data/fixtures/i-8859-1-app/source/index.html.erb +1 -0
  396. data/fixtures/i18n-alt-root-app/locales/en.yml +4 -0
  397. data/fixtures/i18n-alt-root-app/locales/es.yml +7 -0
  398. data/fixtures/i18n-alt-root-app/source/lang_data/hello.html.erb +1 -0
  399. data/fixtures/i18n-alt-root-app/source/lang_data/index.html.erb +1 -0
  400. data/fixtures/i18n-alt-root-app/source/layout.erb +1 -0
  401. data/fixtures/i18n-default-app/locales/en.yml +4 -0
  402. data/fixtures/i18n-default-app/locales/es.yml +8 -0
  403. data/fixtures/i18n-default-app/source/localizable/index.html.erb +5 -0
  404. data/fixtures/i18n-force-locale/config.rb +11 -0
  405. data/fixtures/i18n-force-locale/locales/en.yml +3 -0
  406. data/fixtures/i18n-force-locale/locales/es.yml +3 -0
  407. data/fixtures/i18n-force-locale/locales/fr.yml +3 -0
  408. data/fixtures/i18n-force-locale/source/index.html.haml +2 -0
  409. data/fixtures/i18n-mixed-sources/config.rb +1 -0
  410. data/fixtures/i18n-mixed-sources/locales/en.yml +4 -0
  411. data/fixtures/i18n-mixed-sources/locales/es.yml +4 -0
  412. data/fixtures/i18n-mixed-sources/source/a/sub.html.erb +9 -0
  413. data/fixtures/i18n-mixed-sources/source/b/index.html.erb +9 -0
  414. data/fixtures/i18n-mixed-sources/source/index.html.erb +9 -0
  415. data/fixtures/i18n-mixed-sources/source/localizable/a/index.html.erb +9 -0
  416. data/fixtures/i18n-mixed-sources/source/localizable/b/sub.html.erb +9 -0
  417. data/fixtures/i18n-mixed-sources/source/localizable/index.html.erb +9 -0
  418. data/fixtures/i18n-nested-app/locales/en.yml +4 -0
  419. data/fixtures/i18n-nested-app/locales/en/more.yml +3 -0
  420. data/fixtures/i18n-nested-app/locales/es.yml +4 -0
  421. data/fixtures/i18n-nested-app/locales/es/mucho.yml +3 -0
  422. data/fixtures/i18n-nested-app/source/localizable/index.html.erb +3 -0
  423. data/fixtures/i18n-test-app/data/defaults_en.yml +0 -0
  424. data/fixtures/i18n-test-app/data/defaults_es.yml +0 -0
  425. data/fixtures/i18n-test-app/data/en_defaults.yml +0 -0
  426. data/fixtures/i18n-test-app/locales/en.yml +4 -0
  427. data/fixtures/i18n-test-app/locales/es.yml +9 -0
  428. data/fixtures/i18n-test-app/source/CNAME +1 -0
  429. data/fixtures/i18n-test-app/source/_country.en.erb +1 -0
  430. data/fixtures/i18n-test-app/source/_country.es.erb +1 -0
  431. data/fixtures/i18n-test-app/source/_site.erb +1 -0
  432. data/fixtures/i18n-test-app/source/images/president.en.svg +1 -0
  433. data/fixtures/i18n-test-app/source/images/president.es.svg +1 -0
  434. data/fixtures/i18n-test-app/source/layouts/layout.erb +8 -0
  435. data/fixtures/i18n-test-app/source/localizable/_state.en.erb +1 -0
  436. data/fixtures/i18n-test-app/source/localizable/_state.es.erb +1 -0
  437. data/fixtures/i18n-test-app/source/localizable/hello.html.erb +1 -0
  438. data/fixtures/i18n-test-app/source/localizable/images/flag.en.svg +1 -0
  439. data/fixtures/i18n-test-app/source/localizable/images/flag.es.svg +1 -0
  440. data/fixtures/i18n-test-app/source/localizable/index.html.erb +1 -0
  441. data/fixtures/i18n-test-app/source/localizable/morning.en.html.erb +1 -0
  442. data/fixtures/i18n-test-app/source/localizable/morning.es.html.erb +1 -0
  443. data/fixtures/i18n-test-app/source/localizable/one.en.html.md +1 -0
  444. data/fixtures/i18n-test-app/source/localizable/one.es.html.md +1 -0
  445. data/fixtures/i18n-test-app/source/localizable/partials/_greeting.en.erb +1 -0
  446. data/fixtures/i18n-test-app/source/localizable/partials/_greeting.es.erb +1 -0
  447. data/fixtures/i18n-test-app/source/localizable/partials/index.html.erb +8 -0
  448. data/fixtures/i18n-test-app/source/password.txt +1 -0
  449. data/fixtures/i18n-test-app/source/stylesheets/site.css +3 -0
  450. data/fixtures/ignore-app/source/about.html.erb +1 -0
  451. data/fixtures/ignore-app/source/images/icon/messages.png +0 -0
  452. data/fixtures/ignore-app/source/images/pic.png +0 -0
  453. data/fixtures/ignore-app/source/images/portrait.jpg +0 -0
  454. data/fixtures/ignore-app/source/index.html.erb +0 -0
  455. data/fixtures/ignore-app/source/plain.html +1 -0
  456. data/fixtures/ignore-app/source/reports/another.html +0 -0
  457. data/fixtures/ignore-app/source/reports/index.html +0 -0
  458. data/fixtures/image-srcset-paths-app/image-srcset-paths.html.erb +1 -0
  459. data/fixtures/image-srcset-paths-app/images/blank.gif +0 -0
  460. data/fixtures/import-app/bower.json +21 -0
  461. data/fixtures/import-app/bower_components/jquery/.bower.json +39 -0
  462. data/fixtures/import-app/bower_components/jquery/MIT-LICENSE.txt +21 -0
  463. data/fixtures/import-app/bower_components/jquery/bower.json +28 -0
  464. data/fixtures/import-app/bower_components/jquery/dist/jquery.js +9210 -0
  465. data/fixtures/import-app/bower_components/jquery/dist/jquery.min.js +5 -0
  466. data/fixtures/import-app/bower_components/jquery/dist/jquery.min.map +1 -0
  467. data/fixtures/import-app/bower_components/jquery/src/ajax.js +786 -0
  468. data/fixtures/import-app/bower_components/jquery/src/ajax/jsonp.js +89 -0
  469. data/fixtures/import-app/bower_components/jquery/src/ajax/load.js +75 -0
  470. data/fixtures/import-app/bower_components/jquery/src/ajax/parseJSON.js +13 -0
  471. data/fixtures/import-app/bower_components/jquery/src/ajax/parseXML.js +28 -0
  472. data/fixtures/import-app/bower_components/jquery/src/ajax/script.js +64 -0
  473. data/fixtures/import-app/bower_components/jquery/src/ajax/var/nonce.js +5 -0
  474. data/fixtures/import-app/bower_components/jquery/src/ajax/var/rquery.js +3 -0
  475. data/fixtures/import-app/bower_components/jquery/src/ajax/xhr.js +136 -0
  476. data/fixtures/import-app/bower_components/jquery/src/attributes.js +11 -0
  477. data/fixtures/import-app/bower_components/jquery/src/attributes/attr.js +141 -0
  478. data/fixtures/import-app/bower_components/jquery/src/attributes/classes.js +158 -0
  479. data/fixtures/import-app/bower_components/jquery/src/attributes/prop.js +94 -0
  480. data/fixtures/import-app/bower_components/jquery/src/attributes/support.js +35 -0
  481. data/fixtures/import-app/bower_components/jquery/src/attributes/val.js +161 -0
  482. data/fixtures/import-app/bower_components/jquery/src/callbacks.js +205 -0
  483. data/fixtures/import-app/bower_components/jquery/src/core.js +502 -0
  484. data/fixtures/import-app/bower_components/jquery/src/core/access.js +60 -0
  485. data/fixtures/import-app/bower_components/jquery/src/core/init.js +123 -0
  486. data/fixtures/import-app/bower_components/jquery/src/core/parseHTML.js +39 -0
  487. data/fixtures/import-app/bower_components/jquery/src/core/ready.js +97 -0
  488. data/fixtures/import-app/bower_components/jquery/src/core/var/rsingleTag.js +4 -0
  489. data/fixtures/import-app/bower_components/jquery/src/css.js +450 -0
  490. data/fixtures/import-app/bower_components/jquery/src/css/addGetHookIf.js +22 -0
  491. data/fixtures/import-app/bower_components/jquery/src/css/curCSS.js +57 -0
  492. data/fixtures/import-app/bower_components/jquery/src/css/defaultDisplay.js +70 -0
  493. data/fixtures/import-app/bower_components/jquery/src/css/hiddenVisibleSelectors.js +15 -0
  494. data/fixtures/import-app/bower_components/jquery/src/css/support.js +96 -0
  495. data/fixtures/import-app/bower_components/jquery/src/css/swap.js +28 -0
  496. data/fixtures/import-app/bower_components/jquery/src/css/var/cssExpand.js +3 -0
  497. data/fixtures/import-app/bower_components/jquery/src/css/var/getStyles.js +12 -0
  498. data/fixtures/import-app/bower_components/jquery/src/css/var/isHidden.js +13 -0
  499. data/fixtures/import-app/bower_components/jquery/src/css/var/rmargin.js +3 -0
  500. data/fixtures/import-app/bower_components/jquery/src/css/var/rnumnonpx.js +5 -0
  501. data/fixtures/import-app/bower_components/jquery/src/data.js +178 -0
  502. data/fixtures/import-app/bower_components/jquery/src/data/Data.js +181 -0
  503. data/fixtures/import-app/bower_components/jquery/src/data/accepts.js +20 -0
  504. data/fixtures/import-app/bower_components/jquery/src/data/var/data_priv.js +5 -0
  505. data/fixtures/import-app/bower_components/jquery/src/data/var/data_user.js +5 -0
  506. data/fixtures/import-app/bower_components/jquery/src/deferred.js +149 -0
  507. data/fixtures/import-app/bower_components/jquery/src/deprecated.js +13 -0
  508. data/fixtures/import-app/bower_components/jquery/src/dimensions.js +50 -0
  509. data/fixtures/import-app/bower_components/jquery/src/effects.js +648 -0
  510. data/fixtures/import-app/bower_components/jquery/src/effects/Tween.js +114 -0
  511. data/fixtures/import-app/bower_components/jquery/src/effects/animatedSelector.js +13 -0
  512. data/fixtures/import-app/bower_components/jquery/src/event.js +868 -0
  513. data/fixtures/import-app/bower_components/jquery/src/event/ajax.js +13 -0
  514. data/fixtures/import-app/bower_components/jquery/src/event/alias.js +39 -0
  515. data/fixtures/import-app/bower_components/jquery/src/event/support.js +9 -0
  516. data/fixtures/import-app/bower_components/jquery/src/exports/amd.js +24 -0
  517. data/fixtures/import-app/bower_components/jquery/src/exports/global.js +32 -0
  518. data/fixtures/import-app/bower_components/jquery/src/intro.js +44 -0
  519. data/fixtures/import-app/bower_components/jquery/src/jquery.js +37 -0
  520. data/fixtures/import-app/bower_components/jquery/src/manipulation.js +580 -0
  521. data/fixtures/import-app/bower_components/jquery/src/manipulation/_evalUrl.js +18 -0
  522. data/fixtures/import-app/bower_components/jquery/src/manipulation/support.js +32 -0
  523. data/fixtures/import-app/bower_components/jquery/src/manipulation/var/rcheckableType.js +3 -0
  524. data/fixtures/import-app/bower_components/jquery/src/offset.js +207 -0
  525. data/fixtures/import-app/bower_components/jquery/src/outro.js +1 -0
  526. data/fixtures/import-app/bower_components/jquery/src/queue.js +142 -0
  527. data/fixtures/import-app/bower_components/jquery/src/queue/delay.js +22 -0
  528. data/fixtures/import-app/bower_components/jquery/src/selector-native.js +172 -0
  529. data/fixtures/import-app/bower_components/jquery/src/selector-sizzle.js +14 -0
  530. data/fixtures/import-app/bower_components/jquery/src/selector.js +1 -0
  531. data/fixtures/import-app/bower_components/jquery/src/serialize.js +111 -0
  532. data/fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.js +2067 -0
  533. data/fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.min.js +3 -0
  534. data/fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.min.map +1 -0
  535. data/fixtures/import-app/bower_components/jquery/src/traversing.js +199 -0
  536. data/fixtures/import-app/bower_components/jquery/src/traversing/findFilter.js +100 -0
  537. data/fixtures/import-app/bower_components/jquery/src/traversing/var/rneedsContext.js +6 -0
  538. data/fixtures/import-app/bower_components/jquery/src/var/arr.js +3 -0
  539. data/fixtures/import-app/bower_components/jquery/src/var/class2type.js +4 -0
  540. data/fixtures/import-app/bower_components/jquery/src/var/concat.js +5 -0
  541. data/fixtures/import-app/bower_components/jquery/src/var/hasOwn.js +5 -0
  542. data/fixtures/import-app/bower_components/jquery/src/var/indexOf.js +5 -0
  543. data/fixtures/import-app/bower_components/jquery/src/var/pnum.js +3 -0
  544. data/fixtures/import-app/bower_components/jquery/src/var/push.js +5 -0
  545. data/fixtures/import-app/bower_components/jquery/src/var/rnotwhite.js +3 -0
  546. data/fixtures/import-app/bower_components/jquery/src/var/slice.js +5 -0
  547. data/fixtures/import-app/bower_components/jquery/src/var/strundefined.js +3 -0
  548. data/fixtures/import-app/bower_components/jquery/src/var/support.js +4 -0
  549. data/fixtures/import-app/bower_components/jquery/src/var/toString.js +5 -0
  550. data/fixtures/import-app/bower_components/jquery/src/wrap.js +79 -0
  551. data/fixtures/import-app/config.rb +7 -0
  552. data/fixtures/import-app/source/test.html +0 -0
  553. data/fixtures/import-app/static.html +1 -0
  554. data/fixtures/indexable-app/config.rb +5 -0
  555. data/fixtures/indexable-app/source/.htaccess +1 -0
  556. data/fixtures/indexable-app/source/.htpasswd +1 -0
  557. data/fixtures/indexable-app/source/.nojekyll +0 -0
  558. data/fixtures/indexable-app/source/a_folder/needs_index.html +1 -0
  559. data/fixtures/indexable-app/source/evil spaces.html +1 -0
  560. data/fixtures/indexable-app/source/leave_me_alone.html +1 -0
  561. data/fixtures/indexable-app/source/needs_index.html +1 -0
  562. data/fixtures/indexable-app/source/regex_leave_me_alone2.html +1 -0
  563. data/fixtures/indexable-app/source/regular/index.html +1 -0
  564. data/fixtures/indexable-app/source/wildcard_leave_me_alone.html +1 -0
  565. data/fixtures/javascript-app/config.rb +0 -0
  566. data/fixtures/javascript-app/source/index.html +17 -0
  567. data/fixtures/large-build-app/config.rb +3 -0
  568. data/fixtures/large-build-app/source/.htaccess +1 -0
  569. data/fixtures/large-build-app/source/.htpasswd +1 -0
  570. data/fixtures/large-build-app/source/_partial.erb +1 -0
  571. data/fixtures/large-build-app/source/feed.xml.builder +4 -0
  572. data/fixtures/large-build-app/source/images/Child folder/regular_file(example).txt +1 -0
  573. data/fixtures/large-build-app/source/images/Read me (example).txt +1 -0
  574. data/fixtures/large-build-app/source/images/blank.gif +0 -0
  575. data/fixtures/large-build-app/source/index.html.erb +1 -0
  576. data/fixtures/large-build-app/source/layout.erb +9 -0
  577. data/fixtures/large-build-app/source/layouts/content_for.erb +4 -0
  578. data/fixtures/large-build-app/source/layouts/custom.erb +8 -0
  579. data/fixtures/large-build-app/source/link_test.html.erb +5 -0
  580. data/fixtures/large-build-app/source/other_layout.erb +1 -0
  581. data/fixtures/large-build-app/source/services/index.html.erb +1 -0
  582. data/fixtures/large-build-app/source/spaces in file.html.erb +1 -0
  583. data/fixtures/large-build-app/source/static.html +1 -0
  584. data/fixtures/large-build-app/source/stylesheets/static.css +2 -0
  585. data/fixtures/layouts-dir-app/source/ambiguous.html.erb +5 -0
  586. data/fixtures/layouts-dir-app/source/index.html.erb +2 -0
  587. data/fixtures/layouts-dir-app/source/layouts/layout.erb +3 -0
  588. data/fixtures/layouts-dir-app/source/layouts/other.erb +3 -0
  589. data/fixtures/layouts-dir-app/source/layouts2/layout.erb +3 -0
  590. data/fixtures/layouts-dir-app/source/nested/layouts2/layout.erb +3 -0
  591. data/fixtures/layouts-dir-app/source/other.erb +3 -0
  592. data/fixtures/link-to-app/config.rb +0 -0
  593. data/fixtures/link-to-app/source/link_to_erb.html.erb +3 -0
  594. data/fixtures/link-to-app/source/link_to_haml.html.haml +2 -0
  595. data/fixtures/link-to-app/source/link_to_slim.html.slim +2 -0
  596. data/fixtures/liquid-app/config.rb +0 -0
  597. data/fixtures/liquid-app/data/test.yml +4 -0
  598. data/fixtures/liquid-app/data/test2.json +4 -0
  599. data/fixtures/liquid-app/source/_liquid_partial.liquid +1 -0
  600. data/fixtures/liquid-app/source/data2.html.liquid +2 -0
  601. data/fixtures/liquid-app/source/liquid_master.html.liquid +1 -0
  602. data/fixtures/lorem-app/config.rb +1 -0
  603. data/fixtures/lorem-app/source/lorem.html.erb +13 -0
  604. data/fixtures/manual-layout-missing/config.rb +1 -0
  605. data/fixtures/manual-layout-missing/source/index.html.erb +1 -0
  606. data/fixtures/manual-layout-override/config.rb +3 -0
  607. data/fixtures/manual-layout-override/source/index.html.erb +1 -0
  608. data/fixtures/manual-layout-override/source/layouts/another.erb +9 -0
  609. data/fixtures/manual-layout-override/source/layouts/custom.erb +9 -0
  610. data/fixtures/manual-layout/config.rb +1 -0
  611. data/fixtures/manual-layout/source/index.html.erb +1 -0
  612. data/fixtures/manual-layout/source/layouts/custom.erb +9 -0
  613. data/fixtures/markdown-app/config.rb +1 -0
  614. data/fixtures/markdown-app/source/autolink.html.markdown +5 -0
  615. data/fixtures/markdown-app/source/fenced_code_blocks.html.markdown +7 -0
  616. data/fixtures/markdown-app/source/filter_html.html.markdown +1 -0
  617. data/fixtures/markdown-app/source/footnote.html.markdown +3 -0
  618. data/fixtures/markdown-app/source/hard_wrap.html.markdown +2 -0
  619. data/fixtures/markdown-app/source/highlighted.html.markdown +1 -0
  620. data/fixtures/markdown-app/source/images/blank.gif +0 -0
  621. data/fixtures/markdown-app/source/img.html.markdown +1 -0
  622. data/fixtures/markdown-app/source/indented_code_blocks.html.markdown +5 -0
  623. data/fixtures/markdown-app/source/index.html.markdown +4 -0
  624. data/fixtures/markdown-app/source/lax_spacing.html.markdown +3 -0
  625. data/fixtures/markdown-app/source/link.html.markdown +1 -0
  626. data/fixtures/markdown-app/source/mailto.html.markdown +1 -0
  627. data/fixtures/markdown-app/source/no_intra_emphasis.html.markdown +5 -0
  628. data/fixtures/markdown-app/source/prettify.html.markdown +3 -0
  629. data/fixtures/markdown-app/source/quote.html.markdown +1 -0
  630. data/fixtures/markdown-app/source/safe_links.html.markdown +1 -0
  631. data/fixtures/markdown-app/source/smarty_pants.html.markdown +5 -0
  632. data/fixtures/markdown-app/source/space_after_headers.html.markdown +5 -0
  633. data/fixtures/markdown-app/source/strikethrough.html.markdown +5 -0
  634. data/fixtures/markdown-app/source/superscript.html.markdown +5 -0
  635. data/fixtures/markdown-app/source/tables.html.markdown +8 -0
  636. data/fixtures/markdown-app/source/underline.html.markdown +1 -0
  637. data/fixtures/markdown-app/source/with_toc_data.html.markdown +3 -0
  638. data/fixtures/markdown-frontmatter-options-app/config.rb +1 -0
  639. data/fixtures/markdown-frontmatter-options-app/source/smarty_pants-default.html.markdown +5 -0
  640. data/fixtures/markdown-frontmatter-options-app/source/smarty_pants-off.html.markdown +7 -0
  641. data/fixtures/markdown-frontmatter-options-app/source/smarty_pants-on.html.markdown +7 -0
  642. data/fixtures/markdown-frontmatter-options-app/source/tables-default.html.markdown +8 -0
  643. data/fixtures/markdown-frontmatter-options-app/source/tables-off.html.markdown +10 -0
  644. data/fixtures/markdown-frontmatter-options-app/source/tables-on.html.markdown +10 -0
  645. data/fixtures/markdown-in-haml-app/config.rb +0 -0
  646. data/fixtures/markdown-in-haml-app/source/images/blank.gif +0 -0
  647. data/fixtures/markdown-in-haml-app/source/link_target.html.markdown +4 -0
  648. data/fixtures/markdown-in-slim-app/config.rb +0 -0
  649. data/fixtures/markdown-in-slim-app/source/images/blank.gif +0 -0
  650. data/fixtures/markdown-in-slim-app/source/link_target.html.markdown +4 -0
  651. data/fixtures/minify-css-app/source/inline-css.html.haml +5 -0
  652. data/fixtures/minify-css-app/source/inline-css.php +8 -0
  653. data/fixtures/minify-css-app/source/more-css/site.css +3 -0
  654. data/fixtures/minify-css-app/source/stylesheets/base/_base.scss +15 -0
  655. data/fixtures/minify-css-app/source/stylesheets/base/_buttons.scss +35 -0
  656. data/fixtures/minify-css-app/source/stylesheets/base/_forms.scss +90 -0
  657. data/fixtures/minify-css-app/source/stylesheets/base/_grid-settings.scss +14 -0
  658. data/fixtures/minify-css-app/source/stylesheets/base/_lists.scss +31 -0
  659. data/fixtures/minify-css-app/source/stylesheets/base/_tables.scss +25 -0
  660. data/fixtures/minify-css-app/source/stylesheets/base/_typography.scss +49 -0
  661. data/fixtures/minify-css-app/source/stylesheets/base/_variables.scss +42 -0
  662. data/fixtures/minify-css-app/source/stylesheets/bourbon/_bourbon-deprecated-upcoming.scss +411 -0
  663. data/fixtures/minify-css-app/source/stylesheets/bourbon/_bourbon.scss +87 -0
  664. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-color.scss +26 -0
  665. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-radius.scss +48 -0
  666. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-style.scss +25 -0
  667. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-width.scss +25 -0
  668. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_buttons.scss +64 -0
  669. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_clearfix.scss +25 -0
  670. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_ellipsis.scss +30 -0
  671. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_font-stacks.scss +31 -0
  672. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_hide-text.scss +27 -0
  673. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_margin.scss +26 -0
  674. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_padding.scss +26 -0
  675. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_position.scss +48 -0
  676. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_prefixer.scss +66 -0
  677. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_retina-image.scss +25 -0
  678. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_size.scss +51 -0
  679. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_text-inputs.scss +113 -0
  680. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_timing-functions.scss +34 -0
  681. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_triangle.scss +63 -0
  682. data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_word-wrap.scss +29 -0
  683. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_animation.scss +43 -0
  684. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_appearance.scss +3 -0
  685. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_backface-visibility.scss +3 -0
  686. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_background-image.scss +42 -0
  687. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_background.scss +55 -0
  688. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_border-image.scss +59 -0
  689. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_calc.scss +4 -0
  690. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_columns.scss +47 -0
  691. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_filter.scss +4 -0
  692. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_flex-box.scss +287 -0
  693. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_font-face.scss +24 -0
  694. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_font-feature-settings.scss +4 -0
  695. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_hidpi-media-query.scss +10 -0
  696. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_hyphens.scss +4 -0
  697. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_image-rendering.scss +14 -0
  698. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_keyframes.scss +36 -0
  699. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_linear-gradient.scss +38 -0
  700. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_perspective.scss +8 -0
  701. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_placeholder.scss +8 -0
  702. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_radial-gradient.scss +39 -0
  703. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_selection.scss +42 -0
  704. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_text-decoration.scss +19 -0
  705. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_transform.scss +15 -0
  706. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_transition.scss +71 -0
  707. data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_user-select.scss +3 -0
  708. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_assign-inputs.scss +11 -0
  709. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_contains-falsy.scss +20 -0
  710. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_contains.scss +26 -0
  711. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-length.scss +11 -0
  712. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-light.scss +21 -0
  713. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-number.scss +11 -0
  714. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-size.scss +13 -0
  715. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_modular-scale.scss +69 -0
  716. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_px-to-em.scss +13 -0
  717. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_px-to-rem.scss +15 -0
  718. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_shade.scss +24 -0
  719. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_strip-units.scss +17 -0
  720. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_tint.scss +24 -0
  721. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_transition-property-name.scss +22 -0
  722. data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_unpack.scss +27 -0
  723. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_convert-units.scss +21 -0
  724. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_directional-values.scss +96 -0
  725. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_font-source-declaration.scss +43 -0
  726. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_gradient-positions-parser.scss +13 -0
  727. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-angle-parser.scss +25 -0
  728. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-gradient-parser.scss +41 -0
  729. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-positions-parser.scss +61 -0
  730. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-side-corner-parser.scss +31 -0
  731. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-arg-parser.scss +69 -0
  732. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-gradient-parser.scss +50 -0
  733. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-positions-parser.scss +18 -0
  734. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_render-gradients.scss +26 -0
  735. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_shape-size-stripper.scss +10 -0
  736. data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_str-to-num.scss +50 -0
  737. data/fixtures/minify-css-app/source/stylesheets/bourbon/settings/_asset-pipeline.scss +7 -0
  738. data/fixtures/minify-css-app/source/stylesheets/bourbon/settings/_prefixer.scss +9 -0
  739. data/fixtures/minify-css-app/source/stylesheets/bourbon/settings/_px-to-em.scss +1 -0
  740. data/fixtures/minify-css-app/source/stylesheets/report.css +1 -0
  741. data/fixtures/minify-css-app/source/stylesheets/site.css.sass +7 -0
  742. data/fixtures/minify-css-app/source/stylesheets/site.xcss.sass +6 -0
  743. data/fixtures/minify-js-app/config.rb +0 -0
  744. data/fixtures/minify-js-app/source/inline-coffeescript.html.haml +3 -0
  745. data/fixtures/minify-js-app/source/inline-js.html.haml +28 -0
  746. data/fixtures/minify-js-app/source/inline-js.php +22 -0
  747. data/fixtures/minify-js-app/source/javascripts/coffee_test.js.coffee +3 -0
  748. data/fixtures/minify-js-app/source/javascripts/js_test.js +8 -0
  749. data/fixtures/minify-js-app/source/javascripts/js_test.xjs +8 -0
  750. data/fixtures/minify-js-app/source/more-js/other.js +8 -0
  751. data/fixtures/missing-tilt-library-app/config.rb +2 -0
  752. data/fixtures/missing-tilt-library-app/source/danger-zone/more-wiki.html.wiki +1 -0
  753. data/fixtures/missing-tilt-library-app/source/safe-zone/my-wiki.html.wiki +1 -0
  754. data/fixtures/missing-tilt-library-app/source/textile-source.html.textile +1 -0
  755. data/fixtures/missing-tilt-library-app/source/wiki-source.html.wiki +1 -0
  756. data/fixtures/more-extensionless-text-files-app/config.rb +1 -0
  757. data/fixtures/more-extensionless-text-files-app/source/CNAME +1 -0
  758. data/fixtures/more-extensionless-text-files-app/source/LICENSE +1 -0
  759. data/fixtures/more-extensionless-text-files-app/source/README +1 -0
  760. data/fixtures/more-extensionless-text-files-app/source/index.html +1 -0
  761. data/fixtures/more-frontmatter-settings-app/config.rb +4 -0
  762. data/fixtures/more-frontmatter-settings-app/source/alternate_layout.html.erb +5 -0
  763. data/fixtures/more-frontmatter-settings-app/source/ignored.html.erb +5 -0
  764. data/fixtures/more-frontmatter-settings-app/source/layouts/alternate.erb +3 -0
  765. data/fixtures/more-frontmatter-settings-app/source/no_index.html.erb +5 -0
  766. data/fixtures/more-ignore-app/source/about.html.erb +1 -0
  767. data/fixtures/more-ignore-app/source/images/icon/messages.png +0 -0
  768. data/fixtures/more-ignore-app/source/images/pic.png +0 -0
  769. data/fixtures/more-ignore-app/source/images/portrait.jpg +0 -0
  770. data/fixtures/more-ignore-app/source/index.html.erb +0 -0
  771. data/fixtures/more-ignore-app/source/plain.html +1 -0
  772. data/fixtures/more-ignore-app/source/reports/another.html +0 -0
  773. data/fixtures/more-ignore-app/source/reports/index.html +0 -0
  774. data/fixtures/more-markdown-app/source/layouts/layout.erb +13 -0
  775. data/fixtures/more-markdown-app/source/with_layout.html.markdown +4 -0
  776. data/fixtures/more-markdown-app/source/with_layout_erb.html.markdown.erb +4 -0
  777. data/fixtures/more-preview-app/config.rb +0 -0
  778. data/fixtures/more-preview-app/source/content.html.erb +1 -0
  779. data/fixtures/more-preview-app/source/layout.erb +1 -0
  780. data/fixtures/more-preview-app/source/stylesheets/_partial.sass +2 -0
  781. data/fixtures/more-preview-app/source/stylesheets/_partial2.css.sass +2 -0
  782. data/fixtures/more-preview-app/source/stylesheets/main.css.sass +4 -0
  783. data/fixtures/more-preview-app/source/stylesheets/main2.css.sass +4 -0
  784. data/fixtures/more-preview-app/source/stylesheets/plain.css.sass +2 -0
  785. data/fixtures/more-traversal-app/config.rb +7 -0
  786. data/fixtures/more-traversal-app/source/directory-indexed.html.erb +0 -0
  787. data/fixtures/more-traversal-app/source/directory-indexed/sibling.html.erb +3 -0
  788. data/fixtures/more-traversal-app/source/directory-indexed/sibling2.html.erb +3 -0
  789. data/fixtures/more-traversal-app/source/directory-indexed/sub2/index.html.erb +0 -0
  790. data/fixtures/more-traversal-app/source/directory-indexed/sub3/deep.html.erb +0 -0
  791. data/fixtures/more-traversal-app/source/index.html.erb +0 -0
  792. data/fixtures/more-traversal-app/source/layout.erb +21 -0
  793. data/fixtures/more-traversal-app/source/proxied.html.erb +0 -0
  794. data/fixtures/more-traversal-app/source/root.html.erb +0 -0
  795. data/fixtures/more-traversal-app/source/sub/index.html.erb +0 -0
  796. data/fixtures/more-traversal-app/source/sub/sibling.html.erb +0 -0
  797. data/fixtures/more-traversal-app/source/sub/sibling2.html.erb +0 -0
  798. data/fixtures/more-traversal-app/source/sub/sub2/index.html.erb +0 -0
  799. data/fixtures/more-traversal-app/source/sub/sub3/deep.html.erb +0 -0
  800. data/fixtures/multiple-data-sources-app/config.rb +3 -0
  801. data/fixtures/multiple-data-sources-app/data/data.yml +1 -0
  802. data/fixtures/multiple-data-sources-app/data/two.yml +1 -0
  803. data/fixtures/multiple-data-sources-app/data0/one.yml +1 -0
  804. data/fixtures/multiple-data-sources-app/data1/data1.yml +1 -0
  805. data/fixtures/multiple-data-sources-app/data1/one.yml +1 -0
  806. data/fixtures/multiple-data-sources-app/data2/data2.yml +1 -0
  807. data/fixtures/multiple-data-sources-app/data2/two.yml +1 -0
  808. data/fixtures/multiple-data-sources-app/source/index.html.erb +5 -0
  809. data/fixtures/multiple-layouts/config.rb +0 -0
  810. data/fixtures/multiple-layouts/source/index.html.erb +1 -0
  811. data/fixtures/multiple-layouts/source/layout.erb +9 -0
  812. data/fixtures/multiple-layouts/source/layout.str +9 -0
  813. data/fixtures/multiple-sources-app/config.rb +3 -0
  814. data/fixtures/multiple-sources-app/source/index.html.erb +1 -0
  815. data/fixtures/multiple-sources-app/source/override-in-two.html.erb +1 -0
  816. data/fixtures/multiple-sources-app/source0/override-in-one.html.erb +1 -0
  817. data/fixtures/multiple-sources-app/source1/index1.html.erb +1 -0
  818. data/fixtures/multiple-sources-app/source1/override-in-one.html.erb +1 -0
  819. data/fixtures/multiple-sources-app/source2/index2.html.erb +1 -0
  820. data/fixtures/multiple-sources-app/source2/override-in-two.html.erb +1 -0
  821. data/fixtures/multiple-sources-with-destination-dir/config.rb +2 -0
  822. data/fixtures/multiple-sources-with-destination-dir/external/page.html.erb +1 -0
  823. data/fixtures/multiple-sources-with-destination-dir/source/index.html.erb +1 -0
  824. data/fixtures/multiple-sources-with-duplicate-file-names-app/config.rb +2 -0
  825. data/fixtures/multiple-sources-with-duplicate-file-names-app/source/index.html.erb +1 -0
  826. data/fixtures/multiple-sources-with-duplicate-file-names-app/source2/index.html.erb +1 -0
  827. data/fixtures/multiple-sources-without-destination-dir/config.rb +1 -0
  828. data/fixtures/multiple-sources-without-destination-dir/external/page.html.erb +1 -0
  829. data/fixtures/multiple-sources-without-destination-dir/source/index.html.erb +1 -0
  830. data/fixtures/nested-data-app/config.rb +1 -0
  831. data/fixtures/nested-data-app/data/examples/deeper/stuff.yml +1 -0
  832. data/fixtures/nested-data-app/data/examples/more.yml +1 -0
  833. data/fixtures/nested-data-app/data/examples/test.yml +1 -0
  834. data/fixtures/nested-data-app/data/examples/withcontent.yaml +11 -0
  835. data/fixtures/nested-data-app/source/extracontent.html.haml.erb +4 -0
  836. data/fixtures/nested-data-app/source/test.html.erb +3 -0
  837. data/fixtures/nested-layout-app/config.rb +1 -0
  838. data/fixtures/nested-layout-app/source/another.html.markdown +7 -0
  839. data/fixtures/nested-layout-app/source/data-one.html.erb +5 -0
  840. data/fixtures/nested-layout-app/source/data-two.html.erb +5 -0
  841. data/fixtures/nested-layout-app/source/haml-test.html.markdown +7 -0
  842. data/fixtures/nested-layout-app/source/index.html.erb +6 -0
  843. data/fixtures/nested-layout-app/source/layouts/inner.erb +7 -0
  844. data/fixtures/nested-layout-app/source/layouts/inner_haml.haml +7 -0
  845. data/fixtures/nested-layout-app/source/layouts/inner_slim.slim +7 -0
  846. data/fixtures/nested-layout-app/source/layouts/master.erb +9 -0
  847. data/fixtures/nested-layout-app/source/layouts/master_haml.haml +7 -0
  848. data/fixtures/nested-layout-app/source/layouts/master_slim.slim +7 -0
  849. data/fixtures/nested-layout-app/source/layouts/outer.erb +8 -0
  850. data/fixtures/nested-layout-app/source/layouts/outer_haml.haml +7 -0
  851. data/fixtures/nested-layout-app/source/layouts/outer_slim.slim +7 -0
  852. data/fixtures/nested-layout-app/source/slim-test.html.markdown +7 -0
  853. data/fixtures/no-layout/config.rb +0 -0
  854. data/fixtures/no-layout/source/index.html.erb +1 -0
  855. data/fixtures/padrino-helpers-app/config.rb +7 -0
  856. data/fixtures/padrino-helpers-app/source/former_padrino_test.html.erb +6 -0
  857. data/fixtures/page-classes-app/config.rb +2 -0
  858. data/fixtures/page-classes-app/source/1-folder/1-inside-with-numeric.html.erb +1 -0
  859. data/fixtures/page-classes-app/source/1-starts-with-numeric.html.erb +1 -0
  860. data/fixtures/page-classes-app/source/2-starts-with-numeric-custom.html.erb +1 -0
  861. data/fixtures/page-classes-app/source/page-classes.html.erb +1 -0
  862. data/fixtures/page-classes-app/source/sub1/page-classes.html.erb +1 -0
  863. data/fixtures/page-classes-app/source/sub1/sub2/page-classes.html.erb +1 -0
  864. data/fixtures/page-helper-layout-block-app/config.rb +6 -0
  865. data/fixtures/page-helper-layout-block-app/source/index.html.erb +1 -0
  866. data/fixtures/page-helper-layout-block-app/source/layouts/alt.erb +3 -0
  867. data/fixtures/page-helper-layout-block-app/source/layouts/layout.erb +3 -0
  868. data/fixtures/page-helper-layout-block-app/source/path/child.html.erb +1 -0
  869. data/fixtures/page-helper-layout-block-app/source/path/index.html.erb +1 -0
  870. data/fixtures/paginate-app/config.rb +0 -0
  871. data/fixtures/paginate-app/source/archive/2011/index.html.erb +20 -0
  872. data/fixtures/paginate-app/source/blog/2011-01-01-test-article.html.markdown +6 -0
  873. data/fixtures/paginate-app/source/blog/2011-01-02-test-article.html.markdown +6 -0
  874. data/fixtures/paginate-app/source/blog/2011-01-03-test-article.html.markdown +6 -0
  875. data/fixtures/paginate-app/source/blog/2011-01-04-test-article.html.markdown +6 -0
  876. data/fixtures/paginate-app/source/blog/2011-01-05-test-article.html.markdown +6 -0
  877. data/fixtures/paginate-app/source/blog/2011-02-01-test-article.html.markdown +6 -0
  878. data/fixtures/paginate-app/source/blog/2011-02-02-test-article.html.markdown +6 -0
  879. data/fixtures/paginate-app/source/index.html.erb +15 -0
  880. data/fixtures/paginate-app/source/tag.html.erb +23 -0
  881. data/fixtures/partial-chained_templates-app/config.rb +0 -0
  882. data/fixtures/partials-app/config.rb +0 -0
  883. data/fixtures/partials-app/source/_code_snippet.html +1 -0
  884. data/fixtures/partials-app/source/_locals.erb +1 -0
  885. data/fixtures/partials-app/source/_main.erb +1 -0
  886. data/fixtures/partials-app/source/_main.str +1 -0
  887. data/fixtures/partials-app/source/images/tiger.svg +725 -0
  888. data/fixtures/partials-app/source/index.html.erb +3 -0
  889. data/fixtures/partials-app/source/locals.html.erb +1 -0
  890. data/fixtures/partials-app/source/second.html.str +3 -0
  891. data/fixtures/partials-app/source/shared/_footer.erb +1 -0
  892. data/fixtures/partials-app/source/shared/_header.erb +1 -0
  893. data/fixtures/partials-app/source/shared/_snippet.html.erb +1 -0
  894. data/fixtures/partials-app/source/static_underscore.html.erb +1 -0
  895. data/fixtures/partials-app/source/sub/_local.erb +1 -0
  896. data/fixtures/partials-app/source/sub/index.html.erb +3 -0
  897. data/fixtures/partials-app/source/svg.html.erb +1 -0
  898. data/fixtures/partials-app/source/using_snippet.html.erb +1 -0
  899. data/fixtures/passthrough-app/source/.htaccess +1 -0
  900. data/fixtures/passthrough-app/source/inline-coffeescript.html.haml +3 -0
  901. data/fixtures/passthrough-app/source/inline-css.html.haml +4 -0
  902. data/fixtures/passthrough-app/source/inline-js.html.haml +28 -0
  903. data/fixtures/passthrough-app/source/javascripts/coffee_test.js.coffee +3 -0
  904. data/fixtures/passthrough-app/source/javascripts/js_test.js +8 -0
  905. data/fixtures/passthrough-app/source/stylesheets/site.css.sass +5 -0
  906. data/fixtures/preview-app/config.rb +0 -0
  907. data/fixtures/preview-app/source/content.html.erb +1 -0
  908. data/fixtures/preview-app/source/layout.erb +1 -0
  909. data/fixtures/proxy-pages-app/config.rb +18 -0
  910. data/fixtures/proxy-pages-app/source/real.html +1 -0
  911. data/fixtures/proxy-pages-app/source/real/index.html.erb +5 -0
  912. data/fixtures/proxy-pages-app/source/should_be_ignored3.html +1 -0
  913. data/fixtures/proxy-pages-app/source/should_be_ignored6.html +1 -0
  914. data/fixtures/proxy-pages-app/source/should_be_ignored7.html +1 -0
  915. data/fixtures/proxy-pages-app/source/should_be_ignored8.html +1 -0
  916. data/fixtures/queryable-app/config.rb +0 -0
  917. data/fixtures/queryable-app/source/2010-08-08-test-document-file.html.markdown +8 -0
  918. data/fixtures/queryable-app/source/2010-08-09-another-test-document.html.markdown +10 -0
  919. data/fixtures/queryable-app/source/2011-12-26-some-test-document.html.markdown +6 -0
  920. data/fixtures/queryable-app/source/document_with_date_in_yaml.html.markdown +7 -0
  921. data/fixtures/queryable-app/source/document_without_date.html.markdown +7 -0
  922. data/fixtures/related-files-app/config.rb +0 -0
  923. data/fixtures/related-files-app/source/index.html.erb +0 -0
  924. data/fixtures/related-files-app/source/partials/_test.erb +0 -0
  925. data/fixtures/related-files-app/source/partials/_test2.haml +0 -0
  926. data/fixtures/related-files-app/source/stylesheets/_include3.sass +0 -0
  927. data/fixtures/related-files-app/source/stylesheets/_include4.scss +0 -0
  928. data/fixtures/related-files-app/source/stylesheets/include1.css +0 -0
  929. data/fixtures/related-files-app/source/stylesheets/include2.css.scss +0 -0
  930. data/fixtures/related-files-app/source/stylesheets/site.css.scss +0 -0
  931. data/fixtures/relative-app/config.rb +0 -0
  932. data/fixtures/relative-app/source/images/blank.gif +0 -0
  933. data/fixtures/relative-app/source/stylesheets/relative_assets.css.sass +2 -0
  934. data/fixtures/relative-assets-app/config.rb +5 -0
  935. data/fixtures/relative-assets-app/source/absolute_image_relative_css.html.erb +9 -0
  936. data/fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.eot +0 -0
  937. data/fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.svg +0 -0
  938. data/fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.ttf +0 -0
  939. data/fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.woff +0 -0
  940. data/fixtures/relative-assets-app/source/images/blank.gif +0 -0
  941. data/fixtures/relative-assets-app/source/img/blank.gif +0 -0
  942. data/fixtures/relative-assets-app/source/javascripts/app.js +3 -0
  943. data/fixtures/relative-assets-app/source/javascripts/application.js +8 -0
  944. data/fixtures/relative-assets-app/source/relative_image.html.erb +9 -0
  945. data/fixtures/relative-assets-app/source/relative_image_absolute_css.html.erb +9 -0
  946. data/fixtures/relative-assets-app/source/stylesheets/fonts.css +10 -0
  947. data/fixtures/relative-assets-app/source/stylesheets/fonts2.css.scss +10 -0
  948. data/fixtures/relative-assets-app/source/stylesheets/relative_assets.css.sass +2 -0
  949. data/fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset-sass.sass +1 -0
  950. data/fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset.scss +1 -0
  951. data/fixtures/sass-assets-path-app/config.rb +4 -0
  952. data/fixtures/sass-assets-path-app/my-vendor/stylesheets/_partial.sass +2 -0
  953. data/fixtures/sass-assets-path-app/source/stylesheets/plain.css.sass +16 -0
  954. data/fixtures/scss-app/config.rb +0 -0
  955. data/fixtures/scss-app/source/stylesheets/layout.css.sass +2 -0
  956. data/fixtures/scss-app/source/stylesheets/site_scss.css.scss +3 -0
  957. data/fixtures/sinatra-app/config.rb +14 -0
  958. data/fixtures/sinatra-app/source/index.html.erb +5 -0
  959. data/fixtures/slim-content-for-app/config.rb +0 -0
  960. data/fixtures/slim-content-for-app/source/index.html.slim +7 -0
  961. data/fixtures/slim-content-for-app/source/layouts/layout.slim +15 -0
  962. data/fixtures/strip-url-app/config.rb +0 -0
  963. data/fixtures/strip-url-app/source/index.html.erb +1 -0
  964. data/fixtures/strip-url-app/source/other.html.erb +1 -0
  965. data/fixtures/strip-url-app/source/subdir/index.html.erb +1 -0
  966. data/fixtures/stylus-preview-app/config.rb +0 -0
  967. data/fixtures/stylus-preview-app/source/content.html.erb +5 -0
  968. data/fixtures/stylus-preview-app/source/stylesheets/_partial.styl +2 -0
  969. data/fixtures/stylus-preview-app/source/stylesheets/_partial2.css.styl +2 -0
  970. data/fixtures/stylus-preview-app/source/stylesheets/main.css.styl +4 -0
  971. data/fixtures/stylus-preview-app/source/stylesheets/main2.css.styl +4 -0
  972. data/fixtures/stylus-preview-app/source/stylesheets/plain.css.styl +2 -0
  973. data/fixtures/traversal-app/config.rb +5 -0
  974. data/fixtures/traversal-app/source/.htaccess +0 -0
  975. data/fixtures/traversal-app/source/directory-indexed.html.erb +0 -0
  976. data/fixtures/traversal-app/source/directory-indexed/sibling.html.erb +3 -0
  977. data/fixtures/traversal-app/source/directory-indexed/sibling2.html.erb +3 -0
  978. data/fixtures/traversal-app/source/directory-indexed/sub2/index.html.erb +0 -0
  979. data/fixtures/traversal-app/source/directory-indexed/sub3/deep.html.erb +0 -0
  980. data/fixtures/traversal-app/source/index.html.erb +0 -0
  981. data/fixtures/traversal-app/source/layout.erb +21 -0
  982. data/fixtures/traversal-app/source/proxied.html.erb +0 -0
  983. data/fixtures/traversal-app/source/root.html.erb +0 -0
  984. data/fixtures/traversal-app/source/sub/index.html.erb +0 -0
  985. data/fixtures/traversal-app/source/sub/sibling.html.erb +0 -0
  986. data/fixtures/traversal-app/source/sub/sibling2.html.erb +0 -0
  987. data/fixtures/traversal-app/source/sub/sub2/index.html.erb +0 -0
  988. data/fixtures/traversal-app/source/sub/sub3/deep.html.erb +0 -0
  989. data/fixtures/v4-extension-callbacks/config.rb +42 -0
  990. data/fixtures/v4-extension-callbacks/source/index.html.erb +2 -0
  991. data/fixtures/wildcard-app/config.rb +1 -0
  992. data/fixtures/wildcard-app/source/admin/index.html.erb +1 -0
  993. data/fixtures/wildcard-app/source/admin/page.html.erb +1 -0
  994. data/fixtures/wildcard-app/source/index.html.erb +1 -0
  995. data/fixtures/wildcard-app/source/layouts/admin.erb +2 -0
  996. data/fixtures/wildcard-app/source/layouts/layout.erb +2 -0
  997. data/fixtures/wildcard-directory-index-app/config.rb +2 -0
  998. data/fixtures/wildcard-directory-index-app/source/admin/index.html.erb +1 -0
  999. data/fixtures/wildcard-directory-index-app/source/admin/page.html.erb +1 -0
  1000. data/fixtures/wildcard-directory-index-app/source/index.html.erb +1 -0
  1001. data/fixtures/wildcard-directory-index-app/source/layouts/admin.erb +2 -0
  1002. data/fixtures/wildcard-directory-index-app/source/layouts/layout.erb +2 -0
  1003. data/lib/middleman-core.rb +14 -0
  1004. data/lib/middleman-core/application.rb +433 -0
  1005. data/lib/middleman-core/builder.rb +297 -0
  1006. data/lib/middleman-core/callback_manager.rb +68 -0
  1007. data/lib/middleman-core/config_context.rb +63 -0
  1008. data/lib/middleman-core/configuration.rb +157 -0
  1009. data/lib/middleman-core/contracts.rb +112 -0
  1010. data/lib/middleman-core/core_extensions.rb +146 -0
  1011. data/lib/middleman-core/core_extensions/collections.rb +110 -0
  1012. data/lib/middleman-core/core_extensions/collections/lazy_root.rb +30 -0
  1013. data/lib/middleman-core/core_extensions/collections/lazy_step.rb +48 -0
  1014. data/lib/middleman-core/core_extensions/collections/pagination.rb +59 -0
  1015. data/lib/middleman-core/core_extensions/collections/step_context.rb +27 -0
  1016. data/lib/middleman-core/core_extensions/data.rb +223 -0
  1017. data/lib/middleman-core/core_extensions/default_helpers.rb +289 -0
  1018. data/lib/middleman-core/core_extensions/external_helpers.rb +30 -0
  1019. data/lib/middleman-core/core_extensions/file_watcher.rb +78 -0
  1020. data/lib/middleman-core/core_extensions/front_matter.rb +91 -0
  1021. data/lib/middleman-core/core_extensions/i18n.rb +295 -0
  1022. data/lib/middleman-core/core_extensions/inline_url_rewriter.rb +150 -0
  1023. data/lib/middleman-core/core_extensions/rendering.rb +55 -0
  1024. data/lib/middleman-core/core_extensions/routing.rb +66 -0
  1025. data/lib/middleman-core/core_extensions/show_exceptions.rb +12 -0
  1026. data/lib/middleman-core/dns_resolver.rb +73 -0
  1027. data/lib/middleman-core/dns_resolver/basic_network_resolver.rb +52 -0
  1028. data/lib/middleman-core/dns_resolver/hosts_resolver.rb +63 -0
  1029. data/lib/middleman-core/dns_resolver/local_link_resolver.rb +44 -0
  1030. data/lib/middleman-core/dns_resolver/network_resolver.rb +42 -0
  1031. data/lib/middleman-core/extension.rb +523 -0
  1032. data/lib/middleman-core/extension_manager.rb +95 -0
  1033. data/lib/middleman-core/extensions.rb +137 -0
  1034. data/lib/middleman-core/extensions/asset_hash.rb +101 -0
  1035. data/lib/middleman-core/extensions/asset_host.rb +40 -0
  1036. data/lib/middleman-core/extensions/automatic_alt_tags.rb +28 -0
  1037. data/lib/middleman-core/extensions/automatic_image_sizes.rb +48 -0
  1038. data/lib/middleman-core/extensions/cache_buster.rb +23 -0
  1039. data/lib/middleman-core/extensions/directory_indexes.rb +26 -0
  1040. data/lib/middleman-core/extensions/external_pipeline.rb +42 -0
  1041. data/lib/middleman-core/extensions/gzip.rb +114 -0
  1042. data/lib/middleman-core/extensions/lorem.rb +176 -0
  1043. data/lib/middleman-core/extensions/minify_css.rb +118 -0
  1044. data/lib/middleman-core/extensions/minify_javascript.rb +123 -0
  1045. data/lib/middleman-core/extensions/relative_assets.rb +53 -0
  1046. data/lib/middleman-core/file_renderer.rb +136 -0
  1047. data/lib/middleman-core/load_paths.rb +47 -0
  1048. data/lib/middleman-core/logger.rb +47 -0
  1049. data/lib/middleman-core/meta_pages.rb +112 -0
  1050. data/lib/middleman-core/meta_pages/assets/config.css +49 -0
  1051. data/lib/middleman-core/meta_pages/assets/glyphicons-halflings.png +0 -0
  1052. data/lib/middleman-core/meta_pages/assets/jquery-1.8.2.min.js +2 -0
  1053. data/lib/middleman-core/meta_pages/assets/jquery.details-1.6.min.js +6 -0
  1054. data/lib/middleman-core/meta_pages/assets/meta.css +384 -0
  1055. data/lib/middleman-core/meta_pages/assets/sitemap.css +652 -0
  1056. data/lib/middleman-core/meta_pages/assets/sitemap.js +0 -0
  1057. data/lib/middleman-core/meta_pages/config_setting.rb +37 -0
  1058. data/lib/middleman-core/meta_pages/sitemap_resource.rb +65 -0
  1059. data/lib/middleman-core/meta_pages/sitemap_tree.rb +77 -0
  1060. data/lib/middleman-core/meta_pages/templates/config.html.erb +57 -0
  1061. data/lib/middleman-core/meta_pages/templates/index.html.erb +31 -0
  1062. data/lib/middleman-core/meta_pages/templates/sitemap.html.erb +30 -0
  1063. data/lib/middleman-core/preview_server.rb +328 -0
  1064. data/lib/middleman-core/preview_server/checks.rb +81 -0
  1065. data/lib/middleman-core/preview_server/information.rb +273 -0
  1066. data/lib/middleman-core/preview_server/network_interface_inventory.rb +65 -0
  1067. data/lib/middleman-core/preview_server/server_hostname.rb +39 -0
  1068. data/lib/middleman-core/preview_server/server_information.rb +153 -0
  1069. data/lib/middleman-core/preview_server/server_information_callback_proxy.rb +35 -0
  1070. data/lib/middleman-core/preview_server/server_information_validator.rb +18 -0
  1071. data/lib/middleman-core/preview_server/server_ip_address.rb +55 -0
  1072. data/lib/middleman-core/preview_server/server_url.rb +63 -0
  1073. data/lib/middleman-core/preview_server/tcp_port_prober.rb +29 -0
  1074. data/lib/middleman-core/profiling.rb +55 -0
  1075. data/lib/middleman-core/rack.rb +147 -0
  1076. data/lib/middleman-core/renderers/coffee_script.rb +42 -0
  1077. data/lib/middleman-core/renderers/erb.rb +21 -0
  1078. data/lib/middleman-core/renderers/haml.rb +76 -0
  1079. data/lib/middleman-core/renderers/kramdown.rb +52 -0
  1080. data/lib/middleman-core/renderers/less.rb +36 -0
  1081. data/lib/middleman-core/renderers/liquid.rb +54 -0
  1082. data/lib/middleman-core/renderers/markdown.rb +43 -0
  1083. data/lib/middleman-core/renderers/redcarpet.rb +100 -0
  1084. data/lib/middleman-core/renderers/sass.rb +114 -0
  1085. data/lib/middleman-core/renderers/sass_functions.rb +114 -0
  1086. data/lib/middleman-core/renderers/slim.rb +52 -0
  1087. data/lib/middleman-core/renderers/stylus.rb +10 -0
  1088. data/lib/middleman-core/sitemap/extensions/ignores.rb +60 -0
  1089. data/lib/middleman-core/sitemap/extensions/import.rb +65 -0
  1090. data/lib/middleman-core/sitemap/extensions/move_file.rb +39 -0
  1091. data/lib/middleman-core/sitemap/extensions/on_disk.rb +74 -0
  1092. data/lib/middleman-core/sitemap/extensions/proxies.rb +119 -0
  1093. data/lib/middleman-core/sitemap/extensions/redirects.rb +84 -0
  1094. data/lib/middleman-core/sitemap/extensions/request_endpoints.rb +68 -0
  1095. data/lib/middleman-core/sitemap/extensions/traversal.rb +107 -0
  1096. data/lib/middleman-core/sitemap/resource.rb +216 -0
  1097. data/lib/middleman-core/sitemap/store.rb +260 -0
  1098. data/lib/middleman-core/sources.rb +373 -0
  1099. data/lib/middleman-core/sources/source_watcher.rb +342 -0
  1100. data/lib/middleman-core/step_definitions.rb +21 -0
  1101. data/lib/middleman-core/step_definitions/builder_steps.rb +31 -0
  1102. data/lib/middleman-core/step_definitions/commandline_steps.rb +88 -0
  1103. data/lib/middleman-core/step_definitions/middleman_steps.rb +60 -0
  1104. data/lib/middleman-core/step_definitions/server_steps.rb +124 -0
  1105. data/lib/middleman-core/template_context.rb +204 -0
  1106. data/lib/middleman-core/template_renderer.rb +241 -0
  1107. data/lib/middleman-core/util.rb +24 -0
  1108. data/lib/middleman-core/util/binary.rb +79 -0
  1109. data/lib/middleman-core/util/data.rb +135 -0
  1110. data/lib/middleman-core/util/files.rb +134 -0
  1111. data/lib/middleman-core/util/paths.rb +251 -0
  1112. data/lib/middleman-core/util/rack.rb +52 -0
  1113. data/lib/middleman-core/util/uri_templates.rb +97 -0
  1114. data/lib/middleman-core/version.rb +5 -0
  1115. data/lib/middleman/rack.rb +5 -0
  1116. data/middleman-core.gemspec +60 -0
  1117. data/spec/middleman-core/binary_spec/middleman +0 -0
  1118. data/spec/middleman-core/binary_spec/middleman.png +0 -0
  1119. data/spec/middleman-core/binary_spec/plain.txt +1 -0
  1120. data/spec/middleman-core/binary_spec/stars.svgz +0 -0
  1121. data/spec/middleman-core/binary_spec/unicode +1 -0
  1122. data/spec/middleman-core/binary_spec/unicode.txt +1 -0
  1123. data/spec/middleman-core/callbacks_spec.rb +132 -0
  1124. data/spec/middleman-core/core_extensions/data_spec.rb +41 -0
  1125. data/spec/middleman-core/dns_resolver_spec.rb +118 -0
  1126. data/spec/middleman-core/preview_server/server_hostname_spec.rb +39 -0
  1127. data/spec/middleman-core/preview_server/server_ip_address_spec.rb +43 -0
  1128. data/spec/middleman-core/util_spec.rb +193 -0
  1129. data/spec/spec_helper.rb +36 -0
  1130. data/spec/support/given.rb +42 -0
  1131. metadata +2463 -0
@@ -0,0 +1,41 @@
1
+ @function _linear-gradient-parser($image) {
2
+ $image: unquote($image);
3
+ $gradients: ();
4
+ $start: str-index($image, "(");
5
+ $end: str-index($image, ",");
6
+ $first-val: str-slice($image, $start + 1, $end - 1);
7
+
8
+ $prefix: str-slice($image, 1, $start);
9
+ $suffix: str-slice($image, $end, str-length($image));
10
+
11
+ $has-multiple-vals: str-index($first-val, " ");
12
+ $has-single-position: unquote(_position-flipper($first-val) + "");
13
+ $has-angle: is-number(str-slice($first-val, 1, 1));
14
+
15
+ @if $has-multiple-vals {
16
+ $gradients: _linear-side-corner-parser($image, $first-val, $prefix, $suffix, $has-multiple-vals);
17
+ }
18
+
19
+ @else if $has-single-position != "" {
20
+ $pos: unquote($has-single-position + "");
21
+
22
+ $gradients: (
23
+ webkit-image: -webkit- + $image,
24
+ spec-image: $prefix + "to " + $pos + $suffix
25
+ );
26
+ }
27
+
28
+ @else if $has-angle {
29
+ // Rotate degree for webkit
30
+ $gradients: _linear-angle-parser($image, $first-val, $prefix, $suffix);
31
+ }
32
+
33
+ @else {
34
+ $gradients: (
35
+ webkit-image: -webkit- + $image,
36
+ spec-image: $image
37
+ );
38
+ }
39
+
40
+ @return $gradients;
41
+ }
@@ -0,0 +1,61 @@
1
+ @function _linear-positions-parser($pos) {
2
+ $type: type-of(nth($pos, 1));
3
+ $spec: null;
4
+ $degree: null;
5
+ $side: null;
6
+ $corner: null;
7
+ $length: length($pos);
8
+ // Parse Side and corner positions
9
+ @if ($length > 1) {
10
+ @if nth($pos, 1) == "to" { // Newer syntax
11
+ $side: nth($pos, 2);
12
+
13
+ @if $length == 2 { // eg. to top
14
+ // Swap for backwards compatability
15
+ $degree: _position-flipper(nth($pos, 2));
16
+ }
17
+ @else if $length == 3 { // eg. to top left
18
+ $corner: nth($pos, 3);
19
+ }
20
+ }
21
+ @else if $length == 2 { // Older syntax ("top left")
22
+ $side: _position-flipper(nth($pos, 1));
23
+ $corner: _position-flipper(nth($pos, 2));
24
+ }
25
+
26
+ @if ("#{$side} #{$corner}" == "left top") or ("#{$side} #{$corner}" == "top left") {
27
+ $degree: _position-flipper(#{$side}) _position-flipper(#{$corner});
28
+ }
29
+ @else if ("#{$side} #{$corner}" == "right top") or ("#{$side} #{$corner}" == "top right") {
30
+ $degree: _position-flipper(#{$side}) _position-flipper(#{$corner});
31
+ }
32
+ @else if ("#{$side} #{$corner}" == "right bottom") or ("#{$side} #{$corner}" == "bottom right") {
33
+ $degree: _position-flipper(#{$side}) _position-flipper(#{$corner});
34
+ }
35
+ @else if ("#{$side} #{$corner}" == "left bottom") or ("#{$side} #{$corner}" == "bottom left") {
36
+ $degree: _position-flipper(#{$side}) _position-flipper(#{$corner});
37
+ }
38
+ $spec: to $side $corner;
39
+ }
40
+ @else if $length == 1 {
41
+ // Swap for backwards compatability
42
+ @if $type == string {
43
+ $degree: $pos;
44
+ $spec: to _position-flipper($pos);
45
+ }
46
+ @else {
47
+ $degree: -270 - $pos; //rotate the gradient opposite from spec
48
+ $spec: $pos;
49
+ }
50
+ }
51
+ $degree: unquote($degree + ",");
52
+ $spec: unquote($spec + ",");
53
+ @return $degree $spec;
54
+ }
55
+
56
+ @function _position-flipper($pos) {
57
+ @return if($pos == left, right, null)
58
+ if($pos == right, left, null)
59
+ if($pos == top, bottom, null)
60
+ if($pos == bottom, top, null);
61
+ }
@@ -0,0 +1,31 @@
1
+ // Private function for linear-gradient-parser
2
+ @function _linear-side-corner-parser($image, $first-val, $prefix, $suffix, $has-multiple-vals) {
3
+ $val-1: str-slice($first-val, 1, $has-multiple-vals - 1);
4
+ $val-2: str-slice($first-val, $has-multiple-vals + 1, str-length($first-val));
5
+ $val-3: null;
6
+ $has-val-3: str-index($val-2, " ");
7
+
8
+ @if $has-val-3 {
9
+ $val-3: str-slice($val-2, $has-val-3 + 1, str-length($val-2));
10
+ $val-2: str-slice($val-2, 1, $has-val-3 - 1);
11
+ }
12
+
13
+ $pos: _position-flipper($val-1) _position-flipper($val-2) _position-flipper($val-3);
14
+ $pos: unquote($pos + "");
15
+
16
+ // Use old spec for webkit
17
+ @if $val-1 == "to" {
18
+ @return (
19
+ webkit-image: -webkit- + $prefix + $pos + $suffix,
20
+ spec-image: $image
21
+ );
22
+ }
23
+
24
+ // Bring the code up to spec
25
+ @else {
26
+ @return (
27
+ webkit-image: -webkit- + $image,
28
+ spec-image: $prefix + "to " + $pos + $suffix
29
+ );
30
+ }
31
+ }
@@ -0,0 +1,69 @@
1
+ @function _radial-arg-parser($g1, $g2, $pos, $shape-size) {
2
+ @each $value in $g1, $g2 {
3
+ $first-val: nth($value, 1);
4
+ $pos-type: type-of($first-val);
5
+ $spec-at-index: null;
6
+
7
+ // Determine if spec was passed to mixin
8
+ @if type-of($value) == list {
9
+ $spec-at-index: if(index($value, at), index($value, at), false);
10
+ }
11
+ @if $spec-at-index {
12
+ @if $spec-at-index > 1 {
13
+ @for $i from 1 through ($spec-at-index - 1) {
14
+ $shape-size: $shape-size nth($value, $i);
15
+ }
16
+ @for $i from ($spec-at-index + 1) through length($value) {
17
+ $pos: $pos nth($value, $i);
18
+ }
19
+ }
20
+ @else if $spec-at-index == 1 {
21
+ @for $i from ($spec-at-index + 1) through length($value) {
22
+ $pos: $pos nth($value, $i);
23
+ }
24
+ }
25
+ $g1: null;
26
+ }
27
+
28
+ // If not spec calculate correct values
29
+ @else {
30
+ @if ($pos-type != color) or ($first-val != "transparent") {
31
+ @if ($pos-type == number)
32
+ or ($first-val == "center")
33
+ or ($first-val == "top")
34
+ or ($first-val == "right")
35
+ or ($first-val == "bottom")
36
+ or ($first-val == "left") {
37
+
38
+ $pos: $value;
39
+
40
+ @if $pos == $g1 {
41
+ $g1: null;
42
+ }
43
+ }
44
+
45
+ @else if
46
+ ($first-val == "ellipse")
47
+ or ($first-val == "circle")
48
+ or ($first-val == "closest-side")
49
+ or ($first-val == "closest-corner")
50
+ or ($first-val == "farthest-side")
51
+ or ($first-val == "farthest-corner")
52
+ or ($first-val == "contain")
53
+ or ($first-val == "cover") {
54
+
55
+ $shape-size: $value;
56
+
57
+ @if $value == $g1 {
58
+ $g1: null;
59
+ }
60
+
61
+ @else if $value == $g2 {
62
+ $g2: null;
63
+ }
64
+ }
65
+ }
66
+ }
67
+ }
68
+ @return $g1, $g2, $pos, $shape-size;
69
+ }
@@ -0,0 +1,50 @@
1
+ @function _radial-gradient-parser($image) {
2
+ $image: unquote($image);
3
+ $gradients: ();
4
+ $start: str-index($image, "(");
5
+ $end: str-index($image, ",");
6
+ $first-val: str-slice($image, $start + 1, $end - 1);
7
+
8
+ $prefix: str-slice($image, 1, $start);
9
+ $suffix: str-slice($image, $end, str-length($image));
10
+
11
+ $is-spec-syntax: str-index($first-val, "at");
12
+
13
+ @if $is-spec-syntax and $is-spec-syntax > 1 {
14
+ $keyword: str-slice($first-val, 1, $is-spec-syntax - 2);
15
+ $pos: str-slice($first-val, $is-spec-syntax + 3, str-length($first-val));
16
+ $pos: append($pos, $keyword, comma);
17
+
18
+ $gradients: (
19
+ webkit-image: -webkit- + $prefix + $pos + $suffix,
20
+ spec-image: $image
21
+ );
22
+ }
23
+
24
+ @else if $is-spec-syntax == 1 {
25
+ $pos: str-slice($first-val, $is-spec-syntax + 3, str-length($first-val));
26
+
27
+ $gradients: (
28
+ webkit-image: -webkit- + $prefix + $pos + $suffix,
29
+ spec-image: $image
30
+ );
31
+ }
32
+
33
+ @else if str-index($image, "cover") or str-index($image, "contain") {
34
+ @warn "Radial-gradient needs to be updated to conform to latest spec.";
35
+
36
+ $gradients: (
37
+ webkit-image: null,
38
+ spec-image: $image
39
+ );
40
+ }
41
+
42
+ @else {
43
+ $gradients: (
44
+ webkit-image: -webkit- + $image,
45
+ spec-image: $image
46
+ );
47
+ }
48
+
49
+ @return $gradients;
50
+ }
@@ -0,0 +1,18 @@
1
+ @function _radial-positions-parser($gradient-pos) {
2
+ $shape-size: nth($gradient-pos, 1);
3
+ $pos: nth($gradient-pos, 2);
4
+ $shape-size-spec: _shape-size-stripper($shape-size);
5
+
6
+ $pre-spec: unquote(if($pos, "#{$pos}, ", null))
7
+ unquote(if($shape-size, "#{$shape-size},", null));
8
+ $pos-spec: if($pos, "at #{$pos}", null);
9
+
10
+ $spec: "#{$shape-size-spec} #{$pos-spec}";
11
+
12
+ // Add comma
13
+ @if ($spec != " ") {
14
+ $spec: "#{$spec},";
15
+ }
16
+
17
+ @return $pre-spec $spec;
18
+ }
@@ -0,0 +1,26 @@
1
+ // User for linear and radial gradients within background-image or border-image properties
2
+
3
+ @function _render-gradients($gradient-positions, $gradients, $gradient-type, $vendor: false) {
4
+ $pre-spec: null;
5
+ $spec: null;
6
+ $vendor-gradients: null;
7
+ @if $gradient-type == linear {
8
+ @if $gradient-positions {
9
+ $pre-spec: nth($gradient-positions, 1);
10
+ $spec: nth($gradient-positions, 2);
11
+ }
12
+ }
13
+ @else if $gradient-type == radial {
14
+ $pre-spec: nth($gradient-positions, 1);
15
+ $spec: nth($gradient-positions, 2);
16
+ }
17
+
18
+ @if $vendor {
19
+ $vendor-gradients: -#{$vendor}-#{$gradient-type}-gradient(#{$pre-spec} $gradients);
20
+ }
21
+ @else if $vendor == false {
22
+ $vendor-gradients: "#{$gradient-type}-gradient(#{$spec} #{$gradients})";
23
+ $vendor-gradients: unquote($vendor-gradients);
24
+ }
25
+ @return $vendor-gradients;
26
+ }
@@ -0,0 +1,10 @@
1
+ @function _shape-size-stripper($shape-size) {
2
+ $shape-size-spec: null;
3
+ @each $value in $shape-size {
4
+ @if ($value == "cover") or ($value == "contain") {
5
+ $value: null;
6
+ }
7
+ $shape-size-spec: "#{$shape-size-spec} #{$value}";
8
+ }
9
+ @return $shape-size-spec;
10
+ }
@@ -0,0 +1,50 @@
1
+ //************************************************************************//
2
+ // Helper function for linear/radial-gradient-parsers.
3
+ // Source: http://sassmeister.com/gist/9647408
4
+ //************************************************************************//
5
+ @function _str-to-num($string) {
6
+ // Matrices
7
+ $strings: "0" "1" "2" "3" "4" "5" "6" "7" "8" "9";
8
+ $numbers: 0 1 2 3 4 5 6 7 8 9;
9
+
10
+ // Result
11
+ $result: 0;
12
+ $divider: 0;
13
+ $minus: false;
14
+
15
+ // Looping through all characters
16
+ @for $i from 1 through str-length($string) {
17
+ $character: str-slice($string, $i, $i);
18
+ $index: index($strings, $character);
19
+
20
+ @if $character == "-" {
21
+ $minus: true;
22
+ }
23
+
24
+ @else if $character == "." {
25
+ $divider: 1;
26
+ }
27
+
28
+ @else {
29
+ @if not $index {
30
+ $result: if($minus, $result * -1, $result);
31
+ @return _convert-units($result, str-slice($string, $i));
32
+ }
33
+
34
+ $number: nth($numbers, $index);
35
+
36
+ @if $divider == 0 {
37
+ $result: $result * 10;
38
+ }
39
+
40
+ @else {
41
+ // Move the decimal dot to the left
42
+ $divider: $divider * 10;
43
+ $number: $number / $divider;
44
+ }
45
+
46
+ $result: $result + $number;
47
+ }
48
+ }
49
+ @return if($minus, $result * -1, $result);
50
+ }
@@ -0,0 +1,7 @@
1
+ @charset "UTF-8";
2
+
3
+ /// A global setting to enable or disable the `$asset-pipeline` variable for all functions that accept it.
4
+ ///
5
+ /// @type Bool
6
+
7
+ $asset-pipeline: false !default;
@@ -0,0 +1,9 @@
1
+ @charset "UTF-8";
2
+
3
+ /// Global variables to enable or disable vendor prefixes
4
+
5
+ $prefix-for-webkit: true !default;
6
+ $prefix-for-mozilla: true !default;
7
+ $prefix-for-microsoft: true !default;
8
+ $prefix-for-opera: true !default;
9
+ $prefix-for-spec: true !default;
@@ -0,0 +1 @@
1
+ $em-base: 16px !default;
@@ -0,0 +1 @@
1
+ p{border: 1px solid #ff6600;}
@@ -0,0 +1,7 @@
1
+ body
2
+ margin: 0px
3
+ padding: 0px
4
+
5
+ @media handheld, only screen and (device-width: 768px)
6
+ body
7
+ display: block
@@ -0,0 +1,6 @@
1
+ @import "bourbon/bourbon";
2
+ @import "base/base";
3
+
4
+ @media handheld, only screen and (device-width: 768px)
5
+ body
6
+ display: block
File without changes
@@ -0,0 +1,3 @@
1
+ :coffeescript
2
+ race = (winner, runners...) ->
3
+ print winner, runners
@@ -0,0 +1,28 @@
1
+ :javascript
2
+ ;(function() {
3
+ this;
4
+ should();
5
+ all.be();
6
+ on = { one: line };
7
+ })();
8
+
9
+ %script
10
+ :plain
11
+ ;(function() {
12
+ this;
13
+ should();
14
+ too();
15
+ })();
16
+
17
+ %script(type="text/javascript")
18
+ :plain
19
+ //<!--
20
+ ;(function() {
21
+ one;
22
+ line();
23
+ here();
24
+ })();
25
+ //-->
26
+
27
+ %script(type="text/html")
28
+ I'm a jQuery {{template}}.