-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from walter-weinmann/wwe_rebar3
Migration to rebar3.
- Loading branch information
Showing
7 changed files
with
170 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,8 @@ | ||
# Logs | ||
logs | ||
log/ | ||
*.log | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
|
||
# Coverage directory used by tools like istanbul | ||
coverage | ||
|
||
# Dependency directory | ||
# Deployed apps should consider commenting this line out: | ||
# see https://npmjs.org/doc/faq.html#Should-I-check-my-node_modules-folder-into-git | ||
node_modules | ||
|
||
# Vim temp file | ||
*.swp | ||
|
||
# erlang | ||
deps/ | ||
ebin/ | ||
_build | ||
egambo*@*/ | ||
erl_crash.dump | ||
log | ||
rebar.lock | ||
rebar3.crashdump | ||
snapshot/ | ||
egambo*@*/ | ||
|
||
# Misc | ||
*.orig | ||
*.bak | ||
|
||
.rebar | ||
|
||
# Javascript build files | ||
priv/public | ||
|
||
egambo.debug.* | ||
|
||
# intelliJ idea settings / project files | ||
.idea/ | ||
*.iml | ||
|
||
# Mac | ||
.DS_Store | ||
tmp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
install: | ||
- wget https://s3.amazonaws.com/rebar3/rebar3 && chmod +x rebar3 | ||
language: erlang | ||
otp_release: | ||
- 20.0 | ||
- 19.3 | ||
- 19.2 | ||
- 19.1 | ||
- 19.0 | ||
- 18.3 | ||
- 18.2.1 | ||
- 18.2 | ||
- 18.1 | ||
- 18.0 | ||
script: | ||
- ./rebar3 compile |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# egambo - Electronic Game Board | ||
|
||
[![Build Status](https://travis-ci.org/K2InformaticsGmbH/sqlparse.svg?branch=master)](https://travis-ci.org/K2InformaticsGmbH/sqlparse) | ||
|
||
# Release Notes | ||
|
||
## Version 1.0.0 | ||
|
||
Release Date: dd.mm.2017 | ||
|
||
### Bugs: | ||
|
||
- xxxx | ||
|
||
### Features new: | ||
|
||
- xxxx | ||
|
||
### Features modified: | ||
|
||
- xxxx | ||
|
||
### Features removed: | ||
|
||
- xxxx | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,34 @@ | ||
%%-*- mode: erlang -*- | ||
{cover_enabled, true}. | ||
{erl_opts, [{parse_transform, lager_transform} | ||
%% ,{parse_transform, imem_rec_pretty_pt} | ||
] | ||
}. | ||
{erl_first_files, ["src/egambo_gen_game.erl","src/egambo_gen_engine.erl"]}. | ||
|
||
{deps, [{dderl, ".*", {git, "https://github.com/K2InformaticsGmbH/dderl.git", {branch,"no_oci"}}} | ||
{ct_cover, true}. | ||
{ct_use_short_names, true}. | ||
{ct_verbose, true}. | ||
|
||
{deps, [ | ||
{dderl, {git, "https://github.com/walter-weinmann/dderl", {branch, "master"}}} | ||
]}. | ||
|
||
{deps_error_on_conflict, false}. | ||
|
||
{erl_first_files, [ | ||
"src/egambo_gen_engine.erl", | ||
"src/egambo_gen_game.erl" | ||
]}. | ||
{erl_opts, [ | ||
{parse_transform, lager_transform} | ||
%% {parse_transform, imem_rec_pretty_pt} | ||
]}. | ||
|
||
{eunit_opts, [ | ||
{skip_deps, true}, | ||
verbose | ||
]}. | ||
|
||
{xref_checks, [ | ||
deprecated_functions, | ||
deprecated_function_calls, | ||
exports_not_used, | ||
locals_not_used, | ||
undefined_functions, | ||
undefined_function_calls | ||
]}. |
Oops, something went wrong.