Sha256: 4adb8697f64838541655b02cc090f095606ef5b1480dd1ce0d35ac9d1bcecbaa
Contents?: true
Size: 1.25 KB
Versions: 1
Compression:
Stored size: 1.25 KB
Contents
# Copyright (C) 2017 Stratumn SAS # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. require 'agent_client/version' require 'agent_client/request' require 'agent_client/helper' require 'agent_client/application' require 'agent_client/link' require 'yaml' ## # Allows interacting with your Stratumn agent from your ruby app module AgentClient # Configuration defaults @config = { base_url: 'https://stratumn.rocks', application_url: 'https://%s.stratumn.rocks' } @valid_config_keys = @config.keys # Configure through hash def self.configure(opts = {}) opts.each do |k, v| @config[k.to_sym] = v if @valid_config_keys.include? k.to_sym end end # Configure through yaml file def self.configure_with(path_to_yaml_file) begin config = YAML.load(IO.read(path_to_yaml_file)) rescue Errno::ENOENT puts 'YAML configuration file couldn\'t be found. Using defaults.' return rescue Psych::SyntaxError puts 'YAML configuration file contains invalid syntax. Using defaults.' return end configure(config) end def self.config @config end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
stratumn_agent_client-0.2.0 | lib/agent_client.rb |