forked from bradhilton/OrderedSet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwiftOrderedSet.podspec
More file actions
18 lines (16 loc) · 835 Bytes
/
SwiftOrderedSet.podspec
File metadata and controls
18 lines (16 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "SwiftOrderedSet"
s.version = "1.0.2"
s.summary = "Native Swift Ordered Set"
s.description = <<-DESC
A native Swift implementation of an ordered set. Supports the same behavior and functionality as native Swift arrays and sets, ensuring that each and every element in an ordered list only appears once.
DESC
s.homepage = "https://github.com/bradhilton/OrderedSet"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Brad Hilton" => "brad@skyvive.com" }
s.source = { :git => "https://github.com/bradhilton/OrderedSet.git", :tag => "1.0.2" }
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.9"
s.source_files = "Sources", "Sources/**/*.{swift,h,m}"
s.requires_arc = true
end