Skip to content
This repository was archived by the owner on Dec 2, 2022. It is now read-only.

Commit c428cac

Browse files
committed
Update readme
1 parent 18c6516 commit c428cac

File tree

1 file changed

+7
-13
lines changed

1 file changed

+7
-13
lines changed

README.md

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,23 @@
11
![SlackKit](https://cloud.githubusercontent.com/assets/8311605/10260893/5ec60f96-694e-11e5-91fd-da6845942201.png)
22
## SlackKit: A Swift Slack Client Library
33
### Description
4-
This is a Slack client library for OS X, iOS, and tvOS written in Swift. It's intended to expose all of the functionality of Slack's [Real Time Messaging API](https://api.slack.com/rtm) as well as the [web APIs](https://api.slack.com/web) that are accessible to [bot users](https://api.slack.com/bot-users). SlackKit also supports Slack’s [OAuth 2.0](https://api.slack.com/docs/oauth) flow including the [Add to Slack](https://api.slack.com/docs/slack-button) and [Sign in with Slack](https://api.slack.com/docs/sign-in-with-slack) buttons, [incoming webhooks](https://api.slack.com/incoming-webhooks), [slash commands](https://api.slack.com/slash-commands), and [message buttons](https://api.slack.com/docs/message-buttons).
54

6-
SlackKit also has alpha support for: [Swift 3](https://github.com/pvzig/SlackKit/tree/swift3), [Linux](https://github.com/pvzig/SlackKit/tree/linux)
5+
This is the Swift 3 beta branch. It will continue to track the Xcode 8 beta releases until it is officially released, at which point Swift 3 will be merged down to the master branch.
6+
7+
SlackKit also supports: [Swift 2.2](https://github.com/pvzig/SlackKit/), [Linux](https://github.com/pvzig/SlackKit/tree/linux)
8+
9+
This is a Slack client library for OS X, iOS, and tvOS written in Swift. It's intended to expose all of the functionality of Slack's [Real Time Messaging API](https://api.slack.com/rtm) as well as the [web APIs](https://api.slack.com/web) that are accessible to [bot users](https://api.slack.com/bot-users). SlackKit also supports Slack’s [OAuth 2.0](https://api.slack.com/docs/oauth) flow including the [Add to Slack](https://api.slack.com/docs/slack-button) and [Sign in with Slack](https://api.slack.com/docs/sign-in-with-slack) buttons, [incoming webhooks](https://api.slack.com/incoming-webhooks), [slash commands](https://api.slack.com/slash-commands), and [message buttons](https://api.slack.com/docs/message-buttons).
710

811
#### Building the SlackKit Framework
912
To build the SlackKit project directly, first build the dependencies using Carthage or CocoaPods. To use the framework in your application, install it in one of the following ways:
1013

1114
### Installation
12-
#### CocoaPods
13-
Add the pod to your podfile:
14-
```
15-
pod 'SlackKit'
16-
```
17-
and run
18-
```
19-
pod install
20-
```
2115

2216
#### Carthage
2317

2418
Add SlackKit to your Cartfile:
2519
```
26-
github "pvzig/SlackKit" ~> 2.0
20+
github "https://github.com/pvzig/slackkit.git" "swift3"
2721
```
2822
and run
2923
```
@@ -42,7 +36,7 @@ import PackageDescription
4236

4337
let package = Package(
4438
dependencies: [
45-
.Package(url: "https://github.com/pvzig/SlackKit.git", majorVersion: 2)
39+
.Package(url: "https://github.com/pvzig/SlackKit.git", majorVersion: 3)
4640
]
4741
)
4842
```

0 commit comments

Comments
 (0)