summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* rebar.config.sample: remove non-existing optionTuncer Ayaz2012-11-201-5/+0
|
* rebar.config.sample: document escriptize optionsTuncer Ayaz2012-11-191-0/+7
|
* rebar.config: delete unused and unimplemented 'app_bin' optionTuncer Ayaz2012-11-192-4/+0
| | | | | app_bin option was used by the install command which has been removed in 51ed787.
* Document escriptize commandTuncer Ayaz2012-11-191-3/+6
|
* rebar_ct: fix wording in commentsTuncer Ayaz2012-11-181-5/+5
|
* rebar.config.sample: document leex and yecc optionsTuncer Ayaz2012-11-181-0/+12
|
* rebar_require_vsn: remove trailing whitespaceTuncer Ayaz2012-11-181-5/+5
|
* rebar.config.sample: document require_*_vsn optionsTuncer Ayaz2012-11-181-0/+5
|
* rebar_neotoma_compiler: fix commentTuncer Ayaz2012-11-181-1/+1
|
* Cleanup rebar_core and rebar_erlc_compilerTuncer Ayaz2012-11-152-21/+16
| | | | | Rename rebar_core functions for improved readability. Remove redundant comments and blank lines.
* Merge pull request #18 from tuncer/fix-config-sampleDave Smith2012-11-152-13/+18
|\ | | | | Fix rebar.config.sample
| * rebar_erlc_compiler: fix src_dirs commentTuncer Ayaz2012-11-151-1/+1
| |
| * rebar.config.sample: fix erl_opts exampleTuncer Ayaz2012-11-151-1/+3
| |
| * rebar.config.sample: fix raw dep example formattingTuncer Ayaz2012-11-151-10/+13
| |
| * rebar.config.sample: fix syntax errorTuncer Ayaz2012-11-141-1/+1
|/
* Merge branch 'ates-diameter'Dave Smith2012-11-123-1/+92
|\
| * Add diameter exclusions to xrefDave Smith2012-11-121-1/+4
| |
| * Add support to compile the Diameter dictionary filesArtem Teslenko2012-11-122-0/+88
| |
* | Be sure to filter empty sources (h/t to Tuncer and Joe Norton)Dave Smith2012-11-121-10/+11
| |
* | Bumping to 2.1.0-preDave Smith2012-11-121-1/+1
| |
* | Merge pull request #15 from rebar/dss-restore-portsDave Smith2012-11-121-10/+41
|\ \ | |/ |/| Restore support for so_name, port_envs and port_sources
| * Restore support for so_name, port_envs and port_sourcesDave Smith2012-11-111-10/+41
|/
* Merge pull request #14 from tuncer/fix-list-keysort-callDave Smith2012-11-102-2/+2
|\ | | | | Fix rebar_erlydtl_compiler:erlydtl_opts/1 and rebar:run/2
| * Fix Dialyzer warning in rebar:run/2Tuncer Ayaz2012-11-111-1/+1
| |
| * rebar_erlydtl_compiler: fix incorrect lists:keysort/2 callTuncer Ayaz2012-11-111-1/+1
|/
* Merge pull request #328 from saleyn/depcheckDave Smith2012-11-101-2/+2
|\ | | | | Fix erlydtl dependency check
| * Fix erlydtl dependency checkSerge Aleynikov2012-10-251-2/+2
| | | | | | | | | | | | | | | | When a DTL template includes other template files, those files don't need to be compiled separately, and therefore can be given an extension different from `source_ext` (such as `.dtli`) to avoid being compiled. This fix allows rebar to find included dependencies with names `*.dtl*` rather than `*.dtl` and properly determine if a template file needs to be recompiled.
* | Merge pull request #327 from saleyn/erlydtl_compilerDave Smith2012-11-102-26/+81
|\ \ | | | | | | Erlydtl compiler
| * | Made more readable printout of the erlydtl compiler messageSerge Aleynikov2012-10-221-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The printed message is made more terse. Example before applying patch: ERROR: Compiling template src/view/test.dtl failed: {error,{"src/view/test.dtl", [{{4,7}, erlydtl_parser, ["syntax error before: ",["\"\\\"HELLO_WORLD\\\"\""]]}]}} Example after applying patch: ERROR: Compiling template "src/cmp_html_error_template.dtl" failed: (line:3, col:12): ["syntax error before: ",["trans"]]
| * | Specify multiple locations of DTL template filesSerge Aleynikov2012-10-222-26/+75
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added a backward compartible feature to specify `erlydtl_opts' options for the DTL template compiler to allow inclusion of templates in different directories with different compilation settings for each. E.g.: {erlydtl_opts, [ [{doc_root, "src/view"}, {module_ext, "_dtl_vw"}] , [{doc_root, "src"}, {module_ext, ""}, {recursive, false}] , {out_dir, "ebin"} , {compiler_options, [verbose, debug_info]} ]}. The definition above is identical to this (the last two options are duplicated in each list): {erlydtl_opts, [ [{doc_root, "src/view"} ,{module_ext, "_dtl_vw"} ,{out_dir, "ebin"} ,{compiler_options, [verbose, debug_info]}] , [{doc_root, "src"} ,{module_ext, ""} ,{out_dir, "ebin"} ,{compiler_options, [verbose, debug_info]} ,{recursive, false}] ]}. In this case "src/view" and "src" directories containing template files will be compiled. A new `recursive' option tells rebar_erlydtl_compiler to search files recursively from a given doc_root. In the example above the "src" directory won't be scanned recursively, and the target template name for target beam modules won't have "_dtl_vw" suffix.
* | | Expose Erlang API for invoking rebarDave Smith2012-11-061-0/+7
| | |
* | | Add comment to explain why we're using sub_dirs by handDave Smith2012-11-051-0/+5
| | |
* | | Add all subdirs to xref library pathDaniel Luna2012-11-051-4/+7
| | |
* | | Add email address to my nameDaniel Luna2012-11-051-1/+2
| | |
* | | Merge pull request #5 from tuncer/zsh-typosDave Smith2012-11-011-9/+9
|\ \ \ | | | | | | | | zsh completion: fix typos
| * | | zsh completion: fix typosTuncer Ayaz2012-11-011-9/+9
| | | |
* | | | Merge branch 'master' of github.com:/basho/rebarDave Smith2012-11-011-8/+20
|\ \ \ \ | |/ / / |/| | |
| * | | Merge pull request #293 from Motiejus/skip_depsDave Smith2012-10-311-8/+20
| |\ \ \ | | | | | | | | | | | | | | | | | | | | Add skip_deps=AppListSeparatedByCommas feature. I agree it's a bit of a weird thing, but it's a reasonable and safe extension. When time comes to properly overhaul stuff, skip_deps should disappear entirely.
| | * | | Add skip_deps=AppListSeparatedByCommas featureMotiejus Jakštys2012-08-091-8/+20
| | | | |
* | | | | Merge pull request #4 from shkumagai/feature/add-zsh-completionDave Smith2012-10-311-0/+79
|\ \ \ \ \ | |/ / / / |/| | | | Add zsh completion script
| * | | | Add zsh completion scriptShoji KUMAGAI2012-11-011-0/+79
| | | | | | | | | | | | | | | | | | | | For enable to shell-completion in zsh.
* | | | | ct: skip instead of halt on missing/unknown suiteArjan Scherpenisse2012-10-311-3/+10
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This allows `rebar ct suites=abc` to consider all suites when you have a rebar setup with multiple sub_dirs. Previously, rebar halted after it could not find the suite in the first dir. But the suite might be present in another dir (when sub_dirs contains multiple dirs). This commit makes it so instead of halting, it prints a warning and continues with looking for the suite in the other `sub_dir`s. Note -- This uses try/catch to cause the test to be skipped because otherwise I needed to adjust the return values of 4 functions, the code path is pretty deeply nested here. Otherwise the whole call chain needed to be adjusted for this return value: `run_test -> make_cmd -> get_suites -> find_suite_path` IMHO, I think for exceptional cases like this it is fine to use throw; specially since only the {skip} is catched and nothing else.
* | | | Update travis-ci link.Dave Smith2012-10-311-1/+1
| | | |
* | | | Updating .travis.yml for new primary repoDave Smith2012-10-311-3/+0
| | | |
* | | | Various updates for README to reflect new home for rebarDave Smith2012-10-301-44/+40
| | | |
* | | | Merge remote-tracking branch 'basho/master'Dave Smith2012-10-301-0/+29
|\ \ \ \
| * \ \ \ Merge pull request #243 from evanmcc/pevm_min_otp_versionDave Smith2012-10-301-0/+29
| |\ \ \ \ | | |_|_|/ | |/| | | Add support for minimum OTP versions
| | * | | Add support for minimum OTP versions.Evan Vigil-McClanahan2012-06-211-0/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since you can't really do math with regexps and it's a pain to repeatedly update the config for each new version or erlang, I wanted to add support for minium OTP versions. This is a fix for https://github.com/basho/riaknostic/issues/38
* | | | | Merge pull request #1 from tuncer/ta-old-arch_stringDave Smith2012-10-292-7/+2
|\ \ \ \ \ | |/ / / / |/| | | | Revert arch string changes
| * | | | Revert arch string changesTuncer Ayaz2012-10-292-7/+2
|/ / / /