Sha256: 79abf7bcfe4c98fd801018e00b257c73954ae5cd49c53f8409ec0109e915cd1c
Contents?: true
Size: 1.98 KB
Versions: 2
Compression:
Stored size: 1.98 KB
Contents
require 'forwardable' # Define Config class. module GeneValidatorApp # Capture our configuration system. class Config extend Forwardable def_delegators GeneValidatorApp, :logger def initialize(data = {}) @data = symbolise data @config_file = @data.delete(:config_file) || default_config_file @config_file = File.expand_path(@config_file) @data = parse_config_file.update @data @data = defaults.update @data end attr_reader :data, :config_file # Get. def [](key) data[key] end # Set. def []=(key, value) data[key] = value end # Exists? def include?(key) data.include? key end # Write config data to config file. def write_config_file return unless config_file File.open(config_file, 'w') do |f| f.puts(data.delete_if { |_, v| v.nil? }.to_yaml) end end private # Symbolizes keys. Changes `database` key to `database_dir`. def symbolise(data) return {} unless data # Symbolize keys. Hash[data.map { |k, v| [k.to_sym, v] }] end # Parses and returns data from config_file if it exists. Returns {} # otherwise. def parse_config_file unless file? config_file logger.debug "Configuration file not found: #{config_file}" return {} end logger.debug "Reading configuration file: #{config_file}." symbolise YAML.load_file(config_file) rescue => error raise CONFIG_FILE_ERROR.new(config_file, error) end def file?(file) file && File.exist?(file) && File.file?(file) end # Default configuration data. def defaults { :num_threads => 1, :mafft_threads => 1, :port => 5678, :host => '0.0.0.0', :gv_public_dir => File.join(Dir.home, '.genevalidatorapp/'), :max_characters => 'undefined' } end def default_config_file '~/.genevalidatorapp.conf' end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
genevalidatorapp-2.1.1 | lib/genevalidatorapp/config.rb |
genevalidatorapp-2.1.0 | lib/genevalidatorapp/config.rb |