Sha256: 3ba82cb07c5cbcb91bdee63430a64a09da695070f2f369e339a1182613bc3410
Contents?: true
Size: 955 Bytes
Versions: 8
Compression:
Stored size: 955 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] # # @internal # TODO: `inspect_values` for class. This way `service_class.name || ...` can be shared. # def inspect return "<#{container.klass.name}::Step method: :#{method}>" if method_step? "<#{container.klass.name}::Step service: #{service.klass.name}>" end end end end end end end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems