Sha256: 3b9bca73231f3f17b1993ae2783760a71afcdbc855b981024e369a8f336bf0ab
Contents?: true
Size: 1.49 KB
Versions: 1
Compression:
Stored size: 1.49 KB
Contents
require "propshaft/load_path" require "propshaft/resolver/dynamic" require "propshaft/resolver/static" require "propshaft/server" require "propshaft/processor" require "propshaft/compilers" require "propshaft/compilers/css_asset_urls" require "propshaft/compilers/source_mapping_urls" class Propshaft::Assembly attr_reader :config def initialize(config) @config = config end def load_path @load_path ||= Propshaft::LoadPath.new(config.paths) end def resolver @resolver ||= if manifest_path.exist? Propshaft::Resolver::Static.new manifest_path: manifest_path, prefix: config.prefix else Propshaft::Resolver::Dynamic.new load_path: load_path, prefix: config.prefix end end def server Propshaft::Server.new(self) end def processor Propshaft::Processor.new \ load_path: load_path, output_path: config.output_path, compilers: compilers end def compilers @compilers ||= Propshaft::Compilers.new(self).tap do |compilers| Array(config.compilers).each do |(mime_type, klass)| compilers.register mime_type, klass end end end def reveal(path_type = :logical_path) path_type = path_type.presence_in(%i[ logical_path path ]) || raise(ArgumentError, "Unknown path_type: #{path_type}") load_path.assets.each do |asset| Propshaft.logger.info asset.send(path_type) end end private def manifest_path config.output_path.join(Propshaft::Processor::MANIFEST_FILENAME) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
propshaft-0.5.0 | lib/propshaft/assembly.rb |