summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Add skip_app to shell completionTuncer Ayaz2011-04-061-1/+1
|
* New eunit param skip_app, allow suite to be a listAndrew Thompson2011-04-061-8/+25
| | | | | | | | | | | | | | This patch allows the 'suite' argument to eunit to be a comma separated list of modules to test instead of being a single module. This allows fine-grained testing when one test suite interferes with another and its not clear which suite is causing the problem. It also lets you run the test suite in a different order for a similar reason. The other enhancement is to add a new eunit parameter; 'skip_app' which like 'app' is a comma separated list of modules to skip testing on. This parameter is only applied if the app parameter is not passed. Its purpose is to avoid forcing you to specify all the apps to test if you only want to skip a handful and there are many apps to test.
* Use infinite receive (thanks Hakan Mattsson)Tuncer Ayaz2011-04-041-4/+4
|
* Use abort in check-plt and update docDavid Reid2011-04-021-3/+3
|
* Make debug_info defaultTuncer Ayaz2011-03-305-13/+12
| | | | | Add no_debug_info option. Remove debug_info=1 option.
* Clean up specsTuncer Ayaz2011-03-287-56/+57
|
* Remove unused record definitionTuncer Ayaz2011-03-281-2/+0
|
* Add Jordi Chacon to THANKS fileTuncer Ayaz2011-03-261-0/+1
|
* Fix bug: xref should be stopped after being runJordi Chacon2011-03-261-0/+3
| | | | Xref not being stopped caused a crash in subsequent xref runs.
* Fix code clarity and formattingTuncer Ayaz2011-03-221-17/+17
|
* Fix ct include option prefixShunichi Shinohara2011-03-221-1/+1
|
* Merge branch 'simplenode_runner_start_args' of git://github.com/alexeyr/rebarDave Smith2011-03-161-1/+2
|\
| * Support passing plain arguments to `appname start`Alexey Romanov2011-03-051-1/+2
| | | | | | | | | | | | | | Currently with default simplenode template, `appname console other_args` will pass ["console", "other_args"] as plain arguments. But `appname start other_args` effectively calls `appname console`. This patch replaces this call with `appname console other_args`.
| * Remove rejected commitAlexey Romanov2011-03-051-1/+1
| |
| * Merge commit 'upstream/master'Alexey Romanov2011-03-0513-88/+223
| |\
| * | Add console_clean to usage message for simplenode.Alexey Romanov2011-02-211-1/+1
| | |
| * | Support passing plain arguments to simplenode.Alexey Romanov2011-02-211-1/+1
| | | | | | | | | | | | | | | | | | | | | `init:get_plain_arguments()` returns `["console", "more_args"]` when started with `$APP_NAME console more_args`, but `["console"]` when started with `$APP_NAME start more_args`. This patch makes `start` behave like `console` in this respect.
| * | Merge branch 'master' of https://github.com/basho/rebarAlexey Romanov2011-02-2164-1007/+2831
| |\ \
| * \ \ Merge branch 'master' of git://github.com/basho/rebarAlexey Romanov2010-12-115-10/+58
| |\ \ \ | | | | | | | | | | | | | | | | | | | | Conflicts: priv/templates/simplenode.runner
| * | | | ignore .eunitAlexey Romanov2010-12-071-0/+1
| | | | |
| * | | | Fix quotesAlexey Romanov2010-12-071-1/+1
| | | | |
| * | | | Allow for non-SMP emulatorAlexey Romanov2010-12-071-1/+1
| | | | |
* | | | | Simplify find_dep_in_dirTuncer Ayaz2011-03-131-1/+1
| | | | |
* | | | | Fix commentsTuncer Ayaz2011-03-131-12/+12
| | | | |
* | | | | Cleanup rebar.config.sampleTuncer Ayaz2011-03-121-3/+4
| | | | |
* | | | | Deprecate old hooksTuncer Ayaz2011-03-124-20/+53
| | | | |
* | | | | Simplify hook changes to rebar_coreTuncer Ayaz2011-03-121-11/+5
| | | | |
* | | | | Add pre and post script support for all commandsTim Watson2011-03-125-1/+78
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change makes it possible to assign pre/post scripts to all rebar commands. This allows users fine grained control over when scripts and/or shell commands should be executed, where such extensions are absolutely needed. Several examples have been added to the rebar.config.sample file.
* | | | | Update README: file local variablesTuncer Ayaz2011-03-101-16/+0
| | | | |
* | | | | Fix regression (thanks Anthony Molinaro)Tuncer Ayaz2011-03-071-4/+5
| |_|_|/ |/| | |
* | | | Update runner script in test projectTuncer Ayaz2011-03-041-3/+3
| | | |
* | | | Add console_clean to usage message for simplenodeAlexey Romanov2011-03-041-1/+1
| | | |
* | | | Fix bug that causes appup generation to failjoewilliams2011-03-032-22/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit changes how rebar determines which apps have been updated, added and removed from a release during appup generation. Rather than use app files it now determines this from the rel file in each version of the release. In addition it fixes a bug reported on the mailing list when generating appups when an application has been added or removed from either release.
* | | | Add Christopher Brown to THANKS fileTuncer Ayaz2011-03-031-0/+1
| | | |
* | | | honor local deps before code pathChristopher Brown2011-03-021-26/+49
| | | |
* | | | Convert the entries in the code path to absolute pathsJuan Jose Comellas2011-02-262-1/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Rebar will exit with {error,bad_directory} when trying to restore the code path after it has finished working on a subdirectory if there are invalid relative paths in it. The problem was seen when executing the last line of rebar_erlc_compiler:doterl_compile/3 (true = code:set_path(CurrPath)).
* | | | Ignore app files not in ebinjoewilliams2011-02-251-4/+4
| | | |
* | | | Fix regression in rebar_lfe_compilerTuncer Ayaz2011-02-221-2/+3
| | | |
* | | | Use erlang:function_exported/3Tuncer Ayaz2011-02-211-2/+2
| | | |
* | | | Fix Dialyzer warning and slightly reformat codeTuncer Ayaz2011-02-211-3/+7
| | | |
* | | | Add up to date instructions in case LFE is missingTim Dysinger2011-02-211-7/+11
| | | |
* | | | Add fail_on_warning support for LFETim Dysinger2011-02-211-4/+8
| | | |
* | | | Add -spec support to rebar_ct command lineTim Watson2011-02-215-22/+86
| |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change adds support for executing ct test runs based on test specificiations, which was missing previously. The rebar_ct module now looks for any number of files with a name ending in `test.spec` and if it finds one or more, passes these after the `-spec` argument to ct_run instead of explicitly configuring the config, user config and coverage config variables. When no specifications are found, then the module behaves as it did before this change, and both the ct1 and (new) ct2 integration tests appear to show this is a backwards compatible patch.
* | | Clean up and simplify {vsn, VCS} supportDave Smith2011-02-181-12/+11
| | |
* | | Add {vsn,Vcs} support for bzr, hg and svnTuncer Ayaz2011-02-171-6/+15
| | |
* | | Expand {vsn,git} in app.src to git-describe outputAdam Kocoloski2011-02-172-2/+14
| | |
* | | Add Anders 'andekar' to THANKS fileTuncer Ayaz2011-02-171-0/+1
| | |
* | | Clean up trailing whitespacejoewilliams2011-02-173-5/+5
| | |
* | | Clean up rebar_appups and rebar_upgradejoewilliams2011-02-174-109/+92
| | |
* | | Add PropEr supportTuncer Ayaz2011-02-161-17/+24
| | |