Module: EasyType::Validators::Name

Defined in:
lib/easy_type/validators.rb

Overview

This validator validates if a name is free of whitespace and not empty. To use this validator, include it in a Puppet name definition.

Examples:


newparam(:name) do
  include EasyType::Validators::NameValidator

Raises:

  • (Puppet::Error)

    when the name is invalid

Instance Method Summary collapse

Instance Method Details

#unsafe_validate(value) ⇒ Object



27
28
29
30
# File 'lib/easy_type/validators.rb', line 27

def unsafe_validate(value)
  fail Puppet::Error, "Name must not contain whitespace: #{value}" if value =~ /\s/
  fail Puppet::Error, 'Name must not be empty' if value.empty?
end