Skip to content

Commit

Permalink
Update rebar (2.0.0-208-g32e67ef)
Browse files Browse the repository at this point in the history
  • Loading branch information
norton committed Oct 6, 2012
1 parent d495bdf commit b155d29
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 17 deletions.
8 changes: 2 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
*.app
*.beam
*.boot
*.log
*.script
.test/
.eunit/
deps/
ebin/
erl_crash.dump
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ Caution
</td>
<td class="content">If you manually run dialyzer with the "-r" option, execute
"make clean compile" first to avoid finding duplicate beam files
underneath rebar's .test directory. Check Makefile for further
underneath rebar's .eunit directory. Check Makefile for further
information.</td>
</tr></table>

Expand Down Expand Up @@ -398,7 +398,7 @@ Run 5,000 Redis Encoder/Decoder QuickCheck tests
</p>


<pre><tt>$ cd working-directory-name/deps/ubf_redis/.test
<pre><tt>$ cd working-directory-name/deps/ubf_redis/.eunit
$ erl -smp +A 5 -pz ../../ubf/ebin -pz ../../qc/ebin

1> ruf_tests:qc_run(5000).
Expand All @@ -418,7 +418,7 @@ Run 500 Redis Proxy QuickCheck tests
</p>


<pre><tt>$ cd working-directory-name/deps/ubf_redis/.test
<pre><tt>$ cd working-directory-name/deps/ubf_redis/.eunit
$ erl -smp +A 5 -pz ../../ubf/ebin -pz ../../qc/ebin

1> redis_proxy_tests:qc_run(500).
Expand Down
6 changes: 3 additions & 3 deletions doc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ Caution
</td>
<td class="content">If you manually run dialyzer with the "-r" option, execute
"make clean compile" first to avoid finding duplicate beam files
underneath rebar's .test directory. Check Makefile for further
underneath rebar's .eunit directory. Check Makefile for further
information.</td>
</tr></table>

Expand Down Expand Up @@ -398,7 +398,7 @@ Run 5,000 Redis Encoder/Decoder QuickCheck tests
</p>


<pre><tt>$ cd working-directory-name/deps/ubf_redis/.test
<pre><tt>$ cd working-directory-name/deps/ubf_redis/.eunit
$ erl -smp +A 5 -pz ../../ubf/ebin -pz ../../qc/ebin

1> ruf_tests:qc_run(5000).
Expand All @@ -418,7 +418,7 @@ Run 500 Redis Proxy QuickCheck tests
</p>


<pre><tt>$ cd working-directory-name/deps/ubf_redis/.test
<pre><tt>$ cd working-directory-name/deps/ubf_redis/.eunit
$ erl -smp +A 5 -pz ../../ubf/ebin -pz ../../qc/ebin

1> redis_proxy_tests:qc_run(500).
Expand Down
6 changes: 3 additions & 3 deletions doc/overview.edoc
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ $ make dialyze
+
CAUTION: If you manually run dialyzer with the "-r" option, execute
"make clean compile" first to avoid finding duplicate beam files
underneath rebar\'s .test directory. Check Makefile for further
underneath rebar\'s .eunit directory. Check Makefile for further
information.

3. Dialyze without specs
Expand Down Expand Up @@ -224,7 +224,7 @@ $ make eqc-compile
3. Run 5,000 Redis Encoder/Decoder QuickCheck tests
+
------
$ cd working-directory-name/deps/ubf_redis/.test
$ cd working-directory-name/deps/ubf_redis/.eunit
$ erl -smp +A 5 -pz ../../ubf/ebin -pz ../../qc/ebin

1> ruf_tests:qc_run(5000).
Expand All @@ -241,7 +241,7 @@ Ok, passed 5000 tests
4. Run 500 Redis Proxy QuickCheck tests
+
------
$ cd working-directory-name/deps/ubf_redis/.test
$ cd working-directory-name/deps/ubf_redis/.eunit
$ erl -smp +A 5 -pz ../../ubf/ebin -pz ../../qc/ebin

1> redis_proxy_tests:qc_run(500).
Expand Down
Binary file modified rebar
Binary file not shown.
4 changes: 2 additions & 2 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
]}.

%% Erlang compiler options
{erl_opts, [debug_info, warnings_as_errors
{erl_opts, [warnings_as_errors
]}.

%% Erlang edoc options for asciiedown_doclet
Expand All @@ -38,7 +38,7 @@
%% ]}.

%% Test Erlang files to compile before the rest.
{test_first_files, ["src/ubf_redis_types_plugin.erl"
{eunit_first_files, ["src/ubf_redis_types_plugin.erl"
, "src/ubf_redis_plugin.erl"
, "test/qc//ubf_redis_proxy_plugin.erl"
]}.
Expand Down

0 comments on commit b155d29

Please sign in to comment.