forked from paulmelnikow/AFNetworking-Synchronous
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAFNetworking-Synchronous.podspec
More file actions
32 lines (27 loc) · 1.02 KB
/
AFNetworking-Synchronous.podspec
File metadata and controls
32 lines (27 loc) · 1.02 KB
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
31
32
Pod::Spec.new do |s|
s.name = 'AFNetworking-Synchronous'
s.version = '1.0.0-dev'
s.summary = 'Synchronous requests for AFNetworking'
s.description = <<-DESC
A minimal category which extends AFNetworking to support synchronous
requests. Supports AFNetworking 1.x or 2.x.
DESC
s.homepage = 'https://github.com/paulmelnikow/AFNetworking-Synchronous'
s.license = 'MIT'
s.author = { "Paul Melnikow" => "github@paulmelnikow.com" }
s.source = { :git => 'https://github.com/paulmelnikow/AFNetworking-Synchronous.git',
:tag => "v#{s.version}" }
s.ios.deployment_target = '6.0'
s.requires_arc = true
s.subspec '1.x' do |sp|
s.osx.deployment_target = '10.7'
sp.source_files = '1.x'
sp.dependency 'AFNetworking', '~> 1.0'
end
s.subspec '2.x' do |sp|
s.osx.deployment_target = '10.8'
sp.source_files = '2.x'
sp.dependency 'AFNetworking', '~> 2.0'
end
s.default_subspec = '2.x'
end