Skip to content

Commit

Permalink
Generate edocs via asciiedoc
Browse files Browse the repository at this point in the history
  • Loading branch information
norton committed Nov 22, 2012
1 parent 6f37682 commit 6b61f38
Show file tree
Hide file tree
Showing 5 changed files with 79 additions and 131 deletions.
57 changes: 27 additions & 30 deletions README.md
Expand Up @@ -16,14 +16,11 @@ purposes.</em></p>
please follow this recipe:</p>


<pre><tt>$ mkdir working-directory-name
<pre><code>$ mkdir working-directory-name
$ cd working-directory-name
$ git clone https://github.com/ubf/ubf-bertrpc.git ubf_bertrpc
$ cd ubf_bertrpc
$ ./rebar get-deps
$ ./rebar clean
$ ./rebar compile
$ ./rebar eunit</tt></pre>
$ make deps clean compile test</code></pre>

<p>For an alternative recipe with other "features" albeit more complex,
please read further.</p>
Expand Down Expand Up @@ -89,8 +86,8 @@ Configure your e-mail and name for Git
</p>


<pre><tt>$ git config \--global user.email "you@example.com"
$ git config \--global user.name "Your Name"</tt></pre>
<pre><code>$ git config \--global user.email "you@example.com"
$ git config \--global user.name "Your Name"</code></pre>

</li>
<li>
Expand All @@ -99,9 +96,9 @@ Install Repo
</p>


<pre><tt>$ mkdir -p ~/bin
<pre><code>$ mkdir -p ~/bin
$ wget -O - https://dl-ssl.google.com/dl/googlesource/git-repo/repo > ~/bin/repo
$ chmod a+x ~/bin/repo</tt></pre>
$ chmod a+x ~/bin/repo</code></pre>

</li>
<li>
Expand All @@ -110,9 +107,9 @@ Create working directory
</p>


<pre><tt>$ mkdir working-directory-name
<pre><code>$ mkdir working-directory-name
$ cd working-directory-name
$ repo init -u https://github.com/ubf/manifests.git -m ubf-bertrpc-default.xml</tt></pre>
$ repo init -u https://github.com/ubf/manifests.git -m ubf-bertrpc-default.xml</code></pre>


<table><tr>
Expand Down Expand Up @@ -141,12 +138,12 @@ Download Git repositories
</p>


<pre><tt>$ cd working-directory-name
$ repo sync</tt></pre>
<pre><code>$ cd working-directory-name
$ repo sync</code></pre>

</li>
</ol>
<p>For futher information and help for related tools, please refer to the
<p>For further information and help for related tools, please refer to the
following links:</p>
<ul>
<li>
Expand All @@ -156,7 +153,7 @@ Erlang - <a href="http://www.erlang.org/">http://www.erlang.org/</a>
<ul>
<li>
<p>
<strong>R13B04 or newer, R15B has been tested most recently</strong>
<strong>R13B04 or newer, R15B02 has been tested most recently</strong>
</p>
</li>
</ul>
Expand All @@ -168,7 +165,7 @@ Git - <a href="http://git-scm.com/">http://git-scm.com/</a>
<ul>
<li>
<p>
<strong>Git 1.5.4 or newer, Git 1.7.9.3 has been tested recently</strong>
<strong>Git 1.5.4 or newer, Git 1.8.0 has been tested most recently</strong>
</p>
</li>
<li>
Expand All @@ -190,7 +187,7 @@ Python - <a href="http://www.python.org">http://www.python.org</a>
<ul>
<li>
<p>
<strong>Python 2.4 or newer, Python 2.7.1 has been tested most recently
<strong>Python 2.4 or newer, Python 2.7.2 has been tested most recently
(CAUTION: Python 3.x might be too new)</strong>
</p>
</li>
Expand All @@ -203,12 +200,12 @@ Python - <a href="http://www.python.org">http://www.python.org</a>
</li>
<li>
<p>
Rebar - <a href="https://github.com/basho/rebar/wiki">https://github.com/basho/rebar/wiki</a>
Rebar - <a href="https://github.com/rebar/rebar/wiki">https://github.com/rebar/rebar/wiki</a>
</p>
</li>
<li>
<p>
Repo - <a href="http://source.android.com/source/git-repo.md">http://source.android.com/source/git-repo.html</a>
Repo - <a href="http://source.android.com/source/git-repo.html">http://source.android.com/source/git-repo.html</a>
</p>
</li>
</ul>
Expand All @@ -229,8 +226,8 @@ Build
</p>


<pre><tt>$ cd working-directory-name
$ make compile</tt></pre>
<pre><code>$ cd working-directory-name
$ make compile</code></pre>

</li>
<li>
Expand All @@ -239,8 +236,8 @@ Run the unit tests
</p>


<pre><tt>$ cd working-directory-name
$ make eunit</tt></pre>
<pre><code>$ cd working-directory-name
$ make eunit</code></pre>

</li>
</ol>
Expand All @@ -261,8 +258,8 @@ Build Dialyzer's PLT <em>(required once)</em>
</p>


<pre><tt>$ cd working-directory-name
$ make build-plt</tt></pre>
<pre><code>$ cd working-directory-name
$ make build-plt</code></pre>


<table><tr>
Expand All @@ -280,8 +277,8 @@ Dialyze with specs
</p>


<pre><tt>$ cd working-directory-name
$ make dialyze</tt></pre>
<pre><code>$ cd working-directory-name
$ make dialyze</code></pre>


<table><tr>
Expand All @@ -301,8 +298,8 @@ Dialyze without specs
</p>


<pre><tt>$ cd working-directory-name
$ make dialyze-nospec</tt></pre>
<pre><code>$ cd working-directory-name
$ make dialyze-nospec</code></pre>

</li>
</ol>
Expand All @@ -314,7 +311,7 @@ $ make dialyze-nospec</tt></pre>
<h2 id="_credits">Credits</h2>

<p>Many, many thanks to Joe Armstrong, UBF's designer and original
implementor.</p>
implementer.</p>
<p>Gemini Mobile Technologies, Inc. has approved the release of this
repository under an MIT license.</p>

Expand Down
57 changes: 27 additions & 30 deletions doc/README.md
Expand Up @@ -16,14 +16,11 @@ purposes.</em></p>
please follow this recipe:</p>


<pre><tt>$ mkdir working-directory-name
<pre><code>$ mkdir working-directory-name
$ cd working-directory-name
$ git clone https://github.com/ubf/ubf-bertrpc.git ubf_bertrpc
$ cd ubf_bertrpc
$ ./rebar get-deps
$ ./rebar clean
$ ./rebar compile
$ ./rebar eunit</tt></pre>
$ make deps clean compile test</code></pre>

<p>For an alternative recipe with other "features" albeit more complex,
please read further.</p>
Expand Down Expand Up @@ -89,8 +86,8 @@ Configure your e-mail and name for Git
</p>


<pre><tt>$ git config \--global user.email "you@example.com"
$ git config \--global user.name "Your Name"</tt></pre>
<pre><code>$ git config \--global user.email "you@example.com"
$ git config \--global user.name "Your Name"</code></pre>

</li>
<li>
Expand All @@ -99,9 +96,9 @@ Install Repo
</p>


<pre><tt>$ mkdir -p ~/bin
<pre><code>$ mkdir -p ~/bin
$ wget -O - https://dl-ssl.google.com/dl/googlesource/git-repo/repo > ~/bin/repo
$ chmod a+x ~/bin/repo</tt></pre>
$ chmod a+x ~/bin/repo</code></pre>

</li>
<li>
Expand All @@ -110,9 +107,9 @@ Create working directory
</p>


<pre><tt>$ mkdir working-directory-name
<pre><code>$ mkdir working-directory-name
$ cd working-directory-name
$ repo init -u https://github.com/ubf/manifests.git -m ubf-bertrpc-default.xml</tt></pre>
$ repo init -u https://github.com/ubf/manifests.git -m ubf-bertrpc-default.xml</code></pre>


<table><tr>
Expand Down Expand Up @@ -141,12 +138,12 @@ Download Git repositories
</p>


<pre><tt>$ cd working-directory-name
$ repo sync</tt></pre>
<pre><code>$ cd working-directory-name
$ repo sync</code></pre>

</li>
</ol>
<p>For futher information and help for related tools, please refer to the
<p>For further information and help for related tools, please refer to the
following links:</p>
<ul>
<li>
Expand All @@ -156,7 +153,7 @@ Erlang - <a href="http://www.erlang.org/">http://www.erlang.org/</a>
<ul>
<li>
<p>
<strong>R13B04 or newer, R15B has been tested most recently</strong>
<strong>R13B04 or newer, R15B02 has been tested most recently</strong>
</p>
</li>
</ul>
Expand All @@ -168,7 +165,7 @@ Git - <a href="http://git-scm.com/">http://git-scm.com/</a>
<ul>
<li>
<p>
<strong>Git 1.5.4 or newer, Git 1.7.9.3 has been tested recently</strong>
<strong>Git 1.5.4 or newer, Git 1.8.0 has been tested most recently</strong>
</p>
</li>
<li>
Expand All @@ -190,7 +187,7 @@ Python - <a href="http://www.python.org">http://www.python.org</a>
<ul>
<li>
<p>
<strong>Python 2.4 or newer, Python 2.7.1 has been tested most recently
<strong>Python 2.4 or newer, Python 2.7.2 has been tested most recently
(CAUTION: Python 3.x might be too new)</strong>
</p>
</li>
Expand All @@ -203,12 +200,12 @@ Python - <a href="http://www.python.org">http://www.python.org</a>
</li>
<li>
<p>
Rebar - <a href="https://github.com/basho/rebar/wiki">https://github.com/basho/rebar/wiki</a>
Rebar - <a href="https://github.com/rebar/rebar/wiki">https://github.com/rebar/rebar/wiki</a>
</p>
</li>
<li>
<p>
Repo - <a href="http://source.android.com/source/git-repo.md">http://source.android.com/source/git-repo.html</a>
Repo - <a href="http://source.android.com/source/git-repo.html">http://source.android.com/source/git-repo.html</a>
</p>
</li>
</ul>
Expand All @@ -229,8 +226,8 @@ Build
</p>


<pre><tt>$ cd working-directory-name
$ make compile</tt></pre>
<pre><code>$ cd working-directory-name
$ make compile</code></pre>

</li>
<li>
Expand All @@ -239,8 +236,8 @@ Run the unit tests
</p>


<pre><tt>$ cd working-directory-name
$ make eunit</tt></pre>
<pre><code>$ cd working-directory-name
$ make eunit</code></pre>

</li>
</ol>
Expand All @@ -261,8 +258,8 @@ Build Dialyzer's PLT <em>(required once)</em>
</p>


<pre><tt>$ cd working-directory-name
$ make build-plt</tt></pre>
<pre><code>$ cd working-directory-name
$ make build-plt</code></pre>


<table><tr>
Expand All @@ -280,8 +277,8 @@ Dialyze with specs
</p>


<pre><tt>$ cd working-directory-name
$ make dialyze</tt></pre>
<pre><code>$ cd working-directory-name
$ make dialyze</code></pre>


<table><tr>
Expand All @@ -301,8 +298,8 @@ Dialyze without specs
</p>


<pre><tt>$ cd working-directory-name
$ make dialyze-nospec</tt></pre>
<pre><code>$ cd working-directory-name
$ make dialyze-nospec</code></pre>

</li>
</ol>
Expand All @@ -314,7 +311,7 @@ $ make dialyze-nospec</tt></pre>
<h2 id="_credits">Credits</h2>

<p>Many, many thanks to Joe Armstrong, UBF's designer and original
implementor.</p>
implementer.</p>
<p>Gemini Mobile Technologies, Inc. has approved the release of this
repository under an MIT license.</p>

Expand Down

0 comments on commit 6b61f38

Please sign in to comment.