Garth Snyder

Results 32 comments of Garth Snyder

Also see [pull request #101](https://github.com/rroblak/seed_dump/pull/101). This is essentially the same as mschulkind's solution, but applied automatically, and only to auto-generated HABTM_\* models. Is there any case in which you would...

Yes, that would be nicer. But there's no guarantee that you can do it in any given case, is there?

[Pull request](https://github.com/rroblak/seed_dump/pull/102) submitted.

Try this: actions = UserAction.order("rand()").limit(100) users = actions.map(&:user).uniq SeedDump.dump(users, ...) SeedDump.dump(users, append: true, ...) The rand() part is for MySQL; I believe other databases use random().

I believe this is the same issue as #83. [Pull request](https://github.com/rroblak/seed_dump/pull/102) submitted.

Yes, that seems like a real issue and a potential concern. I agree that the docs should advise strongly against returning promises that have a default dispatcher unless there's a...

Great work, Doug - really nice mini example. I didn't play around with test 1 since 2 is simpler. But here's what's confusing to me about 2: if you take...

> Max: Asidedly, the test is absurdly long chain, IME they don't get this long in read code. Please correct me if I'm wrong in your experience. Only in RxSwift...

I looked through this too; I don't see how it's possible either. It seems pretty clear that `EmptyBox.sealant` isn't written outside a barrier and that handlers are never executed until...