Class: Buff::Config::JSON

Inherits:
Base
  • Object
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

Constructor Details

This class inherits a constructor from Buff::Config::Base

Class Method Details

.from_file(path) ⇒ Buff::Config::JSON

Parameters:

  • path (String)

Returns:

Raises:



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

.from_json(data) ⇒ Buff::Config::JSON

Parameters:

  • data (String)

Returns:



11
12
13
# File 'lib/buff/config/json.rb', line 11

def from_json(data)
  new.from_json(data)
end

Instance Method Details

#from_json(*args) ⇒ Buff::Config::JSON

Returns:

Raises:

See Also:

  • Buff::Config::JSON.{VariaModel{VariaModel#from_json}


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

#reloadBuff::Config::JSON

Reload the current configuration file from disk

Returns:



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