File: abstract_config_node_value.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 (11 lines) | stat: -rw-r--r-- 439 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
# encoding: utf-8

require_relative '../../hocon/impl'
require_relative '../../hocon/impl/abstract_config_node'

# This essentially exists in the upstream so we can ensure only certain types of
# config nodes can be passed into some methods. That's not a problem in Ruby, so this is
# unnecessary, but it seems best to keep it around for consistency
module Hocon::Impl::AbstractConfigNodeValue
  include Hocon::Impl::AbstractConfigNode
end