Sha256: 26b2a805b09197006bc4741cac4b0fb62f6421859a95e3047dabcd8f5d18baea

Contents?: true

Size: 634 Bytes

Versions: 4

Compression:

Stored size: 634 Bytes

Contents

# frozen_string_literal: true

require_relative "object/instance_variable_fetch"
require_relative "object/resolve_type"

module ConvenientService
  module Utils
    module Object
      class << self
        ##
        # @example
        #   ConvenientService::Utils::Object.instance_variable_fetch("abc", :@foo) { :bar }
        #
        def instance_variable_fetch(...)
          InstanceVariableFetch.call(...)
        end

        ##
        # @example
        #   ConvenientService::Utils::Object.resolve_type("foo")
        #
        def resolve_type(...)
          ResolveType.call(...)
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
convenient_service-0.5.0 lib/convenient_service/utils/object.rb
convenient_service-0.4.0 lib/convenient_service/utils/object.rb
convenient_service-0.3.1 lib/convenient_service/utils/object.rb
convenient_service-0.3.0 lib/convenient_service/utils/object.rb