diff options
author | Loïc Hoguin <[email protected]> | 2011-07-20 17:38:10 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2011-07-20 17:38:10 +0200 |
commit | fa20273b37255a987e90fc68bea22cd29e404aaf (patch) | |
tree | 5dc08993dbfe24b352ae23084b05fd70ba44aa1c /Makefile | |
parent | 293cf33702c8cad471989c1e08ce05323baadaf7 (diff) | |
download | cowboy-fa20273b37255a987e90fc68bea22cd29e404aaf.tar.gz cowboy-fa20273b37255a987e90fc68bea22cd29e404aaf.tar.bz2 cowboy-fa20273b37255a987e90fc68bea22cd29e404aaf.zip |
URL decode query strings
Should be good for both GET and POST query strings.
This adds https://github.com/klaar/quoted.erl as a dependency.
Props to klaar for this code.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -5,9 +5,12 @@ REBAR = rebar all: app -app: +app: deps @$(REBAR) compile +deps: + @$(REBAR) get-deps + clean: @$(REBAR) clean rm -f test/*.beam |