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
Allows to pass a value to
inmethod without its intermediate processing. - .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
Allows to pass a value to in method without its intermediate processing.
38 39 40 |
# File 'lib/convenient_service/service/plugins/can_have_steps/concern.rb', line 38 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.
47 48 49 |
# File 'lib/convenient_service/service/plugins/can_have_steps/concern.rb', line 47 def step_class @step_class ||= Common::Plugins::CanHaveUserProvidedEntity.find_or_create_entity(self, Entities::Step) end |