Class: Buff::Config::JSON
- Inherits:
-
Base
- Object
- Base
- Buff::Config::JSON
show all
- Defined in:
- lib/buff/config/json.rb
Instance Attribute Summary
Attributes inherited from Base
#path
Class Method Summary
collapse
Instance Method Summary
collapse
Methods inherited from Base
#initialize, #to_hash
Class Method Details
20
21
22
23
24
25
26
|
# File 'lib/buff/config/json.rb', line 20
def from_file(path)
path = File.expand_path(path)
data = File.read(path)
new(path).from_json(data)
rescue TypeError, Errno::ENOENT, Errno::EISDIR
raise Errors::ConfigNotFound, "No configuration found at: '#{path}'"
end
|
11
12
13
|
# File 'lib/buff/config/json.rb', line 11
def from_json(data)
new.from_json(data)
end
|
Instance Method Details
34
35
36
37
38
|
# File 'lib/buff/config/json.rb', line 34
def from_json(*args)
super
rescue ::JSON::ParserError => ex
raise Errors::InvalidConfig, ex
end
|
Reload the current configuration file from disk
54
55
56
57
|
# File 'lib/buff/config/json.rb', line 54
def reload
mass_assign(self.class.from_file(path).to_hash)
self
end
|
#save(destination = self.path) ⇒ Object
40
41
42
43
44
45
46
47
48
49
|
# File 'lib/buff/config/json.rb', line 40
def save(destination = self.path)
if destination.nil?
raise Errors::ConfigSaveError, "Cannot save configuration without a destination. Provide one to save or set one on the object."
end
FileUtils.mkdir_p(File.dirname(destination))
File.open(destination, 'w+') do |f|
f.write(::JSON.pretty_generate(self.to_hash))
end
end
|