aboutsummaryrefslogtreecommitdiffstats
path: root/rebar.config
diff options
context:
space:
mode:
authorRadek Slupik <[email protected]>2015-08-31 14:19:47 +0200
committerRadek Slupik <[email protected]>2015-08-31 14:19:47 +0200
commit48f7228c632cd3df8028771efb8ad589099b7343 (patch)
tree6b9d05f165eac640cc850ecf8e256518d932f67c /rebar.config
parent3f14981cd51c95d32fcf6ec313b6a3dca2bc8b6b (diff)
downloadgun-48f7228c632cd3df8028771efb8ad589099b7343.tar.gz
gun-48f7228c632cd3df8028771efb8ad589099b7343.tar.bz2
gun-48f7228c632cd3df8028771efb8ad589099b7343.zip
Use https instead of git for ranch and cowlib dependencies
This is compatible with Cowboy and doesn't require authentication with GitHub. Rebar and Mix do not automatically turn git:// into https://. Fixes #82
Diffstat (limited to 'rebar.config')
-rw-r--r--rebar.config4
1 files changed, 2 insertions, 2 deletions
diff --git a/rebar.config b/rebar.config
index ef5e1f3..79ec073 100644
--- a/rebar.config
+++ b/rebar.config
@@ -1,4 +1,4 @@
{deps, [
- {cowlib, ".*", {git, "git://github.com/extend/cowlib.git", "1.3.0"}},
- {ranch, ".*", {git, "git://github.com/extend/ranch.git", "master"}}
+ {cowlib, ".*", {git, "https://github.com/extend/cowlib.git", "1.3.0"}},
+ {ranch, ".*", {git, "https://github.com/extend/ranch.git", "master"}}
]}.