summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add test case for relx overlay varsLuis Rascao2016-02-052-7/+65
| | | | | Makes use of several var types: integers, strings, binaries, binary strings and tuples.
* Merge pull request #1035 from lrascao/fix/missing_include_pathTristan Sloughter2016-01-262-4/+67
|\ | | | | Add module directory to include path
| * Add module directory to include pathLuis Rascao2016-01-262-4/+67
|/ | | | | | | | | | Several projects use an include path relative to the project's root. file:compile will look in three places for the include files: The current working directory The directory where the module is being compiled The directories given by the include option
* Merge pull request #1031 from tsloughter/masterFred Hebert2016-01-242-13/+35
|\ | | | | add profile option to clean task
| * add profile option to clean taskTristan Sloughter2016-01-232-13/+35
| |
* | Merge pull request #1024 from talentdeficit/dedupe_eunit_default_testsTristan Sloughter2016-01-232-15/+48
|\ \ | | | | | | deduplicate default test set generated by `rebar3 eunit`
| * | deduplicate default test set generated by `rebar3 eunit`alisdair sullivan2016-01-172-15/+48
| | | | | | | | | | | | | | | this ONLY attempts to deduplicate test sets that are generated by rebar in the absence of any user specified tests
* | | Merge pull request #1029 from tsloughter/masterFred Hebert2016-01-223-5/+5
|\ \ \ | | |/ | |/| local install and local upgrade
| * | move unstable install and upgrade to local namespaceTristan Sloughter2016-01-223-4/+4
| | |
| * | add support for setting erl vm args with REBAR3_ERL_ARGSTristan Sloughter2016-01-221-1/+1
| | |
* | | Merge pull request #1025 from tsloughter/masterFred Hebert2016-01-171-0/+12
|\ \ \ | |/ / | | | add unstable install/upgrade instructions to readme
| * | add unstable install/upgrade instructions to readmeTristan Sloughter2016-01-171-0/+12
|/ /
* | Merge pull request #1023 from ferd/rework-repo-docsTristan Sloughter2016-01-172-239/+409
|\ \ | | | | | | Rework README and CONTRIBUTING documents
| * | Rework README and CONTRIBUTING documentsFred Hebert2016-01-172-239/+409
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - The README is better targetted to newcomers and explains the basics of the project: what it is, why use it, how to get started, where to find more information. It looks less like a reference and more like a brief overview of rebar3. - Whatever looks like a list or reference manual material is expected to be moved to the website - Be clearer about the rebar3 project structure in CONTRIBUTING.md; explain how to write tests, how to structure code, and so on. - Added contributing section on bug reports, feature requests, etc.
* | | Merge pull request #1022 from ferd/badconfig-shell-errorTristan Sloughter2016-01-171-2/+7
|\ \ \ | |/ / |/| | Display error message when bad config is loaded
| * | Display error message when bad config is loadedFred Hebert2016-01-171-2/+7
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If a bad configuration file is submitted to rebar3 shell, display the following error: ===> The configuration file submitted could not be read and will be ignored. And keep going otherwise rather than silently failing. While crash-fast is usually a good mechanism, the shell so far is very tolerant of failures from apps to boot and whatnot, so this feels appropriate. Fixes #1019
* | Merge pull request #1017 from talentdeficit/runtime_version_checkFred Hebert2016-01-172-6/+8
|\ \ | |/ |/| check at runtime instead of compile time for `file:list_dir_all/1`
| * check at runtime instead of compile time for presence of `file:list_dir_all/1`alisdair sullivan2016-01-132-6/+8
| | | | | | | | | | | | this is slower than the compile time check but i guess packaging rebars with repos is still a thing and i think only the eunit and ct providers call it anyways
* | Merge pull request #1018 from talentdeficit/cover_what_are_you_doooooingFred Hebert2016-01-161-4/+3
|\ \ | | | | | | change detection of valid modules for `eunit`
| * | change detection of valid modules for `eunit`alisdair sullivan2016-01-131-4/+3
| |/ | | | | | | | | | | | | `beam_lib:chunks(..)` needs a path to object code which, frustratingly, `code:which/1` won't return for cover compiled modules. instead just assume that if `code:which/1` doesn't return `non_existing` a module is something we can run tests on
* | Merge pull request #1021 from tsloughter/masterTristan Sloughter2016-01-151-1/+2
|\ \ | |/ |/| convert 'app' to 'application' in eunit_opts to match cmdline args
| * convert 'app' to 'application' in eunit_opts to match cmdline argsTristan Sloughter2016-01-151-1/+2
| |
* | Merge pull request #1016 from talentdeficit/eunit_translation_fixTristan Sloughter2016-01-121-9/+20
|\ \ | | | | | | when using the `--file' argument to `eunit' paths were being converted
| * | when using the `--file' argument to `eunit' paths were being convertedalisdair sullivan2016-01-121-9/+20
|/ / | | | | | | into directory test arguments
* | Merge pull request #1013 from tsloughter/masterFred Hebert2016-01-122-2/+2
|\ \ | |/ | | upgrade bbmustache and relx
| * upgrade relxTristan Sloughter2016-01-122-2/+2
|/
* Merge pull request #1012 from ferd/fix-triple-brackets-tplsTristan Sloughter2016-01-113-3/+3
|\ | | | | Remove triple brackets in bbmustache templates
| * Remove triple brackets in bbmustache templatesFred Hebert2016-01-113-3/+3
|/ | | | | | Issues formerly were avoided by quoting atoms. Unquoting them created unbalanced tags (`{{{name}}`) which were mistakes. This patch inserts spaces to unconfused bbmustache.
* Merge pull request #1010 from tsloughter/masterFred Hebert2016-01-102-2/+2
|\ | | | | upgrade relx to 3.12.0
| * upgrade relx to 3.12.0Tristan Sloughter2016-01-102-2/+2
| |
* | Merge pull request #995 from ferd/fix-old-shellTristan Sloughter2016-01-102-3/+790
|\ \ | | | | | | Support old-style shell for rebar3 shell
| * | Correct TTY type detectionFred Hebert2016-01-061-17/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reuses the trick used within OTP to pick within old and new shell. The 'user' structure is the same for all cases (escript, escript + dumb TERM, unstable install, unstable install + dumb TERM), so we take it down first. Then we boot the TTY driver, which fails if TERM=dumb, in which case we boot the retro-style usr. If it worked, we shut down the driver again, and boot a modern shell structure. This avoids all warnings and seems to work in all cases.
| * | Support old-style shell for rebar3 shellFred Hebert2016-01-062-0/+781
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is quite the hack. This requires to detect the current shell running; if it's the new shell, business as usual. However, if it's the old shell, we have to find a way to take over it and drive IO. This requires a few steps because: - the old shell does not let you be supervised intelligently (it uses supervisor_bridge, so killing the child is not a supported operation from the supervisor) - the old shell ignores all trappable exit signals except those coming from the Port in charge of stdio ({fd, 0, 1}) - the old shell shuts down on all exit signals from the stdio Port except for badsig, and replicates the shutdown reason otherwise - An escript does not tolerate the `user` process dying (old shell) for any non-normal reason without also taking the whole escript down - Booting in an escript has an implicit 'noshell' argument interpreted by the old shell as a way to boot the stdio Port with only stdout taken care of Because of all these points, we have to kill the old `user` process by sending it a message pretending to be the Stdio port dying of reason `normal`, which lets it die without triggering the ire of its supervision tree and keeping the escript alive. This, in turn, kills the old stdio port since its parent (user.erl) has died. Then we have to boot our copy of user.erl (rebar_user.erl) which conveniently ignores the possibility of running the stdio port on stdout only -- always using stdin *and* stdout, giving us a bona fide old-style shell. A known issue introduced is that running r3:do(ct) seems to then kill the shell, and r3:do(dialyzer) appears to have an odd failure, but otherwise most other commands appear to work fine.
* | | Merge pull request #1009 from tsloughter/masterFred Hebert2016-01-102-2/+34
|\ \ \ | | |/ | |/| merge overlay entries into a single {overlay, list()} for relx
| * | merge overlay entries into a single {overlay, list()} for relxTristan Sloughter2016-01-102-2/+34
| | |
* | | Merge pull request #996 from ferd/bump-cth_readable-dumbtermTristan Sloughter2016-01-102-2/+2
|\ \ \ | | | | | | | | Updates cth_readable so it supports dumb terminals
| * | | Updates cth_readable so it supports dumb terminalsFred Hebert2016-01-062-2/+2
| | |/ | |/| | | | | | | | | | cth_readable 1.2.0 uses cf 0.2.1 to output colors, which makes it support dumb terminals without issue.
* | | Merge pull request #1008 from ferd/unquote-templatesTristan Sloughter2016-01-1013-23/+44
|\ \ \ | | | | | | | | Unquote templates, add a warning instead.
| * | | Unquote templates, add a warning instead.Fred Hebert2016-01-1013-23/+44
|/ / /
* | | Merge pull request #1007 from tsloughter/masterFred Hebert2016-01-104-6/+47
|\ \ \ | | |/ | |/| install project app plugins after discovering them not before
| * | install project app plugins after discovering them not beforeTristan Sloughter2016-01-104-6/+47
|/ /
* | Merge pull request #1006 from tsloughter/masterFred Hebert2016-01-093-9/+40
|\ \ | | | | | | only apply default and prod profile to dependencies
| * | only apply default and prod profile to dependenciesTristan Sloughter2016-01-093-9/+40
| | |
* | | Merge pull request #999 from ferd/fix-windows-stuffTristan Sloughter2016-01-083-17/+29
|\ \ \ | | | | | | | | Fix windows stuff
| * | | fix dirs robocopy and canonical paths in windowsFred Hebert2016-01-072-11/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - robocopying a directory into another directory recursively expects the directory name to be properly mapped onto the destination, otherwise all the files are copied into the given path. This patches things so a directory-to-directory robocopy works as expected in a linux mindset so tests pass - the test for canonical paths didn't expect a windows environment at all; the test (and library) is modified to be consistent in that environment: always with a native format and with proper support of drive letters.
| * | | Avoid changing directories in test suiteFred Hebert2016-01-071-6/+3
| | |/ | |/|
* | | Merge pull request #1005 from tsloughter/masterFred Hebert2016-01-081-2/+2
|\ \ \ | | |/ | |/| only need to compare ref and not ref+url in git resource
| * | only need to compare ref and not ref+url in git resourceTristan Sloughter2016-01-081-2/+2
|/ /
* | Merge pull request #994 from talentdeficit/REBAR-950Fred Hebert2016-01-071-2/+17
|\ \ | |/ |/| warn if the directories `eunit' or `ct' show up in `src_dirs'
| * warn if the directories `eunit' or `ct' show up in `src_dirs'alisdair sullivan2016-01-051-2/+17
| | | | | | | | | | | | | | | | if these directories actually exist they'll be added to the path ahead of the release/standard distribution directories and they'll break eunit and/or ct execution fixes #950