Sha256: fc9d4e66b500dfed4760b3e881229eefb7491f9ca90bceb4322807441a134f22
Contents?: true
Size: 914 Bytes
Versions: 1
Compression:
Stored size: 914 Bytes
Contents
# frozen_string_literal: true require 'singleton' require 'inifile' require 'rainbow' # Global parameters class Application include Singleton VERSION = '2.2.1' NAME = 'asker' GEM = 'asker-tool' CONFIGFILE = 'asker.ini' attr_reader :config def initialize reset end def reset filename = File.join(Dir.pwd, CONFIGFILE) filename = File.join(File.dirname(__FILE__), 'files', CONFIGFILE) unless File.exist? filename begin @config = IniFile.load(filename) rescue StandardError => e puts e.display puts Rainbow('[ERROR] Revise configuration file:').red.bright puts Rainbow(" #{filename}").red.bright exit 1 end stages = @config['questions']['stages'].split(',') @config['questions']['stages'] = stages.map(&:to_sym) Rainbow.enabled = false Rainbow.enabled = true if @config['global']['color'].downcase == 'yes' end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
asker-tool-2.2.1 | lib/asker/application.rb |