Kyle Fuller
Kyle Fuller
This has been un-deprecated, not sure if this changes anything in the guides. Filing this so it's taken look at. https://github.com/CocoaPods/CocoaPods/commit/7840787e05af
See https://github.com/CocoaPods/CocoaPods/issues/2679#event-185126343 for context
Looking at this log shows we're doing dozens of queries for this single resource. I think we could get this down to one or two queries using a JOIN. ```...
People shouldn't be able to submit a pod we don't know about. Such as a pod that depends on a private pod. It will pass linting locally because I might...
We should have a repo which is the result of pod-template which specific arguments. Then a test that runs though the same options and then does a diff on output....
I've done similar in the past where I've used a JSON Schema to provide a full schema for other files to be used during CI. This would give us a...
Comparing nicknames, channel names etc in various case mappings could be introduced into this test suite. ```swift class CaseMappingTests: XCTestCase { func testRFC1459EqualCompare() { let casemap = CaseMapping.rfc1459 XCTAssertEqual(casemap.compare("hello{}|", "HELLO[]\\"),...
I've seen in the wild servers send host mask components in the incorrect order. We should include a test to ensure that the support in wrong order is correct. ```swift...
For example, if `ascii` was used casemapping then `FOO!*@*` should match `[email protected]`, etc. Perhaps we would need to introduce a 'casemapping' option. All of the tests appear to be all...