summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Document verbosity levelTuncer Ayaz2012-01-171-1/+2
|
* Fix whitespace errorsTuncer Ayaz2012-01-173-20/+20
|
* Use ?ERROR where appropriateTuncer Ayaz2012-01-174-11/+11
|
* Support different log levelsTuncer Ayaz2012-01-174-18/+34
|
* Import new upstream getopt.erlTuncer Ayaz2012-01-171-49/+125
|
* Fix whitespace errorsTuncer Ayaz2012-01-171-12/+13
|
* Add Francis Joanis to THANKS fileTuncer Ayaz2012-01-171-0/+1
|
* Delete existing erl files in ?EUNIT_DIRFrancis Joanis2012-01-171-0/+21
| | | | | | Before copying the .erl files to the .eunit directory ensure that they are deleted if they already exist. This prevents EACCES errors to happen when trying to re-copy .erl files that are read-only.
* Fix whitespace errorsTuncer Ayaz2012-01-133-11/+12
|
* Check for .app.src firstTuncer Ayaz2012-01-131-2/+2
|
* Fix code clarity in dir type checkTuncer Ayaz2012-01-131-9/+5
|
* Warn if we ignore a skip_dir's sub_dirsTuncer Ayaz2012-01-131-4/+7
|
* Add missing newline for logging code path updateTuncer Ayaz2012-01-131-1/+1
|
* Ignore sub_dirs in skip_dirsTuncer Ayaz2012-01-101-5/+10
|
* Clean up rebar_utilsTuncer Ayaz2012-01-103-32/+32
|
* Remove port_first_files supportTuncer Ayaz2012-01-092-25/+3
|
* Fix whitespace errorsTuncer Ayaz2012-01-091-16/+25
|
* Fix Dialyzer warningTuncer Ayaz2012-01-091-4/+7
|
* On windows, avoid symlink during upgradeMatt Campbell2012-01-091-5/+17
| | | | | | | a) make_symlink throws "not supported" on OS < Vista (e.g. 2003) b) tarball creation stores windows symlinks as absolute paths instead of relative, causing service to fail to start after upgrade is made permanent.
* Set node name correctly on erlsrv commandlineMatt Campbell2012-01-091-1/+1
|
* Deprecate ct suite= option for suites= optionMagnus Klaar2012-01-063-14/+19
|
* Reverse order in rebar_utils:get_deprecated_global/3Tuncer Ayaz2012-01-061-7/+7
|
* Fix basic_nif on_load()Tuncer Ayaz2012-01-051-1/+3
|
* Enhance make check (Inspired-by: Stavros Aronis)Tuncer Ayaz2012-01-015-16/+52
|
* Cleanup and simplify deprecated option handlingTuncer Ayaz2012-01-012-23/+18
|
* Add Tomas Abrahamsson to THANKS fileTuncer Ayaz2011-12-301-0/+1
|
* Merge pull request #168 from tomas-abrahamsson/eunit-inet_gethost_nativeDave Smith2011-12-291-1/+5
|\ | | | | Error report killing inet_gethost_native after eunit
| * Don't kill any inet_gethost_native after eunitTomas Abrahamsson2011-12-291-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Avoid error reports like this one: prompt$ rebar eunit ==> dummy (eunit) Test passed. =ERROR REPORT==== 29-Dec-2011::23:22:11 === ** Generic server inet_gethost_native_sup terminating ** Last message in was {'EXIT',<0.62.0>,killed} ** When Server state == {state,inet_gethost_native,undefined,<0.62.0>, {local,inet_gethost_native_sup}} ** Reason for termination == ** killed Previously, it could happen if an eunit test did something that required a name lookup, like in this example: -module(dummy_tests). -include_lib("eunit/include/eunit.hrl"). x_test() -> {ok, _Hostent} = inet:gethostbyname(localhost). The inet_gethost_native is a process, started on demand, under a supervisor_bridge under the kernel_sup, but it is not a gen_server process or the like, so it has nothing in '$ancestors' in its process dictionary to indicate it is part of kernel.
* | Add Ali Sabil to THANKS fileTuncer Ayaz2011-12-291-0/+1
|/
* Add {vsn, _} support for reltool.configAli Sabil2011-12-281-1/+15
|
* Move vcs_vsn/2 to rebar_utilsTuncer Ayaz2011-12-282-58/+58
|
* Add support for customising common test directoryTim Watson2011-12-284-2/+9
| | | | | | | This patch allows users to specify the directory in which common_test source files can be found. Most common_test suites are integration, rather than unit tests and keeping the sources apart from test sources for other frameworks such as eunit and PropEr is a useful feature.
* bootstrap: do not ignore write_file return valueTuncer Ayaz2011-12-251-3/+5
|
* bootstrap: generate windows scriptsMatt Campbell2011-12-253-5/+22
|
* Comment out vm argsTuncer Ayaz2011-12-211-4/+4
|
* Trim reltool config and add nodeid to releaseTuncer Ayaz2011-12-201-9/+13
|
* Remove trailing whitespace in rebar_reltoolTuncer Ayaz2011-12-191-1/+1
|
* Fix rebar_core crash (reported-by: Jeremy Raymond)Tuncer Ayaz2011-12-181-17/+24
|
* Fix help text formattingTuncer Ayaz2011-12-161-1/+1
|
* Universally support apps=/skip_apps=Tuncer Ayaz2011-12-127-156/+166
|
* Move is_skipped_app/0 to rebar_app_utilsTuncer Ayaz2011-12-123-41/+39
|
* Add rebar_utils:deprecated/4 and remove defineTuncer Ayaz2011-12-122-10/+10
|
* rebar_xref: move code to proper placeTuncer Ayaz2011-12-121-4/+4
|
* Add Torbjorn Tornkvist to THANKS fileTuncer Ayaz2011-12-121-0/+1
|
* Make 'rebar xref' honour the skip_app directiveTorbjorn Tornkvist2011-12-122-2/+46
| | | | | | | | | | | | It is now possible to call rebar as: rebar xref skip_app=Mod1,Mod2,... This makes it easy to skip running xref on (e.g) imported dependencies in your application. The function rebar_utils:is_skipped_app/0 is added so that other rebar commands may use it.
* Add Jesse Gumm to THANKS fileTuncer Ayaz2011-12-081-0/+1
|
* Fail if erl_interface not foundJesse Gumm2011-12-081-2/+10
| | | | | | Previously if erl_interface could not be found {error, not_found} was incorrectly used as a path. With this change we fail early with a descriptive error message.
* Update sample hooks configTuncer Ayaz2011-12-051-1/+4
|
* Add support for arch-specific hooksTuncer Ayaz2011-12-051-1/+10
| | | | | {pre_hooks, [{"linux", compile, "c_src/build_linux.sh"}]}. {post_hooks, [{"linux", compile, "c_src/build_linux.sh clean"}]}.
* Document port_first_filesTuncer Ayaz2011-11-301-0/+3
|