Sha256: f7134e5e9ab35fa26dfc5969d606dbaa4c312890339c8270e5dabe7bc30dc678

Contents?: true

Size: 727 Bytes

Versions: 2

Compression:

Stored size: 727 Bytes

Contents

# frozen_string_literal: true

module ConvenientService
  module Service
    module Plugins
      module CanHaveSteps
        module Entities
          class Step
            module Plugins
              module HasInspect
                module Concern
                  include Support::Concern

                  instance_methods do
                    ##
                    # @return [String]
                    # @since 0.2.0
                    #
                    def inspect
                      "<#{container.klass.name}::Step service: #{service.klass.name}>"
                    end
                  end
                end
              end
            end
          end
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
convenient_service-0.12.0 lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/has_inspect/concern.rb
convenient_service-0.11.0 lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/has_inspect/concern.rb