fix dependencies

This commit is contained in:
Ivan Smolin 2017-10-18 19:34:32 +03:00
parent a1b9cc762d
commit 4772993e9b
2 changed files with 5 additions and 5 deletions

View File

@ -84,10 +84,10 @@ Pod::Spec.new do |s|
"Sources/Extensions/Array/Array+SeparatorRowBoxExtensions.swift"
]
ss.dependency "CocoaLumberjack/Swift", '~> 3.1.0'
ss.dependency "RxSwift", '4.0.0-beta.0'
ss.dependency "RxCocoa", '4.0.0-beta.0'
ss.dependency "RxAlamofire", :git => 'https://github.com/RxSwiftCommunity/RxAlamofire.git', :branch => 'master', :commit => 'c2fdccf8058d1a61f5fbb540054c21372de1151d'
ss.dependency "CocoaLumberjack/Swift", '~> 3.3.0'
ss.dependency "RxSwift", '4.0.0'
ss.dependency "RxCocoa", '4.0.0'
ss.dependency "RxAlamofire", '4.0.0'
ss.dependency "ObjectMapper", '~> 3.0.0'
ss.ios.dependency "TableKit", '~> 2.5.0'

View File

@ -59,7 +59,7 @@ public extension Sequence {
.map { (idx: $0.idx, results: try array[$0.range].map(transform)) }
}
.toArray()
.map { $0.sorted { $0.idx < $1.idx } .flatMap { $0.results } }
.map { $0.sorted { $0.idx < $1.idx }.flatMap { $0.results } }
}
}