Last active
December 19, 2015 15:29
-
-
Save ericmoritz/5976362 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| %% -*- erlang -*- | |
| % file: deps/dep-1/rebar.config | |
| {deps, [ | |
| {'dep-2', ".*", {git, "[email protected]:org/dep-1.git", {tag, "0.1.0"}}}, | |
| ]}. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| digraph G { | |
| "root" -> "dep-1" [label="<depends on>"]; | |
| "root" -> "dep-2" [label="<depends on>"]; | |
| "dep-1" -> "dep-3" [label="<depends on>"]; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ebin/ | |
| deps/ | |
| dep-1/ | |
| ebin/ | |
| src/ | |
| rebar.config | |
| dep-2/ | |
| ebin/ | |
| src/ | |
| dep-3 | |
| ebin/ | |
| src/ | |
| src/ | |
| rebar.config |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| % -*- 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"}}} | |
| ]}. |
Author
ericmoritz
commented
Jul 11, 2013
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
