class Tengine::Support::Config::Definition::Group

Attributes

__name__[R]
__parent__[RW]

Public Class Methods

new(__name__, options) click to toggle source
# File lib/tengine/support/config/definition/group.rb, line 9
def initialize(__name__, options)
  @__name__ = __name__
  @options = options
end

Public Instance Methods

hidden?() click to toggle source
# File lib/tengine/support/config/definition/group.rb, line 18
def hidden?
  !!@options[:hidden]
end
root() click to toggle source
# File lib/tengine/support/config/definition/group.rb, line 14
def root
  __parent__.root
end