diff options
author | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2013-11-24 15:36:54 +0100 |
---|---|---|
committer | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2013-11-26 20:30:16 +0100 |
commit | d7cef6b4c14419718eff5c11dd5b4e0d5de2d042 (patch) | |
tree | 6d1b435cc841fe9228e8fb953cc5130e1e7da71e /src | |
parent | 988c9cd574538d279193f548297d80ad3b0a45d0 (diff) |
Add missing dep examples and fix existing ones
Diffstat (limited to 'src')
-rw-r--r-- | src/rebar_deps.erl | 28 |
1 files changed, 21 insertions, 7 deletions
diff --git a/src/rebar_deps.erl b/src/rebar_deps.erl index 9911841..82716c5 100644 --- a/src/rebar_deps.erl +++ b/src/rebar_deps.erl @@ -257,13 +257,27 @@ info_help(Description) -> [ Description, {deps_dir, "deps"}, - {deps, [application_name, - {application_name, "1.0.*"}, - {application_name, "1.0.*", - {git, "git://github.com/rebar/rebar.git", {branch, "master"}}}, - {application_name, "", - {git, "git://github.com/rebar/rebar.git", {branch, "master"}}, - [raw]}]} + {deps, + [app_name, + {rebar, "1.0.*"}, + {rebar, ".*", + {git, "git://github.com/rebar/rebar.git"}}, + {rebar, ".*", + {git, "git://github.com/rebar/rebar.git", "Rev"}}, + {rebar, "1.0.*", + {git, "git://github.com/rebar/rebar.git", {branch, "master"}}}, + {rebar, "1.0.0", + {git, "git://github.com/rebar/rebar.git", {tag, "1.0.0"}}}, + {rebar, "", + {git, "git://github.com/rebar/rebar.git", {branch, "master"}}, + [raw]}, + {app_name, ".*", {hg, "https://www.example.org/url"}}, + {app_name, ".*", {rsync, "Url"}}, + {app_name, ".*", {svn, "https://www.example.org/url"}}, + {app_name, ".*", {svn, "svn://svn.example.org/url"}}, + {app_name, ".*", {bzr, "https://www.example.org/url", "Rev"}}, + {app_name, ".*", {fossil, "https://www.example.org/url"}}, + {app_name, ".*", {fossil, "https://www.example.org/url", "Vsn"}}]} ]). %% Added because of trans deps, |