Class: Mutant::Transform::Primitive Private
- Inherits:
-
Mutant::Transform
- Object
- Mutant::Transform
- Mutant::Transform::Primitive
- Defined in:
- lib/mutant/transform.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Transform guarding a specific primitive
Constant Summary collapse
- MESSAGE =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
'Expected: %<expected>s but got: %<actual>s'
Instance Method Summary collapse
-
#call(input) ⇒ Either<Error, Object>
private
Apply transformation to input.
-
#slug ⇒ String
private
Rendering slug.
Instance Method Details
#call(input) ⇒ Either<Error, Object>
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.
Apply transformation to input
164 165 166 167 168 169 170 171 172 173 174 175 |
# File 'lib/mutant/transform.rb', line 164 def call(input) if input.instance_of?(primitive) success(input) else failure( error( input:, message: MESSAGE % { actual: input.class, expected: primitive } ) ) end end |
#slug ⇒ 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.
Rendering slug
180 |
# File 'lib/mutant/transform.rb', line 180 def slug = primitive.to_s |