Module: ConvenientService::Service::Plugins::CanHaveSteps::Concern Private

Includes:
ConvenientService::Support::Concern
Defined in:
lib/convenient_service/service/plugins/can_have_steps/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.

Since:

  • 1.0.0

Class Method Summary collapse

Methods included from ConvenientService::Support::Concern

included

Class Method Details

.blockConvenientService::Support::UniqueValue

Returns:

Since:

  • 1.0.0



20
21
22
# File 'lib/convenient_service/service/plugins/can_have_steps/concern.rb', line 20

def block
  Support::BLOCK
end

.raw(value) ⇒ ConvenientService::Support::RawValue



33
34
35
# File 'lib/convenient_service/service/plugins/can_have_steps/concern.rb', line 33

def raw(value)
  Support::RawValue.wrap(value)
end

.step_classConvenientService::Service::Plugins::CanHaveSteps::Entities::Step

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.



42
43
44
# File 'lib/convenient_service/service/plugins/can_have_steps/concern.rb', line 42

def step_class
  @step_class ||= Common::Plugins::CanHaveUserProvidedEntity.find_or_create_entity(self, Entities::Step)
end