Module: ConvenientService::Service::Plugins::CanHaveSteps::Entities::Step::Plugins::HasAwesomePrintInspect::Concern Private
- Includes:
- ConvenientService::Support::Concern
- Defined in:
- lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/has_awesome_print_inspect/concern.rb
Overview
This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.
Instance Method Summary collapse
- #inspect ⇒ String private
Methods included from ConvenientService::Support::Concern
Instance Method Details
#inspect ⇒ String
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
28 29 30 31 32 33 34 35 36 37 38 39 40 |
# File 'lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/has_awesome_print_inspect/concern.rb', line 28 def inspect = { ConvenientService: { entity: "Step", container: Utils::Class.display_name(container.klass) } } [:ConvenientService][:method] = ":#{method}" if method_step? [:ConvenientService][:service] = Utils::Class.display_name(service_class) if service_step? .ai end |