From 47d2026800eb6f724626638609aa8cdaa05998b9 Mon Sep 17 00:00:00 2001 From: ldep30 Date: Wed, 15 Jun 2016 19:28:47 +0200 Subject: Update rest_client.rb --- extra/rest_client.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extra/rest_client.rb b/extra/rest_client.rb index 5809457..90a64e4 100644 --- a/extra/rest_client.rb +++ b/extra/rest_client.rb @@ -6,7 +6,7 @@ module Oxidized require 'asetus' class Config - Root = File.join ENV['HOME'], '.config', 'oxidized' + Root = Root = ENV['OXIDIZED_HOME'] || File.join(ENV['HOME'], '.config', 'oxidized') end CFGS = Asetus.new :name=>'oxidized', :load=>false, :key_to_s=>true @@ -21,7 +21,7 @@ module Oxidized end restcfg = CFG.rest - if ! restcfg.match(/^http:\/\//) + unless restcfg.match(/^http:\/\//) restcfg.insert(0, 'http://') end -- cgit v1.2.1