-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPrettyExtensionsKit.podspec
More file actions
32 lines (28 loc) · 1.08 KB
/
PrettyExtensionsKit.podspec
File metadata and controls
32 lines (28 loc) · 1.08 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 |spec|
spec.name = "PrettyExtensionsKit"
spec.module_name = "PrettyExtensionsKit"
spec.version = "0.4.1"
spec.summary = "A pretty set of extensions for Swift."
spec.homepage = "https://github.com/nab0y4enko/PrettyExtensionsKit"
spec.license = 'MIT'
spec.author = { "Oleksii Naboichenko" => "oleksii.naboichenko@gmail.com" }
spec.social_media_url = "https://twitter.com/nab0y4enko"
spec.source = { :git => "https://github.com/nab0y4enko/PrettyExtensionsKit.git", :tag => "#{spec.version}" }
spec.swift_versions = ['5.0', '5.1']
spec.frameworks = ['Foundation', 'CoreLocation']
spec.ios.deployment_target = '10.0'
spec.ios.frameworks = ['UIKit', 'QuartzCore']
spec.ios.source_files = [
'Sources/SwiftCore/*',
'Sources/Foundation/*',
'Sources/CoreLocation/*',
'Sources/QuartzCore/*',
'Sources/UIKit/*'
]
spec.osx.deployment_target = '10.14'
spec.osx.source_files = [
'Sources/SwiftCore/*',
'Sources/Foundation/*',
'Sources/CoreLocation/*'
]
end