<div class="moz-text-plain" style="font-family: -moz-fixed; font-size: 12px;" lang="x-western"><pre>Lukas was kind enough to shed some light on the loading of rb and ob. </pre><pre>Having his permission, I&#39;m reproducing the bulk of the message. It is as follows:</pre>
<pre>&quot;Actually I just split the packages into more independent packages, I</pre><pre>didn&#39;t do any code changes lately. Some parts are going to be
integrated into the core of Pharo. You need to load all of them to get
the same system (and run the tests of course):

Gofer new
        squeaksource: &#39;rb&#39;;
        package: &#39;AST-Core&#39;;
        package: &#39;AST-Semantic&#39;;
        package: &#39;Refactoring-Core&#39;;
        package: &#39;Refactoring-Changes&#39;;
        package: &#39;Refactoring-Critics&#39;;
        package: &#39;Refactoring-Environment&#39;;
        package: &#39;Refactoring-Spelling&#39;;
        load.
</pre><pre>Note that the OB code in this repository is highly outdated. I am too
lazy to copy it over to Colin all the time.

Gofer new
        renggli: &#39;omnibrowser&#39;;
        package: &#39;OmniBrowser&#39;;
        package: &#39;OB-Standard&#39;;
        package: &#39;OB-Morphic&#39;;
        package: &#39;OB-Shout&#39;;
        package: &#39;OB-Refactory&#39;;
        package: &#39;OB-Regex&#39;;
        package: &#39;OB-SUnitIntegration&#39;;
        load.

Gofer new
        renggli: &#39;unsorted&#39;;
        package: &#39;Shout&#39;;
        package: &#39;ShoutWorkspace&#39;;
        package: &#39;RoelTyper&#39;;
        package: &#39;ECompletion&#39;;
        package: &#39;ECompletionOmniBrowser&#39;;
        load.&quot;

Chris</pre></div>