Sha256: 5033623e87c03b710b8ce6c69c7926cc022f6faa5eb3e4b0b643cce0eee43b8f

Contents?: true

Size: 642 Bytes

Versions: 1

Compression:

Stored size: 642 Bytes

Contents

# frozen_string_literal: true

module ConvenientService
  module Common
    module Plugins
      module HasInternals
        module Entities
          class Internals
            module Plugins
              module HasCache
                ##
                # TODO: Specs.
                #
                module Concern
                  include Support::Concern

                  instance_methods do
                    def cache
                      @cache ||= Entities::Cache.new
                    end
                  end
                end
              end
            end
          end
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
convenient_service-0.1.0 lib/convenient_service/common/plugins/has_internals/entities/internals/plugins/has_cache/concern.rb