class Settings::Root

Root of a settings definition tree - contains a set of groups and entries

Public Class Methods

new() click to toggle source

Construct ourselves

Calls superclass method Settings::Group::new
# File lib/iron/settings/root.rb, line 8
def initialize
  # We're a group...
  super(nil, '')
end