-
Notifications
You must be signed in to change notification settings - Fork 0
/
SDSwiftyUtils.podspec
27 lines (19 loc) · 1.05 KB
/
SDSwiftyUtils.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
Pod::Spec.new do |spec|
spec.name = "SDSwiftyUtils"
spec.version = "0.1.3"
spec.summary = "Commonly used utilities, extensions and custom protocols for Swift."
spec.description = <<-DESC
This CocoaPod contains extensions different for primitive types such as Date, String and protocols such as Encodable, Decodable, Equatable. Custom protocols such as Distinguishable and Imitable are also added.
DESC
spec.homepage = "https://gitlab.com/imthath_m/skydevpodspecs.git"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Imthath M" => "[email protected]" }
spec.social_media_url = "https://twitter.com/imthath_m"
spec.source = { :git => "https://github.com/imthath-m/SDSwiftyUtils.git", :tag => "#{spec.version}" }
spec.swift_version = "4.2"
spec.osx.deployment_target = "10.12"
spec.ios.deployment_target = "9.0"
spec.watchos.deployment_target = "2.0"
spec.tvos.deployment_target = "9.0"
spec.source_files = "UtilitiesExample/Utils/*.swift"
end