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

Commit

Permalink
Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
pvzig committed Mar 6, 2019
1 parent 5d7ac48 commit bde39be
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 23 deletions.
9 changes: 5 additions & 4 deletions SKClient/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Create a custom SlackKit client.

<details>
<summary><strong>Swift Package Manager</strong></summary>
Add SlackKit as a dependency to your `Package.swift` and specify `SKClient` as a target dependency:
Add SlackKit as a dependency to your <code>Package.swift</code> and specify SKClient as a target dependency:

```swift
import PackageDescription
Expand All @@ -31,22 +31,23 @@ let package = Package(
</details>
<details>
<summary><strong>Carthage</strong></summary>
Add SlackKit to your `Cartfile`:
Add SlackKit to your <code>Cartfile</code>:

```
github "pvzig/SlackKit"
```

and run

```
carthage bootstrap
```

Drag the built `SKClient.framework` and it's dependency `SKCore.framework` into your Xcode project.
Drag the built <code>SKClient.framework</code> and it's dependency <code>SKCore.framework</code> into your Xcode project.
</details>
<details>
<summary><strong>CocoaPods</strong></summary>
Add SKClient to your `Podfile`:
Add SKClient to your <code>Podfile</code>:

```
use_frameworks!
Expand Down
9 changes: 5 additions & 4 deletions SKRTMAPI/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Connect to the [Slack Real Time Messaging API](https://api.slack.com/rtm) in Swi
## Installation
<details>
<summary><strong>Swift Package Manager</strong></summary>
Add SlackKit as a dependency to your `Package.swift` and specify `SKRTMAPI` as a target dependency:
Add SlackKit as a dependency to your <code>Package.swift</code> and specify SKRTMAPI as a target dependency:

```swift
import PackageDescription
Expand Down Expand Up @@ -50,22 +50,23 @@ SKRTMAPI.dependencies = [
</details>
<details>
<summary><strong>Carthage</strong></summary>
Add SlackKit to your `Cartfile`:
Add SlackKit to your <code>Cartfile</code>:

```
github "pvzig/SlackKit"
```

and run

```
carthage bootstrap
```

Drag the built `SKRTMAPI.framework` and it's dependencies `SKCore.framework`, `SKWebAPI.framework`, and `Starscream.framework` into your Xcode project.
Drag the built <code>SKRTMAPI.framework</code> and it's dependencies <code>SKCore.framework</code>, <code>SKWebAPI.framework</code>, and <code>Starscream.framework</code> into your Xcode project.
</details>
<details>
<summary><strong>CocoaPods</strong></summary>
Add SKRTMAPI to your `Podfile`:
Add SKRTMAPI to your <code>Podfile</code>:

```
use_frameworks!
Expand Down
9 changes: 5 additions & 4 deletions SKServer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ A server-side Swift framework for creating Slack apps.
## Installation
<details>
<summary><strong>Swift Package Manager</strong></summary>
Add SlackKit as a dependency to your `Package.swift` and specify `SKServer` as a target dependency:
Add SlackKit as a dependency to your <code>Package.swift</code> and specify SKServer as a target dependency:

```swift
import PackageDescription
Expand All @@ -30,22 +30,23 @@ let package = Package(
</details>
<details>
<summary><strong>Carthage</strong></summary>
Add SlackKit to your `Cartfile`:
Add SlackKit to your <code>Cartfile</code>:

```
github "pvzig/SlackKit"
```

and run

```
carthage bootstrap
```

Drag the built `SKServer.framework` and it's dependencies `SKCore.framework`, `SKWebAPI.framework`, and `Swifter.framework` into your Xcode project.
Drag the built <code>SKServer.framework</code> and it's dependencies <code>SKCore.framework</code>, <code>SKWebAPI.framework</code>, and <code>Swifter.framework</code> into your Xcode project.
</details>
<details>
<summary><strong>CocoaPods</strong></summary>
Add SKServer to your `Podfile`:
Add SKServer to your <code>Podfile</code>:

```
use_frameworks!
Expand Down
9 changes: 5 additions & 4 deletions SKWebAPI/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Make requests to the [Slack Web API](https://api.slack.com/web) in Swift.

<details>
<summary><strong>Swift Package Manager</strong></summary>
Add SlackKit as a dependency to your `Package.swift` and specify `SKWebAPI` as a target dependency:
Add SlackKit as a dependency to your <code>Package.swift</code> and specify SKWebAPI as a target dependency:

```swift
import PackageDescription
Expand All @@ -32,22 +32,23 @@ let package = Package(
</details>
<details>
<summary><strong>Carthage</strong></summary>
Add SlackKit to your `Cartfile`:
Add SlackKit to your <code>Cartfile</code>:

```
github "pvzig/SlackKit"
```

and run

```
carthage bootstrap
```

Drag the built `SKWebAPI.framework` and it's dependency `SKCore.framework` into your Xcode project.
Drag the built <code>SKWebAPI.framework</code> and it's dependency <code>SKCore.framework</code> into your Xcode project.
</details>
<details>
<summary><strong>CocoaPods</strong></summary>
Add SKWebAPI to your `Podfile`:
Add SKWebAPI to your <code>Podfile</code>:

```
use_frameworks!
Expand Down
12 changes: 5 additions & 7 deletions SlackKit/README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
# SlackKit: Slack Apps in Swift


### Installation
## Installation
<details>
<summary><strong>Swift Package Manager</strong></summary>
Add `SlackKit` to your `Package.swift`
Add SlackKit to your <code>Package.swift</code>

```swift
let package = Package(
Expand All @@ -20,24 +19,23 @@ You can install it with [homebrew](https://brew.sh): `brew install libressl`

For additional details, see the [SKRTMAPI readme](https://github.com/pvzig/SlackKit/tree/master/SKRTMAPI#swift-package-manager).
</details>

<details>
<summary><strong>Carthage</strong></summary>
Add `SlackKit` to your `Cartfile`:
Add SlackKit to your <code>Cartfile</code>:

```
github "pvzig/SlackKit"
```
</details>

<details>
<summary><strong>CocoaPods</strong></summary>
Add `SlackKit` to your `Podfile`:
Add SlackKit to your <code>Podfile</code>:

```
pod 'SlackKit'
```
</details>

### Usage
To use the library in your project import it:

Expand Down

0 comments on commit bde39be

Please sign in to comment.