summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Add missing CXXFLAGS equivalents of CFLAGSTuncer Ayaz2010-04-291-0/+3
|
* merged from bashoCliff Moon2010-04-285-24/+73
|\
| * Add caching of app fileDave Smith2010-04-281-7/+13
| |
| * Add default CFLAGS for platforms where there can be variation of 32/64 bit ↵Dave Smith2010-04-281-2/+13
| | | | | | | | Erlang VMs
| * Refactoring app file access to be via rebar_app_utils in prep for supporting ↵Dave Smith2010-04-285-23/+52
| | | | | | | | .app.src
* | add new configuration option so_specs which allows multiple drivers to be ↵Cliff Moon2010-04-281-18/+26
|/ | | | built in the same project.
* Copy src files to .eunit so that cover can always find themJeremy Raymond2010-04-221-0/+6
|
* Merging w/ mainlineDave Smith2010-04-231-3/+2
|\
| * Reuse rebar_utils:get_cwd/0Tuncer Ayaz2010-04-211-2/+1
| |
* | Make sure to add ebin/ to the code path as well so that xref can properly ↵Dave Smith2010-04-231-2/+9
|/ | | | determine source/line of code.
* Verify that we work with minimal git of 1.5Dave Smith2010-04-191-1/+1
|
* Merging w/ mainlineDave Smith2010-04-172-26/+31
|\
| * Document xref commandTuncer Ayaz2010-04-152-26/+31
| | | | | | | | | | Also add a sleep after printing so that the io server has written all output before exiting. It's a work around.
* | Add simple warning if no modules are interested in handling a command for a ↵Dave Smith2010-04-171-0/+3
| | | | | | | | given directory
* | Make sure to add .eunit as an absolute directory so that we avoid weirdness ↵Dave Smith2010-04-161-1/+5
|/ | | | with code loading stuffs.
* Tested mercurial checkout down to 1.1Dave Smith2010-04-141-1/+1
|
* Removing debug_info from bootstrap; caused the rebar executable to be way ↵Dave Smith2010-04-141-1/+0
| | | | bigger than we wanted
* Support older, more deployed version of mercurialDave Smith2010-04-141-3/+3
|
* Merging w/ mainlineDave Smith2010-04-093-2/+50
|\
| * clean up .yrl and .xrl handlingBryan Fink2010-03-311-22/+21
| |
| * add leex .xrl handling as wellBryan Fink2010-03-311-12/+25
| |
| * add handling for yecc's .yrl files to erlc compilerBryan Fink2010-03-311-0/+35
| |
| * Add create to shell completionTuncer Ayaz2010-03-261-1/+1
| |
| * Add check-deps to shell completion and commands infoTuncer Ayaz2010-03-262-1/+2
| |
* | Enable xref checks on rebarDave Smith2010-04-091-1/+2
| |
* | Add stub for xref support; not yet doneDave Smith2010-04-092-1/+187
| |
* | Add helper makefile; update bootstrap to always build w/ debug_infoDave Smith2010-04-092-0/+3
|/
* Adding basic NIF templateDave Smith2010-03-253-0/+90
|
* Adding check-deps and helper target for compilationDave Smith2010-03-251-0/+19
|
* Add ASN.1 support (via Ruslan Babayev)Tuncer Ayaz2010-03-223-0/+72
| | | | | Add support for compiling ASN.1 files with asn1ct. Patch from Ruslan Babayev.
* Add get-deps and delete-deps to commands info and shell completionTuncer Ayaz2010-03-172-3/+6
| | | | | Add get-deps and delete-deps to commands info string and bash completion script.
* Merging w/ mainlineDave Smith2010-03-165-35/+116
|\
| * Add template variable to bash completionTuncer Ayaz2010-03-111-1/+1
| | | | | | | | Add create command's template variable to bash completion.
| * Make sure zip module is loadedTuncer Ayaz2010-03-111-0/+1
| | | | | | | | Before we check for zip:foldl/3 make sure zip module is loaded.
| * Update TODO fileTuncer Ayaz2010-03-081-2/+1
| | | | | | | | one item done, another one saved
| * Add commands option to bash completionTuncer Ayaz2010-03-081-2/+2
| | | | | | | | Add -c/--commands option to the bash completion script.
| * Add option to show available commandsTuncer Ayaz2010-03-081-29/+74
| | | | | | | | | | Implement new option -c/--commands to print available commands and its variables.
| * Add TODO fileTuncer Ayaz2010-03-061-0/+3
| | | | | | | | A TODO file is always a good idea.
| * Add escript_foldl/3 TODOTuncer Ayaz2010-03-061-0/+3
| | | | | | | | | | Comment what has to be done when the new OTP release is out and the time is right.
| * Add forward-compatible escript_foldl functionTuncer Ayaz2010-03-052-3/+33
| | | | | | | | | | | | escript:foldl/3 was undocumented and has been replaced with better APIs post-R13B04. The new exported funs are officially documented.
* | Revamp deps system to NOT pull down deps automatically. You must now use ↵Dave Smith2010-03-162-73/+113
| | | | | | | | pull-deps explicitly
* | Removing overly verbose debug message (yes, I realize the irony)Dave Smith2010-03-161-1/+0
|/
* Merging eunit fixes + some UNIT TESTS!! from cebernardDave Smith2010-03-052-10/+240
|\
| * Fixed 3 bugs in rebar_eunit. Added EUnit tests to capture them.Chris Bernard2010-03-042-10/+240
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. When running the eunit command with the convention of putting tests in "*_tests" modules, eunit would run those tests twice. This is because: 1) eunit:test/1 will naturally look for foo's tests both in foo, and in foo_tests, and 2) eunit:test/1 was being folded over all project modules. The fix is to filter "*_tests" modules from the list passed to eunit:test/1. 2. When running the eunit command with cover enabled and tests in a 'test' directory, cover would error because it couldn't find the source code for those tests. This is because cover:analyze/3 will only find module source in "." and "../src". This is hard-coded in cover :-(. Since cover shouldn't be calculating code coverage on test code anyway, the fix is to not fold cover:analyze/3 over non-production code. 3. When running the eunit command with cover enabled and a test suite defined, cover would only attempt to calculate coverage on the the test suite itself. This was because only the suite was passed to cover:analyze/3. The fix is to fold cover:analyze/3 over all the production code, filtering out the suite module if it is defined.
* | Merging changes from vagabondDave Smith2010-03-051-9/+46
|\ \
| * | Don't detect the source file as an include of itselfVagabond2010-03-021-7/+9
| | |
| * | Move the .erl sorting to the right placeVagabond2010-03-022-34/+37
| | |
| * | Fix dependancy checking for headers by ensuring "include" is always in the ↵Vagabond2010-03-021-1/+1
| | | | | | | | | | | | eep IncludePath
| * | Compile parse transform and custom behaviours firstVagabond2010-03-021-1/+33
| |/
* | Support for downloading deps via bzr.David Reid2010-03-051-1/+10
| |