-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathZUAsyncOperation.podspec
More file actions
22 lines (22 loc) · 874 Bytes
/
Copy pathZUAsyncOperation.podspec
File metadata and controls
22 lines (22 loc) · 874 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |spec|
spec.name = "ZUAsyncOperation"
spec.version = "1.4"
spec.summary = "Generic subclass of Operation to get result asynchronously."
spec.description = <<-DESC
AsyncOperation is a generic subclass of Operation to get Swift.Result asynchronously.
DESC
spec.homepage = "https://github.com/zuccoi/AsyncOperation"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = "zuccoi"
spec.social_media_url = "https://twitter.com/zuccoi"
spec.ios.deployment_target = "11.0"
# spec.osx.deployment_target = "10.10"
# spec.watchos.deployment_target = "2.0"
# spec.tvos.deployment_target = "9.0"
spec.source_files = "AsyncOperation/AsyncOperation/Source/*.{swift}"
spec.source = {
:git => "https://github.com/zuccoi/AsyncOperation.git",
:tag => "#{spec.version}",
}
spec.swift_version = "5.0"
end