├── .gitignore ├── .swift-version ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── Safe.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── Safe.xcscheme ├── Safe ├── Info.plist ├── Safe.h └── Safe.swift ├── SafeTests ├── Info.plist └── SafeTests.swift └── SwiftSafe.podspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-archive/SwiftSafe/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-archive/SwiftSafe/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-archive/SwiftSafe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-archive/SwiftSafe/HEAD/README.md -------------------------------------------------------------------------------- /Safe.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-archive/SwiftSafe/HEAD/Safe.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Safe.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-archive/SwiftSafe/HEAD/Safe.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Safe.xcodeproj/xcshareddata/xcschemes/Safe.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-archive/SwiftSafe/HEAD/Safe.xcodeproj/xcshareddata/xcschemes/Safe.xcscheme -------------------------------------------------------------------------------- /Safe/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-archive/SwiftSafe/HEAD/Safe/Info.plist -------------------------------------------------------------------------------- /Safe/Safe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-archive/SwiftSafe/HEAD/Safe/Safe.h -------------------------------------------------------------------------------- /Safe/Safe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-archive/SwiftSafe/HEAD/Safe/Safe.swift -------------------------------------------------------------------------------- /SafeTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-archive/SwiftSafe/HEAD/SafeTests/Info.plist -------------------------------------------------------------------------------- /SafeTests/SafeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-archive/SwiftSafe/HEAD/SafeTests/SafeTests.swift -------------------------------------------------------------------------------- /SwiftSafe.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-archive/SwiftSafe/HEAD/SwiftSafe.podspec --------------------------------------------------------------------------------