From cf6738928d74dec321349f5fad59959d5131fdd9 Mon Sep 17 00:00:00 2001 From: Dave Smith Date: Tue, 1 Dec 2009 10:37:46 -0700 Subject: [PATCH] Adding generic get/3; still need some cleanup --- src/rebar_config.erl | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/rebar_config.erl b/src/rebar_config.erl index 3e2087c..5cf15ef 100644 --- a/src/rebar_config.erl +++ b/src/rebar_config.erl @@ -27,6 +27,7 @@ -export([new/1, get_modules/2, get_list/3, + get/3, set_global/2, get_global/2]). -include("rebar.hrl"). @@ -74,6 +75,14 @@ get_list(Config, Key, Default) -> List end. +get(Config, Key, Default) -> + case orddict:find(Key, Config#config.opts) of + error -> + Default; + {ok, Value} -> + Value + end. + set_global(Key, Value) -> application:set_env(rebar_global, Key, Value).