-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDelegate.podspec
More file actions
27 lines (20 loc) · 946 Bytes
/
Delegate.podspec
File metadata and controls
27 lines (20 loc) · 946 Bytes
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
27
Pod::Spec.new do |spec|
spec.name = "Delegate"
spec.version = "1.3.0"
spec.summary = "A meta library to provide a better `Delegate` pattern."
spec.description = <<-DESC
A meta library to provide a better `Delegate` pattern.
This provides you another way to use protocol-delegate pattern with ease.
DESC
spec.homepage = "https://github.com/onevcat/Delegate"
spec.license = "MIT"
spec.ios.deployment_target = "9.0"
spec.osx.deployment_target = "10.12"
spec.watchos.deployment_target = "2.0"
spec.tvos.deployment_target = "9.0"
spec.visionos.deployment_target = "1.0"
spec.author = { "Wei Wang" => "onevcat@gmail.com" }
spec.source = { :git => "https://github.com/onevcat/Delegate.git", :tag => "#{spec.version}" }
spec.swift_versions = ["5.2", "5.3", "5.4", "5.5"]
spec.source_files = "Sources/Delegate"
end