Sha256: b97e9d144d12f5d61c4a1e561c3465a73ffad5c1210a0a60505fffd99ff53ed3
Contents?: true
Size: 1.36 KB
Versions: 2
Compression:
Stored size: 1.36 KB
Contents
require 'addressable/uri' # Relative Assets extension class Middleman::Extensions::RelativeAssets < ::Middleman::Extension option :exts, %w(.css .png .jpg .jpeg .webp .svg .svgz .js .gif .ttf .otf .woff .woff2), 'List of extensions that get cache busters strings appended to them.' option :sources, %w(.htm .html .css), 'List of extensions that are searched for relative assets.' option :ignore, [], 'Regexes of filenames to skip adding query strings to' def initialize(app, options_hash={}, &block) super require 'middleman-core/middleware/inline_url_rewriter' end def after_configuration app.use ::Middleman::Middleware::InlineURLRewriter, id: :asset_hash, url_extensions: options.exts, source_extensions: options.sources, ignore: options.ignore, middleman_app: app, proc: method(:rewrite_url) end Contract String, Or[String, Pathname], Any => Maybe[String] def rewrite_url(asset_path, dirpath, request_path) uri = ::Addressable::URI.parse(asset_path) return if uri.path[0..0] != '/' relative_path = uri.host.nil? full_asset_path = if relative_path dirpath.join(asset_path).to_s else asset_path end current_dir = Pathname(request_path).dirname result = Pathname(full_asset_path).relative_path_from(current_dir).to_s result end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
middleman-core-4.0.0.beta.2 | lib/middleman-core/extensions/relative_assets.rb |
middleman-core-4.0.0.beta.1 | lib/middleman-core/extensions/relative_assets.rb |