Class: Chef::DSL::Toml::Dumper

Inherits:
Object
  • Object
show all
Defined in:
lib/chef/dsl/toml.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(hash) ⇒ Dumper

Returns a new instance of Dumper.



10
11
12
13
14
# File 'lib/chef/dsl/toml.rb', line 10

def initialize(hash)
  @toml_str = ""

  visit(hash, [])
end

Instance Attribute Details

#toml_strObject (readonly)

Returns the value of attribute toml_str.



8
9
10
# File 'lib/chef/dsl/toml.rb', line 8

def toml_str
  @toml_str
end