Sha256: 19e357d45d67a520319bc672360f7a630952d67da60ad415f1157e9e5ee7a335

Contents?: true

Size: 1.15 KB

Versions: 70

Compression:

Stored size: 1.15 KB

Contents

require 'pathname'

module Canzea

  # Configuration defaults
  @config = {
              :log_level => "verbose",
              :config_location => "#{Dir.home}/.ecosystem-catalog",
              :catalog_location => "#{Dir.home}/.ecosystem-catalog/catalog",
              :catalog_git => "https://gitlab.com/canzea/ecosystem-catalog.git",
              :catalog_branch => "develop",
              :git_repo => "/opt/cloud-profile",
              :logging_root => Dir.home,
              :pwd => Dir.pwd,
              :consul_tls => false,
              :consul_tls_ca_file => "/etc/consul.d/ssl/ca.cert",
              :consul_tls_cert_file => "/etc/consul.d/ssl/consul.cert",
              :consul_tls_key_file => "/etc/consul.d/ssl/consul.key",
              :vault_tls_cert_file => "/etc/consul.d/ssl/vault.cert",
              :vault_tls_key_file => "/etc/consul.d/ssl/vault.key",
              :track_changes_in_git => false
            }
  @valid_config_keys = @config.keys

  # Configure through hash
  def self.configure(opts = {})
    opts.each {|k,v| @config[k.to_sym] = v if @valid_config_keys.include? k.to_sym}
  end

  def self.config
    @config
  end

end

Version data entries

70 entries across 70 versions & 1 rubygems

Version Path
canzea-0.1.132 lib/canzea/config.rb
canzea-0.1.131 lib/canzea/config.rb
canzea-0.1.130 lib/canzea/config.rb
canzea-0.1.129 lib/canzea/config.rb
canzea-0.1.126 lib/canzea/config.rb
canzea-0.1.125 lib/canzea/config.rb
canzea-0.1.124 lib/canzea/config.rb
canzea-0.1.123 lib/canzea/config.rb
canzea-0.1.122 lib/canzea/config.rb
canzea-0.1.121 lib/canzea/config.rb
canzea-0.1.120 lib/canzea/config.rb
canzea-0.1.119 lib/canzea/config.rb
canzea-0.1.118 lib/canzea/config.rb
canzea-0.1.117 lib/canzea/config.rb
canzea-0.1.116 lib/canzea/config.rb
canzea-0.1.115 lib/canzea/config.rb
canzea-0.1.114 lib/canzea/config.rb
canzea-0.1.113 lib/canzea/config.rb
canzea-0.1.112 lib/canzea/config.rb
canzea-0.1.111 lib/canzea/config.rb