summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | Fix 'rebar generate' regression (#253)Tuncer Ayaz2014-03-301-1/+21
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If the directory we're about to process contains reltool.config[.script] and the command to be applied is 'generate', then it's safe to process. We do this to retain the behavior of specifying {sub_dirs, ["rel"]} and have "rebar generate" pick up rel/reltool.config[.script]. Without this workaround you'd have to run "rebar -r generate" (which you don't want to do if you have deps or other sub_dirs) or "cd rel && rebar generate".
* | | | | Add partial support for Erlang/OTP 17Joseph Wayne Norton2014-03-291-2/+3
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | Allow rebar to compile applications using Erlang/OTP 17 and older versions. This patch only provides partial support since the rebar tool itself must be compiled using an Erlang/OTP version that is older than 17.
* | | | Fix #226Tuncer Ayaz2014-03-111-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | Running 'rebar list-templates' can take quite a long time, when it has to search the file system. To fix that, make list-templates not recurse by default. To enable recursion, run 'rebar -r list-templates'.
* | | | Fix #56 (always-on recursion)Tuncer Ayaz2014-03-114-13/+104
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Always-on recursive application of all rebar commands causes too many issues. Recursive application is required for: 1. dealing with dependencies: get-deps, update-deps, and compile of deps right after get-deps or update-deps 2. projects with a riak-like apps/ project structure and dev process The vast majority of projects are not structured like riak. Therefore, moving forward it's best to (by default) restrict recursive behavior to dealing with deps. This commit does that and also adds command line and rebar.config options for controlling or configuring recursion. Also, we introduce two meta commands: prepare-deps (equivalent to rebar -r get-deps compile) and refresh-deps (equivalent to rebar -r update-deps compile). riak-like projects can extend the list of recursive commands (to include 'eunit' and 'compile') by adding {recursive_cmds, [eunit, compile]} to rebar.config.
* | | Fix typo in rebar_erlydtl_compilergoofansu2014-03-061-1/+1
| | |
* | | Merge pull request #139 from rnewson/depmodsJared Morrow2014-03-051-17/+26
|\ \ \ | | | | | | | | Allow specification of module dependencies for appups
| * | | Allow specification of module dependencies for appupsRobert Newson2013-09-201-17/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The order in which modules, within an application, are loaded can be important. This patch adds allows the specification of module dependencies such that generate .appup/.relup scripts will load a module's dependent modules before itself. To use: in rebar.config, add a module_deps {module_deps, [{ModuleName, [DependentModuleName, ...]}]}. ModuleName is the name of any module, followed by a list of module names that it depends on.
* | | | Merge pull request #234 from tuncer/fix-220Andrew Thompson2014-03-051-10/+11
|\ \ \ \ | | | | | | | | | | Fix #220 (Reported-by: Joseph Norton)
| * | | | Fix #220 (Reported-by: Joseph Norton)Tuncer Ayaz2014-03-051-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | When running 'rebar qc' or 'rebar eunit', we were erroneously fetching erl_opts more than once.
| * | | | erlc: fix commentTuncer Ayaz2014-03-051-6/+7
| | | | | | | | | | | | | | | | | | | | | | | | | test_compile/3 is used by eunit and qc, but the comment was only referring to 'rebar eunit'.
* | | | | Merge pull request #98 from jcomellas/jc-no-erl-libs-repetitionJared Morrow2014-03-051-1/+11
|\ \ \ \ \ | |/ / / / |/| | | | Repetition of environment variable definitions in child processes (ports)
| * | | | Avoid passing more than one instance of ERL_LIBS to child processesJuan Jose Comellas2013-06-131-1/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit fixes issue #98 by removing the ERL_LIBS and REBAR_DEPS_DIR from the list of environment variables exported by the rebar_port_compiler plugin.
* | | | | Merge pull request #175 from tuncer/cwd-plugins-regressionJared Morrow2014-03-051-2/+7
|\ \ \ \ \ | | | | | | | | | | | | CWD plugins regression
| * | | | | Fix regression caused by 252b31f (#90)Tuncer Ayaz2014-01-011-1/+6
| | | | | |
| * | | | | rebar_core: minor comment fixTuncer Ayaz2014-01-011-1/+1
| | | | | |
* | | | | | erlc: clean-up, enhance, and regression fix fd17693Tuncer Ayaz2014-03-054-72/+207
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * update files * fix Dialyzer warning * unconditionally enable info fil * clean-up inconsistencies * use term_to_binary compression * use try...catch instead of case...catch...of * do not write build info file if the graph is unmodified * store info file as <base_dir>/.rebarinfo * properly support list of compile directives * fix regressions: - Fix a bug in handling of files to compile first. - If a file that is depended upon itself depends on other files, make sure those are compiled first. While at it, rename variables for correctness. Reported-by: David Robakowski - Make sure that FirstFiles has no dupes and preserves the proper order. - headers referenced via -include_lib() were not properly resolved to absolute filenames - .erl files found in sub dirs of src_dirs were not properly resolved to absolute filenames
* | | | | | 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'.
* | | | | docs: fix #228Tuncer Ayaz2014-02-251-5/+6
| | | | |
* | | | | Merge pull request #230 from tuncer/fix-dialyzer-warningsJared Morrow2014-02-251-1/+1
|\ \ \ \ \ | | | | | | | | | | | | eunit: fix dialyzer warnings introduced in 03da5e0b
| * | | | | eunit: fix dialyzer warnings introduced in 03da5e0bTuncer Ayaz2014-02-201-1/+1
| | | | | |
* | | | | | Mention rebar -c/--commandsTuncer Ayaz2014-02-241-0/+2
| | | | | |
* | | | | | Document support for abbreviated commandsTuncer Ayaz2014-02-241-0/+10
| | | | | |
* | | | | | {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
|/ / / / /
* | | | | 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
| | | | |