Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Only print absolute filename if not in base_dir | Tuncer Ayaz | 2012-08-05 | 1 | -4/+1 |
| | |||||
* | Refactor setup_env rebar_config funs | Tuncer Ayaz | 2012-08-04 | 1 | -5/+5 |
| | |||||
* | Fix R13B03 build (Reported-by: Sergey Nartimov) | Tuncer Ayaz | 2012-07-28 | 1 | -4/+4 |
| | |||||
* | Do not use application:set_env | Tuncer Ayaz | 2012-07-23 | 1 | -10/+9 |
| | |||||
* | Document rebar_config TODOs | Tuncer Ayaz | 2012-07-13 | 1 | -0/+1 |
| | |||||
* | Make sure cached setup_envs are reset | Tuncer Ayaz | 2012-07-13 | 1 | -3/+7 |
| | |||||
* | Remove shared state | Tuncer Ayaz | 2012-07-13 | 1 | -129/+114 |
| | |||||
* | Manually report errors/warnings with absolute path | Tuncer Ayaz | 2012-06-11 | 1 | -22/+2 |
| | |||||
* | Fix whitespace errors | Tuncer Ayaz | 2012-06-08 | 1 | -6/+10 |
| | |||||
* | Introduce -k flag | Dave Smith | 2012-06-08 | 1 | -23/+39 |
| | |||||
* | Remove ?FAIL in favor of ?ABORT | Dave Smith | 2012-06-08 | 1 | -2/+2 |
| | |||||
* | Simplify and fix check if enter/leaving should be printed | Tuncer Ayaz | 2012-05-18 | 1 | -6/+1 |
| | |||||
* | Do not print entering/leaving message if skip_dir | Tuncer Ayaz | 2012-05-18 | 1 | -6/+13 |
| | |||||
* | Add support for target-specific port options | Tuncer Ayaz | 2012-04-16 | 1 | -34/+44 |
| | | | | {port_specs, [{".*", "priv/foo.so", ["c_src/foo.c"], [{env, []}]}]}. | ||||
* | Fix typo in comment (thanks Michael Santos) | Tuncer Ayaz | 2012-04-16 | 1 | -1/+1 |
| | |||||
* | Fix #197 by printing 'Entering/Leaving directory' | Tuncer Ayaz | 2012-04-03 | 1 | -3/+19 |
| | |||||
* | Make error message more descriptive | Tuncer Ayaz | 2012-03-31 | 1 | -1/+3 |
| | |||||
* | Fix loading of local plugins in sub directories | Tuncer Ayaz | 2012-02-03 | 1 | -13/+38 |
| | |||||
* | Cache vsn info to avoid expensive vcs cmd calls | Yurii Rashkovskii | 2012-02-02 | 1 | -0/+3 |
| | |||||
* | Check for .app.src first | Tuncer Ayaz | 2012-01-13 | 1 | -2/+2 |
| | |||||
* | Fix code clarity in dir type check | Tuncer Ayaz | 2012-01-13 | 1 | -9/+5 |
| | |||||
* | Fix rebar_core crash (reported-by: Jeremy Raymond) | Tuncer Ayaz | 2011-12-18 | 1 | -17/+24 |
| | |||||
* | Universally support apps=/skip_apps= | Tuncer Ayaz | 2011-12-12 | 1 | -61/+94 |
| | |||||
* | Add support for arch-specific hooks | Tuncer Ayaz | 2011-12-05 | 1 | -1/+10 |
| | | | | | {pre_hooks, [{"linux", compile, "c_src/build_linux.sh"}]}. {post_hooks, [{"linux", compile, "c_src/build_linux.sh clean"}]}. | ||||
* | Allow plugins to participate in pre and post processing | Tim Watson | 2011-10-20 | 1 | -8/+14 |
| | | | | | | This patch modifies rebar_core to allow plugins to participate in the pre and post processing steps, giving plugin authors more flexibility and control. | ||||
* | Fix config handling in root_dir | Tim Watson | 2011-10-05 | 1 | -1/+12 |
| | | | | | Avoid overwriting custom config (passed with -C) when we are processing the base_dir in rebar_core. | ||||
* | Fix missing plugin warnings | Tim Watson | 2011-09-20 | 1 | -1/+1 |
| | | | | | | This patch fixes the warning logging when the number of missing plugins is greater than one. The current code only works by accident, when a single plugin is all that is missing. | ||||
* | Search plugin sources in base_dir and plugin_dir | Tuncer Ayaz | 2011-08-29 | 1 | -3/+7 |
| | |||||
* | Only compile relevant plugin sources | Tuncer Ayaz | 2011-08-29 | 1 | -1/+7 |
| | |||||
* | Simplify check for empty list | Tuncer Ayaz | 2011-08-29 | 1 | -1/+1 |
| | |||||
* | Load plugins dynamically from source | Tim Watson | 2011-08-29 | 1 | -5/+49 |
| | | | | | | | | | This patch updates rebar_core to look for missing plugins (i.e. those that aren't found on the code path at runtime) in a configurable plugin directory, and dynamically compile and load them at runtime. By default, the directory "plugins" is searched, although this can be overriden by setting the plugin_dir in your rebar.config. | ||||
* | Log a more descriptive message | Tuncer Ayaz | 2011-08-23 | 1 | -1/+2 |
| | |||||
* | Rename rebar_plugins to plugins for consistency | Tuncer Ayaz | 2011-08-16 | 1 | -1/+1 |
| | |||||
* | Do not warn if pre_/post_ cmd is not available | Tuncer Ayaz | 2011-07-08 | 1 | -2/+9 |
| | |||||
* | Add support for $HOME/.rebar/config | Tuncer Ayaz | 2011-07-06 | 1 | -5/+5 |
| | |||||
* | Allow plugins to run before/after a rebar command. | Tim Watson | 2011-05-23 | 1 | -1/+20 |
| | | | | | | | | | | | | | | | | | | | This patch makes a small change in rebar_core that checks the list of valid plugins to see if any of them export a pre/post processing function for the current command. This logic is applied only to the plugins and allows plugin authors to hook into rebar's execution by using a naming convention that matches the one used for scripting hooks. Example: ```erlang -module(my_rebar_plugin). -export([pre_compile/2]). pre_compile(Config, AppFile) -> rebar_log:log(debug, "PRECOMPILE: ~p:~p~n", [AppFile, Config]), ok. ``` | ||||
* | Add support for command-specific env for hooks | Tuncer Ayaz | 2011-04-21 | 1 | -6/+14 |
| | |||||
* | Simplify hook changes to rebar_core | Tuncer Ayaz | 2011-03-12 | 1 | -11/+5 |
| | |||||
* | Add pre and post script support for all commands | Tim Watson | 2011-03-12 | 1 | -1/+17 |
| | | | | | | | | | 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. | ||||
* | Convert the entries in the code path to absolute paths | Juan Jose Comellas | 2011-02-26 | 1 | -0/+4 |
| | | | | | | | 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)). | ||||
* | Use erlang:function_exported/3 | Tuncer Ayaz | 2011-02-21 | 1 | -2/+2 |
| | |||||
* | Clean up code | Tuncer Ayaz | 2011-02-06 | 1 | -16/+24 |
| | |||||
* | Clean up emacs file local variables | Tuncer Ayaz | 2011-01-31 | 1 | -1/+1 |
| | |||||
* | Move BUILD_TIME and VCS_INFO macros | Tim Watson | 2011-01-29 | 1 | -8/+0 |
| | | | | | | I have moved these macros from rebar_core.erl to rebar.erl in order to prevent eunit tests from failing (which they currently are). | ||||
* | Fix circular dependency | Tuncer Ayaz | 2011-01-27 | 1 | -39/+1 |
| | |||||
* | Add support for abbreviated command names | Klas Johansson | 2011-01-24 | 1 | -11/+10 |
| | | | | | | | | | | | | | | | | | | | This change makes it possible to type the beginning (the prefix) of a command name and rebar will guess the full name of the command, thereby saving the user precious keystrokes. As long as the prefix matches only one command, rebar runs that command, otherwise rebar prints a list of candidate command names. The "-" character is considered to be a word separator and the prefix matching is done per word. Example prefix matches: co ==> compile cl ==> clean create ==> create create-a ==> create-app c-a ==> create-app c-app ==> create-app | ||||
* | Move command line handling funs into rebar.erl | Tuncer Ayaz | 2011-01-24 | 1 | -172/+3 |
| | |||||
* | Simplify rebar_core | Tuncer Ayaz | 2011-01-13 | 1 | -23/+17 |
| | |||||
* | Fix typos | Tuncer Ayaz | 2011-01-13 | 1 | -2/+2 |
| | |||||
* | Fix code clarity | Tuncer Ayaz | 2011-01-13 | 1 | -2/+3 |
| |