Module: PuppetX::EnterpriseModules::Oracle::Mungers::Upcase

Defined in:
lib/puppet_x/enterprisemodules/oracle/mungers.rb

Overview

rubocop:disable Style/Documentation

Instance Method Summary collapse

Instance Method Details

#unsafe_munge(entry) ⇒ Object

rubocop:enable Style/Documentation



33
34
35
36
37
# File 'lib/puppet_x/enterprisemodules/oracle/mungers.rb', line 33

def unsafe_munge(entry)
  fail('expects a String') unless entry.is_a?(String)

  entry.upcase
end