Class: Puppet::Parser::Util::Args
- Inherits:
-
Object
- Object
- Puppet::Parser::Util::Args
- Defined in:
- lib/puppet/parser/util/erly.rb
Instance Method Summary collapse
- #expand(k1, v1) ⇒ Object
-
#initialize(args) ⇒ Args
constructor
A new instance of Args.
- #pp(level = 0) ⇒ Object
- #to_a ⇒ Object
- #to_s ⇒ Object
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 (k1, v1) case v1 when ::Hash v1.sort.map { |k2, v2| ("#{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_a ⇒ Object
188 189 190 |
# File 'lib/puppet/parser/util/erly.rb', line 188 def to_a @args.sort.map { |k, v| (k, v) }.flatten end |
#to_s ⇒ Object
192 193 194 |
# File 'lib/puppet/parser/util/erly.rb', line 192 def to_s to_a.join(" ") end |