Class: TOML::Table
Direct Known Subclasses
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
:name is array of strings.
Instance Method Summary collapse
-
#initialize(name) ⇒ Table
constructor
A new instance of Table.
Constructor Details
#initialize(name) ⇒ Table
Returns a new instance of Table.
5 6 7 |
# File 'lib/toml/table.rb', line 5 def initialize(name) @name = name end |
Instance Attribute Details
#name ⇒ Object (readonly)
:name is array of strings
4 5 6 |
# File 'lib/toml/table.rb', line 4 def name @name end |