Sha256: 773d24287837c15f474d36487528936f3bf6aa780c197536cdfb8b0f9427b828

Contents?: true

Size: 661 Bytes

Versions: 10

Compression:

Stored size: 661 Bytes

Contents

# frozen_string_literal: true

require_relative "concern/instance_methods"
require_relative "concern/class_methods"

module ConvenientService
  module Service
    module Plugins
      module CanHaveSteps
        module Entities
          class Method
            module Concern
              include Support::Concern

              included do |method_klass|
                method_klass.include Support::Castable
                method_klass.include Support::Copyable

                method_klass.include InstanceMethods

                method_klass.extend ClassMethods
              end
            end
          end
        end
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
convenient_service-0.19.1 lib/convenient_service/service/plugins/can_have_steps/entities/method/concern.rb
convenient_service-0.19.0 lib/convenient_service/service/plugins/can_have_steps/entities/method/concern.rb
convenient_service-0.18.0 lib/convenient_service/service/plugins/can_have_steps/entities/method/concern.rb
convenient_service-0.17.0 lib/convenient_service/service/plugins/can_have_steps/entities/method/concern.rb
convenient_service-0.16.0 lib/convenient_service/service/plugins/can_have_steps/entities/method/concern.rb
convenient_service-0.15.0 lib/convenient_service/service/plugins/can_have_steps/entities/method/concern.rb
convenient_service-0.14.0 lib/convenient_service/service/plugins/can_have_steps/entities/method/concern.rb
convenient_service-0.13.0 lib/convenient_service/service/plugins/can_have_steps/entities/method/concern.rb
convenient_service-0.12.0 lib/convenient_service/service/plugins/can_have_steps/entities/method/concern.rb
convenient_service-0.11.0 lib/convenient_service/service/plugins/can_have_steps/entities/method/concern.rb