Sha256: 14e942784ce12f959d2cc12159dab058bd0efbd5c09201111a5d445b08cff4eb
Contents?: true
Size: 377 Bytes
Versions: 19
Compression:
Stored size: 377 Bytes
Contents
# frozen_string_literal: true module Anyway module Loaders class Base include Tracing class << self def call(local: Anyway::Settings.use_local_files, **opts) new(local: local).call(**opts) end end def initialize(local:) @local = local end def use_local?() ; @local == true; end end end end
Version data entries
19 entries across 19 versions & 1 rubygems