Sha256: 2796db0cc32b7aaa33f1d7b8d26a26c268a1708732ce43a61a22ebb6556f0620

Contents?: true

Size: 808 Bytes

Versions: 14

Compression:

Stored size: 808 Bytes

Contents

# frozen_string_literal: true

module ConvenientService
  module Common
    module Plugins
      module HasInternals
        module Entities
          class Internals
            module Plugins
              ##
              # @internal
              #   TODO: Consider to refactor into common plugin?
              #
              module HasCache
                module Concern
                  include Support::Concern

                  instance_methods do
                    ##
                    # @return [ConvenientService::Support::Cache]
                    #
                    def cache
                      @cache ||= Support::Cache.new
                    end
                  end
                end
              end
            end
          end
        end
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
convenient_service-0.12.0 lib/convenient_service/common/plugins/has_internals/entities/internals/plugins/has_cache/concern.rb
convenient_service-0.11.0 lib/convenient_service/common/plugins/has_internals/entities/internals/plugins/has_cache/concern.rb
convenient_service-0.10.1 lib/convenient_service/common/plugins/has_internals/entities/internals/plugins/has_cache/concern.rb
convenient_service-0.10.0 lib/convenient_service/common/plugins/has_internals/entities/internals/plugins/has_cache/concern.rb
convenient_service-0.9.0 lib/convenient_service/common/plugins/has_internals/entities/internals/plugins/has_cache/concern.rb
convenient_service-0.8.0 lib/convenient_service/common/plugins/has_internals/entities/internals/plugins/has_cache/concern.rb
convenient_service-0.7.0 lib/convenient_service/common/plugins/has_internals/entities/internals/plugins/has_cache/concern.rb
convenient_service-0.6.0 lib/convenient_service/common/plugins/has_internals/entities/internals/plugins/has_cache/concern.rb
convenient_service-0.5.0 lib/convenient_service/common/plugins/has_internals/entities/internals/plugins/has_cache/concern.rb
convenient_service-0.4.0 lib/convenient_service/common/plugins/has_internals/entities/internals/plugins/has_cache/concern.rb
convenient_service-0.3.1 lib/convenient_service/common/plugins/has_internals/entities/internals/plugins/has_cache/concern.rb
convenient_service-0.3.0 lib/convenient_service/common/plugins/has_internals/entities/internals/plugins/has_cache/concern.rb
convenient_service-0.2.1 lib/convenient_service/common/plugins/has_internals/entities/internals/plugins/has_cache/concern.rb
convenient_service-0.2.0 lib/convenient_service/common/plugins/has_internals/entities/internals/plugins/has_cache/concern.rb