forked from foundationkit/iOSKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiOSKit.podspec
More file actions
23 lines (21 loc) · 803 Bytes
/
iOSKit.podspec
File metadata and controls
23 lines (21 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.platform = :ios, '11.0'
s.name = 'iOSKit'
s.version = '1.0.3'
s.license = 'MIT'
s.authors = { 'Alex Wolf' => 'a.wolf@nousguide.com' }
s.summary = 'iOS Additions to FoundationKit.'
s.homepage = "http://foundationk.it/"
s.source = { :git => 'https://github.com/PocketScientists/iOSKit.git' }
s.source_files = 'Sources/*/*.{h,m}', 'iOSKit/iOSKit.h'
s.public_header_files = 'Sources/*/*.h', 'iOSKit/iOSKit.h'
s.frameworks = 'CoreGraphics', 'Foundation', 'UIKit'
s.resource_bundle = { 'iOSKit' => 'Resources/*' }
s.prefix_header_contents = '
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import <FoundationKit/FoundationKit.h>
'
s.requires_arc = true
s.dependency 'FoundationKit'
end