Sha256: 723393748ed666183a7d55e4c909904fbadad998f75906b4a67a041061bf03bb

Contents?: true

Size: 573 Bytes

Versions: 8

Compression:

Stored size: 573 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] Can be any type.
            #
            def new(...)
              new_without_commit_config(...)
            end
          end
        end
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
convenient_service-0.19.1 lib/convenient_service/common/plugins/has_constructor/concern.rb
convenient_service-0.19.0 lib/convenient_service/common/plugins/has_constructor/concern.rb
convenient_service-0.18.0 lib/convenient_service/common/plugins/has_constructor/concern.rb
convenient_service-0.17.0 lib/convenient_service/common/plugins/has_constructor/concern.rb
convenient_service-0.16.0 lib/convenient_service/common/plugins/has_constructor/concern.rb
convenient_service-0.15.0 lib/convenient_service/common/plugins/has_constructor/concern.rb
convenient_service-0.14.0 lib/convenient_service/common/plugins/has_constructor/concern.rb
convenient_service-0.13.0 lib/convenient_service/common/plugins/has_constructor/concern.rb