Dave Anderson

Results 6 comments of Dave Anderson

Added a podspec for Cocoapods Added a completion block to setCenterPanel: so that after the center panel is set and has been shown the caller-provided completion block can occur

I did try that ```swift #!/usr/bin/swift sh import Basic // https://github.com/apple/swift-package-manager.git ~> 0.2.1 import Utility ``` Which yields ``` error: product dependency 'Basic' not found ``` Thanks!

In this case `Utility` depends on `Basic` so it turns out that the following works: ```swift #!/usr/bin/swift sh import Utility // https://github.com/apple/swift-package-manager.git ~> 0.3.0 // Note: Basic depends on Utility....

Vapor v4.92.3 does _not_ resolve the `produceMore0()` `preconditionFailure()`.

Also, this _does_ appear to be a the same issue as https://github.com/vapor/vapor/issues/2985

The workaround from #3084 of adding the header value after creating the response works, but is non-obvious and should not be necessary to be compliant with the RFC.