forked from Weebly/OrderedSet
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathOrderedSet.podspec
27 lines (19 loc) · 971 Bytes
/
OrderedSet.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 |s|
s.name = "OrderedSet"
s.version = "1.0.0"
s.summary = "A Swift implementation of an OrderedSet."
s.description = <<-DESC
NSOrderedSet is great and all, but you can't stuff enums and structs into it, and it
lacks the mutability constraints that other collection types in Swift through var and let.
Introducing OrderedSet, a wholly-Swift implementation of the common ordered, unique collection!
DESC
s.homepage = "https://github.com/Weebly/OrderedSet"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "James Richard" => "[email protected]" }
s.social_media_url = "http://twitter.com/ketzusaka"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.source = { :git => "https://github.com/Weebly/OrderedSet.git", :tag => "v1.0.0" }
s.requires_arc = true
s.source_files = "Sources/*.{swift}"
end