gitextract_ksb492si/ ├── .gitignore ├── .swift-version ├── .swiftlint.yml ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Gemfile ├── ISSUE_TEMPLATE.md ├── LICENSE ├── LetterAvatarKit/ │ ├── Extensions/ │ │ ├── Character+LetterAvatarKit.swift │ │ ├── String+LetterAvatarKit.swift │ │ ├── UIColor+LetterAvatarKit.swift │ │ └── UIImage+LetterAvatarKit.swift │ ├── Info.plist │ ├── LetterAvatarBuilder.swift │ ├── LetterAvatarBuilderConfiguration.swift │ ├── LetterAvatarKit.h │ ├── LetterAvatarMaker.swift │ └── LetterAvatarMakerExtendable.swift ├── LetterAvatarKit.podspec ├── LetterAvatarKit.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata/ │ └── xcschemes/ │ └── LetterAvatarKit.xcscheme ├── LetterAvatarKitExample/ │ ├── LetterAvatarKitExample/ │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets/ │ │ │ └── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── LetterAvatarController.swift │ └── LetterAvatarKitExample.xcodeproj/ │ ├── project.pbxproj │ └── project.xcworkspace/ │ ├── contents.xcworkspacedata │ └── xcshareddata/ │ ├── IDEWorkspaceChecks.plist │ └── swiftpm/ │ └── Package.resolved ├── LetterAvatarKitObjcExample/ │ ├── LetterAvatarKitObjcExample/ │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets/ │ │ │ └── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ ├── LetterAvatarKitObjcExample.xcodeproj/ │ │ ├── project.pbxproj │ │ └── project.xcworkspace/ │ │ └── contents.xcworkspacedata │ ├── LetterAvatarKitObjcExample.xcworkspace/ │ │ └── contents.xcworkspacedata │ ├── Podfile │ └── Pods/ │ ├── Local Podspecs/ │ │ └── LetterAvatarKit.podspec.json │ ├── Pods.xcodeproj/ │ │ └── project.pbxproj │ └── Target Support Files/ │ ├── LetterAvatarKit/ │ │ ├── Info.plist │ │ ├── LetterAvatarKit-Info.plist │ │ ├── LetterAvatarKit-dummy.m │ │ ├── LetterAvatarKit-prefix.pch │ │ ├── LetterAvatarKit-umbrella.h │ │ ├── LetterAvatarKit.modulemap │ │ └── LetterAvatarKit.xcconfig │ └── Pods-LetterAvatarKitObjcExample/ │ ├── Info.plist │ ├── Pods-LetterAvatarKitObjcExample-Info.plist │ ├── Pods-LetterAvatarKitObjcExample-acknowledgements.markdown │ ├── Pods-LetterAvatarKitObjcExample-acknowledgements.plist │ ├── Pods-LetterAvatarKitObjcExample-dummy.m │ ├── Pods-LetterAvatarKitObjcExample-frameworks.sh │ ├── Pods-LetterAvatarKitObjcExample-resources.sh │ ├── Pods-LetterAvatarKitObjcExample-umbrella.h │ ├── Pods-LetterAvatarKitObjcExample.debug.xcconfig │ ├── Pods-LetterAvatarKitObjcExample.modulemap │ └── Pods-LetterAvatarKitObjcExample.release.xcconfig ├── LetterAvatarKitTests/ │ ├── Extensions/ │ │ ├── Character+LetterAvatarKitTests.swift │ │ ├── String+LetterAvatarKitTests.swift │ │ ├── UIColor+LetterAvatarKitTests.swift │ │ └── UIImage+LetterAvatarKitTests.swift │ ├── Info.plist │ ├── LetterAvatarBuilderTests.swift │ ├── LetterAvatarMakerTests.swift │ └── Utilities/ │ └── UIImage+Compare.swift ├── PULL_REQUEST_TEMPLATE.md ├── Package.swift ├── README.md ├── docs/ │ ├── Classes/ │ │ ├── LetterAvatarBuilder.html │ │ └── LetterAvatarBuilderConfiguration.html │ ├── Classes.html │ ├── Extensions/ │ │ ├── UIColor.html │ │ └── UIImage.html │ ├── Extensions.html │ ├── css/ │ │ ├── highlight.css │ │ └── jazzy.css │ ├── docsets/ │ │ ├── LetterAvatarKit.docset/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ └── Resources/ │ │ │ ├── Documents/ │ │ │ │ ├── Classes/ │ │ │ │ │ ├── LetterAvatarBuilder.html │ │ │ │ │ └── LetterAvatarBuilderConfiguration.html │ │ │ │ ├── Classes.html │ │ │ │ ├── Extensions/ │ │ │ │ │ ├── UIColor.html │ │ │ │ │ └── UIImage.html │ │ │ │ ├── Extensions.html │ │ │ │ ├── css/ │ │ │ │ │ ├── highlight.css │ │ │ │ │ └── jazzy.css │ │ │ │ ├── index.html │ │ │ │ ├── js/ │ │ │ │ │ └── jazzy.js │ │ │ │ └── search.json │ │ │ └── docSet.dsidx │ │ └── LetterAvatarKit.tgz │ ├── index.html │ ├── js/ │ │ └── jazzy.js │ ├── search.json │ └── undocumented.json ├── fastlane/ │ ├── Appfile │ ├── Fastfile │ └── README.md └── scripts/ └── generate_docs.sh