Cleanup rebar.config.sample

This commit is contained in:
Tuncer Ayaz 2011-03-12 16:28:40 +01:00
parent 4ceb9e07a3
commit 86753c4e5d

View file

@ -101,7 +101,7 @@
%% Enable validation of the OTP app module list. Default is 'true' %% Enable validation of the OTP app module list. Default is 'true'
{validate_app_modules, true}. {validate_app_modules, true}.
%% == Dependancies == %% == Dependencies ==
%% Where to put any downloaded depandencies. Default is `deps' %% Where to put any downloaded depandencies. Default is `deps'
{deps_dir, ["deps"]}. {deps_dir, ["deps"]}.
@ -109,10 +109,11 @@
%% What dependancies we have, depandencies can be of 3 forms, an application %% What dependancies we have, depandencies can be of 3 forms, an application
%% name as an atom, eg. mochiweb, a name and a version (from the .app file), or %% name as an atom, eg. mochiweb, a name and a version (from the .app file), or
%% an application name, a version and the SCM details on how to fetch it (SCM %% an application name, a version and the SCM details on how to fetch it (SCM
%% type, location and revision). Rebar currently support git, hg, bzr and svn. %% type, location and revision). Rebar currently supports git, hg, bzr and svn.
{deps, [application_name, {deps, [application_name,
{application_name, "1.0.*"}, {application_name, "1.0.*"},
{application_name, "1.0.*", {hg, "http://bitbucket.org/basho/rebar/", "f3626d5858a6"}}]}. {application_name, "1.0.*",
{git, "git://github.com/basho/rebar.git", {branch, "master"}}}]}.
%% == Subdirectories == %% == Subdirectories ==