forked from duemunk/Async
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAsyncSwift.podspec
More file actions
17 lines (16 loc) · 650 Bytes
/
AsyncSwift.podspec
File metadata and controls
17 lines (16 loc) · 650 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = "AsyncSwift"
s.version = "1.7.2"
s.summary = "Syntactic sugar in Swift for asynchronous dispatches in Grand Central Dispatch"
s.homepage = "https://github.com/duemunk/Async"
s.license = { :type => "MIT" }
s.authors = { "Tobias Due Munk" => "tobias@developmunk.dk" }
s.osx.deployment_target = "10.10"
s.ios.deployment_target = "8.0"
s.tvos.deployment_target = "9.0"
s.watchos.deployment_target = "2.0"
s.source = { :git => "https://github.com/duemunk/Async.git", :tag => "1.7.2"}
s.source_files = "Source/*.swift"
s.requires_arc = true
s.module_name = 'Async'
end