class Sprockets::Rails::Helper::AbsoluteAssetPathError
Public Class Methods
          new(bad_path, good_path, prefix)
          
          click to toggle source
          
        
        
        
              Calls superclass method
              
            
          
          
          # File lib/sprockets/rails/helper.rb, line 34 def initialize(bad_path, good_path, prefix) msg = "Asset names passed to helpers should not include the #{prefix.inspect} prefix. " << "Instead of #{bad_path.inspect}, use #{good_path.inspect}" super(msg) end