Skip to content

Commit c870c0e

Browse files
committed
Add cocoapods support
1 parent fb01b55 commit c870c0e

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

WeakPointerArray.podspec

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Pod::Spec.new do |s|
2+
s.name = 'WeakPointerArray'
3+
s.version = '1.0'
4+
s.license = 'MIT'
5+
s.summary = 'The WeakPointerArray represents a mutable collection created over Array, but it holds weak references for objects(not strong as in Array).'
6+
s.homepage = 'https://github.com/NickRybalko/WeakPointerArray'
7+
s.authors = { 'iOS engineer Nick Rybalko' => 'https://github.com/NickRybalko' }
8+
s.source = { :git => 'https://github.com/NickRybalko/WeakPointerArray.git', :tag => s.version }
9+
10+
s.ios.deployment_target = '9.0'
11+
s.osx.deployment_target = '10.11'
12+
s.tvos.deployment_target = '9.0'
13+
s.watchos.deployment_target = '2.0'
14+
15+
s.source_files = 'Source/*.swift'
16+
end

0 commit comments

Comments
 (0)