summaryrefslogtreecommitdiff
path: root/deps/oauth/src/oauth.app.src
diff options
context:
space:
mode:
authorMicah Anderson <micah@leap.se>2014-01-15 18:13:16 +0000
committerdrebs <drebs@leap.se>2014-01-17 08:48:11 -0200
commit510c6d763fba74f95ae8f894408c3658bcef4f83 (patch)
treed4dd0930b902cb1e5d46bea621ec83f801ea8ed6 /deps/oauth/src/oauth.app.src
parent8bd863936ead4243f58fb99e11d1221e1af0a71e (diff)
embed dependencies that were previously pulled in by git during rebar build
Diffstat (limited to 'deps/oauth/src/oauth.app.src')
-rw-r--r--deps/oauth/src/oauth.app.src21
1 files changed, 21 insertions, 0 deletions
diff --git a/deps/oauth/src/oauth.app.src b/deps/oauth/src/oauth.app.src
new file mode 100644
index 00000000..9ff22b1a
--- /dev/null
+++ b/deps/oauth/src/oauth.app.src
@@ -0,0 +1,21 @@
+{application, oauth, [
+ {description, "An Erlang OAuth 1.0 implementation"},
+ {vsn, git},
+ {modules, [
+ oauth,
+ oauth_client,
+ oauth_hmac_sha1,
+ oauth_http,
+ oauth_plaintext,
+ oauth_rsa_sha1,
+ oauth_unix,
+ oauth_uri
+ ]},
+ {registered, []},
+ {applications, [
+ kernel,
+ stdlib,
+ crypto,
+ inets
+ ]}
+]}.