Skip to content

Instantly share code, notes, and snippets.

@ericmoritz
Last active December 19, 2015 15:29
Show Gist options
  • Select an option

  • Save ericmoritz/5976362 to your computer and use it in GitHub Desktop.

Select an option

Save ericmoritz/5976362 to your computer and use it in GitHub Desktop.
%% -*- erlang -*-
% file: deps/dep-1/rebar.config
{deps, [
{'dep-2', ".*", {git, "[email protected]:org/dep-1.git", {tag, "0.1.0"}}},
]}.
digraph G {
"root" -> "dep-1" [label="<depends on>"];
"root" -> "dep-2" [label="<depends on>"];
"dep-1" -> "dep-3" [label="<depends on>"];
}
ebin/
deps/
dep-1/
ebin/
src/
rebar.config
dep-2/
ebin/
src/
dep-3
ebin/
src/
src/
rebar.config
% -*- erlang -*-
% file: ./rebar.config
{deps, [
{'dep-1', ".*", {git, "[email protected]:org/dep-1.git", "develop"}},
{'dep-2', ".*", {git, "[email protected]:org/dep-2.git", {tag, "0.1.0"}}}
]}.
@ericmoritz
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment