Sha256: 64367ebd1b955c7f419c9b3fe0dab80b54fde50d32f7d5220dbbde2ff45ff072

Contents?: true

Size: 663 Bytes

Versions: 13

Compression:

Stored size: 663 Bytes

Contents

# frozen_string_literal: true

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

module ConvenientService
  module Service
    module Plugins
      module HasResultSteps
        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

13 entries across 13 versions & 1 rubygems

Version Path
convenient_service-0.10.1 lib/convenient_service/service/plugins/has_result_steps/entities/method/concern.rb
convenient_service-0.10.0 lib/convenient_service/service/plugins/has_result_steps/entities/method/concern.rb
convenient_service-0.9.0 lib/convenient_service/service/plugins/has_result_steps/entities/method/concern.rb
convenient_service-0.8.0 lib/convenient_service/service/plugins/has_result_steps/entities/method/concern.rb
convenient_service-0.7.0 lib/convenient_service/service/plugins/has_result_steps/entities/method/concern.rb
convenient_service-0.6.0 lib/convenient_service/service/plugins/has_result_steps/entities/method/concern.rb
convenient_service-0.5.0 lib/convenient_service/service/plugins/has_result_steps/entities/method/concern.rb
convenient_service-0.4.0 lib/convenient_service/service/plugins/has_result_steps/entities/method/concern.rb
convenient_service-0.3.1 lib/convenient_service/service/plugins/has_result_steps/entities/method/concern.rb
convenient_service-0.3.0 lib/convenient_service/service/plugins/has_result_steps/entities/method/concern.rb
convenient_service-0.2.1 lib/convenient_service/service/plugins/has_result_steps/entities/method/concern.rb
convenient_service-0.2.0 lib/convenient_service/service/plugins/has_result_steps/entities/method/concern.rb
convenient_service-0.1.0 lib/convenient_service/service/plugins/has_result_steps/entities/method/concern.rb