Skip to content

Commit 4094558

Browse files
author
Alex Taffe
authored
Remove IBM references from README (#131)
1 parent ebf90f9 commit 4094558

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
<a href="https://ibm-swift.github.io/Swift-Kuery-ORM/index.html">
1010
<img src="https://img.shields.io/badge/apidoc-SwiftKueryORM-1FBCE4.svg?style=flat" alt="APIDoc">
1111
</a>
12-
<a href="https://travis-ci.org/IBM-Swift/Swift-Kuery-ORM">
13-
<img src="https://travis-ci.org/IBM-Swift/Swift-Kuery-ORM.svg?branch=master" alt="Build Status - Master">
12+
<a href="https://travis-ci.org/Kitura/Swift-Kuery-ORM">
13+
<img src="https://travis-ci.org/Kitura/Swift-Kuery-ORM.svg?branch=master" alt="Build Status - Master">
1414
</a>
1515
<img src="https://img.shields.io/badge/os-macOS-green.svg?style=flat" alt="macOS">
1616
<img src="https://img.shields.io/badge/os-linux-green.svg?style=flat" alt="Linux">
@@ -24,7 +24,7 @@
2424

2525
Swift-Kuery-ORM is an ORM (Object Relational Mapping) library built for Swift. Using it allows you to simplify persistence of model objects with your server.
2626

27-
Swift-Kuery-ORM is built on top of [Swift-Kuery](http://github.com/IBM-Swift/Swift-Kuery), which means that its possible to use Swift-Kuery to customize SQL queries made to the database, if the functionality of the ORM is insufficient.
27+
Swift-Kuery-ORM is built on top of [Swift-Kuery](http://github.com/Kitura/Swift-Kuery), which means that its possible to use Swift-Kuery to customize SQL queries made to the database, if the functionality of the ORM is insufficient.
2828

2929
## The Model Protocol
3030
The key component of Swift-Kuery-ORM is the protocol `Model`.
@@ -62,18 +62,18 @@ The `Model` protocol is the key to using the ORM. Let's walk through how to full
6262

6363
## Example
6464

65-
Follow [Getting Started](https://www.kitura.io/guides/gettingstarted.html) to create a Kitura server. In this example you'll be using the [Swift Kuery PostgreSQL plugin](https://github.com/IBM-Swift/Swift-Kuery-PostgreSQL), so you will need PostgreSQL running on your local machine, which you can install with `brew install postgresql`. The default port for PostgreSQL is 5432.
65+
Follow [Getting Started](https://www.kitura.io/guides/gettingstarted.html) to create a Kitura server. In this example you'll be using the [Swift Kuery PostgreSQL plugin](https://github.com/Kitura/Swift-Kuery-PostgreSQL), so you will need PostgreSQL running on your local machine, which you can install with `brew install postgresql`. The default port for PostgreSQL is 5432.
6666

6767
### Update your Package.swift file
6868

69-
Add Swift-Kuery-ORM and Swift-Kuery-PostgreSQL to your application's `Package.swift`. Substitute `"x.x.x"` with the latest `Swift-Kuery-ORM` [release](https://github.com/IBM-Swift/Swift-Kuery-ORM/releases) and the latest `Swift-Kuery-PostgreSQL` [release](https://github.com/IBM-Swift/Swift-Kuery-PostgreSQL/releases).
69+
Add Swift-Kuery-ORM and Swift-Kuery-PostgreSQL to your application's `Package.swift`. Substitute `"x.x.x"` with the latest `Swift-Kuery-ORM` [release](https://github.com/Kitura/Swift-Kuery-ORM/releases) and the latest `Swift-Kuery-PostgreSQL` [release](https://github.com/Kitura/Swift-Kuery-PostgreSQL/releases).
7070

7171
```swift
7272
dependencies: [
7373
...
7474
// Add these two lines
75-
.package(url: "https://github.com/IBM-Swift/Swift-Kuery-ORM.git", from: "x.x.x"),
76-
.package(url: "https://github.com/IBM-Swift/Swift-Kuery-PostgreSQL.git", from: "x.x.x"),
75+
.package(url: "https://github.com/Kitura/Swift-Kuery-ORM.git", from: "x.x.x"),
76+
.package(url: "https://github.com/Kitura/Swift-Kuery-PostgreSQL.git", from: "x.x.x"),
7777
],
7878
targets: [
7979
.target(
@@ -289,7 +289,7 @@ Person.getOverTwenties() { result, error in
289289
}
290290
```
291291

292-
If you'd like to learn more about how you can customize queries, check out the [Swift-Kuery](https://github.com/IBM-Swift/Swift-Kuery) repository for more information.
292+
If you'd like to learn more about how you can customize queries, check out the [Swift-Kuery](https://github.com/Kitura/Swift-Kuery) repository for more information.
293293

294294
## Model Identifiers
295295

@@ -417,11 +417,11 @@ struct Person: Model {
417417

418418
## List of plugins
419419

420-
* [PostgreSQL](https://github.com/IBM-Swift/Swift-Kuery-PostgreSQL)
420+
* [PostgreSQL](https://github.com/Kitura/Swift-Kuery-PostgreSQL)
421421

422-
* [SQLite](https://github.com/IBM-Swift/Swift-Kuery-SQLite)
422+
* [SQLite](https://github.com/Kitura/Swift-Kuery-SQLite)
423423

424-
* [MySQL](https://github.com/IBM-Swift/SwiftKueryMySQL)
424+
* [MySQL](https://github.com/Kitura/SwiftKueryMySQL)
425425

426426
## API Documentation
427427
For more information visit our [API reference](https://ibm-swift.github.io/Swift-Kuery-ORM/index.html).

0 commit comments

Comments
 (0)