Skip to content

Commit f03304d

Browse files
committed
Merge pull request #12 from Carthage/swift-1.2
Swift 1.2b3
2 parents a42e9fe + c6d4212 commit f03304d

File tree

10 files changed

+18
-26
lines changed

10 files changed

+18
-26
lines changed

.travis.yml

-8
This file was deleted.

Cartfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
github "ReactiveCocoa/ReactiveCocoa" "swift-development"
2-
github "LlamaKit/LlamaKit" == 0.5
1+
github "ReactiveCocoa/ReactiveCocoa" "v3.0-alpha.2"
2+
github "LlamaKit/LlamaKit" ~> 0.6

Cartfile.private

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
github "Quick/Quick" ~> 0.2
2-
github "Quick/Nimble" ~> 0.3
1+
github "Quick/Quick" "master"
2+
github "Quick/Nimble" "master"
33
github "jspahrsummers/xcconfigs" >= 0.6

Cartfile.resolved

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
github "LlamaKit/LlamaKit" "v0.5.0"
2-
github "Quick/Nimble" "v0.3.0"
3-
github "Quick/Quick" "v0.2.2"
1+
github "LlamaKit/LlamaKit" "v0.6.0"
2+
github "Quick/Nimble" "6a679cbf20da3fe570c26296b3029dd168b72c00"
3+
github "Quick/Quick" "155f858bce082373fc60d0c0a63415bf336c676b"
44
github "jspahrsummers/xcconfigs" "0.7.2"
5-
github "ReactiveCocoa/ReactiveCocoa" "240140c14d023cdb49f4ddf9622c3131619b2197"
5+
github "ReactiveCocoa/ReactiveCocoa" "81860e1cc969f9224ac81d18ca3739d284553fb8"

Carthage/Checkouts/LlamaKit

Carthage/Checkouts/Nimble

Submodule Nimble updated 44 files

Carthage/Checkouts/ReactiveCocoa

Submodule ReactiveCocoa updated 36 files

ReactiveTask/Task.swift

+5-5
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ private final class Pipe {
121121
}
122122

123123
dispatch_io_set_low_water(channel, 1)
124-
dispatch_io_read(channel, 0, UInt.max, queue) { (done, data, error) in
124+
dispatch_io_read(channel, 0, Int.max, queue) { (done, data, error) in
125125
if let data = data {
126126
sendNext(observer, data)
127127
}
@@ -167,7 +167,7 @@ private final class Pipe {
167167
disposable.addDisposable(producerDisposable)
168168

169169
signal.observe(next: { data in
170-
let dispatchData = dispatch_data_create(data.bytes, UInt(data.length), queue, nil)
170+
let dispatchData = dispatch_data_create(data.bytes, data.length, queue, nil)
171171

172172
dispatch_io_write(channel, 0, dispatchData, queue) { (done, data, error) in
173173
if error != 0 {
@@ -201,7 +201,7 @@ private func aggregateDataReadFromPipe(pipe: Pipe, forwardingSink: SinkOf<NSData
201201
disposable.addDisposable(signalDisposable)
202202

203203
signal.observe(next: { data in
204-
forwardingSink?.put(data as NSData)
204+
forwardingSink?.put(data as! NSData)
205205

206206
if let existingBuffer = buffer {
207207
buffer = dispatch_data_create_concat(existingBuffer, data)
@@ -212,7 +212,7 @@ private func aggregateDataReadFromPipe(pipe: Pipe, forwardingSink: SinkOf<NSData
212212
sendError(observer, error)
213213
}, completed: {
214214
if let buffer = buffer {
215-
sendNext(observer, buffer as NSData)
215+
sendNext(observer, buffer as! NSData)
216216
} else {
217217
sendNext(observer, NSData())
218218
}
@@ -309,7 +309,7 @@ public func launchTask(taskDescription: TaskDescription, standardOutput: SinkOf<
309309
if terminationStatus == EXIT_SUCCESS {
310310
return success(stdoutData)
311311
} else {
312-
let errorString = (stderrData.length > 0 ? NSString(data: stderrData, encoding: NSUTF8StringEncoding) : nil)
312+
let errorString = (stderrData.length > 0 ? String(UTF8String: UnsafePointer<CChar>(stderrData.bytes)) : nil)
313313
return failure(.ShellTaskFailed(exitCode: terminationStatus, standardError: errorString))
314314
}
315315
}

ReactiveTaskTests/TaskSpec.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class TaskSpec: QuickSpec {
2727

2828
property <~ signal
2929
|> scan(NSData()) { (accum, data) in
30-
let buffer = accum.mutableCopy() as NSMutableData
30+
let buffer = accum.mutableCopy() as! NSMutableData
3131
buffer.appendData(data)
3232

3333
return buffer

0 commit comments

Comments
 (0)