We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb01b55 commit c870c0eCopy full SHA for c870c0e
WeakPointerArray.podspec
@@ -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