Sha256: 34dad69964ae19ba3fecc2320439904832bd0de9cf279077ad8f8260f8cd1c25

Contents?: true

Size: 564 Bytes

Versions: 14

Compression:

Stored size: 564 Bytes

Contents

# frozen_string_literal: true

module ConvenientService
  module Common
    module Plugins
      module HasConstructor
        module Concern
          include Support::Concern

          instance_methods do
            ##
            # @return [void]
            #
            def initialize(...)
            end
          end

          class_methods do
            ##
            # @return [Object]
            # @since 0.2.0
            #
            def create(...)
              new(...)
            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_constructor/concern.rb
convenient_service-0.11.0 lib/convenient_service/common/plugins/has_constructor/concern.rb
convenient_service-0.10.1 lib/convenient_service/common/plugins/has_constructor/concern.rb
convenient_service-0.10.0 lib/convenient_service/common/plugins/has_constructor/concern.rb
convenient_service-0.9.0 lib/convenient_service/common/plugins/has_constructor/concern.rb
convenient_service-0.8.0 lib/convenient_service/common/plugins/has_constructor/concern.rb
convenient_service-0.7.0 lib/convenient_service/common/plugins/has_constructor/concern.rb
convenient_service-0.6.0 lib/convenient_service/common/plugins/has_constructor/concern.rb
convenient_service-0.5.0 lib/convenient_service/common/plugins/has_constructor/concern.rb
convenient_service-0.4.0 lib/convenient_service/common/plugins/has_constructor/concern.rb
convenient_service-0.3.1 lib/convenient_service/common/plugins/has_constructor/concern.rb
convenient_service-0.3.0 lib/convenient_service/common/plugins/has_constructor/concern.rb
convenient_service-0.2.1 lib/convenient_service/common/plugins/has_constructor/concern.rb
convenient_service-0.2.0 lib/convenient_service/common/plugins/has_constructor/concern.rb