-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathThreadly.podspec
More file actions
15 lines (15 loc) · 787 Bytes
/
Threadly.podspec
File metadata and controls
15 lines (15 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.new do |s|
s.name = "Threadly"
s.version = "2.0.1"
s.summary = "Type-safe thread-local storage in Swift."
s.homepage = "https://github.com/nvzqz/#{s.name}"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.author = "Nikolai Vazquez"
s.social_media_url = "https://twitter.com/nikolaivazquez"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.9"
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
s.source = { :git => "https://github.com/nvzqz/#{s.name}.git", :tag => "v#{s.version}" }
s.source_files = "Sources/**/*.swift"
end