-
Notifications
You must be signed in to change notification settings - Fork 21
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 #11 from jtendo/rebar3
Support rebar3 + hex + R15B..19
- Loading branch information
Showing
7 changed files
with
66 additions
and
32 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,7 +1,8 @@ | ||
.eunit | ||
ebin | ||
deps | ||
priv | ||
*.o | ||
*.beam | ||
rebar | ||
_build | ||
*.xml |
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,5 +1,12 @@ | ||
language: erlang | ||
|
||
otp_release: | ||
- R15B02 | ||
- R15B01 | ||
- R15B | ||
- R16B03 | ||
- 17.0 | ||
- 18.0 | ||
- 19.0 | ||
|
||
install: wget https://s3.amazonaws.com/rebar3/rebar3 && chmod 755 rebar3 | ||
|
||
script: ./rebar3 eunit |
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,13 @@ | ||
|
||
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | ||
Version 2, December 2004 | ||
|
||
Copyright (C) 2011 Adam Rutkowski <hq@mtod.org> | ||
|
||
Everyone is permitted to copy and distribute verbatim or modified | ||
copies of this license document, and changing it is allowed as long | ||
as the name is changed. | ||
|
||
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | ||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION | ||
|
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,6 +1,10 @@ | ||
{erl_opts, [warnings_as_errors]}. | ||
{erl_opts,[warnings_as_errors, | ||
{platform_define, "^(19|2)", rand_only} | ||
]}. | ||
|
||
{cover_enabled, true}. | ||
{cover_print_enabled, true}. | ||
{eunit_opts, [verbose, | ||
{report, {eunit_surefire, [{dir, "."}]}}]}. | ||
|
||
{plugins, [rebar3_hex]}. |
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 @@ | ||
[]. |
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,6 +1,11 @@ | ||
{application, binpp, [ | ||
{description, "Erlang Binary Pretty Printer"}, | ||
{vsn, "1.1"}, | ||
{vsn, "1.1.1"}, | ||
{registered, []}, | ||
{applications, [kernel, stdlib]} | ||
{applications, [kernel, stdlib]}, | ||
{env, []}, | ||
{modules, []}, | ||
{maintainers, ["Adam Rutkowski"]}, | ||
{licenses, ["WTFPL"]}, | ||
{links, [{"Github", "https://github.com/jtendo/binpp"}]} | ||
]}. |
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