├── .gitignore ├── .travis.yml ├── LICENSE ├── LambdaKit.podspec ├── Makefile ├── Package.swift ├── README.md ├── Sources └── LambdaKit │ ├── AVAudioPlayer+LambdaKit.swift │ ├── AVSpeechSynthesizer+LambdaKit.swift │ ├── CADisplayLink+LambdaKit.swift │ ├── CLLocationManager+LambdaKit.swift │ ├── MFMailComposeViewController+LambdaKit.swift │ ├── MFMessageComposeViewController+LambdaKit.swift │ ├── NSObject+LambdaKit.swift │ ├── UIActivityItemProvider+LambdaKit.swift │ ├── UIBarButtonItem+LambdaKit.swift │ ├── UIControl+LambdaKit.swift │ ├── UIGestureRecognizer+LambdaKit.swift │ ├── UIImagePickerController+LambdaKit.swift │ └── WKWebView+LambdaKit.swift └── settings.xcconfig /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reflejo/LambdaKit/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reflejo/LambdaKit/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reflejo/LambdaKit/HEAD/LICENSE -------------------------------------------------------------------------------- /LambdaKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reflejo/LambdaKit/HEAD/LambdaKit.podspec -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reflejo/LambdaKit/HEAD/Makefile -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reflejo/LambdaKit/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reflejo/LambdaKit/HEAD/README.md -------------------------------------------------------------------------------- /Sources/LambdaKit/AVAudioPlayer+LambdaKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reflejo/LambdaKit/HEAD/Sources/LambdaKit/AVAudioPlayer+LambdaKit.swift -------------------------------------------------------------------------------- /Sources/LambdaKit/AVSpeechSynthesizer+LambdaKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reflejo/LambdaKit/HEAD/Sources/LambdaKit/AVSpeechSynthesizer+LambdaKit.swift -------------------------------------------------------------------------------- /Sources/LambdaKit/CADisplayLink+LambdaKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reflejo/LambdaKit/HEAD/Sources/LambdaKit/CADisplayLink+LambdaKit.swift -------------------------------------------------------------------------------- /Sources/LambdaKit/CLLocationManager+LambdaKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reflejo/LambdaKit/HEAD/Sources/LambdaKit/CLLocationManager+LambdaKit.swift -------------------------------------------------------------------------------- /Sources/LambdaKit/MFMailComposeViewController+LambdaKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reflejo/LambdaKit/HEAD/Sources/LambdaKit/MFMailComposeViewController+LambdaKit.swift -------------------------------------------------------------------------------- /Sources/LambdaKit/MFMessageComposeViewController+LambdaKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reflejo/LambdaKit/HEAD/Sources/LambdaKit/MFMessageComposeViewController+LambdaKit.swift -------------------------------------------------------------------------------- /Sources/LambdaKit/NSObject+LambdaKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reflejo/LambdaKit/HEAD/Sources/LambdaKit/NSObject+LambdaKit.swift -------------------------------------------------------------------------------- /Sources/LambdaKit/UIActivityItemProvider+LambdaKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reflejo/LambdaKit/HEAD/Sources/LambdaKit/UIActivityItemProvider+LambdaKit.swift -------------------------------------------------------------------------------- /Sources/LambdaKit/UIBarButtonItem+LambdaKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reflejo/LambdaKit/HEAD/Sources/LambdaKit/UIBarButtonItem+LambdaKit.swift -------------------------------------------------------------------------------- /Sources/LambdaKit/UIControl+LambdaKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reflejo/LambdaKit/HEAD/Sources/LambdaKit/UIControl+LambdaKit.swift -------------------------------------------------------------------------------- /Sources/LambdaKit/UIGestureRecognizer+LambdaKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reflejo/LambdaKit/HEAD/Sources/LambdaKit/UIGestureRecognizer+LambdaKit.swift -------------------------------------------------------------------------------- /Sources/LambdaKit/UIImagePickerController+LambdaKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reflejo/LambdaKit/HEAD/Sources/LambdaKit/UIImagePickerController+LambdaKit.swift -------------------------------------------------------------------------------- /Sources/LambdaKit/WKWebView+LambdaKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reflejo/LambdaKit/HEAD/Sources/LambdaKit/WKWebView+LambdaKit.swift -------------------------------------------------------------------------------- /settings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reflejo/LambdaKit/HEAD/settings.xcconfig --------------------------------------------------------------------------------