├── .gitignore ├── LICENSE.md ├── Package.swift ├── README.md ├── Sources └── StringLocationConverter │ ├── Location.swift │ └── StringLocationConverter.swift └── Tests ├── LinuxMain.swift └── StringLocationConverterTests ├── StringLocationConverterTests.swift └── XCTestManifests.swift /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | xcuserdata/ 6 | .swiftpm 7 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/StringLocationConverter/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/StringLocationConverter/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/StringLocationConverter/HEAD/README.md -------------------------------------------------------------------------------- /Sources/StringLocationConverter/Location.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/StringLocationConverter/HEAD/Sources/StringLocationConverter/Location.swift -------------------------------------------------------------------------------- /Sources/StringLocationConverter/StringLocationConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/StringLocationConverter/HEAD/Sources/StringLocationConverter/StringLocationConverter.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/StringLocationConverter/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/StringLocationConverterTests/StringLocationConverterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/StringLocationConverter/HEAD/Tests/StringLocationConverterTests/StringLocationConverterTests.swift -------------------------------------------------------------------------------- /Tests/StringLocationConverterTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftDocOrg/StringLocationConverter/HEAD/Tests/StringLocationConverterTests/XCTestManifests.swift --------------------------------------------------------------------------------