Skip to content

Commit 2cec3a9

Browse files
authored
adding updated docs (#3)
1 parent fdc4098 commit 2cec3a9

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

README.md

+15-3
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,26 @@ Supports Swift Package Manager and Cocoapods.
88

99
### Swift Package Manager
1010

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

13-
.package(url: "https://github.com/gligorkot/GKBaseKit.git", from: Version("2.0.0"))
13+
- If using http add:
14+
15+
```swift
16+
.package(url: "https://github.com/gligorkot/GKBaseKit.git", from: Version("2.0.0"))
17+
```
18+
19+
- If using ssh add:
20+
21+
```swift
22+
.package(url: "[email protected]:gligorkot/GKBaseKit.git", from: Version("2.0.0"))
23+
```
1424

1525
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.
1626

1727
### CocoaPods
1828

1929
Add the following to your "Podfile":
2030

21-
pod 'GKBaseKit', '~> 2.x'
31+
```ruby
32+
pod 'GKBaseKit', '~> 2.x'
33+
```

0 commit comments

Comments
 (0)