forked from nevyn/SPAsync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SPAsync.podspec
30 lines (19 loc) · 903 Bytes
/
SPAsync.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
27
28
29
30
Pod::Spec.new do |s|
s.name = "SPAsync"
s.version = "0.1.0"
s.summary = "Tools for abstracting asynchrony in Objective-C."
s.description = <<-DESC
SPAsync
=======
by Joachim Bengtsson <[email protected]>
Tools for abstracting asynchrony in Objective-C. Read [the introductory blog entry](http://overooped.com/post/41803252527/methods-of-concurrency) for much more detail.
DESC
s.homepage = "https://github.com/nevyn/SPAsync"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Joachim Bengtsson" => "[email protected]" }
s.source = { :git => "https://github.com/nevyn/SPAsync.git", :commit => "bd5730018a606f4ff91c964679eb1b7baba06f7d" }
s.source_files = 'Sources', 'Sources/**/*.{h,m}', 'include/**/*.h'
s.public_header_files = 'include/SPAsync/**/*.h'
s.ios.deployment_target = '5.0'
s.requires_arc = true
end