File: table.rb

package info (click to toggle)
ruby-toml 0.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 296 kB
  • sloc: ruby: 666; sh: 7; makefile: 4
file content (10 lines) | stat: -rw-r--r-- 174 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
module TOML
  class Table
    # :name is array of strings
    attr_reader :name
    def initialize(name)
      @name = name
    end
  end
  class TableArray < Table; end
end