Class: Puppet::Parser::Util::String

Inherits:
Object
  • Object
show all
Defined in:
lib/puppet/parser/util/erly.rb

Instance Method Summary collapse

Constructor Details

#initialize(str) ⇒ String

Returns a new instance of String.



45
46
47
# File 'lib/puppet/parser/util/erly.rb', line 45

def initialize(str)
  @str = str
end

Instance Method Details

#pp(level = 0) ⇒ Object



62
63
64
# File 'lib/puppet/parser/util/erly.rb', line 62

def pp(level=0)
  to_s
end

#to_sObject



49
50
51
52
53
54
55
56
57
58
59
60
# File 'lib/puppet/parser/util/erly.rb', line 49

def to_s
  case @str
  when /^__binary_(.*)/
    to_binary($1)
  when /^__string_(.*)/
    to_string($1)
  when /^__atom_(.*)/
    to_atom($1)
  else
    to_string(@str)
  end
end