-
Notifications
You must be signed in to change notification settings - Fork 6
/
swift-tsao.podspec
26 lines (22 loc) · 1002 Bytes
/
swift-tsao.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
Pod::Spec.new do |s|
s.name = "swift-tsao"
s.version = "3.0.2"
s.summary = "Type-Safe Associated Objects in Swift"
s.description = <<-DESC
TSAO is an implementation of type-safe associated objects in Swift.
Objective-C associated objects are useful, but they are also untyped;
every associated object is only known to be id at compile-time and
clients must either test the class at runtime or rely on it being the
expected type.
DESC
s.homepage = "https://github.com/lilyball/swift-tsao"
s.license = { :type => "MIT", :file => "LICENSE.txt" }
s.author = { "Lily Ballard" => "[email protected]" }
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.swift_version = '4.0'
s.source = { :git => "https://github.com/lilyball/swift-tsao.git", :tag => "v#{s.version}" }
s.source_files = "Sources/*.swift"
end