Jared Sorge

Results 17 comments of Jared Sorge
trafficstars

Any update on this? I'd love to get back to warnings-as-errors but can't because of this issue.

I _think_ this may be fixed by PR #21. Mind checking out the branch and seeing if it works for you? I don't know if this repo is being maintained...

I created a new package and pushed a revision to it a couple fo days ago. It's using Swift 4.2 as the package version (the package is here: https://github.com/jsorge/maverick-models.git). When...

Thank you for pointing that out @nearfri!

No worries! I was actually able to get this working by using a static framework instead of a static library. It seems that frameworks in this situation works quite a...

In order to get things like autocomplete & validation there would have to be a vended framework that you could add to an Xcode project. It's quite a bit of...

I'd love to do something similar in my app where I want to have a helper CLI embedded in my app package, I'm just not sure how to do it...

I've gotten this working by doing 2 things: 1) add `embed: false` to the app's dependency on the CLI, and 2) this build phase: ``` postBuildScripts: - script: "ditto \"${SCRIPT_INPUT_FILE_0}\"...

Yeah I really just mimicked how XcodeGen does other copy files stages and adopted that for my own need! :joy: