Skip to content

Commit 0343dbd

Browse files
committed
Add podspec
1 parent 0415dc6 commit 0343dbd

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

WeakMapTable.podspec

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
Pod::Spec.new do |s|
2+
s.name = "WeakMapTable"
3+
s.version = "1.0.0"
4+
s.summary = "A weak-to-strong map table"
5+
s.homepage = "https://github.com/ReactorKit/WeakMapTable"
6+
s.license = { :type => "MIT", :file => "LICENSE" }
7+
s.author = { "Suyeol Jeon" => "[email protected]" }
8+
s.source = { :git => "https://github.com/ReactorKit/WeakMapTable.git",
9+
:tag => s.version.to_s }
10+
s.source_files = "Sources/**/*.{swift,h,m}"
11+
s.frameworks = "Foundation"
12+
s.swift_version = "5.1"
13+
14+
s.ios.deployment_target = "8.0"
15+
s.osx.deployment_target = "10.11"
16+
s.tvos.deployment_target = "9.0"
17+
s.watchos.deployment_target = "3.0"
18+
end

0 commit comments

Comments
 (0)