Skip to content

Commit

Permalink
adding updated docs (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
gligorkot authored Dec 4, 2021
1 parent fdc4098 commit 2cec3a9
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,26 @@ Supports Swift Package Manager and Cocoapods.

### Swift Package Manager

Add the following to the `dependencies` array in your "Package.swift" file:
Add one the following to the `dependencies` array in your "Package.swift" file:

.package(url: "https://github.com/gligorkot/GKBaseKit.git", from: Version("2.0.0"))
- If using http add:

```swift
.package(url: "https://github.com/gligorkot/GKBaseKit.git", from: Version("2.0.0"))
```

- If using ssh add:

```swift
.package(url: "git@github.com:gligorkot/GKBaseKit.git", from: Version("2.0.0"))
```

Or by adding `https://github.com/gligorkot/GKBaseKit.git`, version 2.0.0 or later, to the list of Swift packages for any project in Xcode.

### CocoaPods

Add the following to your "Podfile":

pod 'GKBaseKit', '~> 2.x'
```ruby
pod 'GKBaseKit', '~> 2.x'
```

0 comments on commit 2cec3a9

Please sign in to comment.