Exception: Lotus::Assets::MissingAsset
- Defined in:
 - lib/lotus/assets/compiler.rb
 
Overview
Instance Method Summary collapse
- 
  
    
      #initialize(name, sources)  ⇒ MissingAsset 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of MissingAsset.
 
Constructor Details
#initialize(name, sources) ⇒ MissingAsset
Returns a new instance of MissingAsset.
      4 5 6 7  | 
    
      # File 'lib/lotus/assets/compiler.rb', line 4 def initialize(name, sources) sources = sources.map(&:to_s).join(', ') super("Missing asset: `#{ name }' (sources: #{ sources })") end  |