|
1 | 1 | <p align="center"> |
2 | 2 | <a href="http://kitura.io/"> |
3 | | - <img src="https://raw.githubusercontent.com/IBM-Swift/Kitura/master/Sources/Kitura/resources/kitura-bird.svg?sanitize=true" height="100" alt="Kitura"> |
| 3 | + <img src="https://raw.githubusercontent.com/Kitura/Kitura/master/Sources/Kitura/resources/kitura-bird.svg?sanitize=true" height="100" alt="Kitura"> |
4 | 4 | </a> |
5 | 5 | </p> |
6 | 6 |
|
7 | 7 |
|
8 | 8 | <p align="center"> |
9 | | - <a href="https://ibm-swift.github.io/Swift-Kuery/index.html"> |
| 9 | + <a href="https://kitura.github.io/Swift-Kuery/index.html"> |
10 | 10 | <img src="https://img.shields.io/badge/apidoc-SwiftKuery-1FBCE4.svg?style=flat" alt="APIDoc"> |
11 | 11 | </a> |
12 | | - <a href="https://travis-ci.org/IBM-Swift/Swift-Kuery"> |
13 | | - <img src="https://travis-ci.org/IBM-Swift/Swift-Kuery.svg?branch=master" alt="Build Status - Master"> |
| 12 | + <a href="https://travis-ci.org/Kitura/Swift-Kuery"> |
| 13 | + <img src="https://travis-ci.org/Kitura/Swift-Kuery.svg?branch=master" alt="Build Status - Master"> |
14 | 14 | </a> |
15 | 15 | <img src="https://img.shields.io/badge/os-macOS-green.svg?style=flat" alt="macOS"> |
16 | 16 | <img src="https://img.shields.io/badge/os-linux-green.svg?style=flat" alt="Linux"> |
|
24 | 24 |
|
25 | 25 | `Swift-Kuery` is a pluggable SQL database driver/SDK abstraction layer. Its main idea is to unify the APIs to the various relational databases, providing a Swifty yet SQL-like API. This allows easy switching between databases and forms the basis for an Object-Relational Mapping (ORM) framework. |
26 | 26 |
|
27 | | -[Swift-Kuery-ORM](https://github.com/IBM-Swift/Swift-Kuery-ORM) is an ORM, built on top of Swift-Kuery, which allows you to simplify the persistence of model objects with your server. |
| 27 | +[Swift-Kuery-ORM](https://github.com/Kitura/Swift-Kuery-ORM) is an ORM, built on top of Swift-Kuery, which allows you to simplify the persistence of model objects with your server. |
28 | 28 |
|
29 | 29 | `Swift-Kuery` is an easy to learn, consumable framework that comes with a set of [implemented plugins](#list-of-plugins). |
30 | 30 |
|
|
44 | 44 | The latest version of Swift-Kuery requires **Swift 4.0** or newer. You can download this version of the Swift binaries by following this [link](https://swift.org/download/). Compatibility with other Swift versions is not guaranteed. |
45 | 45 |
|
46 | 46 | ## Usage |
47 | | -This example demonstrates how to execute an SQL query using `Swift-Kuery` with the [Swift-Kuery-PostgreSQL](https://github.com/IBM-Swift/Swift-Kuery-PostgreSQL) plugin. |
| 47 | +This example demonstrates how to execute an SQL query using `Swift-Kuery` with the [Swift-Kuery-PostgreSQL](https://github.com/Kitura/Swift-Kuery-PostgreSQL) plugin. |
48 | 48 |
|
49 | 49 | The starting point for this example is an existing Swift package. If you don't have one already, create and enter a directory named e.g. `SwiftKueryExample`. Now run the swift package's init command, to create an executable type, by running `swift package init --type executable`. |
50 | 50 |
|
@@ -72,14 +72,14 @@ The starting point for this example is an existing Swift package. If you don't h |
72 | 72 | ``` |
73 | 73 |
|
74 | 74 | ### Update your Package.swift file |
75 | | -Add Swift-Kuery and your Kuery plugin, in this case Swift-Kuery-PostgreSQL, to the dependencies within your application's `Package.swift` file. Substitute `"x.x.x"` with the latest `Swift-Kuery` [release](https://github.com/IBM-Swift/Swift-Kuery/releases) and `"y.y.y"` with the latest plugin [release](https://github.com/IBM-Swift/Swift-Kuery-PostgreSQL/releases). |
| 75 | +Add Swift-Kuery and your Kuery plugin, in this case Swift-Kuery-PostgreSQL, to the dependencies within your application's `Package.swift` file. Substitute `"x.x.x"` with the latest `Swift-Kuery` [release](https://github.com/Kitura/Swift-Kuery/releases) and `"y.y.y"` with the latest plugin [release](https://github.com/Kitura/Swift-Kuery-PostgreSQL/releases). |
76 | 76 |
|
77 | 77 | ```swift |
78 | 78 | dependencies: [ |
79 | 79 | ... |
80 | 80 | // Add this line |
81 | | - .package(url: "https://github.com/IBM-Swift/Swift-Kuery.git", from: "x.x.x"), |
82 | | - .package(url: "https://github.com/IBM-Swift/Swift-Kuery-PostgreSQL.git", from: "y.y.y"), |
| 81 | + .package(url: "https://github.com/Kitura/Swift-Kuery.git", from: "x.x.x"), |
| 82 | + .package(url: "https://github.com/Kitura/Swift-Kuery-PostgreSQL.git", from: "y.y.y"), |
83 | 83 | ], |
84 | 84 | targets: [ |
85 | 85 | .target( |
@@ -619,18 +619,18 @@ let query = Select(t2.c, from: t2) |
619 | 619 |
|
620 | 620 | ## List of plugins |
621 | 621 |
|
622 | | -* [PostgreSQL](https://github.com/IBM-Swift/Swift-Kuery-PostgreSQL) |
| 622 | +* [PostgreSQL](https://github.com/Kitura/Swift-Kuery-PostgreSQL) |
623 | 623 |
|
624 | | -* [SQLite](https://github.com/IBM-Swift/Swift-Kuery-SQLite) |
| 624 | +* [SQLite](https://github.com/Kitura/Swift-Kuery-SQLite) |
625 | 625 |
|
626 | | -* [MySQL](https://github.com/IBM-Swift/SwiftKueryMySQL) |
| 626 | +* [MySQL](https://github.com/Kitura/SwiftKueryMySQL) |
627 | 627 |
|
628 | 628 | ## API Documentation |
629 | | -For more information visit our [API reference](https://ibm-swift.github.io/Swift-Kuery/index.html). |
| 629 | +For more information visit our [API reference](https://kitura.github.io/Swift-Kuery/index.html). |
630 | 630 |
|
631 | 631 | ## Community |
632 | 632 |
|
633 | 633 | We love to talk server-side Swift, and Kitura. Join our [Slack](http://swift-at-ibm-slack.mybluemix.net/) to meet the team! |
634 | 634 |
|
635 | 635 | ## License |
636 | | -This library is licensed under Apache 2.0. Full license text is available in [LICENSE](https://github.com/IBM-Swift/Swift-Kuery/blob/master/LICENSE.txt). |
| 636 | +This library is licensed under Apache 2.0. Full license text is available in [LICENSE](https://github.com/Kitura/Swift-Kuery/blob/master/LICENSE.txt). |
0 commit comments