├── .bundle └── config ├── .gitignore ├── .swiftlint.yml ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── Assets └── XcodeSettings.png ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── Zephyr.swift └── Zephyr.podspec /.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_PATH: "vendor/bundle" 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/Zephyr/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/Zephyr/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/Zephyr/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Assets/XcodeSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/Zephyr/HEAD/Assets/XcodeSettings.png -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "cocoapods" 4 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/Zephyr/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/Zephyr/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/Zephyr/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/Zephyr/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Zephyr.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/Zephyr/HEAD/Sources/Zephyr.swift -------------------------------------------------------------------------------- /Zephyr.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtSabintsev/Zephyr/HEAD/Zephyr.podspec --------------------------------------------------------------------------------