Skip to content
This repository was archived by the owner on Mar 10, 2022. It is now read-only.

Commit 8be5186

Browse files
authored
Merge pull request #45 from nodes-ios/develop
Develop
2 parents 74d7814 + 1f0fe30 commit 8be5186

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ A helpful loading spinner tool allowing you to present a UIActivityIndicator vie
2222
github "nodes-ios/Spinner" ~> 2.0
2323
~~~
2424

25+
### Cocoapods
26+
~~~
27+
pod 'Spinner', '~> 1.2.3'
28+
~~~
29+
2530
> Last versions compatible with lower Swift versions:
2631
>
2732
> **Swift 3**

Spinner.podspec

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Pod::Spec.new do |spec|
2+
spec.name = 'Spinner'
3+
spec.version = '1.2.3'
4+
spec.summary = 'Present loading indicators anywhere quickly and easily'
5+
6+
spec.homepage = 'https://github.com/nodes-ios/Spinner'
7+
spec.author = { "Nodes Agency - iOS" => "[email protected]" }
8+
spec.source = { :git => 'https://github.com/nodes-ios/Spinner.git', :tag => spec.version.to_s }
9+
spec.license = 'MIT'
10+
11+
spec.ios.deployment_target = '8.0'
12+
spec.tvos.deployment_target = '9.0'
13+
14+
spec.source_files = 'Spinner/Spinner.swift'
15+
16+
end

0 commit comments

Comments
 (0)