aboutsummaryrefslogtreecommitdiffstats
path: root/rebar.config
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2013-01-05 17:25:04 +0100
committerLoïc Hoguin <[email protected]>2013-01-05 17:25:04 +0100
commitd8be610d4c68aa126afa952de4f134d68cc80636 (patch)
treedfd2c878c2af2d6ec89364e095bee3c2cf72dd95 /rebar.config
parent4395c1b59dde20cd4fa2887a13cfc377960ee338 (diff)
downloadcowboy-d8be610d4c68aa126afa952de4f134d68cc80636.tar.gz
cowboy-d8be610d4c68aa126afa952de4f134d68cc80636.tar.bz2
cowboy-d8be610d4c68aa126afa952de4f134d68cc80636.zip
Stop using rebar in the Makefile
First and foremost: yes, you can still use Cowboy as a rebar dependency. This commit only removes the use of rebar when *developing* Cowboy, not when *using* Cowboy. Over the past two years I went from very happy with rebar to unsatisfied and most recently found it counter productive in many ways, from having insane default configuration to various unefficient operations. The earlier reversal from 'rebar ct' to 'ct_run' made my workflow much more natural, as I always needed to look at 'logs/raw.log' to find out what was wrong, anyway. Why not let 'ct_run' output it directly instead? Removing rebar made my life easier. If you wonder why I don't patch rebar, there's two reasons. First is that the direction taken by rebar isn't compatible with my views, and this would be a huge fight to steer it in another direction. I got other, more important fights to make. Second is that I'd rather patch OTP so that everyone benefits from it, not just users of rebar. Anyway this isn't my personal blog so I will stop babbling here. There's a few important things to note relative to this commit: * You don't need rebar to work on Cowboy anymore * The eunit tests are now ran through common_test Ping me if it doesn't work out for you.
Diffstat (limited to 'rebar.config')
-rw-r--r--rebar.config6
1 files changed, 0 insertions, 6 deletions
diff --git a/rebar.config b/rebar.config
index ef634de..c3bfeb6 100644
--- a/rebar.config
+++ b/rebar.config
@@ -1,9 +1,3 @@
{deps, [
{ranch, "0\\.6\\.0.*", {git, "git://github.com/extend/ranch.git", "0.6.0"}}
]}.
-{erl_opts, [
-%% bin_opt_info,
-%% warn_missing_spec,
- warnings_as_errors,
- warn_export_all
-]}.