Skip to content

Commit 7cedc53

Browse files
author
Alex Taffe
authored
Remove IBM references from README (#196)
1 parent f1204be commit 7cedc53

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<a href="https://www.kitura.io/packages.html#all">
33
<img src="https://img.shields.io/badge/docs-kitura.io-1FBCE4.svg" alt="APIDoc">
44
</a>
5-
<a href="https://travis-ci.org/IBM-Swift/BlueSocket">
6-
<img src="https://travis-ci.org/IBM-Swift/BlueSocket.svg?branch=master" alt="Build Status - Master">
5+
<a href="https://travis-ci.org/Kitura/BlueSocket">
6+
<img src="https://travis-ci.org/Kitura/BlueSocket.svg?branch=master" alt="Build Status - Master">
77
</a>
88
<img src="https://img.shields.io/badge/os-macOS-green.svg?style=flat" alt="macOS">
99
<img src="https://img.shields.io/badge/os-iOS-green.svg?style=flat" alt="iOS">
@@ -50,7 +50,7 @@ Socket framework for Swift using the Swift Package Manager. Works on iOS, macOS,
5050

5151
### Add-ins
5252

53-
* [BlueSSLService](https://github.com/IBM-Swift/BlueSSLService.git) can be used to add **SSL/TLS** support.
53+
* [BlueSSLService](https://github.com/Kitura/BlueSSLService.git) can be used to add **SSL/TLS** support.
5454
- If using this package, please note that the **libssl-dev** package is required to be installed when building on Linux.
5555

5656

@@ -83,14 +83,14 @@ To run the supplied unit tests for **Socket** from the command line:
8383
To include BlueSocket into a Swift Package Manager package, add it to the `dependencies` attribute defined in your `Package.swift` file. You can select the version using the `majorVersion` and `minor` parameters. For example:
8484
```
8585
dependencies: [
86-
.Package(url: "https://github.com/IBM-Swift/BlueSocket.git", majorVersion: <majorVersion>, minor: <minor>)
86+
.Package(url: "https://github.com/Kitura/BlueSocket.git", majorVersion: <majorVersion>, minor: <minor>)
8787
]
8888
```
8989

9090
#### Carthage
9191
To include BlueSocket in a project using Carthage, add a line to your `Cartfile` with the GitHub organization and project names and version. For example:
9292
```
93-
github "IBM-Swift/BlueSocket" ~> <majorVersion>.<minor>
93+
github "Kitura/BlueSocket" ~> <majorVersion>.<minor>
9494
```
9595

9696
#### CocoaPods
@@ -255,7 +255,7 @@ class EchoServer {
255255
var listenSocket: Socket? = nil
256256
var continueRunningValue = true
257257
var connectedSockets = [Int32: Socket]()
258-
let socketLockQueue = DispatchQueue(label: "com.ibm.serverSwift.socketLockQueue")
258+
let socketLockQueue = DispatchQueue(label: "com.kitura.serverSwift.socketLockQueue")
259259
var continueRunning: Bool {
260260
set(newValue) {
261261
socketLockQueue.sync {
@@ -448,7 +448,7 @@ import PackageDescription
448448
let package = Package(
449449
name: "EchoServer",
450450
dependencies: [
451-
.package(url: "https://github.com/IBM-Swift/BlueSocket.git", from:"1.0.8"),
451+
.package(url: "https://github.com/Kitura/BlueSocket.git", from:"1.0.8"),
452452
],
453453
targets: [
454454
.target(
@@ -466,7 +466,7 @@ import PackageDescription
466466
let package = Package(
467467
name: "EchoServer",
468468
dependencies: [
469-
.Package(url: "https://github.com/IBM-Swift/BlueSocket.git", majorVersion: 1, minor: 0),
469+
.Package(url: "https://github.com/Kitura/BlueSocket.git", majorVersion: 1, minor: 0),
470470
],
471471
exclude: ["EchoServer.xcodeproj"]
472472
)
@@ -487,4 +487,4 @@ We love to talk server-side Swift and Kitura. Join our [Slack](http://swift-at-i
487487

488488
## License
489489

490-
This library is licensed under Apache 2.0. Full license text is available in [LICENSE](https://github.com/IBM-Swift/BlueSocket/blob/master/LICENSE).
490+
This library is licensed under Apache 2.0. Full license text is available in [LICENSE](https://github.com/Kitura/BlueSocket/blob/master/LICENSE).

0 commit comments

Comments
 (0)