Simon Whitty
Simon Whitty
I'd love xcbeautify to support this but while waiting I'm using this workaround. ๐งช Swift Testing Workaround Export JSON from xcresults: ``` % xcrun xcresulttool get test-results tests --path DerivedData/Logs/Test/Test-Project-2025.01.01_00-00-00-+0000.xcresult...
I just made up the syntax one day with some regrets now, but this was really just to allow routes to _any_ `HTTPMethod` `/foo` is equivalent to `* /foo` Using...
The other regret is interpreting a trailing `*` as a recursive subpath `/hello/*` matches both `/hello/fish` AND `/hello/fish/chips`. I would have now preferred to be explicit about this using `**`...
> The stringiness is good here Agreed, one may want to test using non standard methods for whatever reason.
I plan on pushing out 0.15.0 later this week which includes these changes.
Released in [0.15.0](https://github.com/swhitty/FlyingFox/releases/tag/0.15.0)
Ah nice, the[ preview/macro branch](https://github.com/swhitty/FlyingFox?tab=readme-ov-file#preview-macro-handler) provides a glimpse of what I want it to eventually achieve when macros become feasible to use in lightweight packages. My plan is to eventually...
Released in[ 0.15.0](https://github.com/swhitty/FlyingFox/releases/tag/0.15.0)
Thank you for reporting this @paulschmidt ๐๐ผ. It has been fixed on `main` branch and will be included in the next release.
Thank you for pointing this out ๐๐ผ I have added support for using absolute units for any position, size or coordinate within https://github.com/swhitty/SwiftDraw/pull/45 Relative units like % are trickier so...