You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can install by using swift package manager built into Xcode or clone the repository and add a sub project into your project.
65
65
66
+
### CocoaPods
67
+
68
+
[CocoaPods](http://cocoapods.org) is a dependency manager for Cocoa projects.
69
+
70
+
If you don't already have the Cocoapods gem installed, run the following command:
71
+
72
+
```bash
73
+
$ gem install cocoapods
74
+
```
75
+
76
+
To integrate PublisherKit into your Xcode project using CocoaPods, specify it in your `Podfile`:
77
+
78
+
```ruby
79
+
source 'https://github.com/CocoaPods/Specs.git'
80
+
platform :ios, '10.0'
81
+
use_frameworks!
82
+
83
+
pod 'PublisherKit', '~> 4.0.0'
84
+
```
85
+
86
+
Then, run the following command:
87
+
88
+
```bash
89
+
$ pod install
90
+
```
91
+
92
+
### Carthage
93
+
94
+
[Carthage](https://github.com/Carthage/Carthage) is a decentralized dependency manager that automates the process of adding frameworks to your application.
95
+
96
+
You can install Carthage with [Homebrew](http://brew.sh/) using the following command:
97
+
98
+
```bash
99
+
$ brew update
100
+
$ brew install carthage
101
+
```
102
+
103
+
To integrate PublisherKit into your Xcode project using Carthage, specify it in your `Cartfile`:
0 commit comments