class Sprockets::DoubleLinkError

Public Class Methods

new(parent_filename:, logical_path:, last_filename:, filename:) click to toggle source
Calls superclass method
# File lib/sprockets/base.rb, line 21
    def initialize(parent_filename:, logical_path:, last_filename:, filename:)
      super <<~MSG
        Multiple files with the same output path cannot be linked (#{logical_path.inspect})
        In #{parent_filename.inspect} these files were linked:
          - #{last_filename}
          - #{filename}
      MSG
    end