Skip to content

Commit

Permalink
Use https instead of git for ranch and cowlib dependencies
Browse files Browse the repository at this point in the history
This is compatible with Cowboy and doesn't require authentication with
GitHub. Rebar and Mix do not automatically turn git:// into https://.

Fixes #82
  • Loading branch information
no-longer-on-githu-b committed Aug 31, 2015
1 parent 3f14981 commit 48f7228
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rebar.config
Original file line number Diff line number Diff line change
@@ -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"}}
]}.

0 comments on commit 48f7228

Please sign in to comment.