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

Commit c736545

Browse files
committed
Update readme
1 parent 3a03f74 commit c736545

File tree

2 files changed

+4
-18
lines changed

2 files changed

+4
-18
lines changed

.swift-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.2
1+
2.3

README.md

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
![SlackKit](https://cloud.githubusercontent.com/assets/8311605/10260893/5ec60f96-694e-11e5-91fd-da6845942201.png)
2-
3-
![Swift Version](https://img.shields.io/badge/Swift-2.2-orange.svg) ![Plaforms](https://img.shields.io/badge/Platforms-macOS,iOS,tvOS-lightgrey.svg) ![License MIT](https://img.shields.io/badge/License-MIT-lightgrey.svg) [![SwiftPM compatible](https://img.shields.io/badge/SwiftPM-compatible-brightgreen.svg)](https://github.com/apple/swift-package-manager) ![Pod Version](https://img.shields.io/badge/Pod-2.0.0-blue.svg) [![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-brightgreen.svg)](https://github.com/Carthage/Carthage)
2+
![Swift Version](https://img.shields.io/badge/Swift-2.3-orange.svg) ![Plaforms](https://img.shields.io/badge/Platforms-macOS,iOS,tvOS-lightgrey.svg) ![License MIT](https://img.shields.io/badge/License-MIT-lightgrey.svg) ![Pod Version](https://img.shields.io/badge/Pod-2.3.0-blue.svg) [![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-brightgreen.svg)](https://github.com/Carthage/Carthage)
43
## SlackKit: A Swift Slack Client Library
54
### Description
65
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).
76

8-
SlackKit also has alpha support for: [Swift 3](https://github.com/pvzig/SlackKit/tree/swift3), [Linux](https://github.com/pvzig/SlackKit/tree/linux)
7+
This is the Swift 2.3 branch of SlackKit. SlackKit also has support for [Swift 3](https://github.com/pvzig/SlackKit/tree/swift3) and [Linux](https://github.com/pvzig/SlackKit/tree/linux).
98

109
#### Building the SlackKit Framework
1110
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:
@@ -25,7 +24,7 @@ pod install
2524

2625
Add SlackKit to your Cartfile:
2726
```
28-
github "pvzig/SlackKit" ~> 2.0
27+
github "pvzig/SlackKit" ~> 2.3
2928
```
3029
and run
3130
```
@@ -37,19 +36,6 @@ carthage bootstrap --configuration "Debug"
3736
```
3837
Drag the built `SlackKit.framework` into your Xcode project.
3938

40-
#### Swift Package Manager
41-
Add SlackKit to your Package.swift
42-
```swift
43-
import PackageDescription
44-
45-
let package = Package(
46-
dependencies: [
47-
.Package(url: "https://github.com/pvzig/SlackKit.git", majorVersion: 2)
48-
]
49-
)
50-
```
51-
Run `swift build` on your application’s main directory.
52-
5339
To use the library in your project import it:
5440
```
5541
import SlackKit

0 commit comments

Comments
 (0)