Sha256: 4744473db83bb538cbb640f3e6bbff884d3c03cb8359a2ffc6948dcbd7c18129

Contents?: true

Size: 722 Bytes

Versions: 2

Compression:

Stored size: 722 Bytes

Contents

# frozen_string_literal: true

module ConvenientService
  module Feature
    module Configs
      ##
      # Default configuration for the user-defined features.
      #
      module Standard
        include Support::Concern

        included do
          include Core

          concerns do
            use ConvenientService::Plugins::Feature::CanHaveEntries::Concern

            use ConvenientService::Plugins::Common::HasInstanceProxy::Concern
          end

          middlewares :new, scope: :class do
            use ConvenientService::Plugins::Common::NormalizesEnv::Middleware

            use ConvenientService::Plugins::Common::HasInstanceProxy::Middleware
          end
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
convenient_service-0.18.0 lib/convenient_service/feature/configs/standard.rb
convenient_service-0.17.0 lib/convenient_service/feature/configs/standard.rb