gitextract_ssdk6qb7/ ├── .gitignore ├── Features.md ├── LICENSE ├── Makefile ├── README.md ├── apous.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ └── contents.xcworkspacedata │ └── xcshareddata/ │ └── xcschemes/ │ └── apous.xcscheme ├── misc/ │ ├── Components.plist │ └── scripts/ │ └── bootstrap.sh ├── samples/ │ ├── basic/ │ │ └── basic.swift │ ├── carthage/ │ │ ├── Cartfile │ │ └── main.swift │ ├── cocoapods/ │ │ ├── Podfile │ │ └── main.swift │ ├── multi/ │ │ ├── bar.swift │ │ ├── foo.swift │ │ └── main.swift │ ├── nested/ │ │ ├── main.swift │ │ └── os/ │ │ └── path/ │ │ ├── abspath.swift │ │ └── basename.swift │ └── shebang/ │ └── main.swift ├── src/ │ ├── ErrorCodes.swift │ ├── Tools.swift │ ├── Utils.swift │ ├── main.swift │ └── version.sh └── test/ ├── Info.plist └── Samples.swift