Thread overview
EMSI has a Github page
Jun 26, 2014
Brian Schott
Jun 27, 2014
Walter Bright
Jun 27, 2014
Robert Schadek
Jun 27, 2014
Jacob Carlborg
Jun 27, 2014
Dicebot
Jun 27, 2014
Brian Schott
Jun 27, 2014
Kagamin
Jun 27, 2014
Kagamin
Jun 27, 2014
Brian Schott
June 26, 2014
https://github.com/economicmodeling

Stuff that's been made available:
* D implementation of the DDoc macro processor
* Documentation generator that doesn't need the compiler
    - No more requirement to use all the -I options to just get docs.
    - Template constraints don't vanish.
    - size_t doesn't turn into ulong.
    - Javascript-based offline search.
* Containers library backed by std.allocator
    - Less sitting around waiting for the GC
June 27, 2014
On 6/26/2014 2:26 PM, Brian Schott wrote:
> https://github.com/economicmodeling
>
> Stuff that's been made available:
> * D implementation of the DDoc macro processor
> * Documentation generator that doesn't need the compiler
>      - No more requirement to use all the -I options to just get docs.
>      - Template constraints don't vanish.
>      - size_t doesn't turn into ulong.
>      - Javascript-based offline search.
> * Containers library backed by std.allocator
>      - Less sitting around waiting for the GC

Very nice. Thank you!
June 27, 2014
On 06/27/2014 09:16 AM, Walter Bright via Digitalmars-d-announce wrote:
> On 6/26/2014 2:26 PM, Brian Schott wrote:
>> https://github.com/economicmodeling
>>
>> Stuff that's been made available:
>> * D implementation of the DDoc macro processor
>> * Documentation generator that doesn't need the compiler
>>      - No more requirement to use all the -I options to just get docs.
>>      - Template constraints don't vanish.
>>      - size_t doesn't turn into ulong.
>>      - Javascript-based offline search.
>> * Containers library backed by std.allocator
>>      - Less sitting around waiting for the GC
>
> Very nice. Thank you!
Indeed, very nice!

but where is the dub package?
June 27, 2014
On 2014-06-26 23:26, Brian Schott wrote:
> * Documentation generator that doesn't need the compiler

Do you have any example of documentation generated with this tool?

-- 
/Jacob Carlborg
June 27, 2014
On Thursday, 26 June 2014 at 21:26:55 UTC, Brian Schott wrote:
> * Documentation generator that doesn't need the compiler

How does it relate to ddox?
June 27, 2014
https://github.com/economicmodeling/containers/blob/master/src/containers/dynamicarray.d#L72

Does this work? You try to remove new range instead of old one. Also you should remove old range only after you added new range, so that GC won't catch you in the middle.
June 27, 2014
And then it will still be able to catch you between realloc and addRange.
June 27, 2014
On Friday, 27 June 2014 at 20:33:22 UTC, Kagamin wrote:
> https://github.com/economicmodeling/containers/blob/master/src/containers/dynamicarray.d#L72
>
> Does this work? You try to remove new range instead of old one. Also you should remove old range only after you added new range, so that GC won't catch you in the middle.

The issue tracker is located here: https://github.com/economicmodeling/containers/issues
June 27, 2014
On Friday, 27 June 2014 at 12:31:09 UTC, Dicebot wrote:
> On Thursday, 26 June 2014 at 21:26:55 UTC, Brian Schott wrote:
>> * Documentation generator that doesn't need the compiler
>
> How does it relate to ddox?

DDOX uses the compiler's JSON output. This new documentation generator only looks at the code.