Class: TomlRB::Dumper

Inherits:
Object
  • Object
show all
Defined in:
lib/toml-rb/dumper.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(hash) ⇒ Dumper

Returns a new instance of Dumper.



5
6
7
8
9
# File 'lib/toml-rb/dumper.rb', line 5

def initialize(hash)
  @toml_str = ''

  visit(hash, [])
end

Instance Attribute Details

#toml_strObject (readonly)

Returns the value of attribute toml_str.



3
4
5
# File 'lib/toml-rb/dumper.rb', line 3

def toml_str
  @toml_str
end