Jonathan Wight
Jonathan Wight
Any chance of a side-by-side comparison with click (http://click.pocoo.org/3/)? Why use clip.py instead of click? Thanks!
See title
Exactly what does the cache use to store data on disk? Is it CoreData, plain sqlite, even plainer files, is it something else altogether? What are the pros/cons of the...
Merging multiple signals means you end up with a "lops sided" tuple. Is there a better way to merge multiple signals? ``` let signal = Signal("Hello") signal.merge(Signal("world")) .merge(Signal("how are you?"))...
It would be really nice if DCIntrospect could be fully disabled at compile time without removing the code from Xcode or performing other Xcode setting gymnastics. We wrap DCIntrospect starting...
This seems to be what I was seeing with #19. I have a very simple and freshly generated package: ``` Example/Package.swift Example/Sources/Example/Example.swift ``` `Example.swift` contains: ~~~swift /* ```swift doctest answer()...
I'd love to be able to just ```swift doctest .``` and have it run recursively on all swift files under my CWD.
As a big fan of python doctests I actually had a proof of concept swift doctest working a few years ago. I didn’t get much beyond proof of concept (although...
Imports UIKit for macOS (I presume for UIImage?)
Archive files and config files sharing a common directory is problematic for various reasons (need to add pretty crude patterns to .gitignore, etc) I'd love a --archive-root or similar option...