-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSwiftSortUtils.podspec
29 lines (24 loc) · 1.08 KB
/
SwiftSortUtils.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
#
# Be sure to run `pod lib lint SwiftSortUtils.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "SwiftSortUtils"
s.version = "0.5.0"
s.summary = "Useful functions and extensions for sorting in Swift"
s.description = <<-DESC
This library takes a shot at making sorting in Swift more pleasant.
It also allows you to reuse your old NSSortDescriptor instances in Swift.
DESC
s.homepage = "https://github.com/dsmatter/SwiftSortUtils"
s.license = 'MIT'
s.author = { "Daniel Strittmatter" => "daniel@smattr.de" }
s.source = { :git => "https://github.com/dsmatter/SwiftSortUtils.git", :tag => s.version.to_s }
s.platform = :ios, '9.0'
s.swift_version = '5.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
end