Sha256: 9dea58331618103c619c6b92873c708eb0069121a7f892d2cbf245a184760cd0
Contents?: true
Size: 1.28 KB
Versions: 2
Compression:
Stored size: 1.28 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" 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 load_path.assets.each do |asset| Propshaft.logger.info asset.logical_path end end private def manifest_path config.output_path.join(Propshaft::Processor::MANIFEST_FILENAME) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
propshaft-0.2.2 | lib/propshaft/assembly.rb |
propshaft-0.2.1 | lib/propshaft/assembly.rb |