Sha256: 8278bf8bc0a5ab199c9dd0406e57e925d31ac5782d51341f8cb28f58f262b301

Contents?: true

Size: 503 Bytes

Versions: 20

Compression:

Stored size: 503 Bytes

Contents

#
# concat_is_bool.rb
#

module Puppet::Parser::Functions
  newfunction(:concat_is_bool, :type => :rvalue, :doc => <<-EOS
Returns true if the variable passed to this function is a boolean.
    EOS
  ) do |arguments|

    raise(Puppet::ParseError, "concat_is_bool(): Wrong number of arguments " +
      "given (#{arguments.size} for 1)") if arguments.size != 1

    type = arguments[0]

    result = type.is_a?(TrueClass) || type.is_a?(FalseClass)

    return result
  end
end

# vim: set ts=2 sw=2 et :

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
puppet-retrospec-1.8.0 spec/fixtures/modules/concat/lib/puppet/parser/functions/concat_is_bool.rb
puppet-retrospec-1.7.0 spec/fixtures/modules/concat/lib/puppet/parser/functions/concat_is_bool.rb
puppet-retrospec-1.6.1 spec/fixtures/modules/concat/lib/puppet/parser/functions/concat_is_bool.rb
puppet-retrospec-1.6.0 spec/fixtures/modules/concat/lib/puppet/parser/functions/concat_is_bool.rb
puppet-retrospec-1.5.0 spec/fixtures/modules/concat/lib/puppet/parser/functions/concat_is_bool.rb
puppet-retrospec-1.4.1 spec/fixtures/modules/concat/lib/puppet/parser/functions/concat_is_bool.rb
puppet-retrospec-1.4.0 spec/fixtures/modules/concat/lib/puppet/parser/functions/concat_is_bool.rb
puppet-retrospec-1.3.2 spec/fixtures/modules/concat/lib/puppet/parser/functions/concat_is_bool.rb
puppet-retrospec-1.3.1 spec/fixtures/modules/concat/lib/puppet/parser/functions/concat_is_bool.rb
puppet-retrospec-1.3.0 spec/fixtures/modules/concat/lib/puppet/parser/functions/concat_is_bool.rb
puppet-retrospec-1.2.1 spec/fixtures/modules/concat/lib/puppet/parser/functions/concat_is_bool.rb
puppet-retrospec-1.2.0 spec/fixtures/modules/concat/lib/puppet/parser/functions/concat_is_bool.rb
puppet-retrospec-1.1.0 spec/fixtures/modules/concat/lib/puppet/parser/functions/concat_is_bool.rb
puppet-retrospec-1.0.0 spec/fixtures/modules/concat/lib/puppet/parser/functions/concat_is_bool.rb
puppet-retrospec-0.12.1 spec/fixtures/modules/concat/lib/puppet/parser/functions/concat_is_bool.rb
puppet-retrospec-0.12.0 spec/fixtures/modules/concat/lib/puppet/parser/functions/concat_is_bool.rb
puppet-retrospec-0.11.0 spec/fixtures/modules/concat/lib/puppet/parser/functions/concat_is_bool.rb
puppet-retrospec-0.10.0 spec/fixtures/modules/concat/lib/puppet/parser/functions/concat_is_bool.rb
puppet-retrospec-0.9.1 spec/fixtures/modules/concat/lib/puppet/parser/functions/concat_is_bool.rb
puppet-retrospec-0.9.0 spec/fixtures/modules/concat/lib/puppet/parser/functions/concat_is_bool.rb