-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSortAlgorithm.podspec
More file actions
20 lines (20 loc) · 879 Bytes
/
SortAlgorithm.podspec
File metadata and controls
20 lines (20 loc) · 879 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 = 'SortAlgorithm'
s.version = "1.2.0"
s.summary = "Swift array sort algorithm"
s.homepage = "http://github.com/Meniny/SortAlgorithm"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.author = 'Elias Abel'
s.source = { :git => "http://github.com/Meniny/SortAlgorithm.git", :tag => s.version.to_s }
s.social_media_url = 'https://meniny.cn/'
s.source_files = "SortAlgorithm/**/*.swift"
s.requires_arc = true
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '5' }
s.swift_version = '5'
s.ios.deployment_target = "8.0"
s.tvos.deployment_target = "9.0"
s.watchos.deployment_target = "2.0"
s.macos.deployment_target = "10.9"
s.description = "SortAlgorithm is a Swift array sort algorithm framework."
s.module_name = 'SortAlgorithm'
end