Module: ConvenientService::Service::Plugins::CanHaveSteps::Concern
- Includes:
- ConvenientService::Support::Concern
- Defined in:
- lib/convenient_service/service/plugins/can_have_steps/concern.rb
Class Method Summary collapse
-
.raw(value) ⇒ ConvenientService::Support::RawValue
Allows to pass a value to
in
method without its intermediate processing. - .step_class ⇒ ConvenientService::Service::Plugins::CanHaveSteps::Entities::Step private
Class Method Details
.raw(value) ⇒ ConvenientService::Support::RawValue
Allows to pass a value to in
method without its intermediate processing.
25 26 27 |
# File 'lib/convenient_service/service/plugins/can_have_steps/concern.rb', line 25 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.
34 35 36 |
# File 'lib/convenient_service/service/plugins/can_have_steps/concern.rb', line 34 def step_class @step_class ||= Commands::CreateStepClass.call(service_class: self) end |