forked from FlineDev/HandySwift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
HandySwift.podspec
30 lines (23 loc) · 1.14 KB
/
HandySwift.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
Pod::Spec.new do |s|
s.name = "HandySwift"
s.version = "1.3.0"
s.summary = "Handy Swift features that didn't make it into the Swift standard library"
s.description = <<-DESC
The goal of this library is to provide handy features that didn't make it to the Swift standard library (yet)
due to many different reasons. Those could be that the Swift community wants to keep the standard library clean
and manageable or simply hasn't finished discussion on a specific feature yet.
DESC
s.homepage = "https://github.com/Flinesoft/HandySwift"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.author = { "Cihat Gündüz" => "[email protected]" }
s.social_media_url = "https://twitter.com/Dschee"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/Flinesoft/HandySwift.git", :tag => "1.3.0" }
s.source_files = "Sources", "Sources/**/*.swift"
s.framework = "Foundation"
s.osx.framework = "AppKit"
s.ios.framework = "UIKit"
s.tvos.framework = "UIKit"
end