summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* pass objectfile name to opts_changed instead of recalculatingTristan Sloughter2015-04-101-6/+4
|
* remove comment that doesn't apply to rebar3Tristan Sloughter2015-04-101-1/+0
|
* properly compare list of opts and not against undefinedTristan Sloughter2015-04-101-1/+1
|
* remove unneeded string:tokens for target_baseTristan Sloughter2015-04-091-2/+1
|
* fix process attr for include_lib that is just a filenameTristan Sloughter2015-04-081-22/+22
|
* breakout needs compile check from compile_xrl_yrlTristan Sloughter2015-04-081-1/+4
|
* merge rebar2's Refactor logic and optimizations in ↵Tristan Sloughter2015-04-072-286/+162
| | | | rebar_erlc_compiler:doterl_compile/4 #467
* Bump to alpha-3Fred Hebert2015-04-051-1/+1
|
* Merge pull request #321 from tsloughter/rm_global_pluginsFred Hebert2015-04-052-6/+3
|\ | | | | Remove global plugins
| * only install dep plugins from install_depsTristan Sloughter2015-04-051-3/+1
| |
| * removing installing of global pluginsTristan Sloughter2015-04-051-3/+2
| |
* | Merge pull request #320 from tsloughter/dep_pluginsFred Hebert2015-04-0514-143/+177
|\ \ | |/ | | install dep plugins & run provider hooks the same as shell hooks (Rereopen 316)
| * install each deps plugins after handling dep, instead of at the endTristan Sloughter2015-04-053-35/+33
| |
| * fix eunit commentTristan Sloughter2015-04-051-2/+2
| |
| * add rebar_state:resources type specsTristan Sloughter2015-04-041-0/+2
| |
| * fixes from bad rebase against masterTristan Sloughter2015-04-042-3/+3
| |
| * swich clean and compile to use macro provider in hook runTristan Sloughter2015-04-042-8/+8
| |
| * support provider hooks on ct and eunitTristan Sloughter2015-04-042-7/+26
| |
| * remove old apply_hooks. now provider hooks are explicitly runTristan Sloughter2015-04-041-46/+9
| |
| * move resource modules list to rebar_state, no longer staticTristan Sloughter2015-04-047-34/+50
| |
| * install dep plugins & run provider hooks the same as shell hooksTristan Sloughter2015-04-046-31/+67
| |
* | Support namespaces in help searchFred Hebert2015-04-041-12/+16
| |
* | Provide descriptions for all tasksFred Hebert2015-04-0413-14/+14
|/
* add default test paths in the `shell` and `cover` providersalisdair sullivan2015-04-032-8/+19
|
* modify `ct` provider to copy selected directories and compile themalisdair sullivan2015-04-032-273/+351
| | | | | | alongside their source (ie, if `some_tests` is a directory that contains test suites beams resulting from compiling them will be placed in `some_tests` in the appropriate `_build` directory
* main module of a plugin just has to export init/1Tristan Sloughter2015-04-031-6/+3
|
* Merge pull request #310 from ferd/do-namespacesFred Hebert2015-04-031-5/+38
|\ | | | | Support namespace resolution in 'do' provider
| * Support namespace resolution in 'do' providerFred Hebert2015-04-031-5/+38
| |
* | Merge pull request #298 from talentdeficit/cover_pathsFred Hebert2015-04-031-12/+24
|\ \ | | | | | | cover enhancements
| * | attempt to load paths to test modules in cover modules toalisdair sullivan2015-03-251-10/+20
| | | | | | | | | | | | generate line by line coverage reports
| * | execute `cover` task as `test` profile and write generated dataalisdair sullivan2015-03-251-2/+4
| | | | | | | | | | | | to the appropriate `_build` dir
* | | Merge pull request #308 from ferd/consistent-docTristan Sloughter2015-04-035-7/+7
|\ \ \ | | | | | | | | Fixes #306: help text consistency
| * | | Fixes #306: help text consistencyFred Hebert2015-04-025-7/+7
| | | |
* | | | fix clean all to use proper deps dirTristan Sloughter2015-04-021-1/+1
| |_|/ |/| |
* | | add exports used by plugins to rebar_apiTristan Sloughter2015-04-021-1/+19
| | |
* | | re-export functions only used within rebar_utils that are also needed by pluginsTristan Sloughter2015-04-021-1/+4
|/ /
* | Merge pull request #283 from fishcakez/dial_warnsFred Hebert2015-03-257-8/+7
|\ \ | | | | | | Fix some dialyzer warnings
| * | Fix dialyzer warningsJames Fish2015-03-187-8/+7
| | |
* | | Polish rough edges of 'new' providerFred Hebert2015-03-251-3/+12
| |/ |/| | | | | | | | | | | - Allow 'rebar3 help' to work and have it point to 'rebar3 help <template>' - show a 'template not found' message when a template is indeed not found rather than crashing.
* | Bump to alpha-2Fred Hebert2015-03-241-1/+1
| |
* | split function setting test set for clarityalisdair sullivan2015-03-241-7/+10
| |
* | filter checkapps via `rebar_app_info:is_checkout` rather thanalisdair sullivan2015-03-241-4/+2
| | | | | | | | matching directory paths
* | add `--app=...` and `--suite=...` options for the eunit provider toalisdair sullivan2015-03-241-74/+145
| | | | | | | | run subsets of test suites
* | Fix property mergingFred Hebert2015-03-241-30/+38
| | | | | | | | | | | | | | | | | | | | | | Much clearer semantics now. All lists are treated as proplists, meaning we want to: 1) allow duplicates (providers have to avoid them if they must) 2) preserve order of elements that compare equal (`a == {a, val}`) through a stable sort (so if `{a, b}` comes before `a`, we keep `{a, b}` first in the list 3) In two lists of attributes requiring a merge, we always give the 'new' profile a priority to override the default one.
* | Bump to alpha-1Fred Hebert2015-03-231-1/+1
| |
* | Merge pull request #286 from tsloughter/checkoutsFred Hebert2015-03-236-44/+101
|\ \ | | | | | | treat _checkouts as deps that are always compiled
| * | treat _checkouts as deps that are always compiledTristan Sloughter2015-03-216-44/+101
| | |
* | | handle additional errors returned from `getopt:parse/2`alisdair sullivan2015-03-231-1/+5
| | |
* | | Merge pull request #291 from tsloughter/as_argsFred Hebert2015-03-231-0/+2
|\ \ \ | | | | | | | | support args on tasks passed to 'as'
| * | | support args on tasks passed to 'as'Tristan Sloughter2015-03-231-0/+2
| |/ /