class Propshaft::Assembly

Attributes

config[R]

Public Class Methods

new(config) click to toggle source
# File lib/propshaft/assembly.rb, line 14
def initialize(config)
  @config = config
end

Public Instance Methods

compilers() click to toggle source
# File lib/propshaft/assembly.rb, line 39
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
load_path() click to toggle source
# File lib/propshaft/assembly.rb, line 18
def load_path
  @load_path ||= Propshaft::LoadPath.new(config.paths, compilers: compilers, version: config.version)
end
processor() click to toggle source
# File lib/propshaft/assembly.rb, line 34
def processor
  Propshaft::Processor.new \
    load_path: load_path, output_path: config.output_path, compilers: compilers, manifest_path: config.manifest_path
end
resolver() click to toggle source
# File lib/propshaft/assembly.rb, line 22
def resolver
  @resolver ||= if config.manifest_path.exist?
    Propshaft::Resolver::Static.new manifest_path: config.manifest_path, prefix: config.prefix
  else
    Propshaft::Resolver::Dynamic.new load_path: load_path, prefix: config.prefix
  end
end
reveal(path_type = :logical_path) click to toggle source
# File lib/propshaft/assembly.rb, line 48
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.collect do |asset|
    asset.send(path_type)
  end
end
server() click to toggle source
# File lib/propshaft/assembly.rb, line 30
def server
  Propshaft::Server.new(self)
end