Class: Cmdlet::Case::Upper

Inherits:
BaseCmdlet show all
Defined in:
lib/cmdlet/case/upper.rb

Overview

Upper: Upper case the characters in the given 'string'

Instance Method Summary collapse

Methods inherited from BaseCmdlet

#tokenizer

Instance Method Details

#call(value) ⇒ String

Returns value converted to upper case.

Parameters:

  • value (String|Int)
    • value - to be converted

Returns:

  • (String)

    value converted to upper case



11
12
13
14
15
# File 'lib/cmdlet/case/upper.rb', line 11

def call(value)
  return '' if value.nil?

  value.upcase
end