Class: Morpher::Transform::Primitive
- Inherits:
-
Morpher::Transform
- Object
- Morpher::Transform
- Morpher::Transform::Primitive
- Defined in:
- lib/morpher/transform.rb
Overview
Transform guarding a specific primitive
Constant Summary collapse
- MESSAGE =
'Expected: %<expected>s but got: %<actual>s'
Instance Method Summary collapse
-
#call(input) ⇒ Either<Error, Object>
Apply transformation to input.
-
#slug ⇒ String
Rendering slug.
Methods inherited from Morpher::Transform
Instance Method Details
#call(input) ⇒ Either<Error, Object>
Apply transformation to input
207 208 209 210 211 212 213 214 215 216 217 218 |
# File 'lib/morpher/transform.rb', line 207 def call(input) if input.instance_of?(primitive) success(input) else failure( error( input: input, message: MESSAGE % { actual: input.class, expected: primitive } ) ) end end |
#slug ⇒ String
Rendering slug
223 224 225 |
# File 'lib/morpher/transform.rb', line 223 def slug primitive.to_s end |