Class: DiscourseTheme::Config

Inherits:
Object
  • Object
show all
Defined in:
lib/discourse_theme/config.rb

Defined Under Namespace

Classes: PathSetting

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(filename) ⇒ Config



66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# File 'lib/discourse_theme/config.rb', line 66

def initialize(filename)
  @filename = filename

  if File.exist?(@filename)
    begin
      @raw_config = YAML.load_file(@filename)
      raise unless Hash === @raw_config
    rescue
      @raw_config = {}
      $stderr.puts "ERROR: #{@filename} contains invalid config, resetting"
    end
  else
    @raw_config = {}
  end
end

Instance Attribute Details

#filenameObject (readonly)

Returns the value of attribute filename.



64
65
66
# File 'lib/discourse_theme/config.rb', line 64

def filename
  @filename
end

#raw_configObject (readonly)

Returns the value of attribute raw_config.



64
65
66
# File 'lib/discourse_theme/config.rb', line 64

def raw_config
  @raw_config
end

Instance Method Details

#[](path) ⇒ Object



86
87
88
# File 'lib/discourse_theme/config.rb', line 86

def [](path)
  PathSetting.new(self, path)
end

#saveObject



82
83
84
# File 'lib/discourse_theme/config.rb', line 82

def save
  File.write(@filename, @raw_config.to_yaml)
end