Sha256: b1282cb2d235488b551c1c0b992087882f26de2af89075817b2a86f6c492d920
Contents?: true
Size: 775 Bytes
Versions: 1
Compression:
Stored size: 775 Bytes
Contents
require 'rubygems' require 'hashie/dash' require 'json' module Buildbox class Configuration < Hashie::Dash property :worker_access_tokens, :default => [] property :api_endpoint, :default => "https://api.buildbox.io/v1" def update(attributes) attributes.each_pair { |key, value| self[key] = value } save end def save File.open(path, 'w+') { |file| file.write(pretty_json) } end def reload if path.exist? read_and_load else save && read_and_load end end private def pretty_json JSON.pretty_generate(self) end def read_and_load merge! JSON.parse(path.read) end def path Buildbox.root_path.join("configuration.json") end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
buildbox-0.1.4 | lib/buildbox/configuration.rb |