Class: Puppet::Parser::Util::String
- Inherits:
-
Object
- Object
- Puppet::Parser::Util::String
- Defined in:
- lib/puppet/parser/util/erly.rb
Instance Method Summary collapse
-
#initialize(str) ⇒ String
constructor
A new instance of String.
- #pp(level = 0) ⇒ Object
- #to_s ⇒ Object
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_s ⇒ Object
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 |