summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | erlc: add support for detecting core transformsAnthony Ramine2014-03-051-0/+2
| | | | |
| * | | | Speed up the compilation processEvgeniy Khramtsov2014-03-051-108/+212
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Do not parse source files twice while checking for relationship. * Keep files relationships in a graph. * The option 'keep_build_info' is introduced. When set to 'true' the graph will be kept in ebin/.rebar.build.info and will be used by further compiler calls. The default is 'false'.
* | | | Merge pull request #233 from tuncer/commandsJared Morrow2014-02-251-5/+6
|\ \ \ \ | | | | | | | | | | docs: fix #228
| * | | | docs: fix #228Tuncer Ayaz2014-02-251-5/+6
|/ / / /
* | | | Merge pull request #230 from tuncer/fix-dialyzer-warningsJared Morrow2014-02-252-2/+2
|\ \ \ \ | | | | | | | | | | eunit: fix dialyzer warnings introduced in 03da5e0b
| * | | | eunit: fix dialyzer warnings introduced in 03da5e0bTuncer Ayaz2014-02-202-2/+2
| | | | |
* | | | | Merge pull request #232 from tuncer/doc-abbrev-cmdJared Morrow2014-02-251-0/+12
|\ \ \ \ \ | | | | | | | | | | | | Document support for abbreviated commands
| * | | | | Mention rebar -c/--commandsTuncer Ayaz2014-02-241-0/+2
| | | | | |
| * | | | | Document support for abbreviated commandsTuncer Ayaz2014-02-241-0/+10
|/ / / / /
* | | | | Merge pull request #221 from kaos/erlydtlJared Morrow2014-02-241-9/+20
|\ \ \ \ \ | |/ / / / |/| | | | Adapt erlydtl compiler plugin to latest version of erlydtl
| * | | | {ok, Module} is an acceptable return value from do_compile.David N. Welton2014-02-141-0/+2
| | | | |
| * | | | Use proplists:unfold to make sure we feed a proplist to keymerge.David N. Welton2014-02-141-8/+9
| | | | |
| * | | | Adapt erlydtl compiler plugin to latest version of erlydtlAndreas Stenius2014-02-141-3/+11
|/ / / /
* | | | Merge pull request #223 from rebar/adt-random-suite-orderJared Morrow2014-02-072-1/+33
|\ \ \ \ | | | | | | | | | | Add random_suite_order option to eunit command
| * | | | Add documentationAndrew Thompson2014-02-072-0/+5
| | | | |
| * | | | Add random_suite_order option to eunit commandAndrew Thompson2014-02-071-1/+28
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Option takes either 'true' or a numeric seed value. If true is passed, a random seed is generated and used. The numeric seed value is for repeatability. The idea here is to root out test suites that are order dependant, or that fail in the presence of certain orderings.
* | | | Merge pull request #224 from andrewjstone/allow-testJared Morrow2014-02-073-36/+60
|\ \ \ \ | | | | | | | | | | allow suite[s] or test[s] as options for eunit and ct
| * | | | allow suite[s] or test[s] as options for eunit and ctAndrew J. Stone2014-02-053-36/+60
| | | | |
* | | | | Merge pull request #188 from massemanet/xref_extra_pathAndrew Thompson2014-02-062-0/+8
|\ \ \ \ \ | | | | | | | | | | | | Xref extra path
| * | | | | introduce xref_extra_pathsmats cronqvist2014-01-132-0/+8
| | |/ / / | |/| | |
* | | | | Merge pull request #219 from h4cc/patch-1Andrew Thompson2014-02-061-0/+2
|\ \ \ \ \ | | | | | | | | | | | | Added R16B01 and R16B02 to travis config.
| * | | | | Added R16B01 and R16B02 to travis config.Julius Beckmann2014-01-261-0/+2
| | |/ / / | |/| | |
* | | | | Bump rebar to 2.2.0 and add proper release notesJared Morrow2014-02-052-1/+34
|/ / / /
* | | | Merge pull request #212 from tuncer/hrl-errorJared Morrow2014-01-161-19/+25
|\ \ \ \ | | | | | | | | | | Fix basho/rebar#388
| * | | | rebar_base_compiler: replace fixed size list with a tupleTuncer Ayaz2014-01-151-4/+3
| | | | |
| * | | | Fix basho/rebar#388Tuncer Ayaz2014-01-151-16/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If the syntax error is in a .hrl file, then the reported error message is not as useful because it's not clear which .erl file was being compiled. We can fix that easily by first printing what source file was being processed. We don't change the actual error message, so this will still work with your editor of choice for jumping to the right line. Before ------ Success: Compiled src/foo.erl Failure: include/foo.hrl:10: syntax error [...] After ----- Success: Compiled src/foo.erl Failure: Compiling src/foo.erl failed: include/foo.hrl:10: syntax error [...]
* | | | | Merge pull request #215 from tuncer/experimentalJared Morrow2014-01-164-15/+4
|\ \ \ \ \ | | | | | | | | | | | | Remove experimental flags
| * | | | | Remove experimental flagsTuncer Ayaz2014-01-144-15/+4
| | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove experimental flag from: * qc compile_only=true * eunit compile_only=true * src/foo.app.src.script * eunit tests=
* | | | | Merge pull request #214 from tuncer/compile_onlyJared Morrow2014-01-162-2/+5
|\ \ \ \ \ | | | | | | | | | | | | Document compile_only=true
| * | | | | Document compile_only=trueTuncer Ayaz2014-01-142-2/+5
| |/ / / /
* | | | | Merge pull request #210 from tuncer/erlydtl-warningsJared Morrow2014-01-161-0/+4
|\ \ \ \ \ | |_|/ / / |/| | | | Fix #205 (erlydtl:compile/3 returns warnings)
| * | | | erlydtl: add missing clause (Reported-by: goofansu)Tuncer Ayaz2014-01-141-0/+2
| | | | | | | | | | | | | | | | | | | | erlydtl implemented 'binary' option. Add new clause for {binary, false}.
| * | | | Fix #205 (erlydtl:compile/3 returns warnings)Tuncer Ayaz2014-01-111-0/+2
| |/ / / | | | | | | | | | | | | | | | | Adapt rebar_erlydtl_compiler to handle warnings emitted by erlydtl:compile/3.
* | | | Merge pull request #191 from tuncer/rename-modulesJared Morrow2014-01-145-21/+95
|\ \ \ \ | | | | | | | | | | Fix #187 (rename getopt and mustache)
| * | | | Fix #187 (rename mustache to rebar_mustache)Tuncer Ayaz2014-01-013-6/+8
| | | | |
| * | | | Fix #187 (rename getopt to rebar_getopt)Tuncer Ayaz2014-01-013-15/+87
| |/ / / | | | | | | | | | | | | While at it, update getopt.erl to git rev 78eda3b.
* | | | Merge pull request #196 from tuncer/rebar-run-infoJared Morrow2014-01-141-1/+3
|\ \ \ \ | | | | | | | | | | Print a more appropriate message on 'rebar info'
| * | | | Print a more appropriate message on 'rebar info'Tuncer Ayaz2014-01-011-1/+3
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | To avoid treating plugins' info/2 functions as commands, we catch calls to 'rebar info'. Previously (4b8c81fb) we simply printed the help string, but it's much more informative to print the following: Command 'info' not understood or not applicable
* | | | Merge pull request #183 from EchoTeam/generate-upgrade-and-target-dirJared Morrow2014-01-141-5/+3
|\ \ \ \ | |/ / / |/| | | generate-upgrade can now take target_dir argument
| * | | generate-upgrade can now take target_dir argumentsnaky2013-12-031-5/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previous generate-upgrade required renames in rel/ directory: rebar generate ...changing code... mv rel/<release> rel/<release_prev> rebar generate rebar generate-upgrade previous_release=<release_prev> With the proposed changes you can now do the same without moving things: rebar generate # default target dir: rel/<release> ...changing code... rebar generate target_dir=<release_new> rebar generate-upgrade target_dir=<release_new> previous_release=<release>
* | | | Merge pull request #190 from tuncer/quadruple-timeoutJared Morrow2013-12-311-1/+1
|\ \ \ \ | | | | | | | | | | inttest/rgen_1: double the timeout a second time
| * | | | inttest/rgen_1: double the timeout a second timeTuncer Ayaz2013-12-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 60s still seems to be too low, as it timed out for at least the R15B01 job of the timeout patch merge: https://travis-ci.org/rebar/rebar/builds/15051701 https://travis-ci.org/rebar/rebar/jobs/15051703
* | | | | Merge pull request #198 from tuncer/clean-up-rebar-config-scriptJared Morrow2013-12-311-4/+1
|\ \ \ \ \ | | | | | | | | | | | | Clean up rebar.config.script
| * | | | | Clean up rebar.config.scriptTuncer Ayaz2013-12-171-4/+1
| |/ / / /
* | | | | Merge pull request #201 from fenollp/create-libJared Morrow2013-12-207-0/+50
|\ \ \ \ \ | | | | | | | | | | | | Added a library template.
| * | | | | Add command to rebar:command_names/0Pierre Fenoll2013-12-192-2/+1
| | | | | |
| * | | | | Add a library templatePierre Fenoll2013-12-197-0/+51
|/ / / / /
* | | | | Merge pull request #200 from tuncer/fix-debug-bootstrapJared Morrow2013-12-171-1/+2
|\ \ \ \ \ | | | | | | | | | | | | bootstrap: avoid trying to run 'debug' command
| * | | | | bootstrap: avoid trying to run 'debug' commandTuncer Ayaz2013-12-171-1/+2
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If you invoke 'make debug', then bootstrap executes rebar:main/1 with the extra argument "debug" and rebar treats that as a command. There is no such command. Without this patch you will see the following on bootstrap: Command 'debug' not understood or not applicable
* | | | | Merge pull request #199 from tuncer/dia-dialyzer-warningsJared Morrow2013-12-171-2/+2
|\ \ \ \ \ | |/ / / / |/| | | | rebar_dia_compiler: fix Dialyzer warnings