File: config_syntax.rb

package info (click to toggle)
ruby-hocon 1.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 768 kB
  • sloc: ruby: 7,903; makefile: 4
file content (12 lines) | stat: -rw-r--r-- 280 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
# encoding: utf-8

require_relative '../hocon'

module Hocon::ConfigSyntax
  JSON = 0
  CONF = 1
  # alias 'HOCON' to 'CONF' since some users may be more familiar with that
  HOCON = 1
  # we're not going to try to support .properties files any time soon :)
  #PROPERTIES = 2
end