Class: Mutant::Transform::Primitive Private

Inherits:
Mutant::Transform show all
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

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



155
156
157
158
159
160
161
162
163
164
165
166
# File 'lib/mutant/transform.rb', line 155

def call(input)
  if input.instance_of?(primitive)
    success(input)
  else
    failure(
      error(
        input:   input,
        message: MESSAGE % { actual: input.class, expected: primitive }
      )
    )
  end
end

#slugString

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



171
172
173
# File 'lib/mutant/transform.rb', line 171

def slug
  primitive.to_s
end