-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathWatchdog.podspec
41 lines (21 loc) · 1.01 KB
/
Watchdog.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
Pod::Spec.new do |spec|
spec.name = 'Watchdog'
spec.version = '0.1.0'
spec.cocoapods_version = '>= 1.0.0.beta.5'
spec.authors = {'Konstantin Pavlikhin' => 'k.pavlikhin@gmail.com'}
spec.social_media_url = 'https://twitter.com/kpavlikhin'
spec.license = {:type => 'MIT', :file => 'LICENSE.md'}
spec.homepage = 'https://github.com/konstantinpavlikhin/Watchdog'
spec.source = {:git => 'https://github.com/konstantinpavlikhin/Watchdog.git', :tag => "v#{spec.version}"}
spec.summary = 'Simple registration framework for OS X apps. DSA/ECDSA support. No OpenSSL required.'
spec.platform = :osx, '10.11'
spec.osx.deployment_target = '10.8'
spec.requires_arc = true
spec.frameworks = 'Cocoa', 'Foundation', 'AppKit', 'Security', 'QuartzCore'
spec.module_name = 'Watchdog'
spec.source_files = 'Sources/*.{h,m}'
spec.public_header_files = 'Sources/*.h'
spec.private_header_files = 'Sources/*+Private.h'
spec.resources = 'Resources/*'
spec.exclude_files = 'Resources/Watchdog-Info.plist'
end