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.
Class Method Summary collapse
- .block ⇒ ConvenientService::Support::UniqueValue
- .raw(value) ⇒ ConvenientService::Support::RawValue
- .step_class ⇒ ConvenientService::Service::Plugins::CanHaveSteps::Entities::Step private
Methods included from ConvenientService::Support::Concern
Class Method Details
.block ⇒ ConvenientService::Support::UniqueValue
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_class ⇒ ConvenientService::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 |