| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The old path handling routine would force loading a bunch of
applications, but it did not necessarily unload them aside from specific
calls that the other test handlers used to need to do, but no longer
needed under the updated path management of 3.7.0.
The leftover calls in the cover compilation bits caused some apps to be
loaded and to remain loaded before tests started.
|
|\ \ \
| |/ /
|/| | |
Add hint for `rebar3 new help` on `rebar3 help new`
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
fix base_compiler:run to take a single directory
|
|/ / / |
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
fix to include beams built from src files in subdirs in modules list
|
|/ / / |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
Signed-off-by: Fred Hebert <mononcqc@ferd.ca>
|
|\ \ \
| | | |
| | | | |
Fix typespecs of new compiler behaviour
|
|/ / / |
|
|\ \ \
| |/ /
|/| | |
Updating manpages before 3.7.0
|
|/ / |
|
|\ \
| | |
| | | |
check last modified time on erl files for xrl and yrl files before compiling
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
Fix plugins list display to include project plugins
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Support alias format {Namespace, Cmd} and {Namespace, Cmd, Args} (#1940)
|
|/ / / / |
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | | |
add git clone --reference path support
|
| |\ \ \
| |/ / /
|/| | | |
|
|\ \ \ \
| |_|/ /
|/| | | |
fix install output result
|
|/ / / |
|
| | | |
|
|\ \ \
| | | |
| | | | |
templates/gitignore ignore emacs temp files
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
emacs creates temp files that ends with tilde (~).
These temp files should never be commited.
It is therefore safe to ignore them.
Signed-off-by: Niklas Johansson <raphexion@gmail.com>
|
| | | |
|
|\ \ \
| | | |
| | | | |
Fix misleading config in app template
|
|/ / /
| | |
| | |
| | |
| | | |
Uncommenting the sys.config shell setting in app template rebar.config
works now as expected.
|
|\ \ \
| | | |
| | | | |
Allow Breakpoints during task runs
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This is mostly useful for tests, where a test suite of any kind can be
interrupted halfway through so that the user can probe the running
system to see what is happening.
This is done as follows:
1. the user must call `r3:break()` in a test suite
2. the user runs the task as `r3:async_do(ct)`
3. the test holds up and the user can do whatever
4. the user calls `r3:resume()` and the test proceeds as normal
A safeguard is added so that breakpoints are only triggered in the shell
in async mode
Sample session:
$ rebar3 shell
...
1> rebar_agent:async_do(ct).
ok
...
Running Common Test suites...
%%% rebar_alias_SUITE: .
=== BREAK ===
2> % <do some checks>
2> r3:resume().
ok
3> .....
%%% rebar_as_SUITE: ...........
%%% rebar_compile_SUITE: ......
...
|
|\ \ \
| | | |
| | | | |
check if git/hg is installed
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This PR is a simpler and mergeable version of #1853 by @shamis, since
the provider changed format enough to make merging difficult.
Compared to #1853, this also puts the responsibility on each resource to
check rather than adding a new optional callback.
The process dictionary is use as a warning/check cache.
|
|\ \ \
| | | |
| | | | |
Fallback when logging isn't initialized
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
In some cases, such as when the global rebar.config file contains typoes
and invalid terms, the rebar3 executable fails when trying to log the
error since it hasn't been set yet, such as in #1792
This patch fixes that by going for a fallback mechanism.
|
|\ \ \
| | | |
| | | | |
Fix shell hook expansion on windows
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Dollar Variable expansion (`$VAR`) was inadvertently disabled for
windows variables, although %VARIABLES% already worked. This reduced the
portability of hooks in general.
Additionally, tests would fail on windows due to bad quoting of paths:
the path C:/a/b/c would fail when passed to the command
`cmd /q /c C:/a/b/c` because it would interpret /a /b and /c as 3
options. Using quotes makes the tests pass.
|