Skip to content

Instantly share code, notes, and snippets.

@bartvandendriessche
Created March 11, 2019 10:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bartvandendriessche/c99d52029d05a2063ffc3f42235f4fe9 to your computer and use it in GitHub Desktop.
Save bartvandendriessche/c99d52029d05a2063ffc3f42235f4fe9 to your computer and use it in GitHub Desktop.
Pod::Spec.new do |s|
s.name = "SortedSet"
s.version = "1.0.1"
s.summary = "A Swift implementation of a SortedSet."
s.description = <<-DESC
A collection of unique hashable elements that maintains comparable order.
A fork of OrderedSet and heavily influenced by SortedArray.
Inspiration to fork due to this failed pull request.
DESC
s.homepage = "https://github.com/rob-nash/SortedSet"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Rob Nash" => "" }
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.tvos.deployment_target = "9.0"
s.swift_version = '4.0'
s.source = { :git => "https://github.com/rob-nash/SortedSet.git", :tag => "1.0.1" }
s.requires_arc = true
s.source_files = "Sources/*.{swift}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment