-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathSweeterSwift.podspec
More file actions
20 lines (15 loc) · 726 Bytes
/
SweeterSwift.podspec
File metadata and controls
20 lines (15 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "SweeterSwift"
s.version = "1.2.6"
s.summary = "Extensions and syntactic sugar to enrich the Swift standard library, iOS frameworks, and SwifterSwift."
s.homepage = "https://github.com/yonat/SweeterSwift"
s.license = { :type => "MIT", :file => "LICENSE.txt" }
s.author = { "Yonat Sharon" => "yonat@ootips.org" }
s.swift_version = '4.2'
s.swift_versions = ['4.2', '5.0']
s.platform = :ios, "9.0"
s.requires_arc = true
s.source = { :git => "https://github.com/yonat/SweeterSwift.git", :tag => s.version }
s.source_files = "Source/*.swift"
s.resource_bundles = {'SweeterSwift' => ['Source/PrivacyInfo.xcprivacy']}
end