Sha256: 848383b796a1626d133034e738c1ad74ef2fc5dafb05b321c4fc60e18dde5ca5

Contents?: true

Size: 956 Bytes

Versions: 753

Compression:

Stored size: 956 Bytes

Contents

# Various methods used to coerce values into a canonical form.
#
# @api private
module Puppet::Coercion
  # Try to coerce various input values into boolean true/false
  #
  # Only a very limited subset of values are allowed. This method does not try
  # to provide a generic "truthiness" system.
  #
  # @param value [Boolean, Symbol, String]
  # @return [Boolean]
  # @raise
  # @api private
  def self.boolean(value)
    # downcase strings
    if value.respond_to? :downcase
      value = value.downcase
    end

    case value
    when true, :true, 'true', :yes, 'yes'
      true
    when false, :false, 'false', :no, 'no'
      false
    else
      fail('expected a boolean value')
    end
  end

  # Return the list of acceptable boolean values.
  #
  # This is limited to lower-case, even though boolean() is case-insensitive.
  #
  # @return [Array]
  # @raise
  # @api private
  def self.boolean_values
    ['true', 'false', 'yes', 'no']
  end
end

Version data entries

753 entries across 753 versions & 3 rubygems

Version Path
puppet-7.34.0 lib/puppet/coercion.rb
puppet-7.34.0-x86-mingw32 lib/puppet/coercion.rb
puppet-7.34.0-x64-mingw32 lib/puppet/coercion.rb
puppet-7.34.0-universal-darwin lib/puppet/coercion.rb
puppet-7.33.0 lib/puppet/coercion.rb
puppet-7.33.0-x86-mingw32 lib/puppet/coercion.rb
puppet-7.33.0-x64-mingw32 lib/puppet/coercion.rb
puppet-7.33.0-universal-darwin lib/puppet/coercion.rb
puppet-7.32.1 lib/puppet/coercion.rb
puppet-7.32.1-x86-mingw32 lib/puppet/coercion.rb
puppet-7.32.1-x64-mingw32 lib/puppet/coercion.rb
puppet-7.32.1-universal-darwin lib/puppet/coercion.rb
puppet-7.31.0 lib/puppet/coercion.rb
puppet-7.31.0-x86-mingw32 lib/puppet/coercion.rb
puppet-7.31.0-x64-mingw32 lib/puppet/coercion.rb
puppet-7.31.0-universal-darwin lib/puppet/coercion.rb
puppet-7.30.0 lib/puppet/coercion.rb
puppet-7.30.0-x86-mingw32 lib/puppet/coercion.rb
puppet-7.30.0-x64-mingw32 lib/puppet/coercion.rb
puppet-7.30.0-universal-darwin lib/puppet/coercion.rb