Sha256: 0779c0452d5a3dac8529bca004b4af0187b11d17a16d86c4e38728c5dfd4e66b

Contents?: true

Size: 699 Bytes

Versions: 13

Compression:

Stored size: 699 Bytes

Contents

# This is a TOML document. Boom.

title = "TOML Example"

[owner]
name = "Tom Preston-Werner"
organization = "GitHub"
bio = "GitHub Cofounder & CEO\nLikes tater tots and beer."
dob = 1979-05-27T07:32:00Z # First class dates? Why not?

[database]
server = "192.168.1.1"
ports = [ 8001, 8001, 8002 ]
connection_max = 5000
enabled = true

[servers]

  # You can indent as you please. Tabs or spaces. TOML don't care.
  [servers.alpha]
  ip = "10.0.0.1"
  dc = "eqdc10"

  [servers.beta]
  ip = "10.0.0.2"
  dc = "eqdc10"

[clients]
data = [ ["gamma", "delta"], [1, 2] ]

# Line breaks are OK when inside arrays
hosts = [
  "alpha",
  "omega"
]

[amqp]
exchange = {durable = true, auto_delete = false}

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
toml-rb-0.3.15 test/example.toml
toml-rb-0.3.14 test/example.toml
toml-rb-0.3.13 test/example.toml
toml-rb-0.3.12 test/example.toml
toml-rb-0.3.11 test/example.toml
toml-rb-0.3.10 test/example.toml
toml-rb-0.3.9 test/example.toml
toml-rb-0.3.8 test/example.toml
toml-rb-0.3.7 test/example.toml
toml-rb-0.3.6 test/example.toml
toml-rb-0.3.5 test/example.toml
toml-rb-0.3.4 test/example.toml
toml-rb-0.3.3 test/example.toml