update READMEs

This commit is contained in:
Ivan Smolin 2020-10-23 10:24:22 +03:00
parent e92b46eb51
commit dfbe18fedd
7 changed files with 25 additions and 14 deletions

View File

@ -8,4 +8,25 @@ This repository contains the following additional frameworks:
- [TIUIElements](TIUIElements) - bunch of of useful protocols and views.
- [OTPSwiftView](OTPSwiftView) - a fully customizable OTP view.
- [TISwiftUtils](TISwiftUtils) - a bunch of useful helpers for development.
- [TITableKitUtils](TITableKitUtils) - Set of helpers for TableKit classes.
## Installation
### SPM
```swift
dependencies: [
.package(url: "https://github.com/TouchInstinct/LeadKit.git", from: "x.y.z"),
],
```
### Cocoapods
```ruby
source 'https://github.com/TouchInstinct/Podspecs.git'
pod 'TISwiftUtils', 'x.y.z'
pod 'TIFoundationUtils', 'x.y.z'
# ...
```

View File

@ -18,7 +18,3 @@ final class ViewModel {
var hasFinishedOnboarding: Bool
}
```
# Installation via SPM
You can install this framework as a target of LeadKit.

View File

@ -20,8 +20,6 @@
// THE SOFTWARE.
//
import UIKit
public extension Optional where Wrapped == String {
var orEmpty: String {
self ?? ""

View File

@ -20,8 +20,6 @@
// THE SOFTWARE.
//
import Foundation
public extension Substring {
var string: String {
String(self)

View File

@ -20,8 +20,6 @@
// THE SOFTWARE.
//
import UIKit
/// Closure with custom arguments and return value.
public typealias Closure<Input, Output> = (Input) -> Output

View File

@ -0,0 +1,4 @@
# TITableKitUtils
Set of helpers for TableKit classes.

View File

@ -12,7 +12,3 @@ Core UI elements: protocols, views and helpers.
# Views
- [BaseInitializableView](BaseInitializableView/BaseInitializableView.swift) - UIView conformance to InitializableView.
# Installation via SPM
You can install this framework as a target of LeadKit.