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