Method: Bcpm::Config.reset

Defined in:
lib/bcpm/config.rb

.resetObject

Removes the configuration YAML file and resets the configuration hash.



48
49
50
51
# File 'lib/bcpm/config.rb', line 48

def self.reset
  File.unlink config_file if File.exist?(config_file)
  @config = nil
end