diff options
author | Adam Kocoloski <adam@cloudant.com> | 2010-08-11 15:34:41 -0400 |
---|---|---|
committer | Adam Kocoloski <adam@cloudant.com> | 2010-08-11 17:39:37 -0400 |
commit | 8138d70bb8c1de954c46b417ccd22964b6432965 (patch) | |
tree | f833623bbf690a3d4d5799b6492e1ac729bfc152 /apps/oauth/src/oauth.app.src | |
parent | 1c9d5c118ace092e228f60359e2863da1d3b1bc7 (diff) |
move oauth to rebar layout
Diffstat (limited to 'apps/oauth/src/oauth.app.src')
-rw-r--r-- | apps/oauth/src/oauth.app.src | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/apps/oauth/src/oauth.app.src b/apps/oauth/src/oauth.app.src new file mode 100644 index 00000000..6357b9b0 --- /dev/null +++ b/apps/oauth/src/oauth.app.src @@ -0,0 +1,20 @@ +{application, oauth, [ + {description, "Erlang OAuth implementation"}, + {vsn, "dev"}, + {modules, [ + oauth, + oauth_hmac_sha1, + oauth_http, + oauth_plaintext, + oauth_rsa_sha1, + oauth_unix, + oauth_uri + ]}, + {registered, []}, + {applications, [ + kernel, + stdlib, + crypto, + inets + ]} +]}. |