This repository has been archived by the owner on Nov 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSHFoundationAdditions.podspec
52 lines (41 loc) · 1.91 KB
/
SHFoundationAdditions.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
Pod::Spec.new do |s|
name = "SHFoundationAdditions"
url = "https://github.com/seivan/#{name}"
git_url = "#{url}.git"
version = "2.2.2"
source_files = "#{name}/**/*.{h,m}"
s.name = name
s.version = version
s.summary = "Additional prefixed categories for the Foundation framework *without* libffi."
s.description = <<-DESC
Additional prefixed categories for Foundation framework *without* libffi with optional Swizzling (for KVO).
Blocks are hold with a weak reference so you don't have to cleanup when your object is gone. Comes with tests.
Contains:
* SHKeyValueObserverBlocks
* SHFastEnumerationProtocols
* SHObjectUserInfo
* SHInvocation
Summary:
* For Mac OSX >=8 and iOS >= 6.
* Swizzle and junk free
* No need to clean up after - The blocks are self maintained.
* Blocks are referenced in a map with weak properties
* Prefixed selectors.
* Minimum clutter on top of the public interface.
* No external dependencies
* Lightweight
* *NO* libffi
DESC
s.homepage = url
s.license = 'MIT'
s.author = { "Seivan Heidari" => "[email protected]" }
s.source = { :git => git_url, :tag => version}
s.dependency "SHKeyValueObserverBlocks", '~> 2.1.1'
s.dependency "SHFastEnumerationProtocols", '~> 1.6.2'
s.dependency "SHObjectUserInfo", '~> 1.2.1'
s.dependency "SHInvocation", '~> 0.9.3'
s.ios.deployment_target = "6.0"
s.osx.deployment_target = "10.8"
s.source_files = source_files
s.requires_arc = true
end