Sha256: 6cc50c0fcb22fe9f513b929705fe4ebb6f4a69b0bc0ad71d5c554e796ae62a33
Contents?: true
Size: 440 Bytes
Versions: 21
Compression:
Stored size: 440 Bytes
Contents
# frozen_string_literal: true module Zeitwerk class Error < StandardError end class ReloadingDisabledError < Error def initialize super("can't reload, please call loader.enable_reloading before setup") end end class NameError < ::NameError end class SetupRequired < Error def initialize super("please, finish your configuration and call Zeitwerk::Loader#setup once all is ready") end end end
Version data entries
21 entries across 21 versions & 5 rubygems