Sha256: 81aed810792ab5f5fda7c3e2858cb53e908e7922d4b1153e00538cf76457b901
Contents?: true
Size: 618 Bytes
Versions: 29
Compression:
Stored size: 618 Bytes
Contents
# Define some basic Sprockets error classes module Sprockets class Error < StandardError; end class ArgumentError < Error; end class CircularDependencyError < Error; end class ContentTypeMismatch < Error; end class EncodingError < Error; end class FileNotFound < Error; end class FileOutsidePaths < Error; end class NotImplementedError < Error; end class UnserializeError < Error; end module EngineError attr_accessor :sprockets_annotation def message [super, sprockets_annotation].compact.join("\n") end end end
Version data entries
29 entries across 29 versions & 5 rubygems