fix build with new LeadKit
This commit is contained in:
parent
5937727493
commit
fa6684830e
|
|
@ -1,5 +1,9 @@
|
|||
# Changelog
|
||||
|
||||
### 0.2.7
|
||||
|
||||
- **Fix**: Build with new LeadKit 0.7.9
|
||||
|
||||
### 0.2.6
|
||||
|
||||
- **Update**: `DefaultNetworkService` supported `NetworkServiceConfiguration`
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = "LeadKitAdditions"
|
||||
s.version = "0.2.6"
|
||||
s.version = "0.2.7"
|
||||
s.summary = "iOS framework with a bunch of tools for rapid development"
|
||||
s.homepage = "https://github.com/TouchInstinct/LeadKitAdditions"
|
||||
s.license = "Apache License, Version 2.0"
|
||||
|
|
|
|||
20
Podfile.lock
20
Podfile.lock
|
|
@ -1,25 +1,20 @@
|
|||
PODS:
|
||||
- Alamofire (4.7.1)
|
||||
- CocoaLumberjack/Default (3.4.1)
|
||||
- CocoaLumberjack/Swift (3.4.1):
|
||||
- CocoaLumberjack/Default
|
||||
- IDZSwiftCommonCrypto (0.10.0)
|
||||
- InputMask (3.0.0)
|
||||
- KeychainAccess (3.1.0)
|
||||
- LeadKit (0.7.6):
|
||||
- LeadKit/Core (= 0.7.6)
|
||||
- LeadKit/Core (0.7.6):
|
||||
- CocoaLumberjack/Swift (~> 3.4)
|
||||
- ObjectMapper (~> 3.0)
|
||||
- LeadKit (0.7.9):
|
||||
- LeadKit/Core (= 0.7.9)
|
||||
- LeadKit/Core (0.7.9):
|
||||
- ObjectMapper (~> 3.1)
|
||||
- RxAlamofire (~> 4.1)
|
||||
- RxCocoa (~> 4.1)
|
||||
- RxSwift (~> 4.1)
|
||||
- SwiftDate (~> 4.5)
|
||||
- TableKit (~> 2.6)
|
||||
- UIScrollView-InfiniteScroll (~> 1.0.0)
|
||||
- LeadKit/Core-iOS-Extension (0.7.6):
|
||||
- CocoaLumberjack/Swift (~> 3.4)
|
||||
- ObjectMapper (~> 3.0)
|
||||
- LeadKit/Core-iOS-Extension (0.7.9):
|
||||
- ObjectMapper (~> 3.1)
|
||||
- RxAlamofire (~> 4.1)
|
||||
- RxCocoa (~> 4.1)
|
||||
- RxSwift (~> 4.1)
|
||||
|
|
@ -52,11 +47,10 @@ DEPENDENCIES:
|
|||
|
||||
SPEC CHECKSUMS:
|
||||
Alamofire: 68d7d521118d49c615a8d2214d87cdf525599d30
|
||||
CocoaLumberjack: 2e258a064cacc8eb9a2aca318e24d02a0a7fd56d
|
||||
IDZSwiftCommonCrypto: 4eef2c46e262dfbcbc1fd76365e066336680ad7d
|
||||
InputMask: 8b5c42acac19cd48fe664b739f30995103b75e75
|
||||
KeychainAccess: 94c5540b32eabf7bc32bfb976a268e8ea05fd6da
|
||||
LeadKit: 9e0a27cea8171a38b72bef7605ade92cd8a48217
|
||||
LeadKit: 1b74c4f9a4736a39b90119363e85468eca5c1b77
|
||||
ObjectMapper: 20505058f54e5c3ca69e1d6de9897d152a5369a6
|
||||
PinLayout: a2bbe9057d49a1e326b13dc4fe8c14751f8c8844
|
||||
RxAlamofire: 87a9c588541210cc3e4a1f843ccc3ecf3eb98b31
|
||||
|
|
|
|||
|
|
@ -22,7 +22,6 @@
|
|||
|
||||
import RxSwift
|
||||
import Alamofire
|
||||
import CocoaLumberjack
|
||||
import LeadKit
|
||||
|
||||
public typealias VoidBlock = () -> Void
|
||||
|
|
|
|||
|
|
@ -21,7 +21,6 @@
|
|||
//
|
||||
|
||||
import KeychainAccess
|
||||
import CocoaLumberjack
|
||||
import IDZSwiftCommonCrypto
|
||||
|
||||
private enum Keys {
|
||||
|
|
|
|||
Loading…
Reference in New Issue