# File lib/rhc/config.rb, line 35 def read_config_files @global_config = RHC::Vendor::ParseConfig.new(@global_config_path) if File.exists?(@global_config_path) @local_config = RHC::Vendor::ParseConfig.new(File.expand_path(@local_config_path)) if File.exists?(@local_config_path) rescue Errno::EACCES => e raise Errno::EACCES.new("Could not open config file: #{e.message}") end