Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Mention rebar -c/--commands | Tuncer Ayaz | 2014-02-24 | 1 | -0/+2 |
| | |||||
* | Document support for abbreviated commands | Tuncer Ayaz | 2014-02-24 | 1 | -0/+10 |
| | |||||
* | {ok, Module} is an acceptable return value from do_compile. | David N. Welton | 2014-02-14 | 1 | -0/+2 |
| | |||||
* | Use proplists:unfold to make sure we feed a proplist to keymerge. | David N. Welton | 2014-02-14 | 1 | -8/+9 |
| | |||||
* | Adapt erlydtl compiler plugin to latest version of erlydtl | Andreas Stenius | 2014-02-14 | 1 | -3/+11 |
| | |||||
* | Add documentation | Andrew Thompson | 2014-02-07 | 2 | -0/+5 |
| | |||||
* | Add random_suite_order option to eunit command | Andrew Thompson | 2014-02-07 | 1 | -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-test | Jared Morrow | 2014-02-07 | 3 | -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 ct | Andrew J. Stone | 2014-02-05 | 3 | -36/+60 |
| | | |||||
* | | Merge pull request #188 from massemanet/xref_extra_path | Andrew Thompson | 2014-02-06 | 1 | -0/+3 |
|\ \ | |/ |/| | Xref extra path | ||||
| * | introduce xref_extra_paths | mats cronqvist | 2014-01-13 | 1 | -0/+3 |
| | | |||||
* | | Merge pull request #212 from tuncer/hrl-error | Jared Morrow | 2014-01-16 | 1 | -19/+25 |
|\ \ | | | | | | | Fix basho/rebar#388 | ||||
| * | | rebar_base_compiler: replace fixed size list with a tuple | Tuncer Ayaz | 2014-01-15 | 1 | -4/+3 |
| | | | |||||
| * | | Fix basho/rebar#388 | Tuncer Ayaz | 2014-01-15 | 1 | -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/experimental | Jared Morrow | 2014-01-16 | 3 | -14/+3 |
|\ \ \ | | | | | | | | | Remove experimental flags | ||||
| * | | | Remove experimental flags | Tuncer Ayaz | 2014-01-14 | 3 | -14/+3 |
| | |/ | |/| | | | | | | | | | | | | | | | | | | | 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_only | Jared Morrow | 2014-01-16 | 2 | -2/+5 |
|\ \ \ | | | | | | | | | Document compile_only=true | ||||
| * | | | Document compile_only=true | Tuncer Ayaz | 2014-01-14 | 2 | -2/+5 |
| |/ / | |||||
* | | | Merge pull request #210 from tuncer/erlydtl-warnings | Jared Morrow | 2014-01-16 | 1 | -0/+4 |
|\ \ \ | |_|/ |/| | | Fix #205 (erlydtl:compile/3 returns warnings) | ||||
| * | | erlydtl: add missing clause (Reported-by: goofansu) | Tuncer Ayaz | 2014-01-14 | 1 | -0/+2 |
| | | | | | | | | | | | | erlydtl implemented 'binary' option. Add new clause for {binary, false}. | ||||
| * | | Fix #205 (erlydtl:compile/3 returns warnings) | Tuncer Ayaz | 2014-01-11 | 1 | -0/+2 |
| |/ | | | | | | | | | Adapt rebar_erlydtl_compiler to handle warnings emitted by erlydtl:compile/3. | ||||
* | | Merge pull request #191 from tuncer/rename-modules | Jared Morrow | 2014-01-14 | 4 | -19/+93 |
|\ \ | | | | | | | Fix #187 (rename getopt and mustache) | ||||
| * | | Fix #187 (rename mustache to rebar_mustache) | Tuncer Ayaz | 2014-01-01 | 2 | -5/+7 |
| | | | |||||
| * | | Fix #187 (rename getopt to rebar_getopt) | Tuncer Ayaz | 2014-01-01 | 2 | -14/+86 |
| |/ | | | | | | | While at it, update getopt.erl to git rev 78eda3b. | ||||
* | | Merge pull request #196 from tuncer/rebar-run-info | Jared Morrow | 2014-01-14 | 1 | -1/+3 |
|\ \ | | | | | | | Print a more appropriate message on 'rebar info' | ||||
| * | | Print a more appropriate message on 'rebar info' | Tuncer Ayaz | 2014-01-01 | 1 | -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-dir | Jared Morrow | 2014-01-14 | 1 | -5/+3 |
|\ \ | |/ |/| | generate-upgrade can now take target_dir argument | ||||
| * | generate-upgrade can now take target_dir argument | snaky | 2013-12-03 | 1 | -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> | ||||
* | | Add command to rebar:command_names/0 | Pierre Fenoll | 2013-12-19 | 1 | -0/+1 |
| | | |||||
* | | Add a library template | Pierre Fenoll | 2013-12-19 | 2 | -0/+12 |
| | | |||||
* | | rebar_dia_compiler: fix Dialyzer warnings | Tuncer Ayaz | 2013-12-17 | 1 | -2/+2 |
| | | |||||
* | | Fix is_verbose/1 helper function | Tuncer Ayaz | 2013-12-06 | 6 | -24/+30 |
| | | |||||
* | | Write ERROR messages to standard_error device | Tuncer Ayaz | 2013-12-06 | 1 | -2/+6 |
| | | |||||
* | | Change default log level to 'warn' and introduce -q/--quiet | Tuncer Ayaz | 2013-12-06 | 2 | -12/+20 |
| | | |||||
* | | rebar_log: use defines for log level numbers | Tuncer Ayaz | 2013-12-06 | 1 | -8/+12 |
| | | |||||
* | | rebar_config:is_verbose/0: fix variable name | Tuncer Ayaz | 2013-12-06 | 1 | -2/+2 |
| | | |||||
* | | Make list of commands (for unabbreviation) easier to maintain | Tuncer Ayaz | 2013-12-04 | 1 | -5/+26 |
| | | | | | | | | | | It's easier to modify the list with each command on a separate line. The shell completion scripts have already been modified that way. | ||||
* | | Merge pull request #174 from tuncer/dialyzer-fixes | Jared Morrow | 2013-12-03 | 1 | -1/+1 |
|\ \ | | | | | | | rebar_core: fix Dialyzer warning introduced in aa46d85 (#157) | ||||
| * | | rebar_core: fix Dialyzer warning introduced in aa46d85 (#157) | Tuncer Ayaz | 2013-11-26 | 1 | -1/+1 |
| | | | |||||
* | | | Merge pull request #173 from tuncer/unknown-vsn | Jared Morrow | 2013-12-03 | 1 | -6/+8 |
|\ \ \ | | | | | | | | | Fix false reporting of (plain) vsn strings | ||||
| * | | | Fix false reporting of (plain) vsn strings | Tuncer Ayaz | 2013-11-26 | 1 | -6/+8 |
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | rebar used to mistakenly report plain version strings like {vsn, "1.0.0"} as follows: DEBUG: vcs_vsn: Unknown VCS atom in vsn field: "1.0.0" Properly detect unknown/unsupported version terms and abort if we encounter one. While at it, rename a variable in vcs_vsn/3 to be non-misleading. | ||||
* | | | Merge pull request #172 from tuncer/dep-examples | Jared Morrow | 2013-12-03 | 1 | -11/+21 |
|\ \ \ | | | | | | | | | Add missing dep examples and fix existing ones | ||||
| * | | | deps: remove undocumented fossil syntax | Tuncer Ayaz | 2013-11-26 | 1 | -4/+0 |
| | | | | | | | | | | | | | | | | | | | | As discussed with Martin Schut, remove support for {app_name, "vsn", {fossil, "url", latest}. | ||||
| * | | | Add missing dep examples and fix existing ones | Tuncer Ayaz | 2013-11-26 | 1 | -7/+21 |
| |/ / | |||||
* | | | lfe: use correctly filtered erl_opts | Tuncer Ayaz | 2013-11-26 | 1 | -2/+2 |
| | | | |||||
* | | | erlc: properly reuse the right erl_opts in test_compile | Tuncer Ayaz | 2013-11-26 | 1 | -3/+3 |
|/ / | | | | | | | | | Avoid getting erl_opts twice in test_compile/3, and make sure the correctly filtered (platform_define, etc.) version is used. | ||||
* | | Merge pull request #155 from tuncer/fixes | Jared Morrow | 2013-11-26 | 3 | -70/+84 |
|\ \ | |/ |/| | Fixes for #137 and #142 | ||||
| * | Fix issues introduced in #137 (4dfdd72) | Manuel Rubio | 2013-10-16 | 1 | -13/+14 |
| | | | | | | | | | | * fix Dialyzer warning * fix formatting | ||||
| * | rebar_deps: fix overly long lines | Tuncer Ayaz | 2013-10-16 | 1 | -39/+50 |
| | | |||||
| * | rebar_deps: 'depowner' has to be stored in xconf | Tuncer Ayaz | 2013-10-16 | 1 | -7/+9 |
| | |