Grigorii Entin
Grigorii Entin
This potentially fixes https://github.com/nektos/act/issues/1231.
This should fix https://github.com/SwiftGen/SwiftGen/issues/891, as well as slightly affect the performance due to no need to lowercase keys on every comparison during the sorting.
If .strings contains two keys that differ just by case, the order of entries in the generated .swift file is not stable from invocation to invocation. This is quite edge...
https://github.com/typelift/SwiftCheck/blob/9e53d13c02b48080894b8d6763010781c8cfdc3b/Sources/SwiftCheck/Random.swift#L84-L86 I wonder if it should be `(1, 2147483562)` or something like that (sorry, I have hard time figuring the exact numbers out). I mean, even though the type of...
This PR attempts to solve the problem of introducing unneeded changes in the snapshots for the projects that use "imprecise" matching, by avoiding recording a new version of a snapshot,...
## Context 🕵️♀️ Using XcodeProj, I created a [tool](https://github.com/grigorye/xcodeprojFixUUIDs) that enforces deterministic/changes-agnostic content of any given .xcodeproj (just by reading xcodeproj, invoking `xcodeproj.pbxproj.invalidateUUIDs()` and writing xcodeproj). See https://github.com/CocoaPods/CocoaPods/issues/9359#issuecomment-596304535 for the...
This addresses #157
https://github.com/DavydLiu/DLRadioButton/blob/6dbc9077e870c95a72287a4ee0ad0cb61e9d8ad0/DLRadioButton/DLRadioButton.m#L78 I'm trying to integrate DLRadioButton in our project and I'm adding snapshot tests for a view containing the button. I face the issue with snapshot not accounting the radio...
I'm currently in progress of working on a module inside a big project. The module is kept in a subfolder of the root where the project Podfile is located. I'm...