Skip to content

Commit

Permalink
use github URLs for deps and add .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
beerriot committed Oct 25, 2010
1 parent 252949e commit c81f8cf
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
5 changes: 5 additions & 0 deletions .gitignore
@@ -0,0 +1,5 @@
*.beam
rel/wriaki/
deps/
*~

2 changes: 1 addition & 1 deletion README
Expand Up @@ -43,7 +43,7 @@ The easiest way to get Wiki Creole is by using easy_install:


To setup Wriaki, first clone the source: To setup Wriaki, first clone the source:


: $ hg clone http://bitbucket.org/basho/wriaki : $ git clone git://github.com/basho/wriaki


Next, change to the source directory and run make: Next, change to the source directory and run make:


Expand Down
15 changes: 10 additions & 5 deletions rebar.config
@@ -1,8 +1,13 @@
{sub_dirs, ["apps/wiki_creole", "apps/wriaki", "rel"]}. {sub_dirs, ["apps/wiki_creole", "apps/wriaki", "rel"]}.
{deps, {deps,
[{webmachine, "1.6", {hg, "http://hg.basho.com/webmachine", "7ff17bdd5d01"}}, [{webmachine, "1.7.3",
{mochiweb, "0.01", {hg, "http://hg.basho.com/mochiweb", "62c2c6f372c2"}}, {git, "git://github.com/basho/webmachine", "23d4b107000a83a365a3"}},
{erlydtl, "0.5.3", {hg, "http://bitbucket.org/bryan/erlydtl", "67bc6911f77f"}}, {mochiweb, "1.7.1",
{riakc, ".*", {hg, "http://bitbucket.org/basho/riak-erlang-client", "tip"}}, {git, "git://github.com/basho/mochiweb", "5128cb3553724373d6a5"}},
{riakhttpc, ".*", {hg, "http://bitbucket.org/basho/riak-erlang-http-client", "tip"}}]}. {erlydtl, "0.5.3",
{hg, "http://bitbucket.org/bryan/erlydtl", "67bc6911f77f"}},
{riakc, "1.0.1",
{git, "git://github.com/basho/riak-erlang-client", "711f94349ef9899da8e6"}},
{riakhttpc, "0.9.2",
{git, "git://github.com/basho/riak-erlang-http-client", "9cf254d69cd123670996"}}]}.


0 comments on commit c81f8cf

Please sign in to comment.