summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* 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-061-0/+3
|\ \ | |/ |/| Xref extra path
| * introduce xref_extra_pathsmats cronqvist2014-01-131-0/+3
| |
* | 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-163-14/+3
|\ \ \ | | | | | | | | Remove experimental flags
| * | | Remove experimental flagsTuncer Ayaz2014-01-143-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_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-144-19/+93
|\ \ | | | | | | Fix #187 (rename getopt and mustache)
| * | Fix #187 (rename mustache to rebar_mustache)Tuncer Ayaz2014-01-012-5/+7
| | |
| * | Fix #187 (rename getopt to rebar_getopt)Tuncer Ayaz2014-01-012-14/+86
| |/ | | | | | | 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>
* | Add command to rebar:command_names/0Pierre Fenoll2013-12-191-0/+1
| |
* | Add a library templatePierre Fenoll2013-12-192-0/+12
| |
* | rebar_dia_compiler: fix Dialyzer warningsTuncer Ayaz2013-12-171-2/+2
| |
* | Fix is_verbose/1 helper functionTuncer Ayaz2013-12-066-24/+30
| |
* | Write ERROR messages to standard_error deviceTuncer Ayaz2013-12-061-2/+6
| |
* | Change default log level to 'warn' and introduce -q/--quietTuncer Ayaz2013-12-062-12/+20
| |
* | rebar_log: use defines for log level numbersTuncer Ayaz2013-12-061-8/+12
| |
* | rebar_config:is_verbose/0: fix variable nameTuncer Ayaz2013-12-061-2/+2
| |
* | Make list of commands (for unabbreviation) easier to maintainTuncer Ayaz2013-12-041-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-fixesJared Morrow2013-12-031-1/+1
|\ \ | | | | | | rebar_core: fix Dialyzer warning introduced in aa46d85 (#157)
| * | rebar_core: fix Dialyzer warning introduced in aa46d85 (#157)Tuncer Ayaz2013-11-261-1/+1
| | |
* | | Merge pull request #173 from tuncer/unknown-vsnJared Morrow2013-12-031-6/+8
|\ \ \ | | | | | | | | Fix false reporting of (plain) vsn strings
| * | | Fix false reporting of (plain) vsn stringsTuncer Ayaz2013-11-261-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-examplesJared Morrow2013-12-031-11/+21
|\ \ \ | | | | | | | | Add missing dep examples and fix existing ones
| * | | deps: remove undocumented fossil syntaxTuncer Ayaz2013-11-261-4/+0
| | | | | | | | | | | | | | | | | | | | As discussed with Martin Schut, remove support for {app_name, "vsn", {fossil, "url", latest}.
| * | | Add missing dep examples and fix existing onesTuncer Ayaz2013-11-261-7/+21
| |/ /
* | | lfe: use correctly filtered erl_optsTuncer Ayaz2013-11-261-2/+2
| | |
* | | erlc: properly reuse the right erl_opts in test_compileTuncer Ayaz2013-11-261-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/fixesJared Morrow2013-11-263-70/+84
|\ \ | |/ |/| Fixes for #137 and #142
| * Fix issues introduced in #137 (4dfdd72)Manuel Rubio2013-10-161-13/+14
| | | | | | | | | | * fix Dialyzer warning * fix formatting
| * rebar_deps: fix overly long linesTuncer Ayaz2013-10-161-39/+50
| |
| * rebar_deps: 'depowner' has to be stored in xconfTuncer Ayaz2013-10-161-7/+9
| |
| * rebar_deps: fix Dialyzer warningTuncer Ayaz2013-10-161-9/+9
| |
| * 'current_command' has to be stored in xconfTuncer Ayaz2013-10-162-2/+2
| |
* | Merge pull request #157 from Vagabond/adt-lib-dirJared Morrow2013-11-221-4/+5
|\ \ | | | | | | Don't over-aggressively clean the code path in the presence of lib_dir directives
| * | Don't badmatch if a path we think we added isn't in the code pathAndrew Thompson2013-10-171-1/+1
| | |
| * | Don't over-aggressively clean the code path in the presence of lib_dir ↵Andrew Thompson2013-10-161-4/+5
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | directives Rebar, when it encounters a lib_dir directive, caches the current code path, adds the libdir(s) and returns the cached copy of the path. When rebar has finished processing that directory, it restores the cached path. This is problematic in the below scenario: /(lib_dir)->G A -> B -> C -> D -> E \-> F -> D -> E When rebar is finished processing B, it restores the code path to what it was before it processed B, removing C, D, E and G from the code path. This means when it comes to process F, neither D or E are in the code path, so any header includes, rebar plugins or parse transforms will not be in the code path. Without the lib_dir directive, rebar does no code path cleanups, so everything works fine. This change makes rebar only remove the explicit lib_dir code paths it added and adds an inttest that replicates the above scenario.