Class: DiscourseTheme::Config
- Inherits:
-
Object
- Object
- DiscourseTheme::Config
- Defined in:
- lib/discourse_theme/config.rb
Defined Under Namespace
Classes: PathSetting
Instance Attribute Summary collapse
-
#filename ⇒ Object
readonly
Returns the value of attribute filename.
-
#raw_config ⇒ Object
readonly
Returns the value of attribute raw_config.
Instance Method Summary collapse
- #[](path) ⇒ Object
-
#initialize(filename) ⇒ Config
constructor
A new instance of Config.
- #save ⇒ Object
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
#filename ⇒ Object (readonly)
Returns the value of attribute filename.
64 65 66 |
# File 'lib/discourse_theme/config.rb', line 64 def filename @filename end |
#raw_config ⇒ Object (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 |
#save ⇒ Object
82 83 84 |
# File 'lib/discourse_theme/config.rb', line 82 def save File.write(@filename, @raw_config.to_yaml) end |