summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Change nodetool path to under releases/<RELEASE_VERSION>/Shunichi Shinohara2014-03-092-7/+8
|
* Add slim marker file as automatic overlayShunichi Shinohara2014-03-092-8/+33
|
* Add slim release support for runner scriptShunichi Shinohara2014-03-091-8/+37
|
* Merge pull request #208 from goofansu/fix-typo-rebar-erlydtl-compilerJared Morrow2014-03-051-1/+1
|\ | | | | Fix typo in rebar_erlydtl_compiler
| * 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 #115 from mdaguete/simplenode.runner-remsh-fixesAndrew Thompson2014-03-051-3/+29
|\ \ | | | | | | Incorrect REMSH args when sname is used.
| * | Make REMSH node run in hidden modeManuel Durán Aguete2013-07-191-1/+1
| | | | | | | | | | | | | | | To avoid problems with REMSH node being visible from another nodes starts it in hidden mode (erl -hidden).
| * | Incorrect REMSH args when sname is usedManuel Durán Aguete2013-07-191-2/+28
| |/ | | | | | | | | | | | | | | | | | | When a node is configured with -sname in app.config or sys.config the REMSH_NAME_ARG and REMSH_REMSH_ARG arguments are incorrect due the assumption that the node name always contains '@'. To fix the bug, the script tries to find '@' and then compose the arguments acording to node name type. If in long name mode the script can't compose a correct node name exits with warning.
* | 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-057-18/+59
|\ \ \ | | | | | | | | CWD plugins regression
| * | | inttest/depplugins: update docsTuncer Ayaz2014-01-011-5/+8
| | | |
| * | | Fix regression caused by 252b31f (#90)Tuncer Ayaz2014-01-011-1/+6
| | | |
| * | | rebar_core: minor comment fixTuncer Ayaz2014-01-011-1/+1
| | | |
| * | | Add test for regression caused by 252b31f (#90)Tuncer Ayaz2014-01-016-11/+44
| | | |
* | | | Merge pull request #129 from tuncer/erlc-speedup-v5Andrew Thompson2014-03-058-120/+363
|\ \ \ \ | | | | | | | | | | Speed up the compilation process v5
| * | | | erlc: clean-up, enhance, and regression fix fd17693Tuncer Ayaz2014-03-058-74/+211
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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'.
* | | | 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=