-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathKSPNavigationController.podspec
43 lines (22 loc) · 1.1 KB
/
KSPNavigationController.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
Pod::Spec.new do |spec|
spec.name = 'KSPNavigationController'
spec.version = '0.1'
spec.cocoapods_version = '>= 1.0.0.beta.5'
spec.authors = {'Konstantin Pavlikhin' => '[email protected]'}
spec.social_media_url = 'https://twitter.com/kpavlikhin'
spec.license = {:type => 'MIT', :file => 'LICENSE.md'}
spec.homepage = 'https://github.com/konstantinpavlikhin/KSPNavigationController'
spec.source = {:git => 'https://github.com/konstantinpavlikhin/KSPNavigationController.git', :tag => "v#{spec.version}"}
spec.summary = 'The navigation controller for your desktop application development needs.'
spec.platform = :osx, '10.11'
spec.osx.deployment_target = '10.9'
spec.requires_arc = true
spec.frameworks = 'AppKit'
spec.module_name = 'KSPNavigationController'
spec.source_files = 'Sources/*.{h,m}'
spec.public_header_files = 'Sources/*.h'
spec.private_header_files = 'Sources/KSPNavigationController+Private.h'
spec.resources = 'Resources/*'
spec.exclude_files = 'Resources/KSPNavigationController.plist'
spec.module_map = 'KSPNavigationController.modulemap'
end