Jump to page: 1 25  
Page
Thread overview
std.experimental.testing PR review
Apr 20, 2015
Atila Neves
Apr 20, 2015
Jacob Carlborg
Apr 20, 2015
Atila Neves
Apr 21, 2015
Jacob Carlborg
Apr 21, 2015
Atila Neves
Apr 21, 2015
Jacob Carlborg
Jun 01, 2015
Atila Neves
Jun 02, 2015
Jacob Carlborg
Jun 02, 2015
Daniel Kozák
Jun 02, 2015
extrawurst
Jun 02, 2015
Atila Neves
Jun 02, 2015
Atila Neves
Jun 02, 2015
Atila Neves
Jun 02, 2015
Jacob Carlborg
Jun 02, 2015
Atila Neves
Jun 02, 2015
ZombineDev
Jun 19, 2015
Atila Neves
Jun 22, 2015
Atila Neves
Jun 26, 2015
Atila Neves
Jun 26, 2015
Dicebot
Jun 26, 2015
Atila Neves
Jun 26, 2015
Dmitry Olshansky
Jun 26, 2015
David Gileadi
Jun 26, 2015
Jacob Carlborg
Jun 26, 2015
Atila Neves
Jun 26, 2015
Jacob Carlborg
Jun 26, 2015
Dicebot
Jun 27, 2015
Atila Neves
Jun 27, 2015
Dicebot
Jun 27, 2015
Atila Neves
Jun 27, 2015
Jacob Carlborg
Jun 27, 2015
Jacob Carlborg
Jun 27, 2015
Dicebot
Jun 03, 2015
Jacob Carlborg
Jun 03, 2015
Atila Neves
Jun 04, 2015
Jacob Carlborg
Jun 04, 2015
Atila Neves
Jun 03, 2015
Jacob Carlborg
Jun 03, 2015
Atila Neves
Jun 04, 2015
Jacob Carlborg
Jun 26, 2015
Adam D. Ruppe
Jun 26, 2015
Atila Neves
Jul 20, 2015
Atila Neves
Jul 22, 2015
Atila Neves
Jul 22, 2015
Jacob Carlborg
Jul 24, 2015
Atila Neves
Jul 22, 2015
Brad Anderson
April 20, 2015
Original library: http://code.dlang.org/packages/unit-threaded
PR: https://github.com/D-Programming-Language/phobos/pull/3207

It's my first Phobos PR, I tried reading the wiki and doing what's required but bear with me if I've screwed up somehow.

I wasn't sure whether or not to split the PR. In the end I just took the existing library, edited it a lot and got it ready for review.

Unit test blocks can be named with @Name. They execute in parallel by default but that's only if the default runner is used.

Atila
April 20, 2015
On 2015-04-20 15:28, Atila Neves wrote:
> Original library: http://code.dlang.org/packages/unit-threaded
> PR: https://github.com/D-Programming-Language/phobos/pull/3207
>
> It's my first Phobos PR, I tried reading the wiki and doing what's
> required but bear with me if I've screwed up somehow.

Any new module must go through the review queue [1]. Ask here in the newsgroup for a review on the code. Generated documetnation and code should be available for the module. A review manager will volunteer to manage the review. When a module has been approved, first then should a pull request be created.

[1] http://wiki.dlang.org/Review_Queue

-- 
/Jacob Carlborg
April 20, 2015
On Monday, 20 April 2015 at 13:50:59 UTC, Jacob Carlborg wrote:
> On 2015-04-20 15:28, Atila Neves wrote:
>> Original library: http://code.dlang.org/packages/unit-threaded
>> PR: https://github.com/D-Programming-Language/phobos/pull/3207
>>
>> It's my first Phobos PR, I tried reading the wiki and doing what's
>> required but bear with me if I've screwed up somehow.
>
> Any new module must go through the review queue [1]. Ask here in the newsgroup for a review on the code. Generated documetnation and code should be available for the module. A review manager will volunteer to manage the review. When a module has been approved, first then should a pull request be created.
>
> [1] http://wiki.dlang.org/Review_Queue

I saw links to PRs past with generated docs but have/had no
idea how to get a similar result. Besides the html make target,
what is it a person has to do exactly? I'm going to edit the wiki
with this information as well.

Atila
April 21, 2015
On 2015-04-20 16:29, Atila Neves wrote:

> I saw links to PRs past with generated docs but have/had no
> idea how to get a similar result. Besides the html make target,
> what is it a person has to do exactly? I'm going to edit the wiki
> with this information as well.

Some developer use Ddox [1], some use the same way as Phobos uses. I think it's enough to add you're files to Phobos (including the makefiles) and the generate the documentation using "make" in the dlang.org repository.

[1] https://github.com/rejectedsoftware/ddox

-- 
/Jacob Carlborg
April 21, 2015
On Monday, 20 April 2015 at 14:29:33 UTC, Atila Neves wrote:
> I saw links to PRs past with generated docs but have/had no
> idea how to get a similar result. Besides the html make target,
> what is it a person has to do exactly? I'm going to edit the wiki

http://wiki.dlang.org/Building_DMD#Building_the_Docs
April 21, 2015
On Tuesday, 21 April 2015 at 08:17:37 UTC, Robert burner Schadek wrote:
> On Monday, 20 April 2015 at 14:29:33 UTC, Atila Neves wrote:
>> I saw links to PRs past with generated docs but have/had no
>> idea how to get a similar result. Besides the html make target,
>> what is it a person has to do exactly? I'm going to edit the wiki
>
> http://wiki.dlang.org/Building_DMD#Building_the_Docs

This part I'd figured out; it's the getting it online for others to see (and the need to do this as part of the PR) I had troubles with.

I did a lot of google searches for "site:dlang.org std.experimental.logger" ;)

Atila
April 21, 2015
On Tuesday, 21 April 2015 at 13:18:59 UTC, Atila Neves wrote:
>
> This part I'd figured out; it's the getting it online for others to see (and the need to do this as part of the PR) I had troubles with.

I did use "github pages" https://pages.github.com/

April 21, 2015
On 2015-04-21 15:56, Robert burner Schadek wrote:

> I did use "github pages" https://pages.github.com/

I have used dropbox.

-- 
/Jacob Carlborg
June 01, 2015
I think I've addressed all comments now, except for Robert's one on whether or not multi-threading should be on by default. Also, after much toiling I've managed to get the docs up here:

http://atilaneves.github.io/phobos/phobos/std_experimental_testing.html

It really should be a lot easier to generate the docs. Anyway, please give it a look and destroy away.

Atila

On Monday, 20 April 2015 at 13:28:30 UTC, Atila Neves wrote:
> Original library: http://code.dlang.org/packages/unit-threaded
> PR: https://github.com/D-Programming-Language/phobos/pull/3207
>
> It's my first Phobos PR, I tried reading the wiki and doing what's required but bear with me if I've screwed up somehow.
>
> I wasn't sure whether or not to split the PR. In the end I just took the existing library, edited it a lot and got it ready for review.
>
> Unit test blocks can be named with @Name. They execute in parallel by default but that's only if the default runner is used.
>
> Atila

June 02, 2015
On 2015-06-01 18:38, Atila Neves wrote:
> I think I've addressed all comments now, except for Robert's one on
> whether or not multi-threading should be on by default. Also, after much
> toiling I've managed to get the docs up here:
>
> http://atilaneves.github.io/phobos/phobos/std_experimental_testing.html
>
> It really should be a lot easier to generate the docs. Anyway, please
> give it a look and destroy away.

I would like to have some more documentation, some more examples how to use this.

I think all UDA's should start with a lowercase character.

-- 
/Jacob Carlborg
« First   ‹ Prev
1 2 3 4 5