mirror of
https://github.com/correl/rebar.git
synced 2024-11-23 19:19:54 +00:00
Cleanup rebar.config.sample
This commit is contained in:
parent
4ceb9e07a3
commit
86753c4e5d
1 changed files with 4 additions and 3 deletions
|
@ -101,7 +101,7 @@
|
|||
%% Enable validation of the OTP app module list. Default is 'true'
|
||||
{validate_app_modules, true}.
|
||||
|
||||
%% == Dependancies ==
|
||||
%% == Dependencies ==
|
||||
|
||||
%% Where to put any downloaded depandencies. Default is `deps'
|
||||
{deps_dir, ["deps"]}.
|
||||
|
@ -109,10 +109,11 @@
|
|||
%% 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
|
||||
%% 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,
|
||||
{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 ==
|
||||
|
||||
|
|
Loading…
Reference in a new issue