class Sprockets::DoubleLinkError
Public Class Methods
Source
# 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
Calls superclass method