middleman-core 4.4.0 → 5.0.0.rc.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/cucumber.yml +2 -2
- data/lib/middleman-core/application.rb +22 -24
- data/lib/middleman-core/builder.rb +221 -84
- data/lib/middleman-core/callback_manager.rb +1 -1
- data/lib/middleman-core/config_context.rb +3 -3
- data/lib/middleman-core/configuration.rb +20 -8
- data/lib/middleman-core/contracts.rb +38 -3
- data/lib/middleman-core/core_extensions/collections/lazy_root.rb +1 -1
- data/lib/middleman-core/core_extensions/collections/lazy_step.rb +9 -9
- data/lib/middleman-core/core_extensions/collections/pagination.rb +6 -7
- data/lib/middleman-core/core_extensions/collections.rb +7 -9
- data/lib/middleman-core/core_extensions/data/controller.rb +109 -0
- data/lib/middleman-core/core_extensions/data/proxies/array.rb +74 -0
- data/lib/middleman-core/core_extensions/data/proxies/base.rb +82 -0
- data/lib/middleman-core/core_extensions/data/proxies/hash.rb +32 -0
- data/lib/middleman-core/core_extensions/data/stores/base.rb +42 -0
- data/lib/middleman-core/core_extensions/data/stores/in_memory.rb +52 -0
- data/lib/middleman-core/core_extensions/data/stores/local_file.rb +92 -0
- data/lib/middleman-core/core_extensions/data.rb +33 -204
- data/lib/middleman-core/core_extensions/default_helpers.rb +37 -43
- data/lib/middleman-core/core_extensions/external_helpers.rb +1 -1
- data/lib/middleman-core/core_extensions/file_watcher.rb +2 -4
- data/lib/middleman-core/core_extensions/front_matter.rb +28 -17
- data/lib/middleman-core/core_extensions/i18n.rb +106 -47
- data/lib/middleman-core/core_extensions/rendering.rb +6 -0
- data/lib/middleman-core/core_extensions/routing.rb +21 -18
- data/lib/middleman-core/core_extensions.rb +3 -9
- data/lib/middleman-core/data_proxy.rb +69 -0
- data/lib/middleman-core/dependencies/edge.rb +27 -0
- data/lib/middleman-core/dependencies/graph.rb +144 -0
- data/lib/middleman-core/dependencies/vertices/data_collection_path_vertex.rb +78 -0
- data/lib/middleman-core/dependencies/vertices/data_collection_vertex.rb +67 -0
- data/lib/middleman-core/dependencies/vertices/file_vertex.rb +65 -0
- data/lib/middleman-core/dependencies/vertices/vertex.rb +82 -0
- data/lib/middleman-core/dependencies/vertices.rb +18 -0
- data/lib/middleman-core/dependencies.rb +131 -0
- data/lib/middleman-core/dns_resolver/basic_network_resolver.rb +6 -4
- data/lib/middleman-core/dns_resolver/hosts_resolver.rb +2 -2
- data/lib/middleman-core/dns_resolver/local_link_resolver.rb +3 -3
- data/lib/middleman-core/dns_resolver/network_resolver.rb +2 -2
- data/lib/middleman-core/dns_resolver.rb +7 -5
- data/lib/middleman-core/extension.rb +39 -42
- data/lib/middleman-core/extension_manager.rb +8 -4
- data/lib/middleman-core/extensions/asset_hash.rb +48 -51
- data/lib/middleman-core/extensions/asset_host.rb +30 -18
- data/lib/middleman-core/extensions/automatic_alt_tags.rb +6 -4
- data/lib/middleman-core/extensions/automatic_image_sizes.rb +9 -7
- data/lib/middleman-core/extensions/cache_buster.rb +21 -8
- data/lib/middleman-core/extensions/directory_indexes.rb +14 -14
- data/lib/middleman-core/extensions/external_pipeline.rb +14 -9
- data/lib/middleman-core/extensions/gzip.rb +16 -11
- data/lib/middleman-core/extensions/lorem.rb +15 -14
- data/lib/middleman-core/extensions/minify_css.rb +58 -96
- data/lib/middleman-core/extensions/minify_javascript.rb +65 -109
- data/lib/middleman-core/extensions/relative_assets.rb +30 -19
- data/lib/middleman-core/extensions.rb +14 -16
- data/lib/middleman-core/file_renderer.rb +20 -24
- data/lib/middleman-core/filter.rb +56 -0
- data/lib/middleman-core/inline_url_filter.rb +76 -0
- data/lib/middleman-core/load_paths.rb +13 -14
- data/lib/middleman-core/logger.rb +6 -13
- data/lib/middleman-core/meta_pages/sitemap_resource.rb +0 -2
- data/lib/middleman-core/meta_pages/sitemap_tree.rb +1 -1
- data/lib/middleman-core/meta_pages.rb +2 -2
- data/lib/middleman-core/preview_server/checks.rb +15 -4
- data/lib/middleman-core/preview_server/information.rb +22 -23
- data/lib/middleman-core/preview_server/network_interface_inventory.rb +3 -3
- data/lib/middleman-core/preview_server/server_information.rb +5 -5
- data/lib/middleman-core/preview_server/server_information_callback_proxy.rb +1 -1
- data/lib/middleman-core/preview_server/server_ip_address.rb +15 -6
- data/lib/middleman-core/preview_server/server_url.rb +39 -11
- data/lib/middleman-core/preview_server/tcp_port_prober.rb +1 -1
- data/lib/middleman-core/preview_server.rb +37 -31
- data/lib/middleman-core/rack.rb +7 -12
- data/lib/middleman-core/renderers/coffee_script.rb +2 -2
- data/lib/middleman-core/renderers/erb.rb +1 -1
- data/lib/middleman-core/renderers/haml.rb +2 -7
- data/lib/middleman-core/renderers/kramdown.rb +0 -4
- data/lib/middleman-core/renderers/less.rb +1 -1
- data/lib/middleman-core/renderers/liquid.rb +9 -12
- data/lib/middleman-core/renderers/markdown.rb +8 -10
- data/lib/middleman-core/renderers/redcarpet.rb +3 -4
- data/lib/middleman-core/renderers/sass.rb +20 -7
- data/lib/middleman-core/renderers/sass_functions.rb +14 -8
- data/lib/middleman-core/renderers/slim.rb +2 -2
- data/lib/middleman-core/renderers/stylus.rb +10 -0
- data/lib/middleman-core/sitemap/extensions/ignores.rb +5 -9
- data/lib/middleman-core/sitemap/extensions/import.rb +16 -17
- data/lib/middleman-core/sitemap/extensions/move_file.rb +7 -5
- data/lib/middleman-core/sitemap/extensions/on_disk.rb +10 -9
- data/lib/middleman-core/sitemap/extensions/proxies.rb +27 -20
- data/lib/middleman-core/sitemap/extensions/redirects.rb +4 -4
- data/lib/middleman-core/sitemap/extensions/request_endpoints.rb +4 -5
- data/lib/middleman-core/sitemap/extensions/traversal.rb +75 -28
- data/lib/middleman-core/sitemap/resource.rb +169 -54
- data/lib/middleman-core/sitemap/resource_list_container.rb +248 -0
- data/lib/middleman-core/sitemap/store.rb +29 -103
- data/lib/middleman-core/sources/source_watcher.rb +27 -21
- data/lib/middleman-core/sources.rb +40 -27
- data/lib/middleman-core/step_definitions/builder_steps.rb +73 -12
- data/lib/middleman-core/step_definitions/commandline_steps.rb +10 -6
- data/lib/middleman-core/step_definitions/middleman_steps.rb +24 -14
- data/lib/middleman-core/step_definitions/server_steps.rb +19 -18
- data/lib/middleman-core/template_context.rb +55 -23
- data/lib/middleman-core/template_renderer.rb +68 -42
- data/lib/middleman-core/util/binary.rb +307 -3
- data/lib/middleman-core/util/data.rb +13 -41
- data/lib/middleman-core/util/empty_hash.rb +3 -0
- data/lib/middleman-core/util/files.rb +35 -9
- data/lib/middleman-core/util/paths.rb +75 -71
- data/lib/middleman-core/util/rack.rb +8 -7
- data/lib/middleman-core/util/uri_templates.rb +2 -5
- data/lib/middleman-core/util.rb +2 -5
- data/lib/middleman-core/version.rb +1 -1
- data/lib/middleman-core.rb +5 -3
- data/middleman-core.gemspec +16 -16
- metadata +75 -1155
- data/features/asset_hash.feature +0 -340
- data/features/asset_host.feature +0 -55
- data/features/auto_layout.feature +0 -36
- data/features/automatic_alt_tags.feature +0 -8
- data/features/automatic_directory_matcher.feature +0 -32
- data/features/automatic_image_sizes.feature +0 -29
- data/features/builder.feature +0 -61
- data/features/cache_buster.feature +0 -56
- data/features/capture_html.feature +0 -18
- data/features/chained_templates.feature +0 -109
- data/features/clean_build.feature +0 -78
- data/features/coffee-script.feature +0 -22
- data/features/collections.feature +0 -265
- data/features/console.feature +0 -11
- data/features/content_for.feature +0 -16
- data/features/content_type.feature +0 -46
- data/features/custom-source.feature +0 -7
- data/features/custom_layout_engines.feature +0 -8
- data/features/custom_layouts.feature +0 -84
- data/features/data.feature +0 -111
- data/features/default-layout.feature +0 -90
- data/features/default_alt_tag.feature +0 -11
- data/features/directory_index.feature +0 -82
- data/features/dynamic_pages.feature +0 -136
- data/features/encoding_option.feature +0 -28
- data/features/extension_api_deprecations.feature +0 -10
- data/features/extension_hooks.feature +0 -13
- data/features/extensionless_text_files.feature +0 -24
- data/features/feature_params.feature +0 -6
- data/features/former_padrino_helpers.feature +0 -27
- data/features/front-matter-neighbor.feature +0 -157
- data/features/front-matter.feature +0 -87
- data/features/frontmatter_page_settings.feature +0 -43
- data/features/gzip.feature +0 -51
- data/features/helpers_auto_javascript_include_tag.feature +0 -53
- data/features/helpers_auto_stylesheet_link_tag.feature +0 -48
- data/features/helpers_content_tag.feature +0 -16
- data/features/helpers_external.feature +0 -12
- data/features/helpers_form_tag.feature +0 -26
- data/features/helpers_link_to.feature +0 -195
- data/features/helpers_lorem.feature +0 -6
- data/features/helpers_page_classes.feature +0 -32
- data/features/helpers_select_tag.feature +0 -17
- data/features/helpers_url_for.feature +0 -152
- data/features/i18n_builder.feature +0 -164
- data/features/i18n_force_locale.feature +0 -13
- data/features/i18n_link_to.feature +0 -213
- data/features/i18n_mixed_sources.feature +0 -39
- data/features/i18n_partials.feature +0 -23
- data/features/i18n_preview.feature +0 -252
- data/features/ignore.feature +0 -206
- data/features/ignore_already_minified.feature +0 -47
- data/features/image_srcset_paths.feature +0 -7
- data/features/import_files.feature +0 -15
- data/features/layouts_dir.feature +0 -38
- data/features/liquid.feature +0 -14
- data/features/markdown.feature +0 -23
- data/features/markdown_kramdown.feature +0 -55
- data/features/markdown_kramdown_in_haml.feature +0 -42
- data/features/markdown_kramdown_in_slim.feature +0 -42
- data/features/markdown_redcarpet.feature +0 -167
- data/features/markdown_redcarpet_in_haml.feature +0 -41
- data/features/markdown_redcarpet_in_slim.feature +0 -41
- data/features/minify_css.feature +0 -205
- data/features/minify_javascript.feature +0 -266
- data/features/missing-tilt-lib.feature +0 -20
- data/features/more-clean_build.feature +0 -14
- data/features/more-extensionless_text_files.feature +0 -28
- data/features/more-frontmatter_page_settings.feature +0 -42
- data/features/more-ignore.feature +0 -62
- data/features/more-sitemap_traversal.feature +0 -83
- data/features/more-wildcard_page_helper.feature +0 -10
- data/features/mount_rack.feature +0 -65
- data/features/move_files.feature +0 -44
- data/features/multiple-sources.feature +0 -35
- data/features/nested_layouts.feature +0 -58
- data/features/page-id.feature +0 -74
- data/features/paginate.feature +0 -204
- data/features/partials.feature +0 -64
- data/features/preview_changes.feature +0 -29
- data/features/proxy_pages.feature +0 -84
- data/features/redirects.feature +0 -61
- data/features/relative_assets.feature +0 -148
- data/features/relative_assets_helpers_only.feature +0 -125
- data/features/sass-assets-paths.feature +0 -11
- data/features/sass_in_slim.feature +0 -40
- data/features/sass_partials.feature +0 -54
- data/features/scss-support.feature +0 -17
- data/features/sitemap_traversal.feature +0 -83
- data/features/slim.feature +0 -81
- data/features/strip_url.feature +0 -40
- data/features/support/env.rb +0 -13
- data/features/support/preserve_mime_types.rb +0 -7
- data/features/template-key-collision.feature +0 -26
- data/features/tilde_directories.feature +0 -14
- data/features/unicode_filecontents.feature +0 -13
- data/features/unicode_filenames.feature +0 -36
- data/features/v4_extension_callbacks.feature +0 -8
- data/features/wildcard_page_helper.feature +0 -10
- data/fixtures/asset-hash-app/config.rb +0 -6
- data/fixtures/asset-hash-app/lib/middleware.rb +0 -16
- data/fixtures/asset-hash-app/source/api.json.erb +0 -1
- data/fixtures/asset-hash-app/source/apple-touch-icon.png +0 -0
- data/fixtures/asset-hash-app/source/favicon.ico +0 -0
- data/fixtures/asset-hash-app/source/fonts/fontawesome-webfont.woff +0 -0
- data/fixtures/asset-hash-app/source/fonts/fontawesome-webfont.woff2 +0 -0
- data/fixtures/asset-hash-app/source/images/100px.gif +0 -0
- data/fixtures/asset-hash-app/source/images/100px.jpg +0 -0
- data/fixtures/asset-hash-app/source/images/100px.png +0 -0
- data/fixtures/asset-hash-app/source/images/200px.jpg +0 -0
- data/fixtures/asset-hash-app/source/images/300px.jpg +0 -0
- data/fixtures/asset-hash-app/source/index.html.erb +0 -314
- data/fixtures/asset-hash-app/source/javascripts/application.js +0 -8
- data/fixtures/asset-hash-app/source/layout.erb +0 -18
- data/fixtures/asset-hash-app/source/other.html.erb +0 -5
- data/fixtures/asset-hash-app/source/partials.html.erb +0 -1
- data/fixtures/asset-hash-app/source/slim.html.slim +0 -8
- data/fixtures/asset-hash-app/source/stylesheets/_partial.sass +0 -2
- data/fixtures/asset-hash-app/source/stylesheets/fragment.css.scss +0 -7
- data/fixtures/asset-hash-app/source/stylesheets/site.css.scss +0 -4
- data/fixtures/asset-hash-app/source/stylesheets/uses_fonts.css +0 -4
- data/fixtures/asset-hash-app/source/stylesheets/uses_partials.css.sass +0 -4
- data/fixtures/asset-hash-app/source/subdir/api.json.erb +0 -1
- data/fixtures/asset-hash-app/source/subdir/index.html.erb +0 -317
- data/fixtures/asset-hash-host-app/source/images/100px.gif +0 -0
- data/fixtures/asset-hash-host-app/source/images/100px.jpg +0 -0
- data/fixtures/asset-hash-host-app/source/images/100px.png +0 -0
- data/fixtures/asset-hash-host-app/source/index.html.erb +0 -9
- data/fixtures/asset-hash-host-app/source/layout.erb +0 -17
- data/fixtures/asset-hash-host-app/source/other.html.erb +0 -5
- data/fixtures/asset-hash-host-app/source/stylesheets/fragment.css.scss +0 -7
- data/fixtures/asset-hash-host-app/source/stylesheets/site.css.scss +0 -4
- data/fixtures/asset-hash-host-app/source/subdir/index.html.erb +0 -6
- data/fixtures/asset-hash-minified-app/config.rb +0 -5
- data/fixtures/asset-hash-minified-app/source/images/100px.jpg +0 -0
- data/fixtures/asset-hash-minified-app/source/javascripts/jquery.min.js +0 -5
- data/fixtures/asset-hash-minified-app/source/stylesheets/test.css +0 -3
- data/fixtures/asset-hash-prefix/config.rb +0 -7
- data/fixtures/asset-hash-prefix/lib/middleware.rb +0 -16
- data/fixtures/asset-hash-prefix/source/index.html.erb +0 -6
- data/fixtures/asset-hash-prefix/source/javascripts/application.js +0 -2
- data/fixtures/asset-hash-prefix/source/javascripts/application.js.map +0 -1
- data/fixtures/asset-hash-prefix/source/layout.erb +0 -17
- data/fixtures/asset-hash-remove-filename/config.rb +0 -9
- data/fixtures/asset-hash-remove-filename/source/index.html.erb +0 -6
- data/fixtures/asset-hash-remove-filename/source/javascripts/application.js +0 -2
- data/fixtures/asset-hash-remove-filename/source/javascripts/application.js.map +0 -1
- data/fixtures/asset-hash-remove-filename/source/layout.erb +0 -17
- data/fixtures/asset-hash-source-map/config.rb +0 -6
- data/fixtures/asset-hash-source-map/lib/middleware.rb +0 -16
- data/fixtures/asset-hash-source-map/source/index.html.erb +0 -6
- data/fixtures/asset-hash-source-map/source/javascripts/application.js +0 -2
- data/fixtures/asset-hash-source-map/source/javascripts/application.js.map +0 -1
- data/fixtures/asset-hash-source-map/source/layout.erb +0 -17
- data/fixtures/asset-host-app/config.rb +0 -1
- data/fixtures/asset-host-app/source/.htaccess +0 -1
- data/fixtures/asset-host-app/source/asset_host.html.erb +0 -55
- data/fixtures/asset-host-app/source/images/blank.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank0.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank1.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank10.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank100.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank101.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank1010.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank102.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank1020.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank1021.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank1022.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank1023.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank1024.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank103.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank1030.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank1031.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank1032.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank1033.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank1034.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank104.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank1043.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank1054.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank2.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank20.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank21.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank22.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank23.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank24.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank3.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank30.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank31.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank32.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank33.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank34.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank4.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank43.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank54.gif +0 -0
- data/fixtures/asset-host-app/source/javascripts/asset_host.js +0 -2
- data/fixtures/asset-host-app/source/stylesheets/asset_host.css.sass +0 -48
- data/fixtures/auto-css-app/config.rb +0 -9
- data/fixtures/auto-css-app/source/auto-css/auto-css.html.erb +0 -1
- data/fixtures/auto-css-app/source/auto-css/index.html.erb +0 -1
- data/fixtures/auto-css-app/source/auto-css/sub/auto-css.html.erb +0 -1
- data/fixtures/auto-css-app/source/auto-css.html.erb +0 -1
- data/fixtures/auto-css-app/source/stylesheets/auto-css/auto-css.css +0 -3
- data/fixtures/auto-css-app/source/stylesheets/auto-css/index.css +0 -0
- data/fixtures/auto-css-app/source/stylesheets/auto-css/sub/auto-css.css +0 -3
- data/fixtures/auto-css-app/source/stylesheets/auto-css.css +0 -3
- data/fixtures/auto-js-app/config.rb +0 -9
- data/fixtures/auto-js-app/source/auto-js/auto-js.html.erb +0 -1
- data/fixtures/auto-js-app/source/auto-js/index.html.erb +0 -1
- data/fixtures/auto-js-app/source/auto-js/sub/auto-js.html.erb +0 -1
- data/fixtures/auto-js-app/source/auto-js.html.erb +0 -1
- data/fixtures/auto-js-app/source/javascripts/auto-js/auto-js.js +0 -1
- data/fixtures/auto-js-app/source/javascripts/auto-js/index.js +0 -1
- data/fixtures/auto-js-app/source/javascripts/auto-js/sub/auto-js.js +0 -1
- data/fixtures/auto-js-app/source/javascripts/auto-js.js +0 -1
- data/fixtures/auto-js-directory-index-app/config.rb +0 -1
- data/fixtures/auto-js-directory-index-app/source/auto-js.html.erb +0 -1
- data/fixtures/auto-js-directory-index-app/source/javascripts/auto-js.js +0 -1
- data/fixtures/automatic-alt-tags-app/config.rb +0 -0
- data/fixtures/automatic-alt-tags-app/source/auto-image-sizes.html.erb +0 -1
- data/fixtures/automatic-alt-tags-app/source/images/blank.gif +0 -0
- data/fixtures/automatic-directory-matcher-app/config.rb +0 -1
- data/fixtures/automatic-directory-matcher-app/source/root-plain.html +0 -1
- data/fixtures/automatic-directory-matcher-app/source/root.html.erb +0 -1
- data/fixtures/automatic-directory-matcher-app/source/sub--sub--sub-plain.html +0 -1
- data/fixtures/automatic-directory-matcher-app/source/sub--sub--sub.html.erb +0 -1
- data/fixtures/automatic-directory-matcher-app/source/sub--sub-plain.html +0 -1
- data/fixtures/automatic-directory-matcher-app/source/sub--sub.html.erb +0 -1
- data/fixtures/automatic-image-size-app/config.rb +0 -0
- data/fixtures/automatic-image-size-app/source/auto-image-sizes.html.erb +0 -1
- data/fixtures/automatic-image-size-app/source/images/blank.gif +0 -0
- data/fixtures/automatic-image-size-app/source/markdown-sizes.html.markdown +0 -1
- data/fixtures/basic-data-app/config.rb +0 -2
- data/fixtures/basic-data-app/data/test.yml +0 -4
- data/fixtures/basic-data-app/data/test2.json +0 -4
- data/fixtures/basic-data-app/data/test3.toml +0 -7
- data/fixtures/basic-data-app/source/data.html.erb +0 -5
- data/fixtures/basic-data-app/source/data3.html.erb +0 -5
- data/fixtures/basic-data-app/source/data4.html.erb +0 -5
- data/fixtures/build-with-errors-app/config.rb +0 -1
- data/fixtures/build-with-errors-app/source/index.html.erb +0 -1
- data/fixtures/cache-buster-app/config.rb +0 -0
- data/fixtures/cache-buster-app/source/cache-buster.html.erb +0 -3
- data/fixtures/cache-buster-app/source/images/blank.gif +0 -0
- data/fixtures/cache-buster-app/source/stylesheets/relative_assets.css.sass +0 -2
- data/fixtures/cache-buster-app/source/stylesheets/site.css.sass +0 -3
- data/fixtures/capture-html-app/config.rb +0 -5
- data/fixtures/capture-html-app/source/capture_html_erb.html.erb +0 -5
- data/fixtures/capture-html-app/source/capture_html_haml.html.haml +0 -4
- data/fixtures/capture-html-app/source/capture_html_slim.html.slim +0 -4
- data/fixtures/capture-html-app/source/layouts/capture_html.erb +0 -4
- data/fixtures/chained-app/config.rb +0 -0
- data/fixtures/chained-app/data/article.yml +0 -2
- data/fixtures/chained-app/source/index.html.str.erb +0 -8
- data/fixtures/chained-app/source/test.erb.combobreaker.str.erb +0 -8
- data/fixtures/clean-app/config-complications.rb +0 -9
- data/fixtures/clean-app/config-empty.rb +0 -0
- data/fixtures/clean-app/config-hidden-dir-after.rb +0 -5
- data/fixtures/clean-app/config-hidden-dir-before.rb +0 -1
- data/fixtures/clean-app/config.rb +0 -9
- data/fixtures/clean-app/source/index.html.erb +0 -1
- data/fixtures/clean-app/source/layout.erb +0 -9
- data/fixtures/clean-app/source/layouts/custom.erb +0 -8
- data/fixtures/clean-app/source/real/index.html.erb +0 -5
- data/fixtures/clean-app/source/real.html +0 -1
- data/fixtures/clean-app/source/should_be_ignored.html +0 -1
- data/fixtures/clean-app/source/should_be_ignored2.html +0 -1
- data/fixtures/clean-app/source/should_be_ignored3.html +0 -1
- data/fixtures/clean-app/source/static.html +0 -1
- data/fixtures/clean-dir-app/config.rb +0 -2
- data/fixtures/clean-dir-app/source/about.html +0 -1
- data/fixtures/clean-nested-app/config.rb +0 -1
- data/fixtures/clean-nested-app/source/about.html +0 -1
- data/fixtures/clean-nested-app/source/nested/nested.html +0 -1
- data/fixtures/coffeescript-app/config.rb +0 -0
- data/fixtures/coffeescript-app/source/inline-coffeescript.html.haml +0 -3
- data/fixtures/coffeescript-app/source/javascripts/broken-coffee.js.coffee +0 -3
- data/fixtures/coffeescript-app/source/javascripts/coffee_test.js.coffee +0 -3
- data/fixtures/collections-app/source/blog1/2011-01-01-new-article.html.markdown +0 -7
- data/fixtures/collections-app/source/blog1/2011-01-02-another-article.html.markdown +0 -9
- data/fixtures/collections-app/source/blog2/2011-01-01-new-article.html.markdown +0 -9
- data/fixtures/collections-app/source/blog2/2011-01-02-another-article.html.markdown +0 -8
- data/fixtures/content-for-app/config.rb +0 -5
- data/fixtures/content-for-app/source/content_for_erb.html.erb +0 -5
- data/fixtures/content-for-app/source/content_for_haml.html.haml +0 -4
- data/fixtures/content-for-app/source/content_for_slim.html.slim +0 -5
- data/fixtures/content-for-app/source/layouts/content_for.erb +0 -4
- data/fixtures/content-type-app/config.rb +0 -1
- data/fixtures/content-type-app/source/.htaccess +0 -1
- data/fixtures/content-type-app/source/README +0 -1
- data/fixtures/content-type-app/source/images/blank.gif +0 -0
- data/fixtures/content-type-app/source/index.html +0 -1
- data/fixtures/content-type-app/source/index.php +0 -1
- data/fixtures/content-type-app/source/javascripts/app.js +0 -1
- data/fixtures/content-type-app/source/override.html +0 -5
- data/fixtures/content-type-app/source/stylesheets/site.css +0 -1
- data/fixtures/csspie/config.rb +0 -0
- data/fixtures/csspie/source/stylesheets/PIE.htc +0 -96
- data/fixtures/custom-layout-app/config.rb +0 -1
- data/fixtures/custom-layout-app/source/index.html.erb +0 -1
- data/fixtures/custom-layout-app/source/layout.str +0 -9
- data/fixtures/custom-layout-app2/config.rb +0 -0
- data/fixtures/custom-layout-app2/source/custom-layout-dir/index.html.erb +0 -1
- data/fixtures/custom-layout-app2/source/custom-layout.html.erb +0 -1
- data/fixtures/custom-layout-app2/source/layouts/custom.erb +0 -8
- data/fixtures/custom-src-app/config.rb +0 -1
- data/fixtures/custom-src-app/src/index.html +0 -0
- data/fixtures/custom-src-app/src/layouts/layout.html.erb +0 -1
- data/fixtures/data-app/config.rb +0 -3
- data/fixtures/data-app/data/pages.yml +0 -6
- data/fixtures/data-app/source/index.html.erb +0 -1
- data/fixtures/data-app/source/layout.erb +0 -5
- data/fixtures/default-alt-tags-app/config.rb +0 -0
- data/fixtures/default-alt-tags-app/source/empty-alt-tag.html.erb +0 -1
- data/fixtures/default-alt-tags-app/source/images/blank.gif +0 -0
- data/fixtures/default-alt-tags-app/source/meaningful-alt-tag.html.erb +0 -1
- data/fixtures/different-engine-layout/config.rb +0 -0
- data/fixtures/different-engine-layout/source/index.haml +0 -1
- data/fixtures/different-engine-layout/source/index.html.str +0 -1
- data/fixtures/different-engine-layout/source/layout.erb +0 -9
- data/fixtures/different-engine-partial/config.rb +0 -0
- data/fixtures/different-engine-partial/source/index.html.erb +0 -1
- data/fixtures/different-engine-partial/source/layouts/layout.erb +0 -7
- data/fixtures/different-engine-partial/source/shared/_footer.str +0 -1
- data/fixtures/different-engine-partial/source/shared/_header.erb +0 -1
- data/fixtures/dynamic-pages-app/config.rb +0 -34
- data/fixtures/dynamic-pages-app/source/real/index.html.erb +0 -9
- data/fixtures/dynamic-pages-app/source/real.html +0 -1
- data/fixtures/dynamic-pages-app/source/should_be_ignored.html +0 -1
- data/fixtures/dynamic-pages-app/source/should_be_ignored2.html +0 -1
- data/fixtures/dynamic-pages-app/source/should_be_ignored3.html +0 -1
- data/fixtures/dynamic-pages-app/source/should_be_ignored4.html +0 -1
- data/fixtures/dynamic-pages-app/source/should_be_ignored5.html +0 -1
- data/fixtures/dynamic-pages-app/source/should_be_ignored6.html +0 -1
- data/fixtures/dynamic-pages-app/source/should_be_ignored7.html +0 -1
- data/fixtures/dynamic-pages-app/source/should_be_ignored8.html +0 -1
- data/fixtures/dynamic-pages-app/source/should_be_ignored9.html +0 -1
- data/fixtures/ember-cli-app/config.rb +0 -5
- data/fixtures/ember-cli-app/source/javascripts/file.js +0 -0
- data/fixtures/ember-cli-app/test-app/.bowerrc +0 -3
- data/fixtures/ember-cli-app/test-app/.gitignore +0 -17
- data/fixtures/ember-cli-app/test-app/.jshintrc +0 -32
- data/fixtures/ember-cli-app/test-app/Brocfile.js +0 -20
- data/fixtures/ember-cli-app/test-app/README.md +0 -25
- data/fixtures/ember-cli-app/test-app/app/app.js +0 -14
- data/fixtures/ember-cli-app/test-app/app/components/.gitkeep +0 -0
- data/fixtures/ember-cli-app/test-app/app/controllers/.gitkeep +0 -0
- data/fixtures/ember-cli-app/test-app/app/helpers/.gitkeep +0 -0
- data/fixtures/ember-cli-app/test-app/app/index.html +0 -26
- data/fixtures/ember-cli-app/test-app/app/models/.gitkeep +0 -0
- data/fixtures/ember-cli-app/test-app/app/router.js +0 -10
- data/fixtures/ember-cli-app/test-app/app/routes/.gitkeep +0 -0
- data/fixtures/ember-cli-app/test-app/app/styles/.gitkeep +0 -0
- data/fixtures/ember-cli-app/test-app/app/styles/app.css +0 -3
- data/fixtures/ember-cli-app/test-app/app/templates/.gitkeep +0 -0
- data/fixtures/ember-cli-app/test-app/app/templates/application.hbs +0 -3
- data/fixtures/ember-cli-app/test-app/app/templates/components/.gitkeep +0 -0
- data/fixtures/ember-cli-app/test-app/app/views/.gitkeep +0 -0
- data/fixtures/ember-cli-app/test-app/bower.json +0 -16
- data/fixtures/ember-cli-app/test-app/config/environment.js +0 -38
- data/fixtures/ember-cli-app/test-app/package.json +0 -31
- data/fixtures/ember-cli-app/test-app/public/.gitkeep +0 -0
- data/fixtures/ember-cli-app/test-app/testem.json +0 -6
- data/fixtures/ember-cli-app/test-app/tests/.jshintrc +0 -73
- data/fixtures/ember-cli-app/test-app/tests/helpers/resolver.js +0 -9
- data/fixtures/ember-cli-app/test-app/tests/helpers/start-app.js +0 -30
- data/fixtures/ember-cli-app/test-app/tests/index.html +0 -50
- data/fixtures/ember-cli-app/test-app/tests/test-helper.js +0 -6
- data/fixtures/ember-cli-app/test-app/tests/unit/.gitkeep +0 -0
- data/fixtures/empty-app/not-config.rb +0 -0
- data/fixtures/engine-matching-layout/config.rb +0 -0
- data/fixtures/engine-matching-layout/source/index.html.erb +0 -1
- data/fixtures/engine-matching-layout/source/layout.erb +0 -9
- data/fixtures/env-app/config.rb +0 -0
- data/fixtures/env-app/environments/development.rb +0 -1
- data/fixtures/env-app/environments/production.rb +0 -2
- data/fixtures/env-app/source/index.html.erb +0 -3
- data/fixtures/env-app/source/stylesheets/site.css.scss +0 -3
- data/fixtures/extension-api-deprecations-app/config.rb +0 -11
- data/fixtures/extension-api-deprecations-app/source/index.html.erb +0 -1
- data/fixtures/extension-api-deprecations-app/source/layouts/layout.erb +0 -3
- data/fixtures/extension-hooks-app/config.rb +0 -39
- data/fixtures/extension-hooks-app/source/index.html.erb +0 -9
- data/fixtures/extensionless-text-files-app/config.rb +0 -0
- data/fixtures/extensionless-text-files-app/source/CNAME +0 -1
- data/fixtures/extensionless-text-files-app/source/LICENSE +0 -1
- data/fixtures/extensionless-text-files-app/source/README +0 -1
- data/fixtures/extensionless-text-files-app/source/index.html +0 -1
- data/fixtures/external-helpers/config.rb +0 -4
- data/fixtures/external-helpers/helpers/derp.rb +0 -3
- data/fixtures/external-helpers/helpers/four_helpers.rb +0 -3
- data/fixtures/external-helpers/helpers/one_helper.rb +0 -3
- data/fixtures/external-helpers/helpers/yet_another_thingy.rb +0 -3
- data/fixtures/external-helpers/lib/hello_helper.rb +0 -5
- data/fixtures/external-helpers/source/automatic.html.erb +0 -1
- data/fixtures/external-helpers/source/index.html.erb +0 -1
- data/fixtures/external-pipeline-error/config.rb +0 -5
- data/fixtures/external-pipeline-error/source/javascripts/file.js +0 -0
- data/fixtures/feature-params-app/config.rb +0 -16
- data/fixtures/feature-params-app/source/index.html.erb +0 -2
- data/fixtures/fonts-app/config.rb +0 -0
- data/fixtures/fonts-app/source/fonts/StMarie-Thin.otf +0 -0
- data/fixtures/fonts-app/source/fonts/blank/blank.otf +0 -0
- data/fixtures/fonts-app/source/stylesheets/fonts.css.scss +0 -6
- data/fixtures/frontmatter-app/config.rb +0 -1
- data/fixtures/frontmatter-app/source/front-matter-2.php.erb +0 -7
- data/fixtures/frontmatter-app/source/front-matter-change.html.erb +0 -5
- data/fixtures/frontmatter-app/source/front-matter-encoding.html.erb +0 -7
- data/fixtures/frontmatter-app/source/front-matter-haml.html.haml +0 -6
- data/fixtures/frontmatter-app/source/front-matter-line-2.html.erb +0 -10
- data/fixtures/frontmatter-app/source/front-matter-pandoc.html.md.erb +0 -13
- data/fixtures/frontmatter-app/source/raw-front-matter-toml.html +0 -6
- data/fixtures/frontmatter-app/source/raw-front-matter.html +0 -6
- data/fixtures/frontmatter-app/source/raw-front-matter.php +0 -6
- data/fixtures/frontmatter-neighbor-app/config.rb +0 -30
- data/fixtures/frontmatter-neighbor-app/source/front-matter-2.php.erb +0 -2
- data/fixtures/frontmatter-neighbor-app/source/front-matter-2.php.erb.frontmatter +0 -4
- data/fixtures/frontmatter-neighbor-app/source/front-matter-change.html.erb +0 -1
- data/fixtures/frontmatter-neighbor-app/source/front-matter-change.html.erb.frontmatter +0 -4
- data/fixtures/frontmatter-neighbor-app/source/front-matter-encoding.html.erb +0 -1
- data/fixtures/frontmatter-neighbor-app/source/front-matter-encoding.html.erb.frontmatter +0 -5
- data/fixtures/frontmatter-neighbor-app/source/raw-front-matter-toml.html +0 -1
- data/fixtures/frontmatter-neighbor-app/source/raw-front-matter-toml.html.frontmatter +0 -4
- data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.html +0 -1
- data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.html.frontmatter +0 -4
- data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.php +0 -1
- data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.php.frontmatter +0 -4
- data/fixtures/frontmatter-settings-app/config.rb +0 -4
- data/fixtures/frontmatter-settings-app/source/alternate_layout.html.erb +0 -5
- data/fixtures/frontmatter-settings-app/source/ignored.html.erb +0 -5
- data/fixtures/frontmatter-settings-app/source/layouts/alternate.erb +0 -3
- data/fixtures/frontmatter-settings-app/source/layouts/override.erb +0 -1
- data/fixtures/frontmatter-settings-app/source/override_layout.html.erb +0 -4
- data/fixtures/frontmatter-settings-app/source/page_mentioned.html.erb +0 -4
- data/fixtures/frontmatter-settings-neighbor-app/config.rb +0 -40
- data/fixtures/frontmatter-settings-neighbor-app/source/alternate_layout.html.erb +0 -1
- data/fixtures/frontmatter-settings-neighbor-app/source/alternate_layout.html.erb.frontmatter +0 -3
- data/fixtures/frontmatter-settings-neighbor-app/source/ignored.html.erb +0 -1
- data/fixtures/frontmatter-settings-neighbor-app/source/ignored.html.erb.frontmatter +0 -3
- data/fixtures/frontmatter-settings-neighbor-app/source/layouts/alternate.erb +0 -3
- data/fixtures/frontmatter-settings-neighbor-app/source/layouts/override.erb +0 -1
- data/fixtures/frontmatter-settings-neighbor-app/source/override_layout.html.erb +0 -1
- data/fixtures/frontmatter-settings-neighbor-app/source/override_layout.html.erb.frontmatter +0 -3
- data/fixtures/frontmatter-settings-neighbor-app/source/page_mentioned.html.erb +0 -1
- data/fixtures/frontmatter-settings-neighbor-app/source/page_mentioned.html.erb.frontmatter +0 -3
- data/fixtures/generator-test/config.rb +0 -70
- data/fixtures/generator-test/source/index.html.erb +0 -10
- data/fixtures/glob-app/config.rb +0 -1
- data/fixtures/glob-app/source/index.html.erb +0 -4
- data/fixtures/glob-app/source/stylesheets/site.css.str +0 -3
- data/fixtures/gzip-app/config.rb +0 -1
- data/fixtures/gzip-app/source/index.html +0 -0
- data/fixtures/gzip-app/source/javascripts/test.js +0 -1
- data/fixtures/gzip-app/source/stylesheets/test.css +0 -1
- data/fixtures/i-8859-1-app/config.rb +0 -1
- data/fixtures/i-8859-1-app/source/index.html.erb +0 -1
- data/fixtures/i18n-alt-root-app/locales/en.yml +0 -4
- data/fixtures/i18n-alt-root-app/locales/es.yml +0 -7
- data/fixtures/i18n-alt-root-app/source/lang_data/hello.html.erb +0 -1
- data/fixtures/i18n-alt-root-app/source/lang_data/index.html.erb +0 -1
- data/fixtures/i18n-alt-root-app/source/layout.erb +0 -1
- data/fixtures/i18n-default-app/locales/en.yml +0 -4
- data/fixtures/i18n-default-app/locales/es.yml +0 -8
- data/fixtures/i18n-default-app/source/localizable/index.html.erb +0 -5
- data/fixtures/i18n-force-locale/config.rb +0 -11
- data/fixtures/i18n-force-locale/locales/en.yml +0 -3
- data/fixtures/i18n-force-locale/locales/es.yml +0 -3
- data/fixtures/i18n-force-locale/locales/fr.yml +0 -3
- data/fixtures/i18n-force-locale/source/index.html.haml +0 -2
- data/fixtures/i18n-mixed-sources/config.rb +0 -1
- data/fixtures/i18n-mixed-sources/locales/en.yml +0 -4
- data/fixtures/i18n-mixed-sources/locales/es.yml +0 -4
- data/fixtures/i18n-mixed-sources/source/a/sub.html.erb +0 -9
- data/fixtures/i18n-mixed-sources/source/b/index.html.erb +0 -9
- data/fixtures/i18n-mixed-sources/source/index.html.erb +0 -9
- data/fixtures/i18n-mixed-sources/source/localizable/a/index.html.erb +0 -9
- data/fixtures/i18n-mixed-sources/source/localizable/b/sub.html.erb +0 -9
- data/fixtures/i18n-mixed-sources/source/localizable/index.html.erb +0 -9
- data/fixtures/i18n-nested-app/locales/en/more.yml +0 -3
- data/fixtures/i18n-nested-app/locales/en.yml +0 -4
- data/fixtures/i18n-nested-app/locales/es/mucho.yml +0 -3
- data/fixtures/i18n-nested-app/locales/es.yml +0 -4
- data/fixtures/i18n-nested-app/source/localizable/index.html.erb +0 -3
- data/fixtures/i18n-test-app/data/defaults_en.yml +0 -0
- data/fixtures/i18n-test-app/data/defaults_es.yml +0 -0
- data/fixtures/i18n-test-app/data/en_defaults.yml +0 -0
- data/fixtures/i18n-test-app/locales/en.yml +0 -4
- data/fixtures/i18n-test-app/locales/es.yml +0 -9
- data/fixtures/i18n-test-app/source/CNAME +0 -1
- data/fixtures/i18n-test-app/source/_country.en.erb +0 -1
- data/fixtures/i18n-test-app/source/_country.es.erb +0 -1
- data/fixtures/i18n-test-app/source/_site.erb +0 -1
- data/fixtures/i18n-test-app/source/images/president.en.svg +0 -1
- data/fixtures/i18n-test-app/source/images/president.es.svg +0 -1
- data/fixtures/i18n-test-app/source/layouts/layout.erb +0 -8
- data/fixtures/i18n-test-app/source/localizable/_state.en.erb +0 -1
- data/fixtures/i18n-test-app/source/localizable/_state.es.erb +0 -1
- data/fixtures/i18n-test-app/source/localizable/hello.html.erb +0 -1
- data/fixtures/i18n-test-app/source/localizable/images/flag.en.svg +0 -1
- data/fixtures/i18n-test-app/source/localizable/images/flag.es.svg +0 -1
- data/fixtures/i18n-test-app/source/localizable/index.html.erb +0 -1
- data/fixtures/i18n-test-app/source/localizable/morning.en.html.erb +0 -1
- data/fixtures/i18n-test-app/source/localizable/morning.es.html.erb +0 -1
- data/fixtures/i18n-test-app/source/localizable/one.en.html.md +0 -1
- data/fixtures/i18n-test-app/source/localizable/one.es.html.md +0 -1
- data/fixtures/i18n-test-app/source/localizable/partials/_greeting.en.erb +0 -1
- data/fixtures/i18n-test-app/source/localizable/partials/_greeting.es.erb +0 -1
- data/fixtures/i18n-test-app/source/localizable/partials/index.html.erb +0 -8
- data/fixtures/i18n-test-app/source/password.txt +0 -1
- data/fixtures/i18n-test-app/source/stylesheets/site.css +0 -3
- data/fixtures/ignore-app/source/about.html.erb +0 -1
- data/fixtures/ignore-app/source/images/icon/messages.png +0 -0
- data/fixtures/ignore-app/source/images/pic.png +0 -0
- data/fixtures/ignore-app/source/images/portrait.jpg +0 -0
- data/fixtures/ignore-app/source/index.html.erb +0 -0
- data/fixtures/ignore-app/source/plain.html +0 -1
- data/fixtures/ignore-app/source/reports/another.html +0 -0
- data/fixtures/ignore-app/source/reports/index.html +0 -0
- data/fixtures/image-srcset-paths-app/image-srcset-paths.html.erb +0 -1
- data/fixtures/image-srcset-paths-app/images/blank.gif +0 -0
- data/fixtures/import-app/bower.json +0 -21
- data/fixtures/import-app/bower_components/jquery/.bower.json +0 -39
- data/fixtures/import-app/bower_components/jquery/MIT-LICENSE.txt +0 -21
- data/fixtures/import-app/bower_components/jquery/bower.json +0 -28
- data/fixtures/import-app/bower_components/jquery/dist/jquery.js +0 -9210
- data/fixtures/import-app/bower_components/jquery/dist/jquery.min.js +0 -5
- data/fixtures/import-app/bower_components/jquery/dist/jquery.min.map +0 -1
- data/fixtures/import-app/bower_components/jquery/src/ajax/jsonp.js +0 -89
- data/fixtures/import-app/bower_components/jquery/src/ajax/load.js +0 -75
- data/fixtures/import-app/bower_components/jquery/src/ajax/parseJSON.js +0 -13
- data/fixtures/import-app/bower_components/jquery/src/ajax/parseXML.js +0 -28
- data/fixtures/import-app/bower_components/jquery/src/ajax/script.js +0 -64
- data/fixtures/import-app/bower_components/jquery/src/ajax/var/nonce.js +0 -5
- data/fixtures/import-app/bower_components/jquery/src/ajax/var/rquery.js +0 -3
- data/fixtures/import-app/bower_components/jquery/src/ajax/xhr.js +0 -136
- data/fixtures/import-app/bower_components/jquery/src/ajax.js +0 -786
- data/fixtures/import-app/bower_components/jquery/src/attributes/attr.js +0 -141
- data/fixtures/import-app/bower_components/jquery/src/attributes/classes.js +0 -158
- data/fixtures/import-app/bower_components/jquery/src/attributes/prop.js +0 -94
- data/fixtures/import-app/bower_components/jquery/src/attributes/support.js +0 -35
- data/fixtures/import-app/bower_components/jquery/src/attributes/val.js +0 -161
- data/fixtures/import-app/bower_components/jquery/src/attributes.js +0 -11
- data/fixtures/import-app/bower_components/jquery/src/callbacks.js +0 -205
- data/fixtures/import-app/bower_components/jquery/src/core/access.js +0 -60
- data/fixtures/import-app/bower_components/jquery/src/core/init.js +0 -123
- data/fixtures/import-app/bower_components/jquery/src/core/parseHTML.js +0 -39
- data/fixtures/import-app/bower_components/jquery/src/core/ready.js +0 -97
- data/fixtures/import-app/bower_components/jquery/src/core/var/rsingleTag.js +0 -4
- data/fixtures/import-app/bower_components/jquery/src/core.js +0 -502
- data/fixtures/import-app/bower_components/jquery/src/css/addGetHookIf.js +0 -22
- data/fixtures/import-app/bower_components/jquery/src/css/curCSS.js +0 -57
- data/fixtures/import-app/bower_components/jquery/src/css/defaultDisplay.js +0 -70
- data/fixtures/import-app/bower_components/jquery/src/css/hiddenVisibleSelectors.js +0 -15
- data/fixtures/import-app/bower_components/jquery/src/css/support.js +0 -96
- data/fixtures/import-app/bower_components/jquery/src/css/swap.js +0 -28
- data/fixtures/import-app/bower_components/jquery/src/css/var/cssExpand.js +0 -3
- data/fixtures/import-app/bower_components/jquery/src/css/var/getStyles.js +0 -12
- data/fixtures/import-app/bower_components/jquery/src/css/var/isHidden.js +0 -13
- data/fixtures/import-app/bower_components/jquery/src/css/var/rmargin.js +0 -3
- data/fixtures/import-app/bower_components/jquery/src/css/var/rnumnonpx.js +0 -5
- data/fixtures/import-app/bower_components/jquery/src/css.js +0 -450
- data/fixtures/import-app/bower_components/jquery/src/data/Data.js +0 -181
- data/fixtures/import-app/bower_components/jquery/src/data/accepts.js +0 -20
- data/fixtures/import-app/bower_components/jquery/src/data/var/data_priv.js +0 -5
- data/fixtures/import-app/bower_components/jquery/src/data/var/data_user.js +0 -5
- data/fixtures/import-app/bower_components/jquery/src/data.js +0 -178
- data/fixtures/import-app/bower_components/jquery/src/deferred.js +0 -149
- data/fixtures/import-app/bower_components/jquery/src/deprecated.js +0 -13
- data/fixtures/import-app/bower_components/jquery/src/dimensions.js +0 -50
- data/fixtures/import-app/bower_components/jquery/src/effects/Tween.js +0 -114
- data/fixtures/import-app/bower_components/jquery/src/effects/animatedSelector.js +0 -13
- data/fixtures/import-app/bower_components/jquery/src/effects.js +0 -648
- data/fixtures/import-app/bower_components/jquery/src/event/ajax.js +0 -13
- data/fixtures/import-app/bower_components/jquery/src/event/alias.js +0 -39
- data/fixtures/import-app/bower_components/jquery/src/event/support.js +0 -9
- data/fixtures/import-app/bower_components/jquery/src/event.js +0 -868
- data/fixtures/import-app/bower_components/jquery/src/exports/amd.js +0 -24
- data/fixtures/import-app/bower_components/jquery/src/exports/global.js +0 -32
- data/fixtures/import-app/bower_components/jquery/src/intro.js +0 -44
- data/fixtures/import-app/bower_components/jquery/src/jquery.js +0 -37
- data/fixtures/import-app/bower_components/jquery/src/manipulation/_evalUrl.js +0 -18
- data/fixtures/import-app/bower_components/jquery/src/manipulation/support.js +0 -32
- data/fixtures/import-app/bower_components/jquery/src/manipulation/var/rcheckableType.js +0 -3
- data/fixtures/import-app/bower_components/jquery/src/manipulation.js +0 -580
- data/fixtures/import-app/bower_components/jquery/src/offset.js +0 -207
- data/fixtures/import-app/bower_components/jquery/src/outro.js +0 -1
- data/fixtures/import-app/bower_components/jquery/src/queue/delay.js +0 -22
- data/fixtures/import-app/bower_components/jquery/src/queue.js +0 -142
- data/fixtures/import-app/bower_components/jquery/src/selector-native.js +0 -172
- data/fixtures/import-app/bower_components/jquery/src/selector-sizzle.js +0 -14
- data/fixtures/import-app/bower_components/jquery/src/selector.js +0 -1
- data/fixtures/import-app/bower_components/jquery/src/serialize.js +0 -111
- data/fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.js +0 -2067
- data/fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.min.js +0 -3
- data/fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.min.map +0 -1
- data/fixtures/import-app/bower_components/jquery/src/traversing/findFilter.js +0 -100
- data/fixtures/import-app/bower_components/jquery/src/traversing/var/rneedsContext.js +0 -6
- data/fixtures/import-app/bower_components/jquery/src/traversing.js +0 -199
- data/fixtures/import-app/bower_components/jquery/src/var/arr.js +0 -3
- data/fixtures/import-app/bower_components/jquery/src/var/class2type.js +0 -4
- data/fixtures/import-app/bower_components/jquery/src/var/concat.js +0 -5
- data/fixtures/import-app/bower_components/jquery/src/var/hasOwn.js +0 -5
- data/fixtures/import-app/bower_components/jquery/src/var/indexOf.js +0 -5
- data/fixtures/import-app/bower_components/jquery/src/var/pnum.js +0 -3
- data/fixtures/import-app/bower_components/jquery/src/var/push.js +0 -5
- data/fixtures/import-app/bower_components/jquery/src/var/rnotwhite.js +0 -3
- data/fixtures/import-app/bower_components/jquery/src/var/slice.js +0 -5
- data/fixtures/import-app/bower_components/jquery/src/var/strundefined.js +0 -3
- data/fixtures/import-app/bower_components/jquery/src/var/support.js +0 -4
- data/fixtures/import-app/bower_components/jquery/src/var/toString.js +0 -5
- data/fixtures/import-app/bower_components/jquery/src/wrap.js +0 -79
- data/fixtures/import-app/config.rb +0 -7
- data/fixtures/import-app/source/test.html +0 -0
- data/fixtures/import-app/static.html +0 -1
- data/fixtures/indexable-app/config.rb +0 -5
- data/fixtures/indexable-app/source/.htaccess +0 -1
- data/fixtures/indexable-app/source/.htpasswd +0 -1
- data/fixtures/indexable-app/source/.nojekyll +0 -0
- data/fixtures/indexable-app/source/a_folder/needs_index.html +0 -1
- data/fixtures/indexable-app/source/evil spaces.html +0 -1
- data/fixtures/indexable-app/source/leave_me_alone.html +0 -1
- data/fixtures/indexable-app/source/needs_index.html +0 -1
- data/fixtures/indexable-app/source/regex_leave_me_alone2.html +0 -1
- data/fixtures/indexable-app/source/regular/index.html +0 -1
- data/fixtures/indexable-app/source/wildcard_leave_me_alone.html +0 -1
- data/fixtures/javascript-app/config.rb +0 -0
- data/fixtures/javascript-app/source/index.html +0 -17
- data/fixtures/large-build-app/config.rb +0 -3
- data/fixtures/large-build-app/source/.htaccess +0 -1
- data/fixtures/large-build-app/source/.htpasswd +0 -1
- data/fixtures/large-build-app/source/_partial.erb +0 -1
- data/fixtures/large-build-app/source/feed.xml.builder +0 -4
- data/fixtures/large-build-app/source/images/Child folder/regular_file(example).txt +0 -1
- data/fixtures/large-build-app/source/images/Read me (example).txt +0 -1
- data/fixtures/large-build-app/source/images/blank.gif +0 -0
- data/fixtures/large-build-app/source/index.html.erb +0 -1
- data/fixtures/large-build-app/source/layout.erb +0 -9
- data/fixtures/large-build-app/source/layouts/content_for.erb +0 -4
- data/fixtures/large-build-app/source/layouts/custom.erb +0 -8
- data/fixtures/large-build-app/source/link_test.html.erb +0 -5
- data/fixtures/large-build-app/source/other_layout.erb +0 -1
- data/fixtures/large-build-app/source/services/index.html.erb +0 -1
- data/fixtures/large-build-app/source/spaces in file.html.erb +0 -1
- data/fixtures/large-build-app/source/static.html +0 -1
- data/fixtures/large-build-app/source/stylesheets/static.css +0 -2
- data/fixtures/layouts-dir-app/source/ambiguous.html.erb +0 -5
- data/fixtures/layouts-dir-app/source/index.html.erb +0 -2
- data/fixtures/layouts-dir-app/source/layouts/layout.erb +0 -3
- data/fixtures/layouts-dir-app/source/layouts/other.erb +0 -3
- data/fixtures/layouts-dir-app/source/layouts2/layout.erb +0 -3
- data/fixtures/layouts-dir-app/source/nested/layouts2/layout.erb +0 -3
- data/fixtures/layouts-dir-app/source/other.erb +0 -3
- data/fixtures/link-to-app/config.rb +0 -0
- data/fixtures/link-to-app/source/link_to_erb.html.erb +0 -3
- data/fixtures/link-to-app/source/link_to_haml.html.haml +0 -2
- data/fixtures/link-to-app/source/link_to_slim.html.slim +0 -2
- data/fixtures/liquid-app/config.rb +0 -0
- data/fixtures/liquid-app/data/test.yml +0 -4
- data/fixtures/liquid-app/data/test2.json +0 -4
- data/fixtures/liquid-app/source/_liquid_partial.liquid +0 -1
- data/fixtures/liquid-app/source/data2.html.liquid +0 -2
- data/fixtures/liquid-app/source/liquid_master.html.liquid +0 -1
- data/fixtures/lorem-app/config.rb +0 -1
- data/fixtures/lorem-app/source/lorem.html.erb +0 -13
- data/fixtures/manual-layout/config.rb +0 -1
- data/fixtures/manual-layout/source/index.html.erb +0 -1
- data/fixtures/manual-layout/source/layouts/custom.erb +0 -9
- data/fixtures/manual-layout-missing/config.rb +0 -1
- data/fixtures/manual-layout-missing/source/index.html.erb +0 -1
- data/fixtures/manual-layout-override/config.rb +0 -3
- data/fixtures/manual-layout-override/source/index.html.erb +0 -1
- data/fixtures/manual-layout-override/source/layouts/another.erb +0 -9
- data/fixtures/manual-layout-override/source/layouts/custom.erb +0 -9
- data/fixtures/markdown-app/config.rb +0 -1
- data/fixtures/markdown-app/source/autolink.html.markdown +0 -5
- data/fixtures/markdown-app/source/fenced_code_blocks.html.markdown +0 -7
- data/fixtures/markdown-app/source/filter_html.html.markdown +0 -1
- data/fixtures/markdown-app/source/footnote.html.markdown +0 -3
- data/fixtures/markdown-app/source/hard_wrap.html.markdown +0 -2
- data/fixtures/markdown-app/source/highlighted.html.markdown +0 -1
- data/fixtures/markdown-app/source/images/blank.gif +0 -0
- data/fixtures/markdown-app/source/img.html.markdown +0 -1
- data/fixtures/markdown-app/source/indented_code_blocks.html.markdown +0 -5
- data/fixtures/markdown-app/source/index.html.markdown +0 -4
- data/fixtures/markdown-app/source/lax_spacing.html.markdown +0 -3
- data/fixtures/markdown-app/source/link.html.markdown +0 -1
- data/fixtures/markdown-app/source/mailto.html.markdown +0 -1
- data/fixtures/markdown-app/source/no_intra_emphasis.html.markdown +0 -5
- data/fixtures/markdown-app/source/prettify.html.markdown +0 -3
- data/fixtures/markdown-app/source/quote.html.markdown +0 -1
- data/fixtures/markdown-app/source/safe_links.html.markdown +0 -1
- data/fixtures/markdown-app/source/smarty_pants.html.markdown +0 -5
- data/fixtures/markdown-app/source/space_after_headers.html.markdown +0 -5
- data/fixtures/markdown-app/source/strikethrough.html.markdown +0 -5
- data/fixtures/markdown-app/source/superscript.html.markdown +0 -5
- data/fixtures/markdown-app/source/tables.html.markdown +0 -8
- data/fixtures/markdown-app/source/underline.html.markdown +0 -1
- data/fixtures/markdown-app/source/with_toc_data.html.markdown +0 -3
- data/fixtures/markdown-frontmatter-options-app/config.rb +0 -1
- data/fixtures/markdown-frontmatter-options-app/source/smarty_pants-default.html.markdown +0 -5
- data/fixtures/markdown-frontmatter-options-app/source/smarty_pants-off.html.markdown +0 -7
- data/fixtures/markdown-frontmatter-options-app/source/smarty_pants-on.html.markdown +0 -7
- data/fixtures/markdown-frontmatter-options-app/source/tables-default.html.markdown +0 -8
- data/fixtures/markdown-frontmatter-options-app/source/tables-off.html.markdown +0 -10
- data/fixtures/markdown-frontmatter-options-app/source/tables-on.html.markdown +0 -10
- data/fixtures/markdown-in-haml-app/config.rb +0 -0
- data/fixtures/markdown-in-haml-app/source/images/blank.gif +0 -0
- data/fixtures/markdown-in-haml-app/source/link_target.html.markdown +0 -4
- data/fixtures/markdown-in-slim-app/config.rb +0 -0
- data/fixtures/markdown-in-slim-app/source/images/blank.gif +0 -0
- data/fixtures/markdown-in-slim-app/source/link_target.html.markdown +0 -4
- data/fixtures/minify-css-app/source/inline-css.html.haml +0 -5
- data/fixtures/minify-css-app/source/inline-css.php +0 -8
- data/fixtures/minify-css-app/source/more-css/site.css +0 -3
- data/fixtures/minify-css-app/source/stylesheets/base/_base.scss +0 -15
- data/fixtures/minify-css-app/source/stylesheets/base/_buttons.scss +0 -35
- data/fixtures/minify-css-app/source/stylesheets/base/_forms.scss +0 -90
- data/fixtures/minify-css-app/source/stylesheets/base/_grid-settings.scss +0 -14
- data/fixtures/minify-css-app/source/stylesheets/base/_lists.scss +0 -31
- data/fixtures/minify-css-app/source/stylesheets/base/_tables.scss +0 -25
- data/fixtures/minify-css-app/source/stylesheets/base/_typography.scss +0 -49
- data/fixtures/minify-css-app/source/stylesheets/base/_variables.scss +0 -42
- data/fixtures/minify-css-app/source/stylesheets/bourbon/_bourbon-deprecated-upcoming.scss +0 -411
- data/fixtures/minify-css-app/source/stylesheets/bourbon/_bourbon.scss +0 -87
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-color.scss +0 -26
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-radius.scss +0 -48
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-style.scss +0 -25
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-width.scss +0 -25
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_buttons.scss +0 -64
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_clearfix.scss +0 -25
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_ellipsis.scss +0 -30
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_font-stacks.scss +0 -31
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_hide-text.scss +0 -27
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_margin.scss +0 -26
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_padding.scss +0 -26
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_position.scss +0 -48
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_prefixer.scss +0 -66
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_retina-image.scss +0 -25
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_size.scss +0 -51
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_text-inputs.scss +0 -113
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_timing-functions.scss +0 -34
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_triangle.scss +0 -63
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_word-wrap.scss +0 -29
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_animation.scss +0 -43
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_appearance.scss +0 -3
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_backface-visibility.scss +0 -3
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_background-image.scss +0 -42
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_background.scss +0 -55
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_border-image.scss +0 -59
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_calc.scss +0 -4
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_columns.scss +0 -47
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_filter.scss +0 -4
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_flex-box.scss +0 -287
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_font-face.scss +0 -24
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_font-feature-settings.scss +0 -4
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_hidpi-media-query.scss +0 -10
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_hyphens.scss +0 -4
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_image-rendering.scss +0 -14
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_keyframes.scss +0 -36
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_linear-gradient.scss +0 -38
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_perspective.scss +0 -8
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_placeholder.scss +0 -8
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_radial-gradient.scss +0 -39
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_selection.scss +0 -42
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_text-decoration.scss +0 -19
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_transform.scss +0 -15
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_transition.scss +0 -71
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_user-select.scss +0 -3
- data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_assign-inputs.scss +0 -11
- data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_contains-falsy.scss +0 -20
- data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_contains.scss +0 -26
- data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-length.scss +0 -11
- data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-light.scss +0 -21
- data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-number.scss +0 -11
- data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-size.scss +0 -13
- data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_modular-scale.scss +0 -69
- data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_px-to-em.scss +0 -13
- data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_px-to-rem.scss +0 -15
- data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_shade.scss +0 -24
- data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_strip-units.scss +0 -17
- data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_tint.scss +0 -24
- data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_transition-property-name.scss +0 -22
- data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_unpack.scss +0 -27
- data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_convert-units.scss +0 -21
- data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_directional-values.scss +0 -96
- data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_font-source-declaration.scss +0 -43
- data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_gradient-positions-parser.scss +0 -13
- data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-angle-parser.scss +0 -25
- data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-gradient-parser.scss +0 -41
- data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-positions-parser.scss +0 -61
- data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-side-corner-parser.scss +0 -31
- data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-arg-parser.scss +0 -69
- data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-gradient-parser.scss +0 -50
- data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-positions-parser.scss +0 -18
- data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_render-gradients.scss +0 -26
- data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_shape-size-stripper.scss +0 -10
- data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_str-to-num.scss +0 -50
- data/fixtures/minify-css-app/source/stylesheets/bourbon/settings/_asset-pipeline.scss +0 -7
- data/fixtures/minify-css-app/source/stylesheets/bourbon/settings/_prefixer.scss +0 -9
- data/fixtures/minify-css-app/source/stylesheets/bourbon/settings/_px-to-em.scss +0 -1
- data/fixtures/minify-css-app/source/stylesheets/report.css +0 -1
- data/fixtures/minify-css-app/source/stylesheets/site.css.sass +0 -7
- data/fixtures/minify-css-app/source/stylesheets/site.xcss.sass +0 -6
- data/fixtures/minify-js-app/config.rb +0 -0
- data/fixtures/minify-js-app/source/inline-coffeescript.html.haml +0 -3
- data/fixtures/minify-js-app/source/inline-js.html.haml +0 -28
- data/fixtures/minify-js-app/source/inline-js.php +0 -22
- data/fixtures/minify-js-app/source/javascripts/coffee_test.js.coffee +0 -3
- data/fixtures/minify-js-app/source/javascripts/js_test.js +0 -8
- data/fixtures/minify-js-app/source/javascripts/js_test.xjs +0 -8
- data/fixtures/minify-js-app/source/more-js/other.js +0 -8
- data/fixtures/missing-tilt-library-app/config.rb +0 -2
- data/fixtures/missing-tilt-library-app/source/danger-zone/more-wiki.html.wiki +0 -1
- data/fixtures/missing-tilt-library-app/source/safe-zone/my-wiki.html.wiki +0 -1
- data/fixtures/missing-tilt-library-app/source/textile-source.html.textile +0 -1
- data/fixtures/missing-tilt-library-app/source/wiki-source.html.wiki +0 -1
- data/fixtures/more-extensionless-text-files-app/config.rb +0 -1
- data/fixtures/more-extensionless-text-files-app/source/CNAME +0 -1
- data/fixtures/more-extensionless-text-files-app/source/LICENSE +0 -1
- data/fixtures/more-extensionless-text-files-app/source/README +0 -1
- data/fixtures/more-extensionless-text-files-app/source/index.html +0 -1
- data/fixtures/more-frontmatter-settings-app/config.rb +0 -4
- data/fixtures/more-frontmatter-settings-app/source/alternate_layout.html.erb +0 -5
- data/fixtures/more-frontmatter-settings-app/source/ignored.html.erb +0 -5
- data/fixtures/more-frontmatter-settings-app/source/layouts/alternate.erb +0 -3
- data/fixtures/more-frontmatter-settings-app/source/no_index.html.erb +0 -5
- data/fixtures/more-ignore-app/source/about.html.erb +0 -1
- data/fixtures/more-ignore-app/source/images/icon/messages.png +0 -0
- data/fixtures/more-ignore-app/source/images/pic.png +0 -0
- data/fixtures/more-ignore-app/source/images/portrait.jpg +0 -0
- data/fixtures/more-ignore-app/source/index.html.erb +0 -0
- data/fixtures/more-ignore-app/source/plain.html +0 -1
- data/fixtures/more-ignore-app/source/reports/another.html +0 -0
- data/fixtures/more-ignore-app/source/reports/index.html +0 -0
- data/fixtures/more-markdown-app/source/layouts/layout.erb +0 -13
- data/fixtures/more-markdown-app/source/with_layout.html.markdown +0 -4
- data/fixtures/more-markdown-app/source/with_layout_erb.html.markdown.erb +0 -4
- data/fixtures/more-preview-app/config.rb +0 -0
- data/fixtures/more-preview-app/source/content.html.erb +0 -1
- data/fixtures/more-preview-app/source/layout.erb +0 -1
- data/fixtures/more-preview-app/source/stylesheets/_partial.sass +0 -2
- data/fixtures/more-preview-app/source/stylesheets/_partial2.css.sass +0 -2
- data/fixtures/more-preview-app/source/stylesheets/main.css.sass +0 -4
- data/fixtures/more-preview-app/source/stylesheets/main2.css.sass +0 -4
- data/fixtures/more-preview-app/source/stylesheets/plain.css.sass +0 -2
- data/fixtures/more-traversal-app/config.rb +0 -7
- data/fixtures/more-traversal-app/source/directory-indexed/sibling.html.erb +0 -3
- data/fixtures/more-traversal-app/source/directory-indexed/sibling2.html.erb +0 -3
- data/fixtures/more-traversal-app/source/directory-indexed/sub2/index.html.erb +0 -0
- data/fixtures/more-traversal-app/source/directory-indexed/sub3/deep.html.erb +0 -0
- data/fixtures/more-traversal-app/source/directory-indexed.html.erb +0 -0
- data/fixtures/more-traversal-app/source/index.html.erb +0 -0
- data/fixtures/more-traversal-app/source/layout.erb +0 -21
- data/fixtures/more-traversal-app/source/proxied.html.erb +0 -0
- data/fixtures/more-traversal-app/source/root.html.erb +0 -0
- data/fixtures/more-traversal-app/source/sub/index.html.erb +0 -0
- data/fixtures/more-traversal-app/source/sub/sibling.html.erb +0 -0
- data/fixtures/more-traversal-app/source/sub/sibling2.html.erb +0 -0
- data/fixtures/more-traversal-app/source/sub/sub2/index.html.erb +0 -0
- data/fixtures/more-traversal-app/source/sub/sub3/deep.html.erb +0 -0
- data/fixtures/multiple-data-sources-app/config.rb +0 -3
- data/fixtures/multiple-data-sources-app/data/data.yml +0 -1
- data/fixtures/multiple-data-sources-app/data/two.yml +0 -1
- data/fixtures/multiple-data-sources-app/data0/one.yml +0 -1
- data/fixtures/multiple-data-sources-app/data1/data1.yml +0 -1
- data/fixtures/multiple-data-sources-app/data1/one.yml +0 -1
- data/fixtures/multiple-data-sources-app/data2/data2.yml +0 -1
- data/fixtures/multiple-data-sources-app/data2/two.yml +0 -1
- data/fixtures/multiple-data-sources-app/source/index.html.erb +0 -5
- data/fixtures/multiple-layouts/config.rb +0 -0
- data/fixtures/multiple-layouts/source/index.html.erb +0 -1
- data/fixtures/multiple-layouts/source/layout.erb +0 -9
- data/fixtures/multiple-layouts/source/layout.str +0 -9
- data/fixtures/multiple-sources-app/config.rb +0 -3
- data/fixtures/multiple-sources-app/source/index.html.erb +0 -1
- data/fixtures/multiple-sources-app/source/override-in-two.html.erb +0 -1
- data/fixtures/multiple-sources-app/source0/override-in-one.html.erb +0 -1
- data/fixtures/multiple-sources-app/source1/index1.html.erb +0 -1
- data/fixtures/multiple-sources-app/source1/override-in-one.html.erb +0 -1
- data/fixtures/multiple-sources-app/source2/index2.html.erb +0 -1
- data/fixtures/multiple-sources-app/source2/override-in-two.html.erb +0 -1
- data/fixtures/multiple-sources-with-duplicate-file-names-app/config.rb +0 -2
- data/fixtures/multiple-sources-with-duplicate-file-names-app/source/index.html.erb +0 -1
- data/fixtures/multiple-sources-with-duplicate-file-names-app/source2/index.html.erb +0 -1
- data/fixtures/nested-data-app/config.rb +0 -1
- data/fixtures/nested-data-app/data/examples/deeper/stuff.yml +0 -1
- data/fixtures/nested-data-app/data/examples/more.yml +0 -1
- data/fixtures/nested-data-app/data/examples/test.yml +0 -1
- data/fixtures/nested-data-app/data/examples/withcontent.yaml +0 -11
- data/fixtures/nested-data-app/source/extracontent.html.haml.erb +0 -4
- data/fixtures/nested-data-app/source/test.html.erb +0 -3
- data/fixtures/nested-layout-app/config.rb +0 -1
- data/fixtures/nested-layout-app/source/another.html.markdown +0 -7
- data/fixtures/nested-layout-app/source/data-one.html.erb +0 -5
- data/fixtures/nested-layout-app/source/data-two.html.erb +0 -5
- data/fixtures/nested-layout-app/source/haml-test.html.markdown +0 -7
- data/fixtures/nested-layout-app/source/index.html.erb +0 -6
- data/fixtures/nested-layout-app/source/layouts/inner.erb +0 -7
- data/fixtures/nested-layout-app/source/layouts/inner_haml.haml +0 -7
- data/fixtures/nested-layout-app/source/layouts/inner_slim.slim +0 -7
- data/fixtures/nested-layout-app/source/layouts/master.erb +0 -9
- data/fixtures/nested-layout-app/source/layouts/master_haml.haml +0 -7
- data/fixtures/nested-layout-app/source/layouts/master_slim.slim +0 -7
- data/fixtures/nested-layout-app/source/layouts/outer.erb +0 -8
- data/fixtures/nested-layout-app/source/layouts/outer_haml.haml +0 -7
- data/fixtures/nested-layout-app/source/layouts/outer_slim.slim +0 -7
- data/fixtures/nested-layout-app/source/slim-test.html.markdown +0 -7
- data/fixtures/no-layout/config.rb +0 -0
- data/fixtures/no-layout/source/index.html.erb +0 -1
- data/fixtures/padrino-helpers-app/config.rb +0 -7
- data/fixtures/padrino-helpers-app/source/former_padrino_test.html.erb +0 -6
- data/fixtures/page-classes-app/config.rb +0 -2
- data/fixtures/page-classes-app/source/1-folder/1-inside-with-numeric.html.erb +0 -1
- data/fixtures/page-classes-app/source/1-starts-with-numeric.html.erb +0 -1
- data/fixtures/page-classes-app/source/2-starts-with-numeric-custom.html.erb +0 -1
- data/fixtures/page-classes-app/source/page-classes.html.erb +0 -1
- data/fixtures/page-classes-app/source/sub1/page-classes.html.erb +0 -1
- data/fixtures/page-classes-app/source/sub1/sub2/page-classes.html.erb +0 -1
- data/fixtures/page-helper-layout-block-app/config.rb +0 -6
- data/fixtures/page-helper-layout-block-app/source/index.html.erb +0 -1
- data/fixtures/page-helper-layout-block-app/source/layouts/alt.erb +0 -3
- data/fixtures/page-helper-layout-block-app/source/layouts/layout.erb +0 -3
- data/fixtures/page-helper-layout-block-app/source/path/child.html.erb +0 -1
- data/fixtures/page-helper-layout-block-app/source/path/index.html.erb +0 -1
- data/fixtures/page-id-app/config-proc.rb +0 -7
- data/fixtures/page-id-app/config.rb +0 -5
- data/fixtures/page-id-app/source/feed.xml.erb +0 -1
- data/fixtures/page-id-app/source/fm.html.erb +0 -5
- data/fixtures/page-id-app/source/folder/foldern.html.erb +0 -1
- data/fixtures/page-id-app/source/fourty-two.html.erb +0 -5
- data/fixtures/page-id-app/source/implicit.html.erb +0 -1
- data/fixtures/page-id-app/source/index.html.erb +0 -15
- data/fixtures/page-id-app/source/overwrites/from-default.html.erb +0 -1
- data/fixtures/page-id-app/source/overwrites/from-frontmatter.html.erb +0 -5
- data/fixtures/paginate-app/config.rb +0 -0
- data/fixtures/paginate-app/source/archive/2011/index.html.erb +0 -20
- data/fixtures/paginate-app/source/blog/2011-01-01-test-article.html.markdown +0 -6
- data/fixtures/paginate-app/source/blog/2011-01-02-test-article.html.markdown +0 -6
- data/fixtures/paginate-app/source/blog/2011-01-03-test-article.html.markdown +0 -6
- data/fixtures/paginate-app/source/blog/2011-01-04-test-article.html.markdown +0 -6
- data/fixtures/paginate-app/source/blog/2011-01-05-test-article.html.markdown +0 -6
- data/fixtures/paginate-app/source/blog/2011-02-01-test-article.html.markdown +0 -6
- data/fixtures/paginate-app/source/blog/2011-02-02-test-article.html.markdown +0 -6
- data/fixtures/paginate-app/source/index.html.erb +0 -15
- data/fixtures/paginate-app/source/tag.html.erb +0 -23
- data/fixtures/partial-chained_templates-app/config.rb +0 -0
- data/fixtures/partials-app/config.rb +0 -0
- data/fixtures/partials-app/source/_block.erb +0 -3
- data/fixtures/partials-app/source/_code_snippet.html +0 -1
- data/fixtures/partials-app/source/_locals.erb +0 -1
- data/fixtures/partials-app/source/_main.erb +0 -1
- data/fixtures/partials-app/source/_main.str +0 -1
- data/fixtures/partials-app/source/block.html.erb +0 -3
- data/fixtures/partials-app/source/images/tiger.svg +0 -725
- data/fixtures/partials-app/source/index.html.erb +0 -3
- data/fixtures/partials-app/source/index_missing.html.erb +0 -3
- data/fixtures/partials-app/source/locals.html.erb +0 -1
- data/fixtures/partials-app/source/second.html.str +0 -3
- data/fixtures/partials-app/source/shared/_footer.erb +0 -1
- data/fixtures/partials-app/source/shared/_header.erb +0 -1
- data/fixtures/partials-app/source/shared/_snippet.html.erb +0 -1
- data/fixtures/partials-app/source/static_underscore.html.erb +0 -1
- data/fixtures/partials-app/source/sub/_local.erb +0 -1
- data/fixtures/partials-app/source/sub/index.html.erb +0 -3
- data/fixtures/partials-app/source/svg.html.erb +0 -1
- data/fixtures/partials-app/source/using_snippet.html.erb +0 -1
- data/fixtures/passthrough-app/source/.htaccess +0 -1
- data/fixtures/passthrough-app/source/inline-coffeescript.html.haml +0 -3
- data/fixtures/passthrough-app/source/inline-css.html.haml +0 -4
- data/fixtures/passthrough-app/source/inline-js.html.haml +0 -28
- data/fixtures/passthrough-app/source/javascripts/coffee_test.js.coffee +0 -3
- data/fixtures/passthrough-app/source/javascripts/js_test.js +0 -8
- data/fixtures/passthrough-app/source/stylesheets/site.css.sass +0 -5
- data/fixtures/preview-app/config.rb +0 -0
- data/fixtures/preview-app/source/content.html.erb +0 -1
- data/fixtures/preview-app/source/layout.erb +0 -1
- data/fixtures/proxy-pages-app/config.rb +0 -18
- data/fixtures/proxy-pages-app/source/real/index.html.erb +0 -5
- data/fixtures/proxy-pages-app/source/real.html +0 -1
- data/fixtures/proxy-pages-app/source/should_be_ignored3.html +0 -1
- data/fixtures/proxy-pages-app/source/should_be_ignored6.html +0 -1
- data/fixtures/proxy-pages-app/source/should_be_ignored7.html +0 -1
- data/fixtures/proxy-pages-app/source/should_be_ignored8.html +0 -1
- data/fixtures/related-files-app/config.rb +0 -0
- data/fixtures/related-files-app/source/index.html.erb +0 -0
- data/fixtures/related-files-app/source/partials/_test.erb +0 -0
- data/fixtures/related-files-app/source/partials/_test2.haml +0 -0
- data/fixtures/related-files-app/source/stylesheets/_include3.sass +0 -0
- data/fixtures/related-files-app/source/stylesheets/_include4.scss +0 -0
- data/fixtures/related-files-app/source/stylesheets/include1.css +0 -0
- data/fixtures/related-files-app/source/stylesheets/include2.css.scss +0 -0
- data/fixtures/related-files-app/source/stylesheets/site.css.scss +0 -0
- data/fixtures/relative-app/config.rb +0 -0
- data/fixtures/relative-app/source/images/blank.gif +0 -0
- data/fixtures/relative-app/source/stylesheets/relative_assets.css.sass +0 -2
- data/fixtures/relative-assets-app/config.rb +0 -5
- data/fixtures/relative-assets-app/source/absolute_image_relative_css.html.erb +0 -9
- data/fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.eot +0 -0
- data/fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.svg +0 -0
- data/fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.ttf +0 -0
- data/fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.woff +0 -0
- data/fixtures/relative-assets-app/source/images/blank.gif +0 -0
- data/fixtures/relative-assets-app/source/images/blank2.gif +0 -0
- data/fixtures/relative-assets-app/source/img/blank.gif +0 -0
- data/fixtures/relative-assets-app/source/javascripts/app.js +0 -3
- data/fixtures/relative-assets-app/source/javascripts/application.js +0 -8
- data/fixtures/relative-assets-app/source/relative_image.html.erb +0 -9
- data/fixtures/relative-assets-app/source/relative_image_absolute_css.html.erb +0 -9
- data/fixtures/relative-assets-app/source/stylesheets/fonts.css +0 -10
- data/fixtures/relative-assets-app/source/stylesheets/fonts2.css.scss +0 -10
- data/fixtures/relative-assets-app/source/stylesheets/relative_assets.css.sass +0 -2
- data/fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset-sass.sass +0 -1
- data/fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset.scss +0 -1
- data/fixtures/sass-assets-path-app/config.rb +0 -4
- data/fixtures/sass-assets-path-app/my-vendor/stylesheets/_partial.sass +0 -2
- data/fixtures/sass-assets-path-app/source/stylesheets/plain.css.sass +0 -16
- data/fixtures/sass-in-slim-app/config.rb +0 -0
- data/fixtures/scss-app/config.rb +0 -0
- data/fixtures/scss-app/source/stylesheets/error.css.sass +0 -1
- data/fixtures/scss-app/source/stylesheets/layout.css.sass +0 -2
- data/fixtures/scss-app/source/stylesheets/site_scss.css.scss +0 -3
- data/fixtures/sinatra-app/config.rb +0 -14
- data/fixtures/sinatra-app/source/index.html.erb +0 -5
- data/fixtures/slim-content-for-app/config.rb +0 -0
- data/fixtures/slim-content-for-app/source/index.html.slim +0 -7
- data/fixtures/slim-content-for-app/source/layouts/layout.slim +0 -15
- data/fixtures/strip-url-app/config.rb +0 -0
- data/fixtures/strip-url-app/source/index.html.erb +0 -1
- data/fixtures/strip-url-app/source/other.html.erb +0 -1
- data/fixtures/strip-url-app/source/subdir/index.html.erb +0 -1
- data/fixtures/stylus-preview-app/config.rb +0 -0
- data/fixtures/stylus-preview-app/source/content.html.erb +0 -5
- data/fixtures/stylus-preview-app/source/stylesheets/_partial.styl +0 -2
- data/fixtures/stylus-preview-app/source/stylesheets/_partial2.css.styl +0 -2
- data/fixtures/stylus-preview-app/source/stylesheets/main.css.styl +0 -4
- data/fixtures/stylus-preview-app/source/stylesheets/main2.css.styl +0 -4
- data/fixtures/stylus-preview-app/source/stylesheets/plain.css.styl +0 -2
- data/fixtures/traversal-app/config.rb +0 -5
- data/fixtures/traversal-app/source/.htaccess +0 -0
- data/fixtures/traversal-app/source/directory-indexed/sibling.html.erb +0 -3
- data/fixtures/traversal-app/source/directory-indexed/sibling2.html.erb +0 -3
- data/fixtures/traversal-app/source/directory-indexed/sub2/index.html.erb +0 -0
- data/fixtures/traversal-app/source/directory-indexed/sub3/deep.html.erb +0 -0
- data/fixtures/traversal-app/source/directory-indexed.html.erb +0 -0
- data/fixtures/traversal-app/source/index.html.erb +0 -0
- data/fixtures/traversal-app/source/layout.erb +0 -21
- data/fixtures/traversal-app/source/proxied.html.erb +0 -0
- data/fixtures/traversal-app/source/root.html.erb +0 -0
- data/fixtures/traversal-app/source/sub/index.html.erb +0 -0
- data/fixtures/traversal-app/source/sub/sibling.html.erb +0 -0
- data/fixtures/traversal-app/source/sub/sibling2.html.erb +0 -0
- data/fixtures/traversal-app/source/sub/sub2/index.html.erb +0 -0
- data/fixtures/traversal-app/source/sub/sub3/deep.html.erb +0 -0
- data/fixtures/v4-extension-callbacks/config.rb +0 -42
- data/fixtures/v4-extension-callbacks/source/index.html.erb +0 -2
- data/fixtures/wildcard-app/config.rb +0 -1
- data/fixtures/wildcard-app/source/admin/index.html.erb +0 -1
- data/fixtures/wildcard-app/source/admin/page.html.erb +0 -1
- data/fixtures/wildcard-app/source/index.html.erb +0 -1
- data/fixtures/wildcard-app/source/layouts/admin.erb +0 -2
- data/fixtures/wildcard-app/source/layouts/layout.erb +0 -2
- data/fixtures/wildcard-directory-index-app/config.rb +0 -2
- data/fixtures/wildcard-directory-index-app/source/admin/index.html.erb +0 -1
- data/fixtures/wildcard-directory-index-app/source/admin/page.html.erb +0 -1
- data/fixtures/wildcard-directory-index-app/source/index.html.erb +0 -1
- data/fixtures/wildcard-directory-index-app/source/layouts/admin.erb +0 -2
- data/fixtures/wildcard-directory-index-app/source/layouts/layout.erb +0 -2
- data/lib/middleman-core/core_extensions/inline_url_rewriter.rb +0 -140
- data/spec/middleman-core/binary_spec/middleman +0 -0
- data/spec/middleman-core/binary_spec/middleman.png +0 -0
- data/spec/middleman-core/binary_spec/plain.txt +0 -1
- data/spec/middleman-core/binary_spec/stars.svgz +0 -0
- data/spec/middleman-core/binary_spec/unicode +0 -1
- data/spec/middleman-core/binary_spec/unicode.txt +0 -1
- data/spec/middleman-core/callbacks_spec.rb +0 -132
- data/spec/middleman-core/core_extensions/data_spec.rb +0 -147
- data/spec/middleman-core/dns_resolver_spec.rb +0 -102
- data/spec/middleman-core/preview_server/server_hostname_spec.rb +0 -39
- data/spec/middleman-core/preview_server/server_ip_address_spec.rb +0 -43
- data/spec/middleman-core/util_spec.rb +0 -230
- data/spec/spec_helper.rb +0 -33
- data/spec/support/given.rb +0 -42
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: middleman-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 5.0.0.rc.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Thomas Reynolds
|
@@ -10,22 +10,22 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2019-05-24 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: bundler
|
17
17
|
requirement: !ruby/object:Gem::Requirement
|
18
18
|
requirements:
|
19
|
-
- - "
|
19
|
+
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: '
|
21
|
+
version: '0'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
25
|
requirements:
|
26
|
-
- - "
|
26
|
+
- - ">="
|
27
27
|
- !ruby/object:Gem::Version
|
28
|
-
version: '
|
28
|
+
version: '0'
|
29
29
|
- !ruby/object:Gem::Dependency
|
30
30
|
name: rack
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|
@@ -74,20 +74,6 @@ dependencies:
|
|
74
74
|
- - ">="
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
|
-
- !ruby/object:Gem::Dependency
|
78
|
-
name: fast_blank
|
79
|
-
requirement: !ruby/object:Gem::Requirement
|
80
|
-
requirements:
|
81
|
-
- - ">="
|
82
|
-
- !ruby/object:Gem::Version
|
83
|
-
version: '0'
|
84
|
-
type: :runtime
|
85
|
-
prerelease: false
|
86
|
-
version_requirements: !ruby/object:Gem::Requirement
|
87
|
-
requirements:
|
88
|
-
- - ">="
|
89
|
-
- !ruby/object:Gem::Version
|
90
|
-
version: '0'
|
91
77
|
- !ruby/object:Gem::Dependency
|
92
78
|
name: parallel
|
93
79
|
requirement: !ruby/object:Gem::Requirement
|
@@ -131,123 +117,117 @@ dependencies:
|
|
131
117
|
- !ruby/object:Gem::Version
|
132
118
|
version: '0'
|
133
119
|
- !ruby/object:Gem::Dependency
|
134
|
-
name:
|
120
|
+
name: rgl
|
135
121
|
requirement: !ruby/object:Gem::Requirement
|
136
122
|
requirements:
|
137
|
-
- - "
|
123
|
+
- - "~>"
|
138
124
|
- !ruby/object:Gem::Version
|
139
|
-
version:
|
125
|
+
version: 0.5.3
|
140
126
|
type: :runtime
|
141
127
|
prerelease: false
|
142
128
|
version_requirements: !ruby/object:Gem::Requirement
|
143
129
|
requirements:
|
144
|
-
- - "
|
130
|
+
- - "~>"
|
145
131
|
- !ruby/object:Gem::Version
|
146
|
-
version:
|
132
|
+
version: 0.5.3
|
147
133
|
- !ruby/object:Gem::Dependency
|
148
|
-
name:
|
134
|
+
name: activesupport
|
149
135
|
requirement: !ruby/object:Gem::Requirement
|
150
136
|
requirements:
|
151
|
-
- - "
|
137
|
+
- - "~>"
|
152
138
|
- !ruby/object:Gem::Version
|
153
|
-
version: '
|
139
|
+
version: '5.2'
|
154
140
|
type: :runtime
|
155
141
|
prerelease: false
|
156
142
|
version_requirements: !ruby/object:Gem::Requirement
|
157
143
|
requirements:
|
158
|
-
- - "
|
144
|
+
- - "~>"
|
159
145
|
- !ruby/object:Gem::Version
|
160
|
-
version: '
|
146
|
+
version: '5.2'
|
161
147
|
- !ruby/object:Gem::Dependency
|
162
|
-
name:
|
148
|
+
name: padrino-helpers
|
163
149
|
requirement: !ruby/object:Gem::Requirement
|
164
150
|
requirements:
|
165
|
-
- - "
|
166
|
-
- !ruby/object:Gem::Version
|
167
|
-
version: '6.1'
|
168
|
-
- - "<"
|
151
|
+
- - "~>"
|
169
152
|
- !ruby/object:Gem::Version
|
170
|
-
version:
|
153
|
+
version: 0.14.4
|
171
154
|
type: :runtime
|
172
155
|
prerelease: false
|
173
156
|
version_requirements: !ruby/object:Gem::Requirement
|
174
157
|
requirements:
|
175
|
-
- - "
|
176
|
-
- !ruby/object:Gem::Version
|
177
|
-
version: '6.1'
|
178
|
-
- - "<"
|
158
|
+
- - "~>"
|
179
159
|
- !ruby/object:Gem::Version
|
180
|
-
version:
|
160
|
+
version: 0.14.4
|
181
161
|
- !ruby/object:Gem::Dependency
|
182
|
-
name:
|
162
|
+
name: addressable
|
183
163
|
requirement: !ruby/object:Gem::Requirement
|
184
164
|
requirements:
|
185
165
|
- - "~>"
|
186
166
|
- !ruby/object:Gem::Version
|
187
|
-
version:
|
167
|
+
version: '2.3'
|
188
168
|
type: :runtime
|
189
169
|
prerelease: false
|
190
170
|
version_requirements: !ruby/object:Gem::Requirement
|
191
171
|
requirements:
|
192
172
|
- - "~>"
|
193
173
|
- !ruby/object:Gem::Version
|
194
|
-
version:
|
174
|
+
version: '2.3'
|
195
175
|
- !ruby/object:Gem::Dependency
|
196
|
-
name:
|
176
|
+
name: memoist
|
197
177
|
requirement: !ruby/object:Gem::Requirement
|
198
178
|
requirements:
|
199
179
|
- - "~>"
|
200
180
|
- !ruby/object:Gem::Version
|
201
|
-
version: '
|
181
|
+
version: '0.14'
|
202
182
|
type: :runtime
|
203
183
|
prerelease: false
|
204
184
|
version_requirements: !ruby/object:Gem::Requirement
|
205
185
|
requirements:
|
206
186
|
- - "~>"
|
207
187
|
- !ruby/object:Gem::Version
|
208
|
-
version: '
|
188
|
+
version: '0.14'
|
209
189
|
- !ruby/object:Gem::Dependency
|
210
|
-
name:
|
190
|
+
name: backports
|
211
191
|
requirement: !ruby/object:Gem::Requirement
|
212
192
|
requirements:
|
213
193
|
- - "~>"
|
214
194
|
- !ruby/object:Gem::Version
|
215
|
-
version: '
|
195
|
+
version: '3.11'
|
216
196
|
type: :runtime
|
217
197
|
prerelease: false
|
218
198
|
version_requirements: !ruby/object:Gem::Requirement
|
219
199
|
requirements:
|
220
200
|
- - "~>"
|
221
201
|
- !ruby/object:Gem::Version
|
222
|
-
version: '
|
202
|
+
version: '3.11'
|
223
203
|
- !ruby/object:Gem::Dependency
|
224
204
|
name: listen
|
225
205
|
requirement: !ruby/object:Gem::Requirement
|
226
206
|
requirements:
|
227
207
|
- - "~>"
|
228
208
|
- !ruby/object:Gem::Version
|
229
|
-
version: 3.0
|
209
|
+
version: '3.0'
|
230
210
|
type: :runtime
|
231
211
|
prerelease: false
|
232
212
|
version_requirements: !ruby/object:Gem::Requirement
|
233
213
|
requirements:
|
234
214
|
- - "~>"
|
235
215
|
- !ruby/object:Gem::Version
|
236
|
-
version: 3.0
|
216
|
+
version: '3.0'
|
237
217
|
- !ruby/object:Gem::Dependency
|
238
218
|
name: i18n
|
239
219
|
requirement: !ruby/object:Gem::Requirement
|
240
220
|
requirements:
|
241
221
|
- - "~>"
|
242
222
|
- !ruby/object:Gem::Version
|
243
|
-
version:
|
223
|
+
version: 0.9.0
|
244
224
|
type: :runtime
|
245
225
|
prerelease: false
|
246
226
|
version_requirements: !ruby/object:Gem::Requirement
|
247
227
|
requirements:
|
248
228
|
- - "~>"
|
249
229
|
- !ruby/object:Gem::Version
|
250
|
-
version:
|
230
|
+
version: 0.9.0
|
251
231
|
- !ruby/object:Gem::Dependency
|
252
232
|
name: fastimage
|
253
233
|
requirement: !ruby/object:Gem::Requirement
|
@@ -282,14 +262,14 @@ dependencies:
|
|
282
262
|
requirements:
|
283
263
|
- - "~>"
|
284
264
|
- !ruby/object:Gem::Version
|
285
|
-
version: '
|
265
|
+
version: '4.1'
|
286
266
|
type: :runtime
|
287
267
|
prerelease: false
|
288
268
|
version_requirements: !ruby/object:Gem::Requirement
|
289
269
|
requirements:
|
290
270
|
- - "~>"
|
291
271
|
- !ruby/object:Gem::Version
|
292
|
-
version: '
|
272
|
+
version: '4.1'
|
293
273
|
- !ruby/object:Gem::Dependency
|
294
274
|
name: execjs
|
295
275
|
requirement: !ruby/object:Gem::Requirement
|
@@ -305,64 +285,64 @@ dependencies:
|
|
305
285
|
- !ruby/object:Gem::Version
|
306
286
|
version: '2.0'
|
307
287
|
- !ruby/object:Gem::Dependency
|
308
|
-
name:
|
288
|
+
name: oj
|
309
289
|
requirement: !ruby/object:Gem::Requirement
|
310
290
|
requirements:
|
311
291
|
- - "~>"
|
312
292
|
- !ruby/object:Gem::Version
|
313
|
-
version:
|
293
|
+
version: '3.7'
|
314
294
|
type: :runtime
|
315
295
|
prerelease: false
|
316
296
|
version_requirements: !ruby/object:Gem::Requirement
|
317
297
|
requirements:
|
318
298
|
- - "~>"
|
319
299
|
- !ruby/object:Gem::Version
|
320
|
-
version:
|
300
|
+
version: '3.7'
|
321
301
|
- !ruby/object:Gem::Dependency
|
322
|
-
name:
|
302
|
+
name: contracts
|
323
303
|
requirement: !ruby/object:Gem::Requirement
|
324
304
|
requirements:
|
325
305
|
- - "~>"
|
326
306
|
- !ruby/object:Gem::Version
|
327
|
-
version:
|
307
|
+
version: 0.16.0
|
328
308
|
type: :runtime
|
329
309
|
prerelease: false
|
330
310
|
version_requirements: !ruby/object:Gem::Requirement
|
331
311
|
requirements:
|
332
312
|
- - "~>"
|
333
313
|
- !ruby/object:Gem::Version
|
334
|
-
version:
|
314
|
+
version: 0.16.0
|
335
315
|
- !ruby/object:Gem::Dependency
|
336
|
-
name:
|
316
|
+
name: hashie
|
337
317
|
requirement: !ruby/object:Gem::Requirement
|
338
318
|
requirements:
|
339
319
|
- - "~>"
|
340
320
|
- !ruby/object:Gem::Version
|
341
|
-
version: '3.
|
321
|
+
version: '3.4'
|
342
322
|
type: :runtime
|
343
323
|
prerelease: false
|
344
324
|
version_requirements: !ruby/object:Gem::Requirement
|
345
325
|
requirements:
|
346
326
|
- - "~>"
|
347
327
|
- !ruby/object:Gem::Version
|
348
|
-
version: '3.
|
328
|
+
version: '3.4'
|
349
329
|
- !ruby/object:Gem::Dependency
|
350
|
-
name:
|
330
|
+
name: hamster
|
351
331
|
requirement: !ruby/object:Gem::Requirement
|
352
332
|
requirements:
|
353
333
|
- - "~>"
|
354
334
|
- !ruby/object:Gem::Version
|
355
|
-
version: '3.
|
335
|
+
version: '3.0'
|
356
336
|
type: :runtime
|
357
337
|
prerelease: false
|
358
338
|
version_requirements: !ruby/object:Gem::Requirement
|
359
339
|
requirements:
|
360
340
|
- - "~>"
|
361
341
|
- !ruby/object:Gem::Version
|
362
|
-
version: '3.
|
342
|
+
version: '3.0'
|
363
343
|
description: A static site generator. Provides dozens of templating languages (Haml,
|
364
|
-
Sass,
|
365
|
-
|
344
|
+
Sass, Slim, CoffeeScript, and more). Makes minification, compression, cache busting,
|
345
|
+
Yaml data (and more) an easy part of your development cycle.
|
366
346
|
email:
|
367
347
|
- me@tdreyno.com
|
368
348
|
- ben@benhollis.net
|
@@ -377,1072 +357,6 @@ files:
|
|
377
357
|
- ".yardopts"
|
378
358
|
- Rakefile
|
379
359
|
- cucumber.yml
|
380
|
-
- features/asset_hash.feature
|
381
|
-
- features/asset_host.feature
|
382
|
-
- features/auto_layout.feature
|
383
|
-
- features/automatic_alt_tags.feature
|
384
|
-
- features/automatic_directory_matcher.feature
|
385
|
-
- features/automatic_image_sizes.feature
|
386
|
-
- features/builder.feature
|
387
|
-
- features/cache_buster.feature
|
388
|
-
- features/capture_html.feature
|
389
|
-
- features/chained_templates.feature
|
390
|
-
- features/clean_build.feature
|
391
|
-
- features/coffee-script.feature
|
392
|
-
- features/collections.feature
|
393
|
-
- features/console.feature
|
394
|
-
- features/content_for.feature
|
395
|
-
- features/content_type.feature
|
396
|
-
- features/custom-source.feature
|
397
|
-
- features/custom_layout_engines.feature
|
398
|
-
- features/custom_layouts.feature
|
399
|
-
- features/data.feature
|
400
|
-
- features/default-layout.feature
|
401
|
-
- features/default_alt_tag.feature
|
402
|
-
- features/directory_index.feature
|
403
|
-
- features/dynamic_pages.feature
|
404
|
-
- features/encoding_option.feature
|
405
|
-
- features/extension_api_deprecations.feature
|
406
|
-
- features/extension_hooks.feature
|
407
|
-
- features/extensionless_text_files.feature
|
408
|
-
- features/feature_params.feature
|
409
|
-
- features/former_padrino_helpers.feature
|
410
|
-
- features/front-matter-neighbor.feature
|
411
|
-
- features/front-matter.feature
|
412
|
-
- features/frontmatter_page_settings.feature
|
413
|
-
- features/gzip.feature
|
414
|
-
- features/helpers_auto_javascript_include_tag.feature
|
415
|
-
- features/helpers_auto_stylesheet_link_tag.feature
|
416
|
-
- features/helpers_content_tag.feature
|
417
|
-
- features/helpers_external.feature
|
418
|
-
- features/helpers_form_tag.feature
|
419
|
-
- features/helpers_link_to.feature
|
420
|
-
- features/helpers_lorem.feature
|
421
|
-
- features/helpers_page_classes.feature
|
422
|
-
- features/helpers_select_tag.feature
|
423
|
-
- features/helpers_url_for.feature
|
424
|
-
- features/i18n_builder.feature
|
425
|
-
- features/i18n_force_locale.feature
|
426
|
-
- features/i18n_link_to.feature
|
427
|
-
- features/i18n_mixed_sources.feature
|
428
|
-
- features/i18n_partials.feature
|
429
|
-
- features/i18n_preview.feature
|
430
|
-
- features/ignore.feature
|
431
|
-
- features/ignore_already_minified.feature
|
432
|
-
- features/image_srcset_paths.feature
|
433
|
-
- features/import_files.feature
|
434
|
-
- features/layouts_dir.feature
|
435
|
-
- features/liquid.feature
|
436
|
-
- features/markdown.feature
|
437
|
-
- features/markdown_kramdown.feature
|
438
|
-
- features/markdown_kramdown_in_haml.feature
|
439
|
-
- features/markdown_kramdown_in_slim.feature
|
440
|
-
- features/markdown_redcarpet.feature
|
441
|
-
- features/markdown_redcarpet_in_haml.feature
|
442
|
-
- features/markdown_redcarpet_in_slim.feature
|
443
|
-
- features/minify_css.feature
|
444
|
-
- features/minify_javascript.feature
|
445
|
-
- features/missing-tilt-lib.feature
|
446
|
-
- features/more-clean_build.feature
|
447
|
-
- features/more-extensionless_text_files.feature
|
448
|
-
- features/more-frontmatter_page_settings.feature
|
449
|
-
- features/more-ignore.feature
|
450
|
-
- features/more-sitemap_traversal.feature
|
451
|
-
- features/more-wildcard_page_helper.feature
|
452
|
-
- features/mount_rack.feature
|
453
|
-
- features/move_files.feature
|
454
|
-
- features/multiple-sources.feature
|
455
|
-
- features/nested_layouts.feature
|
456
|
-
- features/page-id.feature
|
457
|
-
- features/paginate.feature
|
458
|
-
- features/partials.feature
|
459
|
-
- features/preview_changes.feature
|
460
|
-
- features/proxy_pages.feature
|
461
|
-
- features/redirects.feature
|
462
|
-
- features/relative_assets.feature
|
463
|
-
- features/relative_assets_helpers_only.feature
|
464
|
-
- features/sass-assets-paths.feature
|
465
|
-
- features/sass_in_slim.feature
|
466
|
-
- features/sass_partials.feature
|
467
|
-
- features/scss-support.feature
|
468
|
-
- features/sitemap_traversal.feature
|
469
|
-
- features/slim.feature
|
470
|
-
- features/strip_url.feature
|
471
|
-
- features/support/env.rb
|
472
|
-
- features/support/preserve_mime_types.rb
|
473
|
-
- features/template-key-collision.feature
|
474
|
-
- features/tilde_directories.feature
|
475
|
-
- features/unicode_filecontents.feature
|
476
|
-
- features/unicode_filenames.feature
|
477
|
-
- features/v4_extension_callbacks.feature
|
478
|
-
- features/wildcard_page_helper.feature
|
479
|
-
- fixtures/asset-hash-app/config.rb
|
480
|
-
- fixtures/asset-hash-app/lib/middleware.rb
|
481
|
-
- fixtures/asset-hash-app/source/api.json.erb
|
482
|
-
- fixtures/asset-hash-app/source/apple-touch-icon.png
|
483
|
-
- fixtures/asset-hash-app/source/favicon.ico
|
484
|
-
- fixtures/asset-hash-app/source/fonts/fontawesome-webfont.woff
|
485
|
-
- fixtures/asset-hash-app/source/fonts/fontawesome-webfont.woff2
|
486
|
-
- fixtures/asset-hash-app/source/images/100px.gif
|
487
|
-
- fixtures/asset-hash-app/source/images/100px.jpg
|
488
|
-
- fixtures/asset-hash-app/source/images/100px.png
|
489
|
-
- fixtures/asset-hash-app/source/images/200px.jpg
|
490
|
-
- fixtures/asset-hash-app/source/images/300px.jpg
|
491
|
-
- fixtures/asset-hash-app/source/index.html.erb
|
492
|
-
- fixtures/asset-hash-app/source/javascripts/application.js
|
493
|
-
- fixtures/asset-hash-app/source/layout.erb
|
494
|
-
- fixtures/asset-hash-app/source/other.html.erb
|
495
|
-
- fixtures/asset-hash-app/source/partials.html.erb
|
496
|
-
- fixtures/asset-hash-app/source/slim.html.slim
|
497
|
-
- fixtures/asset-hash-app/source/stylesheets/_partial.sass
|
498
|
-
- fixtures/asset-hash-app/source/stylesheets/fragment.css.scss
|
499
|
-
- fixtures/asset-hash-app/source/stylesheets/site.css.scss
|
500
|
-
- fixtures/asset-hash-app/source/stylesheets/uses_fonts.css
|
501
|
-
- fixtures/asset-hash-app/source/stylesheets/uses_partials.css.sass
|
502
|
-
- fixtures/asset-hash-app/source/subdir/api.json.erb
|
503
|
-
- fixtures/asset-hash-app/source/subdir/index.html.erb
|
504
|
-
- fixtures/asset-hash-host-app/source/images/100px.gif
|
505
|
-
- fixtures/asset-hash-host-app/source/images/100px.jpg
|
506
|
-
- fixtures/asset-hash-host-app/source/images/100px.png
|
507
|
-
- fixtures/asset-hash-host-app/source/index.html.erb
|
508
|
-
- fixtures/asset-hash-host-app/source/layout.erb
|
509
|
-
- fixtures/asset-hash-host-app/source/other.html.erb
|
510
|
-
- fixtures/asset-hash-host-app/source/stylesheets/fragment.css.scss
|
511
|
-
- fixtures/asset-hash-host-app/source/stylesheets/site.css.scss
|
512
|
-
- fixtures/asset-hash-host-app/source/subdir/index.html.erb
|
513
|
-
- fixtures/asset-hash-minified-app/config.rb
|
514
|
-
- fixtures/asset-hash-minified-app/source/images/100px.jpg
|
515
|
-
- fixtures/asset-hash-minified-app/source/javascripts/jquery.min.js
|
516
|
-
- fixtures/asset-hash-minified-app/source/stylesheets/test.css
|
517
|
-
- fixtures/asset-hash-prefix/config.rb
|
518
|
-
- fixtures/asset-hash-prefix/lib/middleware.rb
|
519
|
-
- fixtures/asset-hash-prefix/source/index.html.erb
|
520
|
-
- fixtures/asset-hash-prefix/source/javascripts/application.js
|
521
|
-
- fixtures/asset-hash-prefix/source/javascripts/application.js.map
|
522
|
-
- fixtures/asset-hash-prefix/source/layout.erb
|
523
|
-
- fixtures/asset-hash-remove-filename/config.rb
|
524
|
-
- fixtures/asset-hash-remove-filename/source/index.html.erb
|
525
|
-
- fixtures/asset-hash-remove-filename/source/javascripts/application.js
|
526
|
-
- fixtures/asset-hash-remove-filename/source/javascripts/application.js.map
|
527
|
-
- fixtures/asset-hash-remove-filename/source/layout.erb
|
528
|
-
- fixtures/asset-hash-source-map/config.rb
|
529
|
-
- fixtures/asset-hash-source-map/lib/middleware.rb
|
530
|
-
- fixtures/asset-hash-source-map/source/index.html.erb
|
531
|
-
- fixtures/asset-hash-source-map/source/javascripts/application.js
|
532
|
-
- fixtures/asset-hash-source-map/source/javascripts/application.js.map
|
533
|
-
- fixtures/asset-hash-source-map/source/layout.erb
|
534
|
-
- fixtures/asset-host-app/config.rb
|
535
|
-
- fixtures/asset-host-app/source/.htaccess
|
536
|
-
- fixtures/asset-host-app/source/asset_host.html.erb
|
537
|
-
- fixtures/asset-host-app/source/images/blank.gif
|
538
|
-
- fixtures/asset-host-app/source/images/blank0.gif
|
539
|
-
- fixtures/asset-host-app/source/images/blank1.gif
|
540
|
-
- fixtures/asset-host-app/source/images/blank10.gif
|
541
|
-
- fixtures/asset-host-app/source/images/blank100.gif
|
542
|
-
- fixtures/asset-host-app/source/images/blank101.gif
|
543
|
-
- fixtures/asset-host-app/source/images/blank1010.gif
|
544
|
-
- fixtures/asset-host-app/source/images/blank102.gif
|
545
|
-
- fixtures/asset-host-app/source/images/blank1020.gif
|
546
|
-
- fixtures/asset-host-app/source/images/blank1021.gif
|
547
|
-
- fixtures/asset-host-app/source/images/blank1022.gif
|
548
|
-
- fixtures/asset-host-app/source/images/blank1023.gif
|
549
|
-
- fixtures/asset-host-app/source/images/blank1024.gif
|
550
|
-
- fixtures/asset-host-app/source/images/blank103.gif
|
551
|
-
- fixtures/asset-host-app/source/images/blank1030.gif
|
552
|
-
- fixtures/asset-host-app/source/images/blank1031.gif
|
553
|
-
- fixtures/asset-host-app/source/images/blank1032.gif
|
554
|
-
- fixtures/asset-host-app/source/images/blank1033.gif
|
555
|
-
- fixtures/asset-host-app/source/images/blank1034.gif
|
556
|
-
- fixtures/asset-host-app/source/images/blank104.gif
|
557
|
-
- fixtures/asset-host-app/source/images/blank1043.gif
|
558
|
-
- fixtures/asset-host-app/source/images/blank1054.gif
|
559
|
-
- fixtures/asset-host-app/source/images/blank2.gif
|
560
|
-
- fixtures/asset-host-app/source/images/blank20.gif
|
561
|
-
- fixtures/asset-host-app/source/images/blank21.gif
|
562
|
-
- fixtures/asset-host-app/source/images/blank22.gif
|
563
|
-
- fixtures/asset-host-app/source/images/blank23.gif
|
564
|
-
- fixtures/asset-host-app/source/images/blank24.gif
|
565
|
-
- fixtures/asset-host-app/source/images/blank3.gif
|
566
|
-
- fixtures/asset-host-app/source/images/blank30.gif
|
567
|
-
- fixtures/asset-host-app/source/images/blank31.gif
|
568
|
-
- fixtures/asset-host-app/source/images/blank32.gif
|
569
|
-
- fixtures/asset-host-app/source/images/blank33.gif
|
570
|
-
- fixtures/asset-host-app/source/images/blank34.gif
|
571
|
-
- fixtures/asset-host-app/source/images/blank4.gif
|
572
|
-
- fixtures/asset-host-app/source/images/blank43.gif
|
573
|
-
- fixtures/asset-host-app/source/images/blank54.gif
|
574
|
-
- fixtures/asset-host-app/source/javascripts/asset_host.js
|
575
|
-
- fixtures/asset-host-app/source/stylesheets/asset_host.css.sass
|
576
|
-
- fixtures/auto-css-app/config.rb
|
577
|
-
- fixtures/auto-css-app/source/auto-css.html.erb
|
578
|
-
- fixtures/auto-css-app/source/auto-css/auto-css.html.erb
|
579
|
-
- fixtures/auto-css-app/source/auto-css/index.html.erb
|
580
|
-
- fixtures/auto-css-app/source/auto-css/sub/auto-css.html.erb
|
581
|
-
- fixtures/auto-css-app/source/stylesheets/auto-css.css
|
582
|
-
- fixtures/auto-css-app/source/stylesheets/auto-css/auto-css.css
|
583
|
-
- fixtures/auto-css-app/source/stylesheets/auto-css/index.css
|
584
|
-
- fixtures/auto-css-app/source/stylesheets/auto-css/sub/auto-css.css
|
585
|
-
- fixtures/auto-js-app/config.rb
|
586
|
-
- fixtures/auto-js-app/source/auto-js.html.erb
|
587
|
-
- fixtures/auto-js-app/source/auto-js/auto-js.html.erb
|
588
|
-
- fixtures/auto-js-app/source/auto-js/index.html.erb
|
589
|
-
- fixtures/auto-js-app/source/auto-js/sub/auto-js.html.erb
|
590
|
-
- fixtures/auto-js-app/source/javascripts/auto-js.js
|
591
|
-
- fixtures/auto-js-app/source/javascripts/auto-js/auto-js.js
|
592
|
-
- fixtures/auto-js-app/source/javascripts/auto-js/index.js
|
593
|
-
- fixtures/auto-js-app/source/javascripts/auto-js/sub/auto-js.js
|
594
|
-
- fixtures/auto-js-directory-index-app/config.rb
|
595
|
-
- fixtures/auto-js-directory-index-app/source/auto-js.html.erb
|
596
|
-
- fixtures/auto-js-directory-index-app/source/javascripts/auto-js.js
|
597
|
-
- fixtures/automatic-alt-tags-app/config.rb
|
598
|
-
- fixtures/automatic-alt-tags-app/source/auto-image-sizes.html.erb
|
599
|
-
- fixtures/automatic-alt-tags-app/source/images/blank.gif
|
600
|
-
- fixtures/automatic-directory-matcher-app/config.rb
|
601
|
-
- fixtures/automatic-directory-matcher-app/source/root-plain.html
|
602
|
-
- fixtures/automatic-directory-matcher-app/source/root.html.erb
|
603
|
-
- fixtures/automatic-directory-matcher-app/source/sub--sub--sub-plain.html
|
604
|
-
- fixtures/automatic-directory-matcher-app/source/sub--sub--sub.html.erb
|
605
|
-
- fixtures/automatic-directory-matcher-app/source/sub--sub-plain.html
|
606
|
-
- fixtures/automatic-directory-matcher-app/source/sub--sub.html.erb
|
607
|
-
- fixtures/automatic-image-size-app/config.rb
|
608
|
-
- fixtures/automatic-image-size-app/source/auto-image-sizes.html.erb
|
609
|
-
- fixtures/automatic-image-size-app/source/images/blank.gif
|
610
|
-
- fixtures/automatic-image-size-app/source/markdown-sizes.html.markdown
|
611
|
-
- fixtures/basic-data-app/config.rb
|
612
|
-
- fixtures/basic-data-app/data/test.yml
|
613
|
-
- fixtures/basic-data-app/data/test2.json
|
614
|
-
- fixtures/basic-data-app/data/test3.toml
|
615
|
-
- fixtures/basic-data-app/source/data.html.erb
|
616
|
-
- fixtures/basic-data-app/source/data3.html.erb
|
617
|
-
- fixtures/basic-data-app/source/data4.html.erb
|
618
|
-
- fixtures/build-with-errors-app/config.rb
|
619
|
-
- fixtures/build-with-errors-app/source/index.html.erb
|
620
|
-
- fixtures/cache-buster-app/config.rb
|
621
|
-
- fixtures/cache-buster-app/source/cache-buster.html.erb
|
622
|
-
- fixtures/cache-buster-app/source/images/blank.gif
|
623
|
-
- fixtures/cache-buster-app/source/stylesheets/relative_assets.css.sass
|
624
|
-
- fixtures/cache-buster-app/source/stylesheets/site.css.sass
|
625
|
-
- fixtures/capture-html-app/config.rb
|
626
|
-
- fixtures/capture-html-app/source/capture_html_erb.html.erb
|
627
|
-
- fixtures/capture-html-app/source/capture_html_haml.html.haml
|
628
|
-
- fixtures/capture-html-app/source/capture_html_slim.html.slim
|
629
|
-
- fixtures/capture-html-app/source/layouts/capture_html.erb
|
630
|
-
- fixtures/chained-app/config.rb
|
631
|
-
- fixtures/chained-app/data/article.yml
|
632
|
-
- fixtures/chained-app/source/index.html.str.erb
|
633
|
-
- fixtures/chained-app/source/test.erb.combobreaker.str.erb
|
634
|
-
- fixtures/clean-app/config-complications.rb
|
635
|
-
- fixtures/clean-app/config-empty.rb
|
636
|
-
- fixtures/clean-app/config-hidden-dir-after.rb
|
637
|
-
- fixtures/clean-app/config-hidden-dir-before.rb
|
638
|
-
- fixtures/clean-app/config.rb
|
639
|
-
- fixtures/clean-app/source/index.html.erb
|
640
|
-
- fixtures/clean-app/source/layout.erb
|
641
|
-
- fixtures/clean-app/source/layouts/custom.erb
|
642
|
-
- fixtures/clean-app/source/real.html
|
643
|
-
- fixtures/clean-app/source/real/index.html.erb
|
644
|
-
- fixtures/clean-app/source/should_be_ignored.html
|
645
|
-
- fixtures/clean-app/source/should_be_ignored2.html
|
646
|
-
- fixtures/clean-app/source/should_be_ignored3.html
|
647
|
-
- fixtures/clean-app/source/static.html
|
648
|
-
- fixtures/clean-dir-app/config.rb
|
649
|
-
- fixtures/clean-dir-app/source/about.html
|
650
|
-
- fixtures/clean-nested-app/config.rb
|
651
|
-
- fixtures/clean-nested-app/source/about.html
|
652
|
-
- fixtures/clean-nested-app/source/nested/nested.html
|
653
|
-
- fixtures/coffeescript-app/config.rb
|
654
|
-
- fixtures/coffeescript-app/source/inline-coffeescript.html.haml
|
655
|
-
- fixtures/coffeescript-app/source/javascripts/broken-coffee.js.coffee
|
656
|
-
- fixtures/coffeescript-app/source/javascripts/coffee_test.js.coffee
|
657
|
-
- fixtures/collections-app/source/blog1/2011-01-01-new-article.html.markdown
|
658
|
-
- fixtures/collections-app/source/blog1/2011-01-02-another-article.html.markdown
|
659
|
-
- fixtures/collections-app/source/blog2/2011-01-01-new-article.html.markdown
|
660
|
-
- fixtures/collections-app/source/blog2/2011-01-02-another-article.html.markdown
|
661
|
-
- fixtures/content-for-app/config.rb
|
662
|
-
- fixtures/content-for-app/source/content_for_erb.html.erb
|
663
|
-
- fixtures/content-for-app/source/content_for_haml.html.haml
|
664
|
-
- fixtures/content-for-app/source/content_for_slim.html.slim
|
665
|
-
- fixtures/content-for-app/source/layouts/content_for.erb
|
666
|
-
- fixtures/content-type-app/config.rb
|
667
|
-
- fixtures/content-type-app/source/.htaccess
|
668
|
-
- fixtures/content-type-app/source/README
|
669
|
-
- fixtures/content-type-app/source/images/blank.gif
|
670
|
-
- fixtures/content-type-app/source/index.html
|
671
|
-
- fixtures/content-type-app/source/index.php
|
672
|
-
- fixtures/content-type-app/source/javascripts/app.js
|
673
|
-
- fixtures/content-type-app/source/override.html
|
674
|
-
- fixtures/content-type-app/source/stylesheets/site.css
|
675
|
-
- fixtures/csspie/config.rb
|
676
|
-
- fixtures/csspie/source/stylesheets/PIE.htc
|
677
|
-
- fixtures/custom-layout-app/config.rb
|
678
|
-
- fixtures/custom-layout-app/source/index.html.erb
|
679
|
-
- fixtures/custom-layout-app/source/layout.str
|
680
|
-
- fixtures/custom-layout-app2/config.rb
|
681
|
-
- fixtures/custom-layout-app2/source/custom-layout-dir/index.html.erb
|
682
|
-
- fixtures/custom-layout-app2/source/custom-layout.html.erb
|
683
|
-
- fixtures/custom-layout-app2/source/layouts/custom.erb
|
684
|
-
- fixtures/custom-src-app/config.rb
|
685
|
-
- fixtures/custom-src-app/src/index.html
|
686
|
-
- fixtures/custom-src-app/src/layouts/layout.html.erb
|
687
|
-
- fixtures/data-app/config.rb
|
688
|
-
- fixtures/data-app/data/pages.yml
|
689
|
-
- fixtures/data-app/source/index.html.erb
|
690
|
-
- fixtures/data-app/source/layout.erb
|
691
|
-
- fixtures/default-alt-tags-app/config.rb
|
692
|
-
- fixtures/default-alt-tags-app/source/empty-alt-tag.html.erb
|
693
|
-
- fixtures/default-alt-tags-app/source/images/blank.gif
|
694
|
-
- fixtures/default-alt-tags-app/source/meaningful-alt-tag.html.erb
|
695
|
-
- fixtures/different-engine-layout/config.rb
|
696
|
-
- fixtures/different-engine-layout/source/index.haml
|
697
|
-
- fixtures/different-engine-layout/source/index.html.str
|
698
|
-
- fixtures/different-engine-layout/source/layout.erb
|
699
|
-
- fixtures/different-engine-partial/config.rb
|
700
|
-
- fixtures/different-engine-partial/source/index.html.erb
|
701
|
-
- fixtures/different-engine-partial/source/layouts/layout.erb
|
702
|
-
- fixtures/different-engine-partial/source/shared/_footer.str
|
703
|
-
- fixtures/different-engine-partial/source/shared/_header.erb
|
704
|
-
- fixtures/dynamic-pages-app/config.rb
|
705
|
-
- fixtures/dynamic-pages-app/source/real.html
|
706
|
-
- fixtures/dynamic-pages-app/source/real/index.html.erb
|
707
|
-
- fixtures/dynamic-pages-app/source/should_be_ignored.html
|
708
|
-
- fixtures/dynamic-pages-app/source/should_be_ignored2.html
|
709
|
-
- fixtures/dynamic-pages-app/source/should_be_ignored3.html
|
710
|
-
- fixtures/dynamic-pages-app/source/should_be_ignored4.html
|
711
|
-
- fixtures/dynamic-pages-app/source/should_be_ignored5.html
|
712
|
-
- fixtures/dynamic-pages-app/source/should_be_ignored6.html
|
713
|
-
- fixtures/dynamic-pages-app/source/should_be_ignored7.html
|
714
|
-
- fixtures/dynamic-pages-app/source/should_be_ignored8.html
|
715
|
-
- fixtures/dynamic-pages-app/source/should_be_ignored9.html
|
716
|
-
- fixtures/ember-cli-app/config.rb
|
717
|
-
- fixtures/ember-cli-app/source/javascripts/file.js
|
718
|
-
- fixtures/ember-cli-app/test-app/.bowerrc
|
719
|
-
- fixtures/ember-cli-app/test-app/.gitignore
|
720
|
-
- fixtures/ember-cli-app/test-app/.jshintrc
|
721
|
-
- fixtures/ember-cli-app/test-app/Brocfile.js
|
722
|
-
- fixtures/ember-cli-app/test-app/README.md
|
723
|
-
- fixtures/ember-cli-app/test-app/app/app.js
|
724
|
-
- fixtures/ember-cli-app/test-app/app/components/.gitkeep
|
725
|
-
- fixtures/ember-cli-app/test-app/app/controllers/.gitkeep
|
726
|
-
- fixtures/ember-cli-app/test-app/app/helpers/.gitkeep
|
727
|
-
- fixtures/ember-cli-app/test-app/app/index.html
|
728
|
-
- fixtures/ember-cli-app/test-app/app/models/.gitkeep
|
729
|
-
- fixtures/ember-cli-app/test-app/app/router.js
|
730
|
-
- fixtures/ember-cli-app/test-app/app/routes/.gitkeep
|
731
|
-
- fixtures/ember-cli-app/test-app/app/styles/.gitkeep
|
732
|
-
- fixtures/ember-cli-app/test-app/app/styles/app.css
|
733
|
-
- fixtures/ember-cli-app/test-app/app/templates/.gitkeep
|
734
|
-
- fixtures/ember-cli-app/test-app/app/templates/application.hbs
|
735
|
-
- fixtures/ember-cli-app/test-app/app/templates/components/.gitkeep
|
736
|
-
- fixtures/ember-cli-app/test-app/app/views/.gitkeep
|
737
|
-
- fixtures/ember-cli-app/test-app/bower.json
|
738
|
-
- fixtures/ember-cli-app/test-app/config/environment.js
|
739
|
-
- fixtures/ember-cli-app/test-app/package.json
|
740
|
-
- fixtures/ember-cli-app/test-app/public/.gitkeep
|
741
|
-
- fixtures/ember-cli-app/test-app/testem.json
|
742
|
-
- fixtures/ember-cli-app/test-app/tests/.jshintrc
|
743
|
-
- fixtures/ember-cli-app/test-app/tests/helpers/resolver.js
|
744
|
-
- fixtures/ember-cli-app/test-app/tests/helpers/start-app.js
|
745
|
-
- fixtures/ember-cli-app/test-app/tests/index.html
|
746
|
-
- fixtures/ember-cli-app/test-app/tests/test-helper.js
|
747
|
-
- fixtures/ember-cli-app/test-app/tests/unit/.gitkeep
|
748
|
-
- fixtures/empty-app/not-config.rb
|
749
|
-
- fixtures/engine-matching-layout/config.rb
|
750
|
-
- fixtures/engine-matching-layout/source/index.html.erb
|
751
|
-
- fixtures/engine-matching-layout/source/layout.erb
|
752
|
-
- fixtures/env-app/config.rb
|
753
|
-
- fixtures/env-app/environments/development.rb
|
754
|
-
- fixtures/env-app/environments/production.rb
|
755
|
-
- fixtures/env-app/source/index.html.erb
|
756
|
-
- fixtures/env-app/source/stylesheets/site.css.scss
|
757
|
-
- fixtures/extension-api-deprecations-app/config.rb
|
758
|
-
- fixtures/extension-api-deprecations-app/source/index.html.erb
|
759
|
-
- fixtures/extension-api-deprecations-app/source/layouts/layout.erb
|
760
|
-
- fixtures/extension-hooks-app/config.rb
|
761
|
-
- fixtures/extension-hooks-app/source/index.html.erb
|
762
|
-
- fixtures/extensionless-text-files-app/config.rb
|
763
|
-
- fixtures/extensionless-text-files-app/source/CNAME
|
764
|
-
- fixtures/extensionless-text-files-app/source/LICENSE
|
765
|
-
- fixtures/extensionless-text-files-app/source/README
|
766
|
-
- fixtures/extensionless-text-files-app/source/index.html
|
767
|
-
- fixtures/external-helpers/config.rb
|
768
|
-
- fixtures/external-helpers/helpers/derp.rb
|
769
|
-
- fixtures/external-helpers/helpers/four_helpers.rb
|
770
|
-
- fixtures/external-helpers/helpers/one_helper.rb
|
771
|
-
- fixtures/external-helpers/helpers/yet_another_thingy.rb
|
772
|
-
- fixtures/external-helpers/lib/hello_helper.rb
|
773
|
-
- fixtures/external-helpers/source/automatic.html.erb
|
774
|
-
- fixtures/external-helpers/source/index.html.erb
|
775
|
-
- fixtures/external-pipeline-error/config.rb
|
776
|
-
- fixtures/external-pipeline-error/source/javascripts/file.js
|
777
|
-
- fixtures/feature-params-app/config.rb
|
778
|
-
- fixtures/feature-params-app/source/index.html.erb
|
779
|
-
- fixtures/fonts-app/config.rb
|
780
|
-
- fixtures/fonts-app/source/fonts/StMarie-Thin.otf
|
781
|
-
- fixtures/fonts-app/source/fonts/blank/blank.otf
|
782
|
-
- fixtures/fonts-app/source/stylesheets/fonts.css.scss
|
783
|
-
- fixtures/frontmatter-app/config.rb
|
784
|
-
- fixtures/frontmatter-app/source/front-matter-2.php.erb
|
785
|
-
- fixtures/frontmatter-app/source/front-matter-change.html.erb
|
786
|
-
- fixtures/frontmatter-app/source/front-matter-encoding.html.erb
|
787
|
-
- fixtures/frontmatter-app/source/front-matter-haml.html.haml
|
788
|
-
- fixtures/frontmatter-app/source/front-matter-line-2.html.erb
|
789
|
-
- fixtures/frontmatter-app/source/front-matter-pandoc.html.md.erb
|
790
|
-
- fixtures/frontmatter-app/source/raw-front-matter-toml.html
|
791
|
-
- fixtures/frontmatter-app/source/raw-front-matter.html
|
792
|
-
- fixtures/frontmatter-app/source/raw-front-matter.php
|
793
|
-
- fixtures/frontmatter-neighbor-app/config.rb
|
794
|
-
- fixtures/frontmatter-neighbor-app/source/front-matter-2.php.erb
|
795
|
-
- fixtures/frontmatter-neighbor-app/source/front-matter-2.php.erb.frontmatter
|
796
|
-
- fixtures/frontmatter-neighbor-app/source/front-matter-change.html.erb
|
797
|
-
- fixtures/frontmatter-neighbor-app/source/front-matter-change.html.erb.frontmatter
|
798
|
-
- fixtures/frontmatter-neighbor-app/source/front-matter-encoding.html.erb
|
799
|
-
- fixtures/frontmatter-neighbor-app/source/front-matter-encoding.html.erb.frontmatter
|
800
|
-
- fixtures/frontmatter-neighbor-app/source/raw-front-matter-toml.html
|
801
|
-
- fixtures/frontmatter-neighbor-app/source/raw-front-matter-toml.html.frontmatter
|
802
|
-
- fixtures/frontmatter-neighbor-app/source/raw-front-matter.html
|
803
|
-
- fixtures/frontmatter-neighbor-app/source/raw-front-matter.html.frontmatter
|
804
|
-
- fixtures/frontmatter-neighbor-app/source/raw-front-matter.php
|
805
|
-
- fixtures/frontmatter-neighbor-app/source/raw-front-matter.php.frontmatter
|
806
|
-
- fixtures/frontmatter-settings-app/config.rb
|
807
|
-
- fixtures/frontmatter-settings-app/source/alternate_layout.html.erb
|
808
|
-
- fixtures/frontmatter-settings-app/source/ignored.html.erb
|
809
|
-
- fixtures/frontmatter-settings-app/source/layouts/alternate.erb
|
810
|
-
- fixtures/frontmatter-settings-app/source/layouts/override.erb
|
811
|
-
- fixtures/frontmatter-settings-app/source/override_layout.html.erb
|
812
|
-
- fixtures/frontmatter-settings-app/source/page_mentioned.html.erb
|
813
|
-
- fixtures/frontmatter-settings-neighbor-app/config.rb
|
814
|
-
- fixtures/frontmatter-settings-neighbor-app/source/alternate_layout.html.erb
|
815
|
-
- fixtures/frontmatter-settings-neighbor-app/source/alternate_layout.html.erb.frontmatter
|
816
|
-
- fixtures/frontmatter-settings-neighbor-app/source/ignored.html.erb
|
817
|
-
- fixtures/frontmatter-settings-neighbor-app/source/ignored.html.erb.frontmatter
|
818
|
-
- fixtures/frontmatter-settings-neighbor-app/source/layouts/alternate.erb
|
819
|
-
- fixtures/frontmatter-settings-neighbor-app/source/layouts/override.erb
|
820
|
-
- fixtures/frontmatter-settings-neighbor-app/source/override_layout.html.erb
|
821
|
-
- fixtures/frontmatter-settings-neighbor-app/source/override_layout.html.erb.frontmatter
|
822
|
-
- fixtures/frontmatter-settings-neighbor-app/source/page_mentioned.html.erb
|
823
|
-
- fixtures/frontmatter-settings-neighbor-app/source/page_mentioned.html.erb.frontmatter
|
824
|
-
- fixtures/generator-test/config.rb
|
825
|
-
- fixtures/generator-test/source/index.html.erb
|
826
|
-
- fixtures/glob-app/config.rb
|
827
|
-
- fixtures/glob-app/source/index.html.erb
|
828
|
-
- fixtures/glob-app/source/stylesheets/site.css.str
|
829
|
-
- fixtures/gzip-app/config.rb
|
830
|
-
- fixtures/gzip-app/source/index.html
|
831
|
-
- fixtures/gzip-app/source/javascripts/test.js
|
832
|
-
- fixtures/gzip-app/source/stylesheets/test.css
|
833
|
-
- fixtures/i-8859-1-app/config.rb
|
834
|
-
- fixtures/i-8859-1-app/source/index.html.erb
|
835
|
-
- fixtures/i18n-alt-root-app/locales/en.yml
|
836
|
-
- fixtures/i18n-alt-root-app/locales/es.yml
|
837
|
-
- fixtures/i18n-alt-root-app/source/lang_data/hello.html.erb
|
838
|
-
- fixtures/i18n-alt-root-app/source/lang_data/index.html.erb
|
839
|
-
- fixtures/i18n-alt-root-app/source/layout.erb
|
840
|
-
- fixtures/i18n-default-app/locales/en.yml
|
841
|
-
- fixtures/i18n-default-app/locales/es.yml
|
842
|
-
- fixtures/i18n-default-app/source/localizable/index.html.erb
|
843
|
-
- fixtures/i18n-force-locale/config.rb
|
844
|
-
- fixtures/i18n-force-locale/locales/en.yml
|
845
|
-
- fixtures/i18n-force-locale/locales/es.yml
|
846
|
-
- fixtures/i18n-force-locale/locales/fr.yml
|
847
|
-
- fixtures/i18n-force-locale/source/index.html.haml
|
848
|
-
- fixtures/i18n-mixed-sources/config.rb
|
849
|
-
- fixtures/i18n-mixed-sources/locales/en.yml
|
850
|
-
- fixtures/i18n-mixed-sources/locales/es.yml
|
851
|
-
- fixtures/i18n-mixed-sources/source/a/sub.html.erb
|
852
|
-
- fixtures/i18n-mixed-sources/source/b/index.html.erb
|
853
|
-
- fixtures/i18n-mixed-sources/source/index.html.erb
|
854
|
-
- fixtures/i18n-mixed-sources/source/localizable/a/index.html.erb
|
855
|
-
- fixtures/i18n-mixed-sources/source/localizable/b/sub.html.erb
|
856
|
-
- fixtures/i18n-mixed-sources/source/localizable/index.html.erb
|
857
|
-
- fixtures/i18n-nested-app/locales/en.yml
|
858
|
-
- fixtures/i18n-nested-app/locales/en/more.yml
|
859
|
-
- fixtures/i18n-nested-app/locales/es.yml
|
860
|
-
- fixtures/i18n-nested-app/locales/es/mucho.yml
|
861
|
-
- fixtures/i18n-nested-app/source/localizable/index.html.erb
|
862
|
-
- fixtures/i18n-test-app/data/defaults_en.yml
|
863
|
-
- fixtures/i18n-test-app/data/defaults_es.yml
|
864
|
-
- fixtures/i18n-test-app/data/en_defaults.yml
|
865
|
-
- fixtures/i18n-test-app/locales/en.yml
|
866
|
-
- fixtures/i18n-test-app/locales/es.yml
|
867
|
-
- fixtures/i18n-test-app/source/CNAME
|
868
|
-
- fixtures/i18n-test-app/source/_country.en.erb
|
869
|
-
- fixtures/i18n-test-app/source/_country.es.erb
|
870
|
-
- fixtures/i18n-test-app/source/_site.erb
|
871
|
-
- fixtures/i18n-test-app/source/images/president.en.svg
|
872
|
-
- fixtures/i18n-test-app/source/images/president.es.svg
|
873
|
-
- fixtures/i18n-test-app/source/layouts/layout.erb
|
874
|
-
- fixtures/i18n-test-app/source/localizable/_state.en.erb
|
875
|
-
- fixtures/i18n-test-app/source/localizable/_state.es.erb
|
876
|
-
- fixtures/i18n-test-app/source/localizable/hello.html.erb
|
877
|
-
- fixtures/i18n-test-app/source/localizable/images/flag.en.svg
|
878
|
-
- fixtures/i18n-test-app/source/localizable/images/flag.es.svg
|
879
|
-
- fixtures/i18n-test-app/source/localizable/index.html.erb
|
880
|
-
- fixtures/i18n-test-app/source/localizable/morning.en.html.erb
|
881
|
-
- fixtures/i18n-test-app/source/localizable/morning.es.html.erb
|
882
|
-
- fixtures/i18n-test-app/source/localizable/one.en.html.md
|
883
|
-
- fixtures/i18n-test-app/source/localizable/one.es.html.md
|
884
|
-
- fixtures/i18n-test-app/source/localizable/partials/_greeting.en.erb
|
885
|
-
- fixtures/i18n-test-app/source/localizable/partials/_greeting.es.erb
|
886
|
-
- fixtures/i18n-test-app/source/localizable/partials/index.html.erb
|
887
|
-
- fixtures/i18n-test-app/source/password.txt
|
888
|
-
- fixtures/i18n-test-app/source/stylesheets/site.css
|
889
|
-
- fixtures/ignore-app/source/about.html.erb
|
890
|
-
- fixtures/ignore-app/source/images/icon/messages.png
|
891
|
-
- fixtures/ignore-app/source/images/pic.png
|
892
|
-
- fixtures/ignore-app/source/images/portrait.jpg
|
893
|
-
- fixtures/ignore-app/source/index.html.erb
|
894
|
-
- fixtures/ignore-app/source/plain.html
|
895
|
-
- fixtures/ignore-app/source/reports/another.html
|
896
|
-
- fixtures/ignore-app/source/reports/index.html
|
897
|
-
- fixtures/image-srcset-paths-app/image-srcset-paths.html.erb
|
898
|
-
- fixtures/image-srcset-paths-app/images/blank.gif
|
899
|
-
- fixtures/import-app/bower.json
|
900
|
-
- fixtures/import-app/bower_components/jquery/.bower.json
|
901
|
-
- fixtures/import-app/bower_components/jquery/MIT-LICENSE.txt
|
902
|
-
- fixtures/import-app/bower_components/jquery/bower.json
|
903
|
-
- fixtures/import-app/bower_components/jquery/dist/jquery.js
|
904
|
-
- fixtures/import-app/bower_components/jquery/dist/jquery.min.js
|
905
|
-
- fixtures/import-app/bower_components/jquery/dist/jquery.min.map
|
906
|
-
- fixtures/import-app/bower_components/jquery/src/ajax.js
|
907
|
-
- fixtures/import-app/bower_components/jquery/src/ajax/jsonp.js
|
908
|
-
- fixtures/import-app/bower_components/jquery/src/ajax/load.js
|
909
|
-
- fixtures/import-app/bower_components/jquery/src/ajax/parseJSON.js
|
910
|
-
- fixtures/import-app/bower_components/jquery/src/ajax/parseXML.js
|
911
|
-
- fixtures/import-app/bower_components/jquery/src/ajax/script.js
|
912
|
-
- fixtures/import-app/bower_components/jquery/src/ajax/var/nonce.js
|
913
|
-
- fixtures/import-app/bower_components/jquery/src/ajax/var/rquery.js
|
914
|
-
- fixtures/import-app/bower_components/jquery/src/ajax/xhr.js
|
915
|
-
- fixtures/import-app/bower_components/jquery/src/attributes.js
|
916
|
-
- fixtures/import-app/bower_components/jquery/src/attributes/attr.js
|
917
|
-
- fixtures/import-app/bower_components/jquery/src/attributes/classes.js
|
918
|
-
- fixtures/import-app/bower_components/jquery/src/attributes/prop.js
|
919
|
-
- fixtures/import-app/bower_components/jquery/src/attributes/support.js
|
920
|
-
- fixtures/import-app/bower_components/jquery/src/attributes/val.js
|
921
|
-
- fixtures/import-app/bower_components/jquery/src/callbacks.js
|
922
|
-
- fixtures/import-app/bower_components/jquery/src/core.js
|
923
|
-
- fixtures/import-app/bower_components/jquery/src/core/access.js
|
924
|
-
- fixtures/import-app/bower_components/jquery/src/core/init.js
|
925
|
-
- fixtures/import-app/bower_components/jquery/src/core/parseHTML.js
|
926
|
-
- fixtures/import-app/bower_components/jquery/src/core/ready.js
|
927
|
-
- fixtures/import-app/bower_components/jquery/src/core/var/rsingleTag.js
|
928
|
-
- fixtures/import-app/bower_components/jquery/src/css.js
|
929
|
-
- fixtures/import-app/bower_components/jquery/src/css/addGetHookIf.js
|
930
|
-
- fixtures/import-app/bower_components/jquery/src/css/curCSS.js
|
931
|
-
- fixtures/import-app/bower_components/jquery/src/css/defaultDisplay.js
|
932
|
-
- fixtures/import-app/bower_components/jquery/src/css/hiddenVisibleSelectors.js
|
933
|
-
- fixtures/import-app/bower_components/jquery/src/css/support.js
|
934
|
-
- fixtures/import-app/bower_components/jquery/src/css/swap.js
|
935
|
-
- fixtures/import-app/bower_components/jquery/src/css/var/cssExpand.js
|
936
|
-
- fixtures/import-app/bower_components/jquery/src/css/var/getStyles.js
|
937
|
-
- fixtures/import-app/bower_components/jquery/src/css/var/isHidden.js
|
938
|
-
- fixtures/import-app/bower_components/jquery/src/css/var/rmargin.js
|
939
|
-
- fixtures/import-app/bower_components/jquery/src/css/var/rnumnonpx.js
|
940
|
-
- fixtures/import-app/bower_components/jquery/src/data.js
|
941
|
-
- fixtures/import-app/bower_components/jquery/src/data/Data.js
|
942
|
-
- fixtures/import-app/bower_components/jquery/src/data/accepts.js
|
943
|
-
- fixtures/import-app/bower_components/jquery/src/data/var/data_priv.js
|
944
|
-
- fixtures/import-app/bower_components/jquery/src/data/var/data_user.js
|
945
|
-
- fixtures/import-app/bower_components/jquery/src/deferred.js
|
946
|
-
- fixtures/import-app/bower_components/jquery/src/deprecated.js
|
947
|
-
- fixtures/import-app/bower_components/jquery/src/dimensions.js
|
948
|
-
- fixtures/import-app/bower_components/jquery/src/effects.js
|
949
|
-
- fixtures/import-app/bower_components/jquery/src/effects/Tween.js
|
950
|
-
- fixtures/import-app/bower_components/jquery/src/effects/animatedSelector.js
|
951
|
-
- fixtures/import-app/bower_components/jquery/src/event.js
|
952
|
-
- fixtures/import-app/bower_components/jquery/src/event/ajax.js
|
953
|
-
- fixtures/import-app/bower_components/jquery/src/event/alias.js
|
954
|
-
- fixtures/import-app/bower_components/jquery/src/event/support.js
|
955
|
-
- fixtures/import-app/bower_components/jquery/src/exports/amd.js
|
956
|
-
- fixtures/import-app/bower_components/jquery/src/exports/global.js
|
957
|
-
- fixtures/import-app/bower_components/jquery/src/intro.js
|
958
|
-
- fixtures/import-app/bower_components/jquery/src/jquery.js
|
959
|
-
- fixtures/import-app/bower_components/jquery/src/manipulation.js
|
960
|
-
- fixtures/import-app/bower_components/jquery/src/manipulation/_evalUrl.js
|
961
|
-
- fixtures/import-app/bower_components/jquery/src/manipulation/support.js
|
962
|
-
- fixtures/import-app/bower_components/jquery/src/manipulation/var/rcheckableType.js
|
963
|
-
- fixtures/import-app/bower_components/jquery/src/offset.js
|
964
|
-
- fixtures/import-app/bower_components/jquery/src/outro.js
|
965
|
-
- fixtures/import-app/bower_components/jquery/src/queue.js
|
966
|
-
- fixtures/import-app/bower_components/jquery/src/queue/delay.js
|
967
|
-
- fixtures/import-app/bower_components/jquery/src/selector-native.js
|
968
|
-
- fixtures/import-app/bower_components/jquery/src/selector-sizzle.js
|
969
|
-
- fixtures/import-app/bower_components/jquery/src/selector.js
|
970
|
-
- fixtures/import-app/bower_components/jquery/src/serialize.js
|
971
|
-
- fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.js
|
972
|
-
- fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.min.js
|
973
|
-
- fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.min.map
|
974
|
-
- fixtures/import-app/bower_components/jquery/src/traversing.js
|
975
|
-
- fixtures/import-app/bower_components/jquery/src/traversing/findFilter.js
|
976
|
-
- fixtures/import-app/bower_components/jquery/src/traversing/var/rneedsContext.js
|
977
|
-
- fixtures/import-app/bower_components/jquery/src/var/arr.js
|
978
|
-
- fixtures/import-app/bower_components/jquery/src/var/class2type.js
|
979
|
-
- fixtures/import-app/bower_components/jquery/src/var/concat.js
|
980
|
-
- fixtures/import-app/bower_components/jquery/src/var/hasOwn.js
|
981
|
-
- fixtures/import-app/bower_components/jquery/src/var/indexOf.js
|
982
|
-
- fixtures/import-app/bower_components/jquery/src/var/pnum.js
|
983
|
-
- fixtures/import-app/bower_components/jquery/src/var/push.js
|
984
|
-
- fixtures/import-app/bower_components/jquery/src/var/rnotwhite.js
|
985
|
-
- fixtures/import-app/bower_components/jquery/src/var/slice.js
|
986
|
-
- fixtures/import-app/bower_components/jquery/src/var/strundefined.js
|
987
|
-
- fixtures/import-app/bower_components/jquery/src/var/support.js
|
988
|
-
- fixtures/import-app/bower_components/jquery/src/var/toString.js
|
989
|
-
- fixtures/import-app/bower_components/jquery/src/wrap.js
|
990
|
-
- fixtures/import-app/config.rb
|
991
|
-
- fixtures/import-app/source/test.html
|
992
|
-
- fixtures/import-app/static.html
|
993
|
-
- fixtures/indexable-app/config.rb
|
994
|
-
- fixtures/indexable-app/source/.htaccess
|
995
|
-
- fixtures/indexable-app/source/.htpasswd
|
996
|
-
- fixtures/indexable-app/source/.nojekyll
|
997
|
-
- fixtures/indexable-app/source/a_folder/needs_index.html
|
998
|
-
- fixtures/indexable-app/source/evil spaces.html
|
999
|
-
- fixtures/indexable-app/source/leave_me_alone.html
|
1000
|
-
- fixtures/indexable-app/source/needs_index.html
|
1001
|
-
- fixtures/indexable-app/source/regex_leave_me_alone2.html
|
1002
|
-
- fixtures/indexable-app/source/regular/index.html
|
1003
|
-
- fixtures/indexable-app/source/wildcard_leave_me_alone.html
|
1004
|
-
- fixtures/javascript-app/config.rb
|
1005
|
-
- fixtures/javascript-app/source/index.html
|
1006
|
-
- fixtures/large-build-app/config.rb
|
1007
|
-
- fixtures/large-build-app/source/.htaccess
|
1008
|
-
- fixtures/large-build-app/source/.htpasswd
|
1009
|
-
- fixtures/large-build-app/source/_partial.erb
|
1010
|
-
- fixtures/large-build-app/source/feed.xml.builder
|
1011
|
-
- fixtures/large-build-app/source/images/Child folder/regular_file(example).txt
|
1012
|
-
- fixtures/large-build-app/source/images/Read me (example).txt
|
1013
|
-
- fixtures/large-build-app/source/images/blank.gif
|
1014
|
-
- fixtures/large-build-app/source/index.html.erb
|
1015
|
-
- fixtures/large-build-app/source/layout.erb
|
1016
|
-
- fixtures/large-build-app/source/layouts/content_for.erb
|
1017
|
-
- fixtures/large-build-app/source/layouts/custom.erb
|
1018
|
-
- fixtures/large-build-app/source/link_test.html.erb
|
1019
|
-
- fixtures/large-build-app/source/other_layout.erb
|
1020
|
-
- fixtures/large-build-app/source/services/index.html.erb
|
1021
|
-
- fixtures/large-build-app/source/spaces in file.html.erb
|
1022
|
-
- fixtures/large-build-app/source/static.html
|
1023
|
-
- fixtures/large-build-app/source/stylesheets/static.css
|
1024
|
-
- fixtures/layouts-dir-app/source/ambiguous.html.erb
|
1025
|
-
- fixtures/layouts-dir-app/source/index.html.erb
|
1026
|
-
- fixtures/layouts-dir-app/source/layouts/layout.erb
|
1027
|
-
- fixtures/layouts-dir-app/source/layouts/other.erb
|
1028
|
-
- fixtures/layouts-dir-app/source/layouts2/layout.erb
|
1029
|
-
- fixtures/layouts-dir-app/source/nested/layouts2/layout.erb
|
1030
|
-
- fixtures/layouts-dir-app/source/other.erb
|
1031
|
-
- fixtures/link-to-app/config.rb
|
1032
|
-
- fixtures/link-to-app/source/link_to_erb.html.erb
|
1033
|
-
- fixtures/link-to-app/source/link_to_haml.html.haml
|
1034
|
-
- fixtures/link-to-app/source/link_to_slim.html.slim
|
1035
|
-
- fixtures/liquid-app/config.rb
|
1036
|
-
- fixtures/liquid-app/data/test.yml
|
1037
|
-
- fixtures/liquid-app/data/test2.json
|
1038
|
-
- fixtures/liquid-app/source/_liquid_partial.liquid
|
1039
|
-
- fixtures/liquid-app/source/data2.html.liquid
|
1040
|
-
- fixtures/liquid-app/source/liquid_master.html.liquid
|
1041
|
-
- fixtures/lorem-app/config.rb
|
1042
|
-
- fixtures/lorem-app/source/lorem.html.erb
|
1043
|
-
- fixtures/manual-layout-missing/config.rb
|
1044
|
-
- fixtures/manual-layout-missing/source/index.html.erb
|
1045
|
-
- fixtures/manual-layout-override/config.rb
|
1046
|
-
- fixtures/manual-layout-override/source/index.html.erb
|
1047
|
-
- fixtures/manual-layout-override/source/layouts/another.erb
|
1048
|
-
- fixtures/manual-layout-override/source/layouts/custom.erb
|
1049
|
-
- fixtures/manual-layout/config.rb
|
1050
|
-
- fixtures/manual-layout/source/index.html.erb
|
1051
|
-
- fixtures/manual-layout/source/layouts/custom.erb
|
1052
|
-
- fixtures/markdown-app/config.rb
|
1053
|
-
- fixtures/markdown-app/source/autolink.html.markdown
|
1054
|
-
- fixtures/markdown-app/source/fenced_code_blocks.html.markdown
|
1055
|
-
- fixtures/markdown-app/source/filter_html.html.markdown
|
1056
|
-
- fixtures/markdown-app/source/footnote.html.markdown
|
1057
|
-
- fixtures/markdown-app/source/hard_wrap.html.markdown
|
1058
|
-
- fixtures/markdown-app/source/highlighted.html.markdown
|
1059
|
-
- fixtures/markdown-app/source/images/blank.gif
|
1060
|
-
- fixtures/markdown-app/source/img.html.markdown
|
1061
|
-
- fixtures/markdown-app/source/indented_code_blocks.html.markdown
|
1062
|
-
- fixtures/markdown-app/source/index.html.markdown
|
1063
|
-
- fixtures/markdown-app/source/lax_spacing.html.markdown
|
1064
|
-
- fixtures/markdown-app/source/link.html.markdown
|
1065
|
-
- fixtures/markdown-app/source/mailto.html.markdown
|
1066
|
-
- fixtures/markdown-app/source/no_intra_emphasis.html.markdown
|
1067
|
-
- fixtures/markdown-app/source/prettify.html.markdown
|
1068
|
-
- fixtures/markdown-app/source/quote.html.markdown
|
1069
|
-
- fixtures/markdown-app/source/safe_links.html.markdown
|
1070
|
-
- fixtures/markdown-app/source/smarty_pants.html.markdown
|
1071
|
-
- fixtures/markdown-app/source/space_after_headers.html.markdown
|
1072
|
-
- fixtures/markdown-app/source/strikethrough.html.markdown
|
1073
|
-
- fixtures/markdown-app/source/superscript.html.markdown
|
1074
|
-
- fixtures/markdown-app/source/tables.html.markdown
|
1075
|
-
- fixtures/markdown-app/source/underline.html.markdown
|
1076
|
-
- fixtures/markdown-app/source/with_toc_data.html.markdown
|
1077
|
-
- fixtures/markdown-frontmatter-options-app/config.rb
|
1078
|
-
- fixtures/markdown-frontmatter-options-app/source/smarty_pants-default.html.markdown
|
1079
|
-
- fixtures/markdown-frontmatter-options-app/source/smarty_pants-off.html.markdown
|
1080
|
-
- fixtures/markdown-frontmatter-options-app/source/smarty_pants-on.html.markdown
|
1081
|
-
- fixtures/markdown-frontmatter-options-app/source/tables-default.html.markdown
|
1082
|
-
- fixtures/markdown-frontmatter-options-app/source/tables-off.html.markdown
|
1083
|
-
- fixtures/markdown-frontmatter-options-app/source/tables-on.html.markdown
|
1084
|
-
- fixtures/markdown-in-haml-app/config.rb
|
1085
|
-
- fixtures/markdown-in-haml-app/source/images/blank.gif
|
1086
|
-
- fixtures/markdown-in-haml-app/source/link_target.html.markdown
|
1087
|
-
- fixtures/markdown-in-slim-app/config.rb
|
1088
|
-
- fixtures/markdown-in-slim-app/source/images/blank.gif
|
1089
|
-
- fixtures/markdown-in-slim-app/source/link_target.html.markdown
|
1090
|
-
- fixtures/minify-css-app/source/inline-css.html.haml
|
1091
|
-
- fixtures/minify-css-app/source/inline-css.php
|
1092
|
-
- fixtures/minify-css-app/source/more-css/site.css
|
1093
|
-
- fixtures/minify-css-app/source/stylesheets/base/_base.scss
|
1094
|
-
- fixtures/minify-css-app/source/stylesheets/base/_buttons.scss
|
1095
|
-
- fixtures/minify-css-app/source/stylesheets/base/_forms.scss
|
1096
|
-
- fixtures/minify-css-app/source/stylesheets/base/_grid-settings.scss
|
1097
|
-
- fixtures/minify-css-app/source/stylesheets/base/_lists.scss
|
1098
|
-
- fixtures/minify-css-app/source/stylesheets/base/_tables.scss
|
1099
|
-
- fixtures/minify-css-app/source/stylesheets/base/_typography.scss
|
1100
|
-
- fixtures/minify-css-app/source/stylesheets/base/_variables.scss
|
1101
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/_bourbon-deprecated-upcoming.scss
|
1102
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/_bourbon.scss
|
1103
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-color.scss
|
1104
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-radius.scss
|
1105
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-style.scss
|
1106
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-width.scss
|
1107
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/addons/_buttons.scss
|
1108
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/addons/_clearfix.scss
|
1109
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/addons/_ellipsis.scss
|
1110
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/addons/_font-stacks.scss
|
1111
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/addons/_hide-text.scss
|
1112
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/addons/_margin.scss
|
1113
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/addons/_padding.scss
|
1114
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/addons/_position.scss
|
1115
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/addons/_prefixer.scss
|
1116
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/addons/_retina-image.scss
|
1117
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/addons/_size.scss
|
1118
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/addons/_text-inputs.scss
|
1119
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/addons/_timing-functions.scss
|
1120
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/addons/_triangle.scss
|
1121
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/addons/_word-wrap.scss
|
1122
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/css3/_animation.scss
|
1123
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/css3/_appearance.scss
|
1124
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/css3/_backface-visibility.scss
|
1125
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/css3/_background-image.scss
|
1126
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/css3/_background.scss
|
1127
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/css3/_border-image.scss
|
1128
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/css3/_calc.scss
|
1129
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/css3/_columns.scss
|
1130
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/css3/_filter.scss
|
1131
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/css3/_flex-box.scss
|
1132
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/css3/_font-face.scss
|
1133
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/css3/_font-feature-settings.scss
|
1134
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/css3/_hidpi-media-query.scss
|
1135
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/css3/_hyphens.scss
|
1136
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/css3/_image-rendering.scss
|
1137
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/css3/_keyframes.scss
|
1138
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/css3/_linear-gradient.scss
|
1139
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/css3/_perspective.scss
|
1140
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/css3/_placeholder.scss
|
1141
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/css3/_radial-gradient.scss
|
1142
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/css3/_selection.scss
|
1143
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/css3/_text-decoration.scss
|
1144
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/css3/_transform.scss
|
1145
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/css3/_transition.scss
|
1146
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/css3/_user-select.scss
|
1147
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/functions/_assign-inputs.scss
|
1148
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/functions/_contains-falsy.scss
|
1149
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/functions/_contains.scss
|
1150
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-length.scss
|
1151
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-light.scss
|
1152
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-number.scss
|
1153
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-size.scss
|
1154
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/functions/_modular-scale.scss
|
1155
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/functions/_px-to-em.scss
|
1156
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/functions/_px-to-rem.scss
|
1157
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/functions/_shade.scss
|
1158
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/functions/_strip-units.scss
|
1159
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/functions/_tint.scss
|
1160
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/functions/_transition-property-name.scss
|
1161
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/functions/_unpack.scss
|
1162
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_convert-units.scss
|
1163
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_directional-values.scss
|
1164
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_font-source-declaration.scss
|
1165
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_gradient-positions-parser.scss
|
1166
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-angle-parser.scss
|
1167
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-gradient-parser.scss
|
1168
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-positions-parser.scss
|
1169
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-side-corner-parser.scss
|
1170
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-arg-parser.scss
|
1171
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-gradient-parser.scss
|
1172
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-positions-parser.scss
|
1173
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_render-gradients.scss
|
1174
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_shape-size-stripper.scss
|
1175
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_str-to-num.scss
|
1176
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/settings/_asset-pipeline.scss
|
1177
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/settings/_prefixer.scss
|
1178
|
-
- fixtures/minify-css-app/source/stylesheets/bourbon/settings/_px-to-em.scss
|
1179
|
-
- fixtures/minify-css-app/source/stylesheets/report.css
|
1180
|
-
- fixtures/minify-css-app/source/stylesheets/site.css.sass
|
1181
|
-
- fixtures/minify-css-app/source/stylesheets/site.xcss.sass
|
1182
|
-
- fixtures/minify-js-app/config.rb
|
1183
|
-
- fixtures/minify-js-app/source/inline-coffeescript.html.haml
|
1184
|
-
- fixtures/minify-js-app/source/inline-js.html.haml
|
1185
|
-
- fixtures/minify-js-app/source/inline-js.php
|
1186
|
-
- fixtures/minify-js-app/source/javascripts/coffee_test.js.coffee
|
1187
|
-
- fixtures/minify-js-app/source/javascripts/js_test.js
|
1188
|
-
- fixtures/minify-js-app/source/javascripts/js_test.xjs
|
1189
|
-
- fixtures/minify-js-app/source/more-js/other.js
|
1190
|
-
- fixtures/missing-tilt-library-app/config.rb
|
1191
|
-
- fixtures/missing-tilt-library-app/source/danger-zone/more-wiki.html.wiki
|
1192
|
-
- fixtures/missing-tilt-library-app/source/safe-zone/my-wiki.html.wiki
|
1193
|
-
- fixtures/missing-tilt-library-app/source/textile-source.html.textile
|
1194
|
-
- fixtures/missing-tilt-library-app/source/wiki-source.html.wiki
|
1195
|
-
- fixtures/more-extensionless-text-files-app/config.rb
|
1196
|
-
- fixtures/more-extensionless-text-files-app/source/CNAME
|
1197
|
-
- fixtures/more-extensionless-text-files-app/source/LICENSE
|
1198
|
-
- fixtures/more-extensionless-text-files-app/source/README
|
1199
|
-
- fixtures/more-extensionless-text-files-app/source/index.html
|
1200
|
-
- fixtures/more-frontmatter-settings-app/config.rb
|
1201
|
-
- fixtures/more-frontmatter-settings-app/source/alternate_layout.html.erb
|
1202
|
-
- fixtures/more-frontmatter-settings-app/source/ignored.html.erb
|
1203
|
-
- fixtures/more-frontmatter-settings-app/source/layouts/alternate.erb
|
1204
|
-
- fixtures/more-frontmatter-settings-app/source/no_index.html.erb
|
1205
|
-
- fixtures/more-ignore-app/source/about.html.erb
|
1206
|
-
- fixtures/more-ignore-app/source/images/icon/messages.png
|
1207
|
-
- fixtures/more-ignore-app/source/images/pic.png
|
1208
|
-
- fixtures/more-ignore-app/source/images/portrait.jpg
|
1209
|
-
- fixtures/more-ignore-app/source/index.html.erb
|
1210
|
-
- fixtures/more-ignore-app/source/plain.html
|
1211
|
-
- fixtures/more-ignore-app/source/reports/another.html
|
1212
|
-
- fixtures/more-ignore-app/source/reports/index.html
|
1213
|
-
- fixtures/more-markdown-app/source/layouts/layout.erb
|
1214
|
-
- fixtures/more-markdown-app/source/with_layout.html.markdown
|
1215
|
-
- fixtures/more-markdown-app/source/with_layout_erb.html.markdown.erb
|
1216
|
-
- fixtures/more-preview-app/config.rb
|
1217
|
-
- fixtures/more-preview-app/source/content.html.erb
|
1218
|
-
- fixtures/more-preview-app/source/layout.erb
|
1219
|
-
- fixtures/more-preview-app/source/stylesheets/_partial.sass
|
1220
|
-
- fixtures/more-preview-app/source/stylesheets/_partial2.css.sass
|
1221
|
-
- fixtures/more-preview-app/source/stylesheets/main.css.sass
|
1222
|
-
- fixtures/more-preview-app/source/stylesheets/main2.css.sass
|
1223
|
-
- fixtures/more-preview-app/source/stylesheets/plain.css.sass
|
1224
|
-
- fixtures/more-traversal-app/config.rb
|
1225
|
-
- fixtures/more-traversal-app/source/directory-indexed.html.erb
|
1226
|
-
- fixtures/more-traversal-app/source/directory-indexed/sibling.html.erb
|
1227
|
-
- fixtures/more-traversal-app/source/directory-indexed/sibling2.html.erb
|
1228
|
-
- fixtures/more-traversal-app/source/directory-indexed/sub2/index.html.erb
|
1229
|
-
- fixtures/more-traversal-app/source/directory-indexed/sub3/deep.html.erb
|
1230
|
-
- fixtures/more-traversal-app/source/index.html.erb
|
1231
|
-
- fixtures/more-traversal-app/source/layout.erb
|
1232
|
-
- fixtures/more-traversal-app/source/proxied.html.erb
|
1233
|
-
- fixtures/more-traversal-app/source/root.html.erb
|
1234
|
-
- fixtures/more-traversal-app/source/sub/index.html.erb
|
1235
|
-
- fixtures/more-traversal-app/source/sub/sibling.html.erb
|
1236
|
-
- fixtures/more-traversal-app/source/sub/sibling2.html.erb
|
1237
|
-
- fixtures/more-traversal-app/source/sub/sub2/index.html.erb
|
1238
|
-
- fixtures/more-traversal-app/source/sub/sub3/deep.html.erb
|
1239
|
-
- fixtures/multiple-data-sources-app/config.rb
|
1240
|
-
- fixtures/multiple-data-sources-app/data/data.yml
|
1241
|
-
- fixtures/multiple-data-sources-app/data/two.yml
|
1242
|
-
- fixtures/multiple-data-sources-app/data0/one.yml
|
1243
|
-
- fixtures/multiple-data-sources-app/data1/data1.yml
|
1244
|
-
- fixtures/multiple-data-sources-app/data1/one.yml
|
1245
|
-
- fixtures/multiple-data-sources-app/data2/data2.yml
|
1246
|
-
- fixtures/multiple-data-sources-app/data2/two.yml
|
1247
|
-
- fixtures/multiple-data-sources-app/source/index.html.erb
|
1248
|
-
- fixtures/multiple-layouts/config.rb
|
1249
|
-
- fixtures/multiple-layouts/source/index.html.erb
|
1250
|
-
- fixtures/multiple-layouts/source/layout.erb
|
1251
|
-
- fixtures/multiple-layouts/source/layout.str
|
1252
|
-
- fixtures/multiple-sources-app/config.rb
|
1253
|
-
- fixtures/multiple-sources-app/source/index.html.erb
|
1254
|
-
- fixtures/multiple-sources-app/source/override-in-two.html.erb
|
1255
|
-
- fixtures/multiple-sources-app/source0/override-in-one.html.erb
|
1256
|
-
- fixtures/multiple-sources-app/source1/index1.html.erb
|
1257
|
-
- fixtures/multiple-sources-app/source1/override-in-one.html.erb
|
1258
|
-
- fixtures/multiple-sources-app/source2/index2.html.erb
|
1259
|
-
- fixtures/multiple-sources-app/source2/override-in-two.html.erb
|
1260
|
-
- fixtures/multiple-sources-with-duplicate-file-names-app/config.rb
|
1261
|
-
- fixtures/multiple-sources-with-duplicate-file-names-app/source/index.html.erb
|
1262
|
-
- fixtures/multiple-sources-with-duplicate-file-names-app/source2/index.html.erb
|
1263
|
-
- fixtures/nested-data-app/config.rb
|
1264
|
-
- fixtures/nested-data-app/data/examples/deeper/stuff.yml
|
1265
|
-
- fixtures/nested-data-app/data/examples/more.yml
|
1266
|
-
- fixtures/nested-data-app/data/examples/test.yml
|
1267
|
-
- fixtures/nested-data-app/data/examples/withcontent.yaml
|
1268
|
-
- fixtures/nested-data-app/source/extracontent.html.haml.erb
|
1269
|
-
- fixtures/nested-data-app/source/test.html.erb
|
1270
|
-
- fixtures/nested-layout-app/config.rb
|
1271
|
-
- fixtures/nested-layout-app/source/another.html.markdown
|
1272
|
-
- fixtures/nested-layout-app/source/data-one.html.erb
|
1273
|
-
- fixtures/nested-layout-app/source/data-two.html.erb
|
1274
|
-
- fixtures/nested-layout-app/source/haml-test.html.markdown
|
1275
|
-
- fixtures/nested-layout-app/source/index.html.erb
|
1276
|
-
- fixtures/nested-layout-app/source/layouts/inner.erb
|
1277
|
-
- fixtures/nested-layout-app/source/layouts/inner_haml.haml
|
1278
|
-
- fixtures/nested-layout-app/source/layouts/inner_slim.slim
|
1279
|
-
- fixtures/nested-layout-app/source/layouts/master.erb
|
1280
|
-
- fixtures/nested-layout-app/source/layouts/master_haml.haml
|
1281
|
-
- fixtures/nested-layout-app/source/layouts/master_slim.slim
|
1282
|
-
- fixtures/nested-layout-app/source/layouts/outer.erb
|
1283
|
-
- fixtures/nested-layout-app/source/layouts/outer_haml.haml
|
1284
|
-
- fixtures/nested-layout-app/source/layouts/outer_slim.slim
|
1285
|
-
- fixtures/nested-layout-app/source/slim-test.html.markdown
|
1286
|
-
- fixtures/no-layout/config.rb
|
1287
|
-
- fixtures/no-layout/source/index.html.erb
|
1288
|
-
- fixtures/padrino-helpers-app/config.rb
|
1289
|
-
- fixtures/padrino-helpers-app/source/former_padrino_test.html.erb
|
1290
|
-
- fixtures/page-classes-app/config.rb
|
1291
|
-
- fixtures/page-classes-app/source/1-folder/1-inside-with-numeric.html.erb
|
1292
|
-
- fixtures/page-classes-app/source/1-starts-with-numeric.html.erb
|
1293
|
-
- fixtures/page-classes-app/source/2-starts-with-numeric-custom.html.erb
|
1294
|
-
- fixtures/page-classes-app/source/page-classes.html.erb
|
1295
|
-
- fixtures/page-classes-app/source/sub1/page-classes.html.erb
|
1296
|
-
- fixtures/page-classes-app/source/sub1/sub2/page-classes.html.erb
|
1297
|
-
- fixtures/page-helper-layout-block-app/config.rb
|
1298
|
-
- fixtures/page-helper-layout-block-app/source/index.html.erb
|
1299
|
-
- fixtures/page-helper-layout-block-app/source/layouts/alt.erb
|
1300
|
-
- fixtures/page-helper-layout-block-app/source/layouts/layout.erb
|
1301
|
-
- fixtures/page-helper-layout-block-app/source/path/child.html.erb
|
1302
|
-
- fixtures/page-helper-layout-block-app/source/path/index.html.erb
|
1303
|
-
- fixtures/page-id-app/config-proc.rb
|
1304
|
-
- fixtures/page-id-app/config.rb
|
1305
|
-
- fixtures/page-id-app/source/feed.xml.erb
|
1306
|
-
- fixtures/page-id-app/source/fm.html.erb
|
1307
|
-
- fixtures/page-id-app/source/folder/foldern.html.erb
|
1308
|
-
- fixtures/page-id-app/source/fourty-two.html.erb
|
1309
|
-
- fixtures/page-id-app/source/implicit.html.erb
|
1310
|
-
- fixtures/page-id-app/source/index.html.erb
|
1311
|
-
- fixtures/page-id-app/source/overwrites/from-default.html.erb
|
1312
|
-
- fixtures/page-id-app/source/overwrites/from-frontmatter.html.erb
|
1313
|
-
- fixtures/paginate-app/config.rb
|
1314
|
-
- fixtures/paginate-app/source/archive/2011/index.html.erb
|
1315
|
-
- fixtures/paginate-app/source/blog/2011-01-01-test-article.html.markdown
|
1316
|
-
- fixtures/paginate-app/source/blog/2011-01-02-test-article.html.markdown
|
1317
|
-
- fixtures/paginate-app/source/blog/2011-01-03-test-article.html.markdown
|
1318
|
-
- fixtures/paginate-app/source/blog/2011-01-04-test-article.html.markdown
|
1319
|
-
- fixtures/paginate-app/source/blog/2011-01-05-test-article.html.markdown
|
1320
|
-
- fixtures/paginate-app/source/blog/2011-02-01-test-article.html.markdown
|
1321
|
-
- fixtures/paginate-app/source/blog/2011-02-02-test-article.html.markdown
|
1322
|
-
- fixtures/paginate-app/source/index.html.erb
|
1323
|
-
- fixtures/paginate-app/source/tag.html.erb
|
1324
|
-
- fixtures/partial-chained_templates-app/config.rb
|
1325
|
-
- fixtures/partials-app/config.rb
|
1326
|
-
- fixtures/partials-app/source/_block.erb
|
1327
|
-
- fixtures/partials-app/source/_code_snippet.html
|
1328
|
-
- fixtures/partials-app/source/_locals.erb
|
1329
|
-
- fixtures/partials-app/source/_main.erb
|
1330
|
-
- fixtures/partials-app/source/_main.str
|
1331
|
-
- fixtures/partials-app/source/block.html.erb
|
1332
|
-
- fixtures/partials-app/source/images/tiger.svg
|
1333
|
-
- fixtures/partials-app/source/index.html.erb
|
1334
|
-
- fixtures/partials-app/source/index_missing.html.erb
|
1335
|
-
- fixtures/partials-app/source/locals.html.erb
|
1336
|
-
- fixtures/partials-app/source/second.html.str
|
1337
|
-
- fixtures/partials-app/source/shared/_footer.erb
|
1338
|
-
- fixtures/partials-app/source/shared/_header.erb
|
1339
|
-
- fixtures/partials-app/source/shared/_snippet.html.erb
|
1340
|
-
- fixtures/partials-app/source/static_underscore.html.erb
|
1341
|
-
- fixtures/partials-app/source/sub/_local.erb
|
1342
|
-
- fixtures/partials-app/source/sub/index.html.erb
|
1343
|
-
- fixtures/partials-app/source/svg.html.erb
|
1344
|
-
- fixtures/partials-app/source/using_snippet.html.erb
|
1345
|
-
- fixtures/passthrough-app/source/.htaccess
|
1346
|
-
- fixtures/passthrough-app/source/inline-coffeescript.html.haml
|
1347
|
-
- fixtures/passthrough-app/source/inline-css.html.haml
|
1348
|
-
- fixtures/passthrough-app/source/inline-js.html.haml
|
1349
|
-
- fixtures/passthrough-app/source/javascripts/coffee_test.js.coffee
|
1350
|
-
- fixtures/passthrough-app/source/javascripts/js_test.js
|
1351
|
-
- fixtures/passthrough-app/source/stylesheets/site.css.sass
|
1352
|
-
- fixtures/preview-app/config.rb
|
1353
|
-
- fixtures/preview-app/source/content.html.erb
|
1354
|
-
- fixtures/preview-app/source/layout.erb
|
1355
|
-
- fixtures/proxy-pages-app/config.rb
|
1356
|
-
- fixtures/proxy-pages-app/source/real.html
|
1357
|
-
- fixtures/proxy-pages-app/source/real/index.html.erb
|
1358
|
-
- fixtures/proxy-pages-app/source/should_be_ignored3.html
|
1359
|
-
- fixtures/proxy-pages-app/source/should_be_ignored6.html
|
1360
|
-
- fixtures/proxy-pages-app/source/should_be_ignored7.html
|
1361
|
-
- fixtures/proxy-pages-app/source/should_be_ignored8.html
|
1362
|
-
- fixtures/related-files-app/config.rb
|
1363
|
-
- fixtures/related-files-app/source/index.html.erb
|
1364
|
-
- fixtures/related-files-app/source/partials/_test.erb
|
1365
|
-
- fixtures/related-files-app/source/partials/_test2.haml
|
1366
|
-
- fixtures/related-files-app/source/stylesheets/_include3.sass
|
1367
|
-
- fixtures/related-files-app/source/stylesheets/_include4.scss
|
1368
|
-
- fixtures/related-files-app/source/stylesheets/include1.css
|
1369
|
-
- fixtures/related-files-app/source/stylesheets/include2.css.scss
|
1370
|
-
- fixtures/related-files-app/source/stylesheets/site.css.scss
|
1371
|
-
- fixtures/relative-app/config.rb
|
1372
|
-
- fixtures/relative-app/source/images/blank.gif
|
1373
|
-
- fixtures/relative-app/source/stylesheets/relative_assets.css.sass
|
1374
|
-
- fixtures/relative-assets-app/config.rb
|
1375
|
-
- fixtures/relative-assets-app/source/absolute_image_relative_css.html.erb
|
1376
|
-
- fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.eot
|
1377
|
-
- fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.svg
|
1378
|
-
- fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.ttf
|
1379
|
-
- fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.woff
|
1380
|
-
- fixtures/relative-assets-app/source/images/blank.gif
|
1381
|
-
- fixtures/relative-assets-app/source/images/blank2.gif
|
1382
|
-
- fixtures/relative-assets-app/source/img/blank.gif
|
1383
|
-
- fixtures/relative-assets-app/source/javascripts/app.js
|
1384
|
-
- fixtures/relative-assets-app/source/javascripts/application.js
|
1385
|
-
- fixtures/relative-assets-app/source/relative_image.html.erb
|
1386
|
-
- fixtures/relative-assets-app/source/relative_image_absolute_css.html.erb
|
1387
|
-
- fixtures/relative-assets-app/source/stylesheets/fonts.css
|
1388
|
-
- fixtures/relative-assets-app/source/stylesheets/fonts2.css.scss
|
1389
|
-
- fixtures/relative-assets-app/source/stylesheets/relative_assets.css.sass
|
1390
|
-
- fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset-sass.sass
|
1391
|
-
- fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset.scss
|
1392
|
-
- fixtures/sass-assets-path-app/config.rb
|
1393
|
-
- fixtures/sass-assets-path-app/my-vendor/stylesheets/_partial.sass
|
1394
|
-
- fixtures/sass-assets-path-app/source/stylesheets/plain.css.sass
|
1395
|
-
- fixtures/sass-in-slim-app/config.rb
|
1396
|
-
- fixtures/scss-app/config.rb
|
1397
|
-
- fixtures/scss-app/source/stylesheets/error.css.sass
|
1398
|
-
- fixtures/scss-app/source/stylesheets/layout.css.sass
|
1399
|
-
- fixtures/scss-app/source/stylesheets/site_scss.css.scss
|
1400
|
-
- fixtures/sinatra-app/config.rb
|
1401
|
-
- fixtures/sinatra-app/source/index.html.erb
|
1402
|
-
- fixtures/slim-content-for-app/config.rb
|
1403
|
-
- fixtures/slim-content-for-app/source/index.html.slim
|
1404
|
-
- fixtures/slim-content-for-app/source/layouts/layout.slim
|
1405
|
-
- fixtures/strip-url-app/config.rb
|
1406
|
-
- fixtures/strip-url-app/source/index.html.erb
|
1407
|
-
- fixtures/strip-url-app/source/other.html.erb
|
1408
|
-
- fixtures/strip-url-app/source/subdir/index.html.erb
|
1409
|
-
- fixtures/stylus-preview-app/config.rb
|
1410
|
-
- fixtures/stylus-preview-app/source/content.html.erb
|
1411
|
-
- fixtures/stylus-preview-app/source/stylesheets/_partial.styl
|
1412
|
-
- fixtures/stylus-preview-app/source/stylesheets/_partial2.css.styl
|
1413
|
-
- fixtures/stylus-preview-app/source/stylesheets/main.css.styl
|
1414
|
-
- fixtures/stylus-preview-app/source/stylesheets/main2.css.styl
|
1415
|
-
- fixtures/stylus-preview-app/source/stylesheets/plain.css.styl
|
1416
|
-
- fixtures/traversal-app/config.rb
|
1417
|
-
- fixtures/traversal-app/source/.htaccess
|
1418
|
-
- fixtures/traversal-app/source/directory-indexed.html.erb
|
1419
|
-
- fixtures/traversal-app/source/directory-indexed/sibling.html.erb
|
1420
|
-
- fixtures/traversal-app/source/directory-indexed/sibling2.html.erb
|
1421
|
-
- fixtures/traversal-app/source/directory-indexed/sub2/index.html.erb
|
1422
|
-
- fixtures/traversal-app/source/directory-indexed/sub3/deep.html.erb
|
1423
|
-
- fixtures/traversal-app/source/index.html.erb
|
1424
|
-
- fixtures/traversal-app/source/layout.erb
|
1425
|
-
- fixtures/traversal-app/source/proxied.html.erb
|
1426
|
-
- fixtures/traversal-app/source/root.html.erb
|
1427
|
-
- fixtures/traversal-app/source/sub/index.html.erb
|
1428
|
-
- fixtures/traversal-app/source/sub/sibling.html.erb
|
1429
|
-
- fixtures/traversal-app/source/sub/sibling2.html.erb
|
1430
|
-
- fixtures/traversal-app/source/sub/sub2/index.html.erb
|
1431
|
-
- fixtures/traversal-app/source/sub/sub3/deep.html.erb
|
1432
|
-
- fixtures/v4-extension-callbacks/config.rb
|
1433
|
-
- fixtures/v4-extension-callbacks/source/index.html.erb
|
1434
|
-
- fixtures/wildcard-app/config.rb
|
1435
|
-
- fixtures/wildcard-app/source/admin/index.html.erb
|
1436
|
-
- fixtures/wildcard-app/source/admin/page.html.erb
|
1437
|
-
- fixtures/wildcard-app/source/index.html.erb
|
1438
|
-
- fixtures/wildcard-app/source/layouts/admin.erb
|
1439
|
-
- fixtures/wildcard-app/source/layouts/layout.erb
|
1440
|
-
- fixtures/wildcard-directory-index-app/config.rb
|
1441
|
-
- fixtures/wildcard-directory-index-app/source/admin/index.html.erb
|
1442
|
-
- fixtures/wildcard-directory-index-app/source/admin/page.html.erb
|
1443
|
-
- fixtures/wildcard-directory-index-app/source/index.html.erb
|
1444
|
-
- fixtures/wildcard-directory-index-app/source/layouts/admin.erb
|
1445
|
-
- fixtures/wildcard-directory-index-app/source/layouts/layout.erb
|
1446
360
|
- lib/middleman-core.rb
|
1447
361
|
- lib/middleman-core/application.rb
|
1448
362
|
- lib/middleman-core/builder.rb
|
@@ -1457,15 +371,30 @@ files:
|
|
1457
371
|
- lib/middleman-core/core_extensions/collections/pagination.rb
|
1458
372
|
- lib/middleman-core/core_extensions/collections/step_context.rb
|
1459
373
|
- lib/middleman-core/core_extensions/data.rb
|
374
|
+
- lib/middleman-core/core_extensions/data/controller.rb
|
375
|
+
- lib/middleman-core/core_extensions/data/proxies/array.rb
|
376
|
+
- lib/middleman-core/core_extensions/data/proxies/base.rb
|
377
|
+
- lib/middleman-core/core_extensions/data/proxies/hash.rb
|
378
|
+
- lib/middleman-core/core_extensions/data/stores/base.rb
|
379
|
+
- lib/middleman-core/core_extensions/data/stores/in_memory.rb
|
380
|
+
- lib/middleman-core/core_extensions/data/stores/local_file.rb
|
1460
381
|
- lib/middleman-core/core_extensions/default_helpers.rb
|
1461
382
|
- lib/middleman-core/core_extensions/external_helpers.rb
|
1462
383
|
- lib/middleman-core/core_extensions/file_watcher.rb
|
1463
384
|
- lib/middleman-core/core_extensions/front_matter.rb
|
1464
385
|
- lib/middleman-core/core_extensions/i18n.rb
|
1465
|
-
- lib/middleman-core/core_extensions/inline_url_rewriter.rb
|
1466
386
|
- lib/middleman-core/core_extensions/rendering.rb
|
1467
387
|
- lib/middleman-core/core_extensions/routing.rb
|
1468
388
|
- lib/middleman-core/core_extensions/show_exceptions.rb
|
389
|
+
- lib/middleman-core/data_proxy.rb
|
390
|
+
- lib/middleman-core/dependencies.rb
|
391
|
+
- lib/middleman-core/dependencies/edge.rb
|
392
|
+
- lib/middleman-core/dependencies/graph.rb
|
393
|
+
- lib/middleman-core/dependencies/vertices.rb
|
394
|
+
- lib/middleman-core/dependencies/vertices/data_collection_path_vertex.rb
|
395
|
+
- lib/middleman-core/dependencies/vertices/data_collection_vertex.rb
|
396
|
+
- lib/middleman-core/dependencies/vertices/file_vertex.rb
|
397
|
+
- lib/middleman-core/dependencies/vertices/vertex.rb
|
1469
398
|
- lib/middleman-core/dns_resolver.rb
|
1470
399
|
- lib/middleman-core/dns_resolver/basic_network_resolver.rb
|
1471
400
|
- lib/middleman-core/dns_resolver/hosts_resolver.rb
|
@@ -1487,6 +416,8 @@ files:
|
|
1487
416
|
- lib/middleman-core/extensions/minify_javascript.rb
|
1488
417
|
- lib/middleman-core/extensions/relative_assets.rb
|
1489
418
|
- lib/middleman-core/file_renderer.rb
|
419
|
+
- lib/middleman-core/filter.rb
|
420
|
+
- lib/middleman-core/inline_url_filter.rb
|
1490
421
|
- lib/middleman-core/load_paths.rb
|
1491
422
|
- lib/middleman-core/logger.rb
|
1492
423
|
- lib/middleman-core/meta_pages.rb
|
@@ -1527,6 +458,7 @@ files:
|
|
1527
458
|
- lib/middleman-core/renderers/sass.rb
|
1528
459
|
- lib/middleman-core/renderers/sass_functions.rb
|
1529
460
|
- lib/middleman-core/renderers/slim.rb
|
461
|
+
- lib/middleman-core/renderers/stylus.rb
|
1530
462
|
- lib/middleman-core/sitemap/extensions/ignores.rb
|
1531
463
|
- lib/middleman-core/sitemap/extensions/import.rb
|
1532
464
|
- lib/middleman-core/sitemap/extensions/move_file.rb
|
@@ -1536,6 +468,7 @@ files:
|
|
1536
468
|
- lib/middleman-core/sitemap/extensions/request_endpoints.rb
|
1537
469
|
- lib/middleman-core/sitemap/extensions/traversal.rb
|
1538
470
|
- lib/middleman-core/sitemap/resource.rb
|
471
|
+
- lib/middleman-core/sitemap/resource_list_container.rb
|
1539
472
|
- lib/middleman-core/sitemap/store.rb
|
1540
473
|
- lib/middleman-core/sources.rb
|
1541
474
|
- lib/middleman-core/sources/source_watcher.rb
|
@@ -1549,6 +482,7 @@ files:
|
|
1549
482
|
- lib/middleman-core/util.rb
|
1550
483
|
- lib/middleman-core/util/binary.rb
|
1551
484
|
- lib/middleman-core/util/data.rb
|
485
|
+
- lib/middleman-core/util/empty_hash.rb
|
1552
486
|
- lib/middleman-core/util/files.rb
|
1553
487
|
- lib/middleman-core/util/paths.rb
|
1554
488
|
- lib/middleman-core/util/rack.rb
|
@@ -1556,20 +490,6 @@ files:
|
|
1556
490
|
- lib/middleman-core/version.rb
|
1557
491
|
- lib/middleman/rack.rb
|
1558
492
|
- middleman-core.gemspec
|
1559
|
-
- spec/middleman-core/binary_spec/middleman
|
1560
|
-
- spec/middleman-core/binary_spec/middleman.png
|
1561
|
-
- spec/middleman-core/binary_spec/plain.txt
|
1562
|
-
- spec/middleman-core/binary_spec/stars.svgz
|
1563
|
-
- spec/middleman-core/binary_spec/unicode
|
1564
|
-
- spec/middleman-core/binary_spec/unicode.txt
|
1565
|
-
- spec/middleman-core/callbacks_spec.rb
|
1566
|
-
- spec/middleman-core/core_extensions/data_spec.rb
|
1567
|
-
- spec/middleman-core/dns_resolver_spec.rb
|
1568
|
-
- spec/middleman-core/preview_server/server_hostname_spec.rb
|
1569
|
-
- spec/middleman-core/preview_server/server_ip_address_spec.rb
|
1570
|
-
- spec/middleman-core/util_spec.rb
|
1571
|
-
- spec/spec_helper.rb
|
1572
|
-
- spec/support/given.rb
|
1573
493
|
homepage: http://middlemanapp.com
|
1574
494
|
licenses:
|
1575
495
|
- MIT
|
@@ -1582,14 +502,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
1582
502
|
requirements:
|
1583
503
|
- - ">="
|
1584
504
|
- !ruby/object:Gem::Version
|
1585
|
-
version: 2.
|
505
|
+
version: 2.3.0
|
1586
506
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1587
507
|
requirements:
|
1588
|
-
- - "
|
508
|
+
- - ">"
|
1589
509
|
- !ruby/object:Gem::Version
|
1590
|
-
version:
|
510
|
+
version: 1.3.1
|
1591
511
|
requirements: []
|
1592
|
-
rubygems_version: 3.2
|
512
|
+
rubygems_version: 3.0.2
|
1593
513
|
signing_key:
|
1594
514
|
specification_version: 4
|
1595
515
|
summary: Hand-crafted frontend development
|