├── middleman ├── .gemtest ├── features │ └── .gitkeep ├── fixtures │ └── .gitkeep ├── spec │ ├── spec_helper.rb │ └── middleman │ │ └── .gitkeep ├── .yardopts ├── .simplecov ├── lib │ └── middleman.rb └── Rakefile ├── middleman-cli ├── .gemtest ├── spec │ ├── spec_helper.rb │ └── middleman │ │ └── .gitkeep ├── fixtures │ ├── preview-server-app │ │ ├── config.rb │ │ └── source │ │ │ ├── real.html │ │ │ ├── static.html │ │ │ ├── index.html.erb │ │ │ ├── should_be_ignored.html │ │ │ ├── should_be_ignored2.html │ │ │ ├── should_be_ignored3.html │ │ │ ├── real │ │ │ └── index.html.erb │ │ │ ├── layouts │ │ │ └── custom.erb │ │ │ └── layout.erb │ └── preview-server-hook-app │ │ └── source │ │ └── index.html.erb ├── lib │ ├── middleman-core │ │ └── cli.rb │ └── middleman-cli │ │ └── templates │ │ └── extension │ │ ├── gitignore │ │ ├── lib │ │ └── lib.rb │ │ └── features │ │ └── support │ │ └── env.rb ├── Rakefile ├── .simplecov └── .yardopts ├── middleman-core ├── .gemtest ├── .rspec ├── fixtures │ ├── csspie │ │ └── config.rb │ ├── env-app │ │ ├── config.rb │ │ ├── environments │ │ │ ├── development.rb │ │ │ └── production.rb │ │ └── source │ │ │ ├── stylesheets │ │ │ └── site.css.scss │ │ │ └── index.html.erb │ ├── fonts-app │ │ ├── config.rb │ │ └── source │ │ │ ├── fonts │ │ │ ├── blank │ │ │ │ └── blank.otf │ │ │ └── StMarie-Thin.otf │ │ │ └── stylesheets │ │ │ └── fonts.css.scss │ ├── no-layout │ │ ├── config.rb │ │ └── source │ │ │ └── index.html.erb │ ├── scss-app │ │ ├── config.rb │ │ └── source │ │ │ └── stylesheets │ │ │ ├── layout.css.sass │ │ │ └── site_scss.css.scss │ ├── chained-app │ │ ├── config.rb │ │ ├── data │ │ │ └── article.yml │ │ └── source │ │ │ ├── index.html.str.erb │ │ │ └── test.erb.combobreaker.str.erb │ ├── empty-app │ │ └── not-config.rb │ ├── javascript-app │ │ └── config.rb │ ├── link-to-app │ │ ├── config.rb │ │ └── source │ │ │ ├── link_to_haml.html.haml │ │ │ ├── link_to_slim.html.slim │ │ │ └── link_to_erb.html.erb │ ├── liquid-app │ │ ├── config.rb │ │ ├── source │ │ │ ├── _liquid_partial.liquid │ │ │ ├── liquid_master.html.liquid │ │ │ └── data2.html.liquid │ │ └── data │ │ │ ├── test.yml │ │ │ └── test2.json │ ├── minify-js-app │ │ ├── config.rb │ │ └── source │ │ │ ├── javascripts │ │ │ ├── coffee_test.js.coffee │ │ │ ├── js_test.js │ │ │ └── js_test.xjs │ │ │ ├── inline-coffeescript.html.haml │ │ │ └── more-js │ │ │ └── other.js │ ├── paginate-app │ │ ├── config.rb │ │ └── source │ │ │ └── blog │ │ │ ├── 2011-01-01-test-article.html.markdown │ │ │ ├── 2011-01-02-test-article.html.markdown │ │ │ ├── 2011-01-03-test-article.html.markdown │ │ │ ├── 2011-01-04-test-article.html.markdown │ │ │ ├── 2011-01-05-test-article.html.markdown │ │ │ ├── 2011-02-01-test-article.html.markdown │ │ │ └── 2011-02-02-test-article.html.markdown │ ├── partials-app │ │ ├── config.rb │ │ └── source │ │ │ ├── _main.erb │ │ │ ├── _main.str │ │ │ ├── _locals.erb │ │ │ ├── shared │ │ │ ├── _snippet.html.erb │ │ │ ├── _footer.erb │ │ │ └── _header.erb │ │ │ ├── _code_snippet.html │ │ │ ├── sub │ │ │ ├── _local.erb │ │ │ └── index.html.erb │ │ │ ├── _block.erb │ │ │ ├── svg.html.erb │ │ │ ├── using_snippet.html.erb │ │ │ ├── static_underscore.html.erb │ │ │ ├── locals.html.erb │ │ │ ├── block.html.erb │ │ │ ├── second.html.str │ │ │ ├── index.html.erb │ │ │ └── index_missing.html.erb │ ├── preview-app │ │ ├── config.rb │ │ └── source │ │ │ ├── layout.erb │ │ │ └── content.html.erb │ ├── queryable-app │ │ ├── config.rb │ │ └── source │ │ │ ├── 2011-12-26-some-test-document.html.markdown │ │ │ ├── document_without_date.html.markdown │ │ │ ├── 2010-08-08-test-document-file.html.markdown │ │ │ ├── document_with_date_in_yaml.html.markdown │ │ │ └── 2010-08-09-another-test-document.html.markdown │ ├── relative-app │ │ ├── config.rb │ │ └── source │ │ │ ├── stylesheets │ │ │ └── relative_assets.css.sass │ │ │ └── images │ │ │ └── blank.gif │ ├── strip-url-app │ │ ├── config.rb │ │ └── source │ │ │ ├── index.html.erb │ │ │ ├── other.html.erb │ │ │ └── subdir │ │ │ └── index.html.erb │ ├── cache-buster-app │ │ ├── config.rb │ │ └── source │ │ │ ├── stylesheets │ │ │ ├── site.css.sass │ │ │ └── relative_assets.css.sass │ │ │ ├── images │ │ │ └── blank.gif │ │ │ └── cache-buster.html.erb │ ├── clean-app │ │ ├── config-empty.rb │ │ ├── source │ │ │ ├── real.html │ │ │ ├── static.html │ │ │ ├── index.html.erb │ │ │ ├── should_be_ignored.html │ │ │ ├── should_be_ignored2.html │ │ │ ├── should_be_ignored3.html │ │ │ ├── real │ │ │ │ └── index.html.erb │ │ │ ├── layouts │ │ │ │ └── custom.erb │ │ │ └── layout.erb │ │ ├── config-hidden-dir-before.rb │ │ ├── config-hidden-dir-after.rb │ │ └── config.rb │ ├── coffeescript-app │ │ ├── config.rb │ │ └── source │ │ │ ├── javascripts │ │ │ ├── broken-coffee.js.coffee │ │ │ └── coffee_test.js.coffee │ │ │ └── inline-coffeescript.html.haml │ ├── custom-layout-app2 │ │ ├── config.rb │ │ └── source │ │ │ ├── custom-layout.html.erb │ │ │ ├── custom-layout-dir │ │ │ └── index.html.erb │ │ │ └── layouts │ │ │ └── custom.erb │ ├── custom-src-app │ │ ├── src │ │ │ ├── index.html │ │ │ └── layouts │ │ │ │ └── layout.html.erb │ │ └── config.rb │ ├── gzip-app │ │ ├── source │ │ │ ├── index.html │ │ │ ├── stylesheets │ │ │ │ └── test.css │ │ │ └── javascripts │ │ │ │ └── test.js │ │ └── config.rb │ ├── import-app │ │ ├── source │ │ │ └── test.html │ │ ├── static.html │ │ ├── bower_components │ │ │ └── jquery │ │ │ │ └── src │ │ │ │ ├── outro.js │ │ │ │ ├── selector.js │ │ │ │ ├── var │ │ │ │ ├── arr.js │ │ │ │ ├── rnotwhite.js │ │ │ │ ├── strundefined.js │ │ │ │ ├── push.js │ │ │ │ ├── slice.js │ │ │ │ ├── class2type.js │ │ │ │ ├── concat.js │ │ │ │ ├── indexOf.js │ │ │ │ ├── pnum.js │ │ │ │ ├── hasOwn.js │ │ │ │ ├── toString.js │ │ │ │ └── support.js │ │ │ │ ├── ajax │ │ │ │ ├── var │ │ │ │ │ ├── rquery.js │ │ │ │ │ └── nonce.js │ │ │ │ └── parseJSON.js │ │ │ │ ├── css │ │ │ │ └── var │ │ │ │ │ ├── rmargin.js │ │ │ │ │ ├── cssExpand.js │ │ │ │ │ └── rnumnonpx.js │ │ │ │ ├── manipulation │ │ │ │ └── var │ │ │ │ │ └── rcheckableType.js │ │ │ │ ├── data │ │ │ │ └── var │ │ │ │ │ ├── data_priv.js │ │ │ │ │ └── data_user.js │ │ │ │ ├── core │ │ │ │ └── var │ │ │ │ │ └── rsingleTag.js │ │ │ │ ├── traversing │ │ │ │ └── var │ │ │ │ │ └── rneedsContext.js │ │ │ │ ├── event │ │ │ │ └── support.js │ │ │ │ ├── attributes.js │ │ │ │ └── deprecated.js │ │ └── config.rb │ ├── more-preview-app │ │ ├── config.rb │ │ └── source │ │ │ ├── layout.erb │ │ │ ├── content.html.erb │ │ │ └── stylesheets │ │ │ ├── plain.css.sass │ │ │ ├── _partial.sass │ │ │ ├── _partial2.css.sass │ │ │ ├── main.css.sass │ │ │ └── main2.css.sass │ ├── multiple-layouts │ │ ├── config.rb │ │ └── source │ │ │ ├── index.html.erb │ │ │ ├── layout.erb │ │ │ └── layout.str │ ├── related-files-app │ │ ├── config.rb │ │ └── source │ │ │ ├── index.html.erb │ │ │ ├── partials │ │ │ ├── _test.erb │ │ │ └── _test2.haml │ │ │ └── stylesheets │ │ │ ├── include1.css │ │ │ ├── _include3.sass │ │ │ ├── _include4.scss │ │ │ ├── include2.css.scss │ │ │ └── site.css.scss │ ├── sass-in-slim-app │ │ └── config.rb │ ├── stylus-preview-app │ │ ├── config.rb │ │ └── source │ │ │ ├── stylesheets │ │ │ ├── plain.css.styl │ │ │ ├── _partial.styl │ │ │ ├── _partial2.css.styl │ │ │ ├── main.css.styl │ │ │ └── main2.css.styl │ │ │ └── content.html.erb │ ├── automatic-alt-tags-app │ │ ├── config.rb │ │ └── source │ │ │ ├── auto-image-sizes.html.erb │ │ │ └── images │ │ │ └── blank.gif │ ├── automatic-image-size-app │ │ ├── config.rb │ │ └── source │ │ │ ├── auto-image-sizes.html.erb │ │ │ ├── markdown-sizes.html.markdown │ │ │ └── images │ │ │ └── blank.gif │ ├── content-type-app │ │ ├── config.rb │ │ └── source │ │ │ ├── .htaccess │ │ │ ├── README │ │ │ ├── index.html │ │ │ ├── index.php │ │ │ ├── javascripts │ │ │ └── app.js │ │ │ ├── stylesheets │ │ │ └── site.css │ │ │ ├── override.html │ │ │ └── images │ │ │ └── blank.gif │ ├── different-engine-layout │ │ ├── config.rb │ │ └── source │ │ │ ├── index.haml │ │ │ ├── index.html.str │ │ │ └── layout.erb │ ├── different-engine-partial │ │ ├── config.rb │ │ └── source │ │ │ ├── index.html.erb │ │ │ ├── shared │ │ │ ├── _footer.str │ │ │ └── _header.erb │ │ │ └── layouts │ │ │ └── layout.erb │ ├── engine-matching-layout │ │ ├── config.rb │ │ └── source │ │ │ ├── index.html.erb │ │ │ └── layout.erb │ ├── i18n-test-app │ │ ├── data │ │ │ ├── defaults_en.yml │ │ │ ├── defaults_es.yml │ │ │ └── en_defaults.yml │ │ ├── source │ │ │ ├── _country.en.erb │ │ │ ├── _country.es.erb │ │ │ ├── _site.erb │ │ │ ├── CNAME │ │ │ ├── images │ │ │ │ ├── president.en.svg │ │ │ │ └── president.es.svg │ │ │ ├── password.txt │ │ │ ├── localizable │ │ │ │ ├── images │ │ │ │ │ ├── flag.en.svg │ │ │ │ │ └── flag.es.svg │ │ │ │ ├── _state.es.erb │ │ │ │ ├── one.en.html.md │ │ │ │ ├── partials │ │ │ │ │ ├── _greeting.en.erb │ │ │ │ │ ├── _greeting.es.erb │ │ │ │ │ └── index.html.erb │ │ │ │ ├── _state.en.erb │ │ │ │ ├── morning.en.html.erb │ │ │ │ ├── morning.es.html.erb │ │ │ │ ├── one.es.html.md │ │ │ │ ├── hello.html.erb │ │ │ │ └── index.html.erb │ │ │ ├── stylesheets │ │ │ │ └── site.css │ │ │ └── layouts │ │ │ │ └── layout.erb │ │ └── locales │ │ │ ├── en.yml │ │ │ └── es.yml │ ├── ignore-app │ │ └── source │ │ │ ├── images │ │ │ ├── pic.png │ │ │ ├── portrait.jpg │ │ │ └── icon │ │ │ │ └── messages.png │ │ │ ├── index.html.erb │ │ │ ├── plain.html │ │ │ ├── about.html.erb │ │ │ └── reports │ │ │ ├── another.html │ │ │ └── index.html │ ├── indexable-app │ │ ├── source │ │ │ ├── .nojekyll │ │ │ ├── .htpasswd │ │ │ ├── leave_me_alone.html │ │ │ ├── needs_index.html │ │ │ ├── regular │ │ │ │ └── index.html │ │ │ ├── .htaccess │ │ │ ├── a_folder │ │ │ │ └── needs_index.html │ │ │ ├── evil spaces.html │ │ │ ├── regex_leave_me_alone2.html │ │ │ └── wildcard_leave_me_alone.html │ │ └── config.rb │ ├── markdown-in-haml-app │ │ ├── config.rb │ │ └── source │ │ │ ├── link_target.html.markdown │ │ │ └── images │ │ │ └── blank.gif │ ├── markdown-in-slim-app │ │ ├── config.rb │ │ └── source │ │ │ ├── link_target.html.markdown │ │ │ └── images │ │ │ └── blank.gif │ ├── slim-content-for-app │ │ ├── config.rb │ │ └── source │ │ │ ├── index.html.slim │ │ │ └── layouts │ │ │ └── layout.slim │ ├── traversal-app │ │ ├── source │ │ │ ├── .htaccess │ │ │ ├── root.html.erb │ │ │ ├── index.html.erb │ │ │ ├── proxied.html.erb │ │ │ ├── sub │ │ │ │ ├── index.html.erb │ │ │ │ ├── sibling.html.erb │ │ │ │ ├── sibling2.html.erb │ │ │ │ ├── sub2 │ │ │ │ │ └── index.html.erb │ │ │ │ └── sub3 │ │ │ │ │ └── deep.html.erb │ │ │ ├── directory-indexed.html.erb │ │ │ └── directory-indexed │ │ │ │ ├── sub2 │ │ │ │ └── index.html.erb │ │ │ │ ├── sub3 │ │ │ │ └── deep.html.erb │ │ │ │ ├── sibling.html.erb │ │ │ │ └── sibling2.html.erb │ │ └── config.rb │ ├── asset-host-app │ │ ├── source │ │ │ ├── images │ │ │ │ ├── blank0.gif │ │ │ │ ├── blank1.gif │ │ │ │ ├── blank2.gif │ │ │ │ ├── blank3.gif │ │ │ │ ├── blank4.gif │ │ │ │ ├── blank10.gif │ │ │ │ ├── blank100.gif │ │ │ │ ├── blank101.gif │ │ │ │ ├── blank1010.gif │ │ │ │ ├── blank102.gif │ │ │ │ ├── blank1020.gif │ │ │ │ ├── blank1021.gif │ │ │ │ ├── blank1022.gif │ │ │ │ ├── blank1023.gif │ │ │ │ ├── blank1024.gif │ │ │ │ ├── blank103.gif │ │ │ │ ├── blank1030.gif │ │ │ │ ├── blank1031.gif │ │ │ │ ├── blank1032.gif │ │ │ │ ├── blank1033.gif │ │ │ │ ├── blank1034.gif │ │ │ │ ├── blank104.gif │ │ │ │ ├── blank1043.gif │ │ │ │ ├── blank1054.gif │ │ │ │ ├── blank20.gif │ │ │ │ ├── blank21.gif │ │ │ │ ├── blank22.gif │ │ │ │ ├── blank23.gif │ │ │ │ ├── blank24.gif │ │ │ │ ├── blank30.gif │ │ │ │ ├── blank31.gif │ │ │ │ ├── blank32.gif │ │ │ │ ├── blank33.gif │ │ │ │ ├── blank34.gif │ │ │ │ ├── blank43.gif │ │ │ │ ├── blank54.gif │ │ │ │ └── blank.gif │ │ │ ├── .htaccess │ │ │ └── javascripts │ │ │ │ └── asset_host.js │ │ └── config.rb │ ├── ember-cli-app │ │ ├── test-app │ │ │ ├── public │ │ │ │ └── .gitkeep │ │ │ ├── app │ │ │ │ ├── helpers │ │ │ │ │ └── .gitkeep │ │ │ │ ├── models │ │ │ │ │ └── .gitkeep │ │ │ │ ├── routes │ │ │ │ │ └── .gitkeep │ │ │ │ ├── styles │ │ │ │ │ ├── .gitkeep │ │ │ │ │ └── app.css │ │ │ │ ├── views │ │ │ │ │ └── .gitkeep │ │ │ │ ├── components │ │ │ │ │ └── .gitkeep │ │ │ │ ├── controllers │ │ │ │ │ └── .gitkeep │ │ │ │ ├── templates │ │ │ │ │ ├── .gitkeep │ │ │ │ │ ├── components │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ └── application.hbs │ │ │ │ └── router.js │ │ │ ├── tests │ │ │ │ ├── unit │ │ │ │ │ └── .gitkeep │ │ │ │ ├── helpers │ │ │ │ │ └── resolver.js │ │ │ │ └── test-helper.js │ │ │ ├── .bowerrc │ │ │ └── testem.json │ │ ├── source │ │ │ └── javascripts │ │ │ │ └── file.js │ │ └── config.rb │ ├── extensionless-text-files-app │ │ ├── config.rb │ │ └── source │ │ │ ├── index.html │ │ │ ├── CNAME │ │ │ ├── README │ │ │ └── LICENSE │ ├── more-ignore-app │ │ └── source │ │ │ ├── images │ │ │ ├── pic.png │ │ │ ├── portrait.jpg │ │ │ └── icon │ │ │ │ └── messages.png │ │ │ ├── index.html.erb │ │ │ ├── plain.html │ │ │ ├── about.html.erb │ │ │ └── reports │ │ │ ├── another.html │ │ │ └── index.html │ ├── more-traversal-app │ │ ├── source │ │ │ ├── root.html.erb │ │ │ ├── index.html.erb │ │ │ ├── proxied.html.erb │ │ │ ├── sub │ │ │ │ ├── index.html.erb │ │ │ │ ├── sibling.html.erb │ │ │ │ ├── sibling2.html.erb │ │ │ │ ├── sub2 │ │ │ │ │ └── index.html.erb │ │ │ │ └── sub3 │ │ │ │ │ └── deep.html.erb │ │ │ ├── directory-indexed.html.erb │ │ │ └── directory-indexed │ │ │ │ ├── sub2 │ │ │ │ └── index.html.erb │ │ │ │ ├── sub3 │ │ │ │ └── deep.html.erb │ │ │ │ ├── sibling.html.erb │ │ │ │ └── sibling2.html.erb │ │ └── config.rb │ ├── partial-chained_templates-app │ │ └── config.rb │ ├── wildcard-app │ │ ├── source │ │ │ ├── index.html.erb │ │ │ ├── admin │ │ │ │ ├── page.html.erb │ │ │ │ └── index.html.erb │ │ │ └── layouts │ │ │ │ ├── admin.erb │ │ │ │ └── layout.erb │ │ └── config.rb │ ├── clean-dir-app │ │ ├── source │ │ │ └── about.html │ │ └── config.rb │ ├── clean-nested-app │ │ ├── source │ │ │ ├── about.html │ │ │ └── nested │ │ │ │ └── nested.html │ │ └── config.rb │ ├── dynamic-pages-app │ │ └── source │ │ │ ├── real.html │ │ │ ├── should_be_ignored.html │ │ │ ├── should_be_ignored2.html │ │ │ ├── should_be_ignored3.html │ │ │ ├── should_be_ignored4.html │ │ │ ├── should_be_ignored5.html │ │ │ ├── should_be_ignored6.html │ │ │ ├── should_be_ignored7.html │ │ │ ├── should_be_ignored8.html │ │ │ ├── should_be_ignored9.html │ │ │ └── real │ │ │ └── index.html.erb │ ├── large-build-app │ │ ├── source │ │ │ ├── .htpasswd │ │ │ ├── _partial.erb │ │ │ ├── index.html.erb │ │ │ ├── static.html │ │ │ ├── .htaccess │ │ │ ├── images │ │ │ │ ├── Read me (example).txt │ │ │ │ ├── Child folder │ │ │ │ │ └── regular_file(example).txt │ │ │ │ └── blank.gif │ │ │ ├── other_layout.erb │ │ │ ├── services │ │ │ │ └── index.html.erb │ │ │ ├── stylesheets │ │ │ │ └── static.css │ │ │ ├── spaces in file.html.erb │ │ │ ├── link_test.html.erb │ │ │ ├── layouts │ │ │ │ ├── content_for.erb │ │ │ │ └── custom.erb │ │ │ ├── feed.xml.builder │ │ │ └── layout.erb │ │ └── config.rb │ ├── proxy-pages-app │ │ └── source │ │ │ ├── real.html │ │ │ ├── should_be_ignored3.html │ │ │ ├── should_be_ignored6.html │ │ │ ├── should_be_ignored7.html │ │ │ ├── should_be_ignored8.html │ │ │ └── real │ │ │ └── index.html.erb │ ├── relative-assets-app │ │ ├── source │ │ │ ├── images │ │ │ │ ├── blank2.gif │ │ │ │ └── blank.gif │ │ │ ├── fonts │ │ │ │ └── roboto │ │ │ │ │ ├── roboto-regular-webfont.eot │ │ │ │ │ ├── roboto-regular-webfont.svg │ │ │ │ │ ├── roboto-regular-webfont.ttf │ │ │ │ │ └── roboto-regular-webfont.woff │ │ │ ├── javascripts │ │ │ │ ├── app.js │ │ │ │ └── application.js │ │ │ ├── stylesheets │ │ │ │ └── relative_assets.css.sass │ │ │ ├── img │ │ │ │ └── blank.gif │ │ │ ├── relative_image.html.erb │ │ │ ├── absolute_image_relative_css.html.erb │ │ │ └── relative_image_absolute_css.html.erb │ │ └── config.rb │ ├── auto-js-app │ │ ├── source │ │ │ ├── javascripts │ │ │ │ ├── auto-js.js │ │ │ │ └── auto-js │ │ │ │ │ ├── auto-js.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── sub │ │ │ │ │ └── auto-js.js │ │ │ ├── auto-js.html.erb │ │ │ └── auto-js │ │ │ │ ├── auto-js.html.erb │ │ │ │ ├── index.html.erb │ │ │ │ └── sub │ │ │ │ └── auto-js.html.erb │ │ └── config.rb │ ├── data-app │ │ ├── source │ │ │ ├── index.html.erb │ │ │ └── layout.erb │ │ ├── config.rb │ │ └── data │ │ │ └── pages.yml │ ├── i18n-alt-root-app │ │ ├── source │ │ │ ├── layout.erb │ │ │ └── lang_data │ │ │ │ ├── hello.html.erb │ │ │ │ └── index.html.erb │ │ └── locales │ │ │ ├── en.yml │ │ │ └── es.yml │ ├── lorem-app │ │ └── config.rb │ ├── manual-layout │ │ ├── config.rb │ │ └── source │ │ │ ├── index.html.erb │ │ │ └── layouts │ │ │ └── custom.erb │ ├── nested-data-app │ │ ├── config.rb │ │ ├── data │ │ │ └── examples │ │ │ │ ├── more.yml │ │ │ │ ├── test.yml │ │ │ │ ├── deeper │ │ │ │ └── stuff.yml │ │ │ │ └── withcontent.yaml │ │ └── source │ │ │ ├── test.html.erb │ │ │ └── extracontent.html.haml.erb │ ├── auto-css-app │ │ ├── source │ │ │ ├── stylesheets │ │ │ │ ├── auto-css │ │ │ │ │ ├── index.css │ │ │ │ │ ├── auto-css.css │ │ │ │ │ └── sub │ │ │ │ │ │ └── auto-css.css │ │ │ │ └── auto-css.css │ │ │ ├── auto-css.html.erb │ │ │ └── auto-css │ │ │ │ ├── index.html.erb │ │ │ │ ├── auto-css.html.erb │ │ │ │ └── sub │ │ │ │ └── auto-css.html.erb │ │ └── config.rb │ ├── build-with-errors-app │ │ ├── config.rb │ │ └── source │ │ │ └── index.html.erb │ ├── external-helpers │ │ ├── source │ │ │ ├── index.html.erb │ │ │ └── automatic.html.erb │ │ ├── helpers │ │ │ ├── derp.rb │ │ │ ├── one_helper.rb │ │ │ ├── four_helpers.rb │ │ │ └── yet_another_thingy.rb │ │ ├── config.rb │ │ └── lib │ │ │ └── hello_helper.rb │ ├── external-pipeline-error │ │ ├── source │ │ │ └── javascripts │ │ │ │ └── file.js │ │ └── config.rb │ ├── i-8859-1-app │ │ ├── config.rb │ │ └── source │ │ │ └── index.html.erb │ ├── layouts-dir-app │ │ └── source │ │ │ ├── index.html.erb │ │ │ ├── layouts │ │ │ ├── layout.erb │ │ │ └── other.erb │ │ │ ├── other.erb │ │ │ ├── ambiguous.html.erb │ │ │ ├── layouts2 │ │ │ └── layout.erb │ │ │ └── nested │ │ │ └── layouts2 │ │ │ └── layout.erb │ ├── markdown-app │ │ ├── source │ │ │ ├── quote.html.markdown │ │ │ ├── hard_wrap.html.markdown │ │ │ ├── highlighted.html.markdown │ │ │ ├── prettify.html.markdown │ │ │ ├── underline.html.markdown │ │ │ ├── mailto.html.markdown │ │ │ ├── filter_html.html.markdown │ │ │ ├── index.html.markdown │ │ │ ├── lax_spacing.html.markdown │ │ │ ├── safe_links.html.markdown │ │ │ ├── with_toc_data.html.markdown │ │ │ ├── smarty_pants.html.markdown │ │ │ ├── strikethrough.html.markdown │ │ │ ├── autolink.html.markdown │ │ │ ├── img.html.markdown │ │ │ ├── link.html.markdown │ │ │ ├── no_intra_emphasis.html.markdown │ │ │ ├── superscript.html.markdown │ │ │ ├── space_after_headers.html.markdown │ │ │ ├── footnote.html.markdown │ │ │ ├── indented_code_blocks.html.markdown │ │ │ ├── images │ │ │ │ └── blank.gif │ │ │ ├── fenced_code_blocks.html.markdown │ │ │ └── tables.html.markdown │ │ └── config.rb │ ├── more-extensionless-text-files-app │ │ ├── source │ │ │ ├── index.html │ │ │ ├── CNAME │ │ │ ├── README │ │ │ └── LICENSE │ │ └── config.rb │ ├── multiple-data-sources-app │ │ ├── data1 │ │ │ ├── data1.yml │ │ │ └── one.yml │ │ ├── data2 │ │ │ ├── data2.yml │ │ │ └── two.yml │ │ ├── data │ │ │ ├── data.yml │ │ │ └── two.yml │ │ ├── data0 │ │ │ └── one.yml │ │ ├── config.rb │ │ └── source │ │ │ └── index.html.erb │ ├── multiple-sources-app │ │ ├── source1 │ │ │ ├── index1.html.erb │ │ │ └── override-in-one.html.erb │ │ ├── source2 │ │ │ ├── index2.html.erb │ │ │ └── override-in-two.html.erb │ │ ├── source │ │ │ ├── index.html.erb │ │ │ └── override-in-two.html.erb │ │ ├── source0 │ │ │ └── override-in-one.html.erb │ │ └── config.rb │ ├── nested-layout-app │ │ ├── config.rb │ │ └── source │ │ │ ├── data-one.html.erb │ │ │ ├── data-two.html.erb │ │ │ ├── index.html.erb │ │ │ ├── layouts │ │ │ ├── inner_haml.haml │ │ │ ├── master_haml.haml │ │ │ ├── inner.erb │ │ │ ├── inner_slim.slim │ │ │ ├── master_slim.slim │ │ │ ├── outer_haml.haml │ │ │ ├── outer_slim.slim │ │ │ ├── outer.erb │ │ │ └── master.erb │ │ │ ├── another.html.markdown │ │ │ ├── haml-test.html.markdown │ │ │ └── slim-test.html.markdown │ ├── custom-layout-app │ │ ├── source │ │ │ ├── index.html.erb │ │ │ └── layout.str │ │ └── config.rb │ ├── glob-app │ │ ├── config.rb │ │ └── source │ │ │ ├── stylesheets │ │ │ └── site.css.str │ │ │ └── index.html.erb │ ├── manual-layout-missing │ │ ├── config.rb │ │ └── source │ │ │ └── index.html.erb │ ├── missing-tilt-library-app │ │ ├── source │ │ │ ├── wiki-source.html.wiki │ │ │ ├── safe-zone │ │ │ │ └── my-wiki.html.wiki │ │ │ ├── textile-source.html.textile │ │ │ └── danger-zone │ │ │ │ └── more-wiki.html.wiki │ │ └── config.rb │ ├── page-helper-layout-block-app │ │ ├── source │ │ │ ├── index.html.erb │ │ │ ├── path │ │ │ │ ├── child.html.erb │ │ │ │ └── index.html.erb │ │ │ └── layouts │ │ │ │ ├── alt.erb │ │ │ │ └── layout.erb │ │ └── config.rb │ ├── passthrough-app │ │ └── source │ │ │ ├── .htaccess │ │ │ ├── inline-css.html.haml │ │ │ ├── stylesheets │ │ │ └── site.css.sass │ │ │ ├── javascripts │ │ │ ├── coffee_test.js.coffee │ │ │ └── js_test.js │ │ │ └── inline-coffeescript.html.haml │ ├── wildcard-directory-index-app │ │ ├── source │ │ │ ├── admin │ │ │ │ ├── page.html.erb │ │ │ │ └── index.html.erb │ │ │ ├── index.html.erb │ │ │ └── layouts │ │ │ │ ├── admin.erb │ │ │ │ └── layout.erb │ │ └── config.rb │ ├── auto-js-directory-index-app │ │ ├── config.rb │ │ └── source │ │ │ ├── javascripts │ │ │ └── auto-js.js │ │ │ └── auto-js.html.erb │ ├── automatic-directory-matcher-app │ │ ├── source │ │ │ ├── root-plain.html │ │ │ ├── root.html.erb │ │ │ ├── sub--sub.html.erb │ │ │ ├── sub--sub--sub.html.erb │ │ │ ├── sub--sub-plain.html │ │ │ └── sub--sub--sub-plain.html │ │ └── config.rb │ ├── i18n-force-locale │ │ ├── locales │ │ │ ├── es.yml │ │ │ ├── en.yml │ │ │ └── fr.yml │ │ └── source │ │ │ └── index.html.haml │ ├── manual-layout-override │ │ ├── source │ │ │ ├── index.html.erb │ │ │ └── layouts │ │ │ │ ├── another.erb │ │ │ │ └── custom.erb │ │ └── config.rb │ ├── page-classes-app │ │ ├── source │ │ │ ├── page-classes.html.erb │ │ │ ├── sub1 │ │ │ │ ├── page-classes.html.erb │ │ │ │ └── sub2 │ │ │ │ │ └── page-classes.html.erb │ │ │ ├── 1-starts-with-numeric.html.erb │ │ │ ├── 1-folder │ │ │ │ └── 1-inside-with-numeric.html.erb │ │ │ └── 2-starts-with-numeric-custom.html.erb │ │ └── config.rb │ ├── extension-api-deprecations-app │ │ ├── source │ │ │ ├── index.html.erb │ │ │ └── layouts │ │ │ │ └── layout.erb │ │ └── config.rb │ ├── i18n-nested-app │ │ ├── locales │ │ │ ├── en │ │ │ │ └── more.yml │ │ │ ├── es │ │ │ │ └── mucho.yml │ │ │ ├── en.yml │ │ │ └── es.yml │ │ └── source │ │ │ └── localizable │ │ │ └── index.html.erb │ ├── asset-hash-app │ │ ├── source │ │ │ ├── stylesheets │ │ │ │ ├── _partial.sass │ │ │ │ ├── uses_partials.css.sass │ │ │ │ ├── site.css.scss │ │ │ │ ├── uses_fonts.css │ │ │ │ └── fragment.css.scss │ │ │ ├── partials.html.erb │ │ │ ├── api.json.erb │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ │ ├── 100px.gif │ │ │ │ ├── 100px.jpg │ │ │ │ ├── 100px.png │ │ │ │ ├── 200px.jpg │ │ │ │ └── 300px.jpg │ │ │ ├── subdir │ │ │ │ └── api.json.erb │ │ │ ├── apple-touch-icon.png │ │ │ ├── fonts │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── slim.html.slim │ │ │ ├── other.html.erb │ │ │ └── javascripts │ │ │ │ └── application.js │ │ └── config.rb │ ├── basic-data-app │ │ ├── data │ │ │ ├── test.yml │ │ │ └── test2.json │ │ ├── config.rb │ │ └── source │ │ │ ├── data.html.erb │ │ │ └── data3.html.erb │ ├── frontmatter-neighbor-app │ │ └── source │ │ │ ├── raw-front-matter.php │ │ │ ├── front-matter-change.html.erb │ │ │ ├── raw-front-matter.html │ │ │ ├── front-matter-encoding.html.erb │ │ │ ├── front-matter-2.php.erb │ │ │ ├── front-matter-2.php.erb.frontmatter │ │ │ ├── raw-front-matter.html.frontmatter │ │ │ ├── raw-front-matter.php.frontmatter │ │ │ ├── front-matter-change.html.erb.frontmatter │ │ │ └── front-matter-encoding.html.erb.frontmatter │ ├── frontmatter-settings-app │ │ ├── source │ │ │ ├── layouts │ │ │ │ ├── override.erb │ │ │ │ └── alternate.erb │ │ │ ├── override_layout.html.erb │ │ │ ├── page_mentioned.html.erb │ │ │ ├── alternate_layout.html.erb │ │ │ └── ignored.html.erb │ │ └── config.rb │ ├── minify-css-app │ │ └── source │ │ │ ├── stylesheets │ │ │ ├── report.css │ │ │ ├── bourbon │ │ │ │ ├── settings │ │ │ │ │ ├── _px-to-em.scss │ │ │ │ │ └── _asset-pipeline.scss │ │ │ │ └── css3 │ │ │ │ │ ├── _appearance.scss │ │ │ │ │ ├── _user-select.scss │ │ │ │ │ ├── _calc.scss │ │ │ │ │ ├── _backface-visibility.scss │ │ │ │ │ ├── _hyphens.scss │ │ │ │ │ ├── _filter.scss │ │ │ │ │ ├── _font-feature-settings.scss │ │ │ │ │ ├── _placeholder.scss │ │ │ │ │ └── _perspective.scss │ │ │ ├── site.css.sass │ │ │ └── site.xcss.sass │ │ │ ├── more-css │ │ │ └── site.css │ │ │ ├── inline-css.html.haml │ │ │ └── inline-css.php │ ├── frontmatter-settings-neighbor-app │ │ └── source │ │ │ ├── override_layout.html.erb │ │ │ ├── page_mentioned.html.erb │ │ │ ├── layouts │ │ │ ├── override.erb │ │ │ └── alternate.erb │ │ │ ├── ignored.html.erb.frontmatter │ │ │ ├── alternate_layout.html.erb │ │ │ ├── override_layout.html.erb.frontmatter │ │ │ ├── page_mentioned.html.erb.frontmatter │ │ │ ├── alternate_layout.html.erb.frontmatter │ │ │ └── ignored.html.erb │ ├── markdown-frontmatter-options-app │ │ ├── config.rb │ │ └── source │ │ │ ├── smarty_pants-default.html.markdown │ │ │ ├── smarty_pants-off.html.markdown │ │ │ ├── smarty_pants-on.html.markdown │ │ │ ├── tables-default.html.markdown │ │ │ ├── tables-off.html.markdown │ │ │ └── tables-on.html.markdown │ ├── frontmatter-app │ │ ├── config.rb │ │ └── source │ │ │ ├── raw-front-matter.php │ │ │ ├── front-matter-change.html.erb │ │ │ ├── front-matter-haml.html.haml │ │ │ ├── raw-front-matter.html │ │ │ ├── front-matter-2.php.erb │ │ │ ├── front-matter-encoding.html.erb │ │ │ └── front-matter-line-2.html.erb │ ├── multiple-sources-with-duplicate-file-names-app │ │ ├── source │ │ │ └── index.html.erb │ │ ├── source2 │ │ │ └── index.html.erb │ │ └── config.rb │ ├── sass-assets-path-app │ │ ├── my-vendor │ │ │ └── stylesheets │ │ │ │ └── _partial.sass │ │ ├── assets │ │ │ └── stylesheets │ │ │ │ ├── _shared-asset.scss │ │ │ │ └── _shared-asset-sass.sass │ │ └── config.rb │ ├── i18n-default-app │ │ ├── locales │ │ │ ├── en.yml │ │ │ └── es.yml │ │ └── source │ │ │ └── localizable │ │ │ └── index.html.erb │ ├── i18n-mixed-sources │ │ ├── config.rb │ │ ├── locales │ │ │ ├── en.yml │ │ │ └── es.yml │ │ └── source │ │ │ ├── a │ │ │ └── sub.html.erb │ │ │ ├── b │ │ │ └── index.html.erb │ │ │ ├── index.html.erb │ │ │ └── localizable │ │ │ ├── b │ │ │ └── sub.html.erb │ │ │ ├── a │ │ │ └── index.html.erb │ │ │ └── index.html.erb │ ├── page-id-app │ │ ├── source │ │ │ ├── overwrites │ │ │ │ ├── from-default.html.erb │ │ │ │ └── from-frontmatter.html.erb │ │ │ ├── fm.html.erb │ │ │ └── index.html.erb │ │ └── config.rb │ ├── more-frontmatter-settings-app │ │ ├── source │ │ │ ├── layouts │ │ │ │ └── alternate.erb │ │ │ ├── alternate_layout.html.erb │ │ │ ├── ignored.html.erb │ │ │ └── no_index.html.erb │ │ └── config.rb │ ├── sinatra-app │ │ ├── source │ │ │ └── index.html.erb │ │ └── config.rb │ ├── more-markdown-app │ │ └── source │ │ │ ├── with_layout.html.markdown │ │ │ ├── with_layout_erb.html.markdown.erb │ │ │ └── layouts │ │ │ └── layout.erb │ ├── feature-params-app │ │ └── source │ │ │ └── index.html.erb │ ├── asset-hash-host-app │ │ └── source │ │ │ ├── stylesheets │ │ │ ├── site.css.scss │ │ │ └── fragment.css.scss │ │ │ ├── images │ │ │ ├── 100px.gif │ │ │ ├── 100px.jpg │ │ │ └── 100px.png │ │ │ ├── subdir │ │ │ └── index.html.erb │ │ │ ├── other.html.erb │ │ │ └── index.html.erb │ ├── asset-hash-source-map │ │ ├── config.rb │ │ └── source │ │ │ ├── index.html.erb │ │ │ └── javascripts │ │ │ └── application.js │ ├── capture-html-app │ │ ├── source │ │ │ ├── layouts │ │ │ │ └── capture_html.erb │ │ │ ├── capture_html_slim.html.slim │ │ │ ├── capture_html_haml.html.haml │ │ │ └── capture_html_erb.html.erb │ │ └── config.rb │ ├── padrino-helpers-app │ │ ├── config.rb │ │ └── source │ │ │ └── former_padrino_test.html.erb │ ├── content-for-app │ │ ├── source │ │ │ ├── layouts │ │ │ │ └── content_for.erb │ │ │ ├── content_for_slim.html.slim │ │ │ ├── content_for_haml.html.haml │ │ │ └── content_for_erb.html.erb │ │ └── config.rb │ ├── asset-hash-prefix │ │ ├── config.rb │ │ └── source │ │ │ ├── index.html.erb │ │ │ └── javascripts │ │ │ └── application.js │ ├── image-srcset-paths-app │ │ ├── images │ │ │ └── blank.gif │ │ └── image-srcset-paths.html.erb │ ├── asset-hash-minified-app │ │ ├── config.rb │ │ └── source │ │ │ ├── images │ │ │ └── 100px.jpg │ │ │ └── stylesheets │ │ │ └── test.css │ ├── v4-extension-callbacks │ │ └── source │ │ │ └── index.html.erb │ ├── collections-app │ │ └── source │ │ │ ├── blog1 │ │ │ ├── 2011-01-01-new-article.html.markdown │ │ │ └── 2011-01-02-another-article.html.markdown │ │ │ └── blog2 │ │ │ ├── 2011-01-01-new-article.html.markdown │ │ │ └── 2011-01-02-another-article.html.markdown │ ├── extension-hooks-app │ │ └── source │ │ │ └── index.html.erb │ └── generator-test │ │ └── source │ │ └── index.html.erb ├── lib │ ├── middleman-core │ │ ├── meta_pages │ │ │ └── assets │ │ │ │ ├── sitemap.js │ │ │ │ └── glyphicons-halflings.png │ │ ├── version.rb │ │ └── renderers │ │ │ └── stylus.rb │ └── middleman │ │ └── rack.rb ├── spec │ └── middleman-core │ │ └── binary_spec │ │ ├── unicode │ │ ├── unicode.txt │ │ ├── plain.txt │ │ ├── middleman │ │ ├── stars.svgz │ │ └── middleman.png ├── cucumber.yml ├── .yardopts ├── Rakefile ├── .simplecov └── features │ ├── support │ └── preserve_mime_types.rb │ ├── helpers_lorem.feature │ ├── feature_params.feature │ ├── custom-source.feature │ └── v4_extension_callbacks.feature ├── vendor.yml ├── ISSUE_TEMPLATE.md └── .editorconfig /middleman/.gemtest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-cli/.gemtest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/.gemtest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman/features/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman/fixtures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-cli/spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | -------------------------------------------------------------------------------- /middleman/spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/csspie/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/env-app/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/fonts-app/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/no-layout/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/scss-app/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman/spec/middleman/.gitkeep: -------------------------------------------------------------------------------- 1 | .gitkeep -------------------------------------------------------------------------------- /middleman-cli/spec/middleman/.gitkeep: -------------------------------------------------------------------------------- 1 | .gitkeep -------------------------------------------------------------------------------- /middleman-core/fixtures/chained-app/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/empty-app/not-config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/javascript-app/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/link-to-app/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/liquid-app/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/minify-js-app/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/paginate-app/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/partials-app/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/preview-app/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/queryable-app/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/relative-app/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/strip-url-app/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-cli/fixtures/preview-server-app/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/cache-buster-app/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/clean-app/config-empty.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/coffeescript-app/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/custom-layout-app2/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/custom-src-app/src/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/gzip-app/source/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/import-app/source/test.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/more-preview-app/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/multiple-layouts/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/related-files-app/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/sass-in-slim-app/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/stylus-preview-app/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/automatic-alt-tags-app/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/automatic-image-size-app/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/content-type-app/config.rb: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /middleman-core/fixtures/different-engine-layout/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/different-engine-partial/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/engine-matching-layout/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/i18n-test-app/data/defaults_en.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/i18n-test-app/data/defaults_es.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/i18n-test-app/data/en_defaults.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/ignore-app/source/images/pic.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/ignore-app/source/index.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/ignore-app/source/plain.html: -------------------------------------------------------------------------------- 1 | Plain -------------------------------------------------------------------------------- /middleman-core/fixtures/indexable-app/source/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/markdown-in-haml-app/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/markdown-in-slim-app/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/slim-content-for-app/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/traversal-app/source/.htaccess: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/traversal-app/source/root.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/images/blank0.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/images/blank1.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/images/blank2.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/images/blank3.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/images/blank4.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/clean-app/source/real.html: -------------------------------------------------------------------------------- 1 | I am real -------------------------------------------------------------------------------- /middleman-core/fixtures/ember-cli-app/test-app/public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/extensionless-text-files-app/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/fonts-app/source/fonts/blank/blank.otf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/gzip-app/config.rb: -------------------------------------------------------------------------------- 1 | activate :gzip 2 | -------------------------------------------------------------------------------- /middleman-core/fixtures/i18n-test-app/source/_country.en.erb: -------------------------------------------------------------------------------- 1 | USA -------------------------------------------------------------------------------- /middleman-core/fixtures/ignore-app/source/about.html.erb: -------------------------------------------------------------------------------- 1 | About -------------------------------------------------------------------------------- /middleman-core/fixtures/ignore-app/source/images/portrait.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/ignore-app/source/reports/another.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/ignore-app/source/reports/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/import-app/static.html: -------------------------------------------------------------------------------- 1 | Static, no code! -------------------------------------------------------------------------------- /middleman-core/fixtures/more-ignore-app/source/images/pic.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/more-ignore-app/source/index.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/more-ignore-app/source/plain.html: -------------------------------------------------------------------------------- 1 | Plain -------------------------------------------------------------------------------- /middleman-core/fixtures/more-traversal-app/source/root.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/partial-chained_templates-app/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/partials-app/source/_main.erb: -------------------------------------------------------------------------------- 1 | ERb Main -------------------------------------------------------------------------------- /middleman-core/fixtures/partials-app/source/_main.str: -------------------------------------------------------------------------------- 1 | Str Main -------------------------------------------------------------------------------- /middleman-core/fixtures/related-files-app/source/index.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/traversal-app/source/index.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/traversal-app/source/proxied.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/traversal-app/source/sub/index.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/wildcard-app/source/index.html.erb: -------------------------------------------------------------------------------- 1 | Index -------------------------------------------------------------------------------- /middleman-core/lib/middleman-core/meta_pages/assets/sitemap.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-cli/fixtures/preview-server-app/source/real.html: -------------------------------------------------------------------------------- 1 | I am real -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/images/blank10.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/images/blank100.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/images/blank101.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/images/blank1010.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/images/blank102.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/images/blank1020.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/images/blank1021.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/images/blank1022.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/images/blank1023.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/images/blank1024.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/images/blank103.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/images/blank1030.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/images/blank1031.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/images/blank1032.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/images/blank1033.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/images/blank1034.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/images/blank104.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/images/blank1043.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/images/blank1054.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/images/blank20.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/images/blank21.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/images/blank22.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/images/blank23.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/images/blank24.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/images/blank30.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/images/blank31.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/images/blank32.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/images/blank33.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/images/blank34.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/images/blank43.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/images/blank54.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/clean-app/source/static.html: -------------------------------------------------------------------------------- 1 | Static, no code! -------------------------------------------------------------------------------- /middleman-core/fixtures/clean-dir-app/source/about.html: -------------------------------------------------------------------------------- 1 | Fun times -------------------------------------------------------------------------------- /middleman-core/fixtures/clean-nested-app/source/about.html: -------------------------------------------------------------------------------- 1 | Fun times -------------------------------------------------------------------------------- /middleman-core/fixtures/clean-nested-app/source/nested/nested.html: -------------------------------------------------------------------------------- 1 | Hi -------------------------------------------------------------------------------- /middleman-core/fixtures/dynamic-pages-app/source/real.html: -------------------------------------------------------------------------------- 1 | I am real -------------------------------------------------------------------------------- /middleman-core/fixtures/ember-cli-app/source/javascripts/file.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/ember-cli-app/test-app/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/ember-cli-app/test-app/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/ember-cli-app/test-app/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/ember-cli-app/test-app/app/styles/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/ember-cli-app/test-app/app/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/ember-cli-app/test-app/tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/i18n-test-app/source/_country.es.erb: -------------------------------------------------------------------------------- 1 | Mexico -------------------------------------------------------------------------------- /middleman-core/fixtures/i18n-test-app/source/_site.erb: -------------------------------------------------------------------------------- 1 | Locale Site -------------------------------------------------------------------------------- /middleman-core/fixtures/ignore-app/source/images/icon/messages.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/indexable-app/source/.htpasswd: -------------------------------------------------------------------------------- 1 | # .htpasswd -------------------------------------------------------------------------------- /middleman-core/fixtures/large-build-app/source/.htpasswd: -------------------------------------------------------------------------------- 1 | # .htpasswd -------------------------------------------------------------------------------- /middleman-core/fixtures/more-ignore-app/source/about.html.erb: -------------------------------------------------------------------------------- 1 | About -------------------------------------------------------------------------------- /middleman-core/fixtures/more-ignore-app/source/images/portrait.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/more-ignore-app/source/reports/another.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/more-ignore-app/source/reports/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/more-traversal-app/source/index.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/more-traversal-app/source/proxied.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/more-traversal-app/source/sub/index.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/preview-app/source/layout.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> -------------------------------------------------------------------------------- /middleman-core/fixtures/proxy-pages-app/source/real.html: -------------------------------------------------------------------------------- 1 | I am real -------------------------------------------------------------------------------- /middleman-core/fixtures/related-files-app/source/partials/_test.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/relative-assets-app/source/images/blank2.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/traversal-app/source/sub/sibling.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/traversal-app/source/sub/sibling2.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/traversal-app/source/sub/sub2/index.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/traversal-app/source/sub/sub3/deep.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/wildcard-app/source/admin/page.html.erb: -------------------------------------------------------------------------------- 1 | Page -------------------------------------------------------------------------------- /middleman-core/spec/middleman-core/binary_spec/unicode: -------------------------------------------------------------------------------- 1 | 明日がある。 2 | -------------------------------------------------------------------------------- /middleman-core/fixtures/auto-js-app/source/javascripts/auto-js.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /middleman-core/fixtures/clean-app/source/index.html.erb: -------------------------------------------------------------------------------- 1 |

Welcome

-------------------------------------------------------------------------------- /middleman-core/fixtures/custom-src-app/config.rb: -------------------------------------------------------------------------------- 1 | set :source, 'src' 2 | -------------------------------------------------------------------------------- /middleman-core/fixtures/data-app/source/index.html.erb: -------------------------------------------------------------------------------- 1 |

Welcome

-------------------------------------------------------------------------------- /middleman-core/fixtures/ember-cli-app/test-app/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/ember-cli-app/test-app/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/ember-cli-app/test-app/app/templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/extensionless-text-files-app/source/index.html: -------------------------------------------------------------------------------- 1 | sup -------------------------------------------------------------------------------- /middleman-core/fixtures/i18n-alt-root-app/source/layout.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> -------------------------------------------------------------------------------- /middleman-core/fixtures/i18n-test-app/source/CNAME: -------------------------------------------------------------------------------- 1 | test.github.com 2 | -------------------------------------------------------------------------------- /middleman-core/fixtures/i18n-test-app/source/images/president.en.svg: -------------------------------------------------------------------------------- 1 | obama -------------------------------------------------------------------------------- /middleman-core/fixtures/i18n-test-app/source/images/president.es.svg: -------------------------------------------------------------------------------- 1 | nieto -------------------------------------------------------------------------------- /middleman-core/fixtures/i18n-test-app/source/password.txt: -------------------------------------------------------------------------------- 1 | hunter2 2 | -------------------------------------------------------------------------------- /middleman-core/fixtures/indexable-app/source/leave_me_alone.html: -------------------------------------------------------------------------------- 1 | Stay away -------------------------------------------------------------------------------- /middleman-core/fixtures/indexable-app/source/needs_index.html: -------------------------------------------------------------------------------- 1 | Indexable -------------------------------------------------------------------------------- /middleman-core/fixtures/indexable-app/source/regular/index.html: -------------------------------------------------------------------------------- 1 | Regular -------------------------------------------------------------------------------- /middleman-core/fixtures/large-build-app/source/_partial.erb: -------------------------------------------------------------------------------- 1 |

Test

-------------------------------------------------------------------------------- /middleman-core/fixtures/liquid-app/source/_liquid_partial.liquid: -------------------------------------------------------------------------------- 1 | Greetings -------------------------------------------------------------------------------- /middleman-core/fixtures/lorem-app/config.rb: -------------------------------------------------------------------------------- 1 | # activate :minify_css 2 | -------------------------------------------------------------------------------- /middleman-core/fixtures/manual-layout/config.rb: -------------------------------------------------------------------------------- 1 | set :layout, :custom 2 | -------------------------------------------------------------------------------- /middleman-core/fixtures/more-ignore-app/source/images/icon/messages.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/more-preview-app/source/layout.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> -------------------------------------------------------------------------------- /middleman-core/fixtures/more-traversal-app/source/sub/sibling.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/more-traversal-app/source/sub/sibling2.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/more-traversal-app/source/sub/sub2/index.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/more-traversal-app/source/sub/sub3/deep.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/nested-data-app/config.rb: -------------------------------------------------------------------------------- 1 | set :layout, false 2 | -------------------------------------------------------------------------------- /middleman-core/fixtures/no-layout/source/index.html.erb: -------------------------------------------------------------------------------- 1 |

Welcome

-------------------------------------------------------------------------------- /middleman-core/fixtures/preview-app/source/content.html.erb: -------------------------------------------------------------------------------- 1 | Hola Mundo -------------------------------------------------------------------------------- /middleman-core/fixtures/related-files-app/source/partials/_test2.haml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/related-files-app/source/stylesheets/include1.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/traversal-app/source/directory-indexed.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/wildcard-app/source/admin/index.html.erb: -------------------------------------------------------------------------------- 1 | Index -------------------------------------------------------------------------------- /middleman-core/spec/middleman-core/binary_spec/unicode.txt: -------------------------------------------------------------------------------- 1 | 明日がある。 2 | -------------------------------------------------------------------------------- /middleman/.yardopts: -------------------------------------------------------------------------------- 1 | lib/**/*.rb 2 | --no-private 3 | --hide-void-return -------------------------------------------------------------------------------- /vendor.yml: -------------------------------------------------------------------------------- 1 | - fixtures 2 | - templates 3 | - vendored-middleman-deps 4 | -------------------------------------------------------------------------------- /middleman-cli/fixtures/preview-server-app/source/static.html: -------------------------------------------------------------------------------- 1 | Static, no code! -------------------------------------------------------------------------------- /middleman-core/fixtures/asset-host-app/source/.htaccess: -------------------------------------------------------------------------------- 1 | # I'm an htaccess file! -------------------------------------------------------------------------------- /middleman-core/fixtures/auto-css-app/source/stylesheets/auto-css/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/auto-js-app/source/javascripts/auto-js/auto-js.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /middleman-core/fixtures/auto-js-app/source/javascripts/auto-js/index.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /middleman-core/fixtures/build-with-errors-app/config.rb: -------------------------------------------------------------------------------- 1 | set :layout, false 2 | -------------------------------------------------------------------------------- /middleman-core/fixtures/clean-nested-app/config.rb: -------------------------------------------------------------------------------- 1 | set :build_dir, "sub/dir" -------------------------------------------------------------------------------- /middleman-core/fixtures/different-engine-partial/source/index.html.erb: -------------------------------------------------------------------------------- 1 | Index -------------------------------------------------------------------------------- /middleman-core/fixtures/external-helpers/source/index.html.erb: -------------------------------------------------------------------------------- 1 | <%= hello %> -------------------------------------------------------------------------------- /middleman-core/fixtures/external-pipeline-error/source/javascripts/file.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/i-8859-1-app/config.rb: -------------------------------------------------------------------------------- 1 | set :encoding, "ISO-8859-1" 2 | -------------------------------------------------------------------------------- /middleman-core/fixtures/indexable-app/source/.htaccess: -------------------------------------------------------------------------------- 1 | # I'm an htaccess file! -------------------------------------------------------------------------------- /middleman-core/fixtures/large-build-app/source/index.html.erb: -------------------------------------------------------------------------------- 1 |

Welcome

-------------------------------------------------------------------------------- /middleman-core/fixtures/large-build-app/source/static.html: -------------------------------------------------------------------------------- 1 | Static, no code! -------------------------------------------------------------------------------- /middleman-core/fixtures/layouts-dir-app/source/index.html.erb: -------------------------------------------------------------------------------- 1 | 2 | Hello 3 | -------------------------------------------------------------------------------- /middleman-core/fixtures/manual-layout/source/index.html.erb: -------------------------------------------------------------------------------- 1 |

Welcome

-------------------------------------------------------------------------------- /middleman-core/fixtures/markdown-app/source/quote.html.markdown: -------------------------------------------------------------------------------- 1 | this is "quote" -------------------------------------------------------------------------------- /middleman-core/fixtures/more-extensionless-text-files-app/source/index.html: -------------------------------------------------------------------------------- 1 | sup -------------------------------------------------------------------------------- /middleman-core/fixtures/more-preview-app/source/content.html.erb: -------------------------------------------------------------------------------- 1 | Hola Mundo -------------------------------------------------------------------------------- /middleman-core/fixtures/more-traversal-app/source/directory-indexed.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/multiple-data-sources-app/data1/data1.yml: -------------------------------------------------------------------------------- 1 | title: Data 1 -------------------------------------------------------------------------------- /middleman-core/fixtures/multiple-data-sources-app/data2/data2.yml: -------------------------------------------------------------------------------- 1 | title: Data 2 -------------------------------------------------------------------------------- /middleman-core/fixtures/multiple-layouts/source/index.html.erb: -------------------------------------------------------------------------------- 1 |

Welcome

-------------------------------------------------------------------------------- /middleman-core/fixtures/multiple-sources-app/source1/index1.html.erb: -------------------------------------------------------------------------------- 1 | Source 1 -------------------------------------------------------------------------------- /middleman-core/fixtures/multiple-sources-app/source2/index2.html.erb: -------------------------------------------------------------------------------- 1 | Source 2 -------------------------------------------------------------------------------- /middleman-core/fixtures/nested-data-app/data/examples/more.yml: -------------------------------------------------------------------------------- 1 | title: "More" -------------------------------------------------------------------------------- /middleman-core/fixtures/nested-layout-app/config.rb: -------------------------------------------------------------------------------- 1 | set :layout, :inner 2 | -------------------------------------------------------------------------------- /middleman-core/fixtures/partials-app/source/_locals.erb: -------------------------------------------------------------------------------- 1 | Local var is <%= foo %> -------------------------------------------------------------------------------- /middleman-core/fixtures/partials-app/source/shared/_snippet.html.erb: -------------------------------------------------------------------------------- 1 | Snippet -------------------------------------------------------------------------------- /middleman-core/fixtures/related-files-app/source/stylesheets/_include3.sass: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/related-files-app/source/stylesheets/_include4.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/related-files-app/source/stylesheets/include2.css.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/related-files-app/source/stylesheets/site.css.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/spec/middleman-core/binary_spec/plain.txt: -------------------------------------------------------------------------------- 1 | Some plain text 2 | -------------------------------------------------------------------------------- /middleman-cli/fixtures/preview-server-app/source/index.html.erb: -------------------------------------------------------------------------------- 1 |

Welcome

-------------------------------------------------------------------------------- /middleman-core/fixtures/auto-js-app/source/javascripts/auto-js/sub/auto-js.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /middleman-core/fixtures/clean-app/source/should_be_ignored.html: -------------------------------------------------------------------------------- 1 |

Ignore me!

-------------------------------------------------------------------------------- /middleman-core/fixtures/content-type-app/source/.htaccess: -------------------------------------------------------------------------------- 1 | # I'm an htaccess file! -------------------------------------------------------------------------------- /middleman-core/fixtures/content-type-app/source/README: -------------------------------------------------------------------------------- 1 | I have no file extension. -------------------------------------------------------------------------------- /middleman-core/fixtures/content-type-app/source/index.html: -------------------------------------------------------------------------------- 1 | I'm an HTML file! 2 | -------------------------------------------------------------------------------- /middleman-core/fixtures/custom-layout-app/source/index.html.erb: -------------------------------------------------------------------------------- 1 |

Welcome

-------------------------------------------------------------------------------- /middleman-core/fixtures/custom-src-app/src/layouts/layout.html.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /middleman-core/fixtures/different-engine-layout/source/index.haml: -------------------------------------------------------------------------------- 1 | %h1 Welcome 2 | -------------------------------------------------------------------------------- /middleman-core/fixtures/ember-cli-app/test-app/app/templates/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/extensionless-text-files-app/source/CNAME: -------------------------------------------------------------------------------- 1 | test.github.com -------------------------------------------------------------------------------- /middleman-core/fixtures/extensionless-text-files-app/source/README: -------------------------------------------------------------------------------- 1 | Bork bork bork -------------------------------------------------------------------------------- /middleman-core/fixtures/glob-app/config.rb: -------------------------------------------------------------------------------- 1 | page "/index.html", layout: false 2 | -------------------------------------------------------------------------------- /middleman-core/fixtures/glob-app/source/stylesheets/site.css.str: -------------------------------------------------------------------------------- 1 | body { 2 | 3 | } -------------------------------------------------------------------------------- /middleman-core/fixtures/gzip-app/source/stylesheets/test.css: -------------------------------------------------------------------------------- 1 | test_selector {} 2 | -------------------------------------------------------------------------------- /middleman-core/fixtures/i18n-test-app/source/localizable/images/flag.en.svg: -------------------------------------------------------------------------------- 1 | stars -------------------------------------------------------------------------------- /middleman-core/fixtures/i18n-test-app/source/localizable/images/flag.es.svg: -------------------------------------------------------------------------------- 1 | bars -------------------------------------------------------------------------------- /middleman-core/fixtures/import-app/bower_components/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | })); 2 | -------------------------------------------------------------------------------- /middleman-core/fixtures/indexable-app/source/a_folder/needs_index.html: -------------------------------------------------------------------------------- 1 | Indexable -------------------------------------------------------------------------------- /middleman-core/fixtures/large-build-app/source/.htaccess: -------------------------------------------------------------------------------- 1 | # I'm an htaccess file! -------------------------------------------------------------------------------- /middleman-core/fixtures/manual-layout-missing/config.rb: -------------------------------------------------------------------------------- 1 | set :layout, :custom 2 | -------------------------------------------------------------------------------- /middleman-core/fixtures/manual-layout-missing/source/index.html.erb: -------------------------------------------------------------------------------- 1 |

Welcome

-------------------------------------------------------------------------------- /middleman-core/fixtures/markdown-app/config.rb: -------------------------------------------------------------------------------- 1 | set :markdown, smartypants: true 2 | -------------------------------------------------------------------------------- /middleman-core/fixtures/markdown-app/source/hard_wrap.html.markdown: -------------------------------------------------------------------------------- 1 | hard 2 | wrap -------------------------------------------------------------------------------- /middleman-core/fixtures/missing-tilt-library-app/source/wiki-source.html.wiki: -------------------------------------------------------------------------------- 1 | Hola -------------------------------------------------------------------------------- /middleman-core/fixtures/multiple-data-sources-app/data2/two.yml: -------------------------------------------------------------------------------- 1 | title: Overridden 2 -------------------------------------------------------------------------------- /middleman-core/fixtures/multiple-sources-app/source/index.html.erb: -------------------------------------------------------------------------------- 1 | Default Source -------------------------------------------------------------------------------- /middleman-core/fixtures/nested-data-app/data/examples/test.yml: -------------------------------------------------------------------------------- 1 | title: "Hello" 2 | -------------------------------------------------------------------------------- /middleman-core/fixtures/page-helper-layout-block-app/source/index.html.erb: -------------------------------------------------------------------------------- 1 | World -------------------------------------------------------------------------------- /middleman-core/fixtures/partials-app/source/_code_snippet.html: -------------------------------------------------------------------------------- 1 |

Hello World

-------------------------------------------------------------------------------- /middleman-core/fixtures/partials-app/source/sub/_local.erb: -------------------------------------------------------------------------------- 1 |

Local Partial

-------------------------------------------------------------------------------- /middleman-core/fixtures/passthrough-app/source/.htaccess: -------------------------------------------------------------------------------- 1 | # I'm an htaccess file! -------------------------------------------------------------------------------- /middleman-core/fixtures/traversal-app/source/directory-indexed/sub2/index.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/traversal-app/source/directory-indexed/sub3/deep.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/wildcard-app/config.rb: -------------------------------------------------------------------------------- 1 | page "/admin/*", layout: :admin 2 | -------------------------------------------------------------------------------- /middleman-core/fixtures/wildcard-directory-index-app/source/admin/page.html.erb: -------------------------------------------------------------------------------- 1 | Page -------------------------------------------------------------------------------- /middleman-core/fixtures/wildcard-directory-index-app/source/index.html.erb: -------------------------------------------------------------------------------- 1 | Index -------------------------------------------------------------------------------- /middleman-core/fixtures/auto-js-directory-index-app/config.rb: -------------------------------------------------------------------------------- 1 | activate :directory_indexes -------------------------------------------------------------------------------- /middleman-core/fixtures/auto-js-directory-index-app/source/javascripts/auto-js.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /middleman-core/fixtures/automatic-directory-matcher-app/source/root-plain.html: -------------------------------------------------------------------------------- 1 | Root Plain -------------------------------------------------------------------------------- /middleman-core/fixtures/automatic-directory-matcher-app/source/root.html.erb: -------------------------------------------------------------------------------- 1 | Root Erb -------------------------------------------------------------------------------- /middleman-core/fixtures/automatic-directory-matcher-app/source/sub--sub.html.erb: -------------------------------------------------------------------------------- 1 | Sub1 Erb -------------------------------------------------------------------------------- /middleman-core/fixtures/clean-app/source/should_be_ignored2.html: -------------------------------------------------------------------------------- 1 |

Ignore me! 2

-------------------------------------------------------------------------------- /middleman-core/fixtures/clean-app/source/should_be_ignored3.html: -------------------------------------------------------------------------------- 1 |

Ignore me! 3

-------------------------------------------------------------------------------- /middleman-core/fixtures/clean-dir-app/config.rb: -------------------------------------------------------------------------------- 1 | activate :directory_indexes 2 | 3 | -------------------------------------------------------------------------------- /middleman-core/fixtures/content-type-app/source/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /middleman-core/fixtures/content-type-app/source/javascripts/app.js: -------------------------------------------------------------------------------- 1 | // This is JavaScript -------------------------------------------------------------------------------- /middleman-core/fixtures/content-type-app/source/stylesheets/site.css: -------------------------------------------------------------------------------- 1 | /* This is CSS */ -------------------------------------------------------------------------------- /middleman-core/fixtures/custom-layout-app/config.rb: -------------------------------------------------------------------------------- 1 | set :erb, layout_engine: :str 2 | -------------------------------------------------------------------------------- /middleman-core/fixtures/custom-layout-app2/source/custom-layout.html.erb: -------------------------------------------------------------------------------- 1 |

Welcome

-------------------------------------------------------------------------------- /middleman-core/fixtures/different-engine-layout/source/index.html.str: -------------------------------------------------------------------------------- 1 |

Welcome

-------------------------------------------------------------------------------- /middleman-core/fixtures/engine-matching-layout/source/index.html.erb: -------------------------------------------------------------------------------- 1 |

Welcome

-------------------------------------------------------------------------------- /middleman-core/fixtures/env-app/environments/development.rb: -------------------------------------------------------------------------------- 1 | set :api_key, "dev1" 2 | -------------------------------------------------------------------------------- /middleman-core/fixtures/i18n-force-locale/locales/es.yml: -------------------------------------------------------------------------------- 1 | --- 2 | es: 3 | hello: "Hola" -------------------------------------------------------------------------------- /middleman-core/fixtures/i18n-test-app/source/localizable/_state.es.erb: -------------------------------------------------------------------------------- 1 | Distrito Federal -------------------------------------------------------------------------------- /middleman-core/fixtures/i18n-test-app/source/localizable/one.en.html.md: -------------------------------------------------------------------------------- 1 | Only one 2 | -------------------------------------------------------------------------------- /middleman-core/fixtures/i18n-test-app/source/localizable/partials/_greeting.en.erb: -------------------------------------------------------------------------------- 1 | Hello -------------------------------------------------------------------------------- /middleman-core/fixtures/i18n-test-app/source/localizable/partials/_greeting.es.erb: -------------------------------------------------------------------------------- 1 | Hola -------------------------------------------------------------------------------- /middleman-core/fixtures/large-build-app/source/images/Read me (example).txt: -------------------------------------------------------------------------------- 1 | README 2 | -------------------------------------------------------------------------------- /middleman-core/fixtures/large-build-app/source/other_layout.erb: -------------------------------------------------------------------------------- 1 | This is another layout! -------------------------------------------------------------------------------- /middleman-core/fixtures/large-build-app/source/services/index.html.erb: -------------------------------------------------------------------------------- 1 |

Services

-------------------------------------------------------------------------------- /middleman-core/fixtures/manual-layout-override/source/index.html.erb: -------------------------------------------------------------------------------- 1 |

Welcome

-------------------------------------------------------------------------------- /middleman-core/fixtures/missing-tilt-library-app/source/safe-zone/my-wiki.html.wiki: -------------------------------------------------------------------------------- 1 | Safe -------------------------------------------------------------------------------- /middleman-core/fixtures/missing-tilt-library-app/source/textile-source.html.textile: -------------------------------------------------------------------------------- 1 | Textx -------------------------------------------------------------------------------- /middleman-core/fixtures/more-extensionless-text-files-app/source/CNAME: -------------------------------------------------------------------------------- 1 | test.github.com -------------------------------------------------------------------------------- /middleman-core/fixtures/more-extensionless-text-files-app/source/README: -------------------------------------------------------------------------------- 1 | Bork bork bork -------------------------------------------------------------------------------- /middleman-core/fixtures/more-traversal-app/source/directory-indexed/sub2/index.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/more-traversal-app/source/directory-indexed/sub3/deep.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleman-core/fixtures/multiple-data-sources-app/data/data.yml: -------------------------------------------------------------------------------- 1 | title: Data Default 2 | -------------------------------------------------------------------------------- /middleman-core/fixtures/multiple-data-sources-app/data/two.yml: -------------------------------------------------------------------------------- 1 | title: Overridden Default -------------------------------------------------------------------------------- /middleman-core/fixtures/multiple-data-sources-app/data0/one.yml: -------------------------------------------------------------------------------- 1 | title: Opposite 2 2 | -------------------------------------------------------------------------------- /middleman-core/fixtures/multiple-data-sources-app/data1/one.yml: -------------------------------------------------------------------------------- 1 | title: Opposite 1 2 | -------------------------------------------------------------------------------- /middleman-core/fixtures/multiple-sources-app/source0/override-in-one.html.erb: -------------------------------------------------------------------------------- 1 | Opposite 2 -------------------------------------------------------------------------------- /middleman-core/fixtures/multiple-sources-app/source1/override-in-one.html.erb: -------------------------------------------------------------------------------- 1 | Opposite 1 -------------------------------------------------------------------------------- /middleman-core/fixtures/nested-data-app/data/examples/deeper/stuff.yml: -------------------------------------------------------------------------------- 1 | title: "Stuff" -------------------------------------------------------------------------------- /middleman-core/fixtures/page-classes-app/source/page-classes.html.erb: -------------------------------------------------------------------------------- 1 | <%= page_classes %> -------------------------------------------------------------------------------- /middleman-core/fixtures/page-helper-layout-block-app/source/path/child.html.erb: -------------------------------------------------------------------------------- 1 | Child -------------------------------------------------------------------------------- /middleman-core/fixtures/page-helper-layout-block-app/source/path/index.html.erb: -------------------------------------------------------------------------------- 1 | Monde -------------------------------------------------------------------------------- /middleman-core/fixtures/partials-app/source/shared/_footer.erb: -------------------------------------------------------------------------------- 1 |