Skip to content

Commit 6c4a7e7

Browse files
author
Gordon Guthrie
committed
first commit
1 parent 7a80d84 commit 6c4a7e7

13 files changed

+4860
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ ebin
88
rel/example_project
99
.concrete/DEV_MODE
1010
.rebar
11+
*~

rebar

145 KB
Binary file not shown.

rebar.config

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
%% -*- erlang -*-
2+
{cover_enabled, true}.
3+
{erl_opts, [warnings_as_errors]}.
4+
5+
{eunit_opts, [
6+
no_tty, %% This turns off the default output, MUST HAVE
7+
{report, {eunit_progress, [colored, profile]}} %% Use `profile' to see test timing information
8+
%% Uses the progress formatter with ANSI-colored output
9+
]}.
10+
11+
{deps, []}.

src/bits.erl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/home/vagrant/riak/deps/bits/src/bits.erl

0 commit comments

Comments
 (0)