forked from foundationkit/FoundationKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFoundationKit.podspec
More file actions
32 lines (28 loc) · 1.27 KB
/
FoundationKit.podspec
File metadata and controls
32 lines (28 loc) · 1.27 KB
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
Pod::Spec.new do |s|
s.platform = :ios, '12.0'
s.ios.deployment_target = '12.0'
s.name = "FoundationKit"
s.version = "1.0.5"
s.license = 'MIT'
s.summary = "Everything that really should be in Foundation, but isn't."
s.homepage = "https://github.com/kampfgnu/FoundationKit"
s.description =
'Consider FoundationKit Foundations big brother. We add lots of useful ' \
'categories, helpers, classes and macros. ' \
'FoundationKit is built With ARC for both for iOS 4.0+ and Mac OS 10.6+. ' \
'If you start a new app today, it is the perfect time to begin with it.'
s.authors = {
'Erik Aigner' => 'erik@chocomoko.com',
'Martin Schürrer' => 'martin@schuerrer.org',
'Peter Steinberger' => 'foundationkit@petersteinberger.com',
'Matthias Tretter' => 'myell0w@me.com'
}
s.source = { :git => "https://github.com/PocketScientists/FoundationKit.git", :tag => '1.0.5' }
s.source_files = 'Sources/*.{h,m}', 'Sources/Shorthands/*.{h,m}', 'Sources/Blocks/*.{h,m}', 'FoundationKit/FoundationKit.h'
s.public_header_files = 'Sources/*.{h}', 'Sources/Shorthands/*.{h}', 'Sources/Blocks/*.{h}', 'FoundationKit/FoundationKit.h'
s.frameworks = 'CoreGraphics', 'Foundation'
s.prefix_header_contents = '
#include <FoundationKit.h>
'
s.requires_arc = true
end