forked from project-imas/security-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SecurityCheck.podspec
25 lines (22 loc) · 947 Bytes
/
SecurityCheck.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
Pod::Spec.new do |s|
s.name = 'SecurityCheck'
s.version = '1.0'
s.license = 'Apache License 2.0'
s.summary = 'Application-level attached debug detect and jailbreak checking'
s.description = %[
The iMAS security-check security control offers a continuous jailbreak detect and debug attach checking. With this information, one can programatically decide to shutdown the app or other loss prevention techniques.
]
s.homepage = 'https://github.com/project-imas/security-check'
s.authors = {
'MITRE' => '[email protected]'
}
s.source = {
:git => 'https://github.com/project-imas/security-check.git',
:tag => s.version.to_s
}
s.source_files = 'SecurityCheck/*.{m,h,s}'
s.exclude_files = 'SecurityCheck/*Template*'
s.platform = :ios
s.ios.deployment_target = '6.1'
s.requires_arc = true
end