Skip to content

Commit ded7872

Browse files
committed
Update README.md
1 parent 5bdb1ab commit ded7872

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

README.md

+22
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,28 @@ Seprum HQ iOS Pods specifications
66
Podfile
77
```ruby
88
source 'https://github.com/SeprumHQ/Podspecs.git'
9+
10+
platform :ios, '13.0'
11+
use_frameworks!
12+
13+
target 'Skaffer' do
14+
pod 'DeepLinking'
15+
pod 'HapticFeedback'
16+
pod 'PieCharts'
17+
end
18+
```
19+
20+
## Adding and updating Pods
21+
```sh
22+
$ cd ~/path/to/POD
23+
# edit POD.podspec: set the new version and tag to VERSION (e.g 1.0.0)
24+
$ pod lib lint
25+
26+
$ git add -A && git commit -m "Release VERSION"
27+
$ git tag VERSION
28+
$ git push --follow-tags
29+
30+
$ pod repo push [email protected]:SeprumHQ/Podspecs.git POD.podspec
931
```
1032

1133
## Pods

0 commit comments

Comments
 (0)