Class: Puppet::Parser::Util::Args

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

Instance Method Summary collapse

Constructor Details

#initialize(args) ⇒ Args

Returns a new instance of Args.



175
176
177
# File 'lib/puppet/parser/util/erly.rb', line 175

def initialize(args)
  @args = args
end

Instance Method Details

#expand(k1, v1) ⇒ Object



179
180
181
182
183
184
185
186
# File 'lib/puppet/parser/util/erly.rb', line 179

def expand(k1, v1)
  case v1
  when ::Hash
    v1.sort.map { |k2, v2| expand("#{k1} #{k2}", v2) }
  else
    "#{k1} #{v1}"
  end
end

#pp(level = 0) ⇒ Object



196
197
198
# File 'lib/puppet/parser/util/erly.rb', line 196

def pp(level=0)
  to_a.join("\n")
end

#to_aObject



188
189
190
# File 'lib/puppet/parser/util/erly.rb', line 188

def to_a
  @args.sort.map { |k, v| expand(k, v) }.flatten
end

#to_sObject



192
193
194
# File 'lib/puppet/parser/util/erly.rb', line 192

def to_s
  to_a.join(" ")
end