forked from AliSoftware/OHHTTPStubs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOHHTTPStubs.podspec
31 lines (21 loc) · 996 Bytes
/
OHHTTPStubs.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
31
Pod::Spec.new do |s|
s.name = "OHHTTPStubs"
s.version = "3.0.1"
s.summary = "Stubbing framework for network requests."
s.description = <<-DESC
A class to stub network requests easily:
* Test your apps with fake network data (stubbed from file)
* Use customized stubs depending on the requests
* Use custom response time to simulate slow network.
DESC
s.homepage = "https://github.com/AliSoftware/OHHTTPStubs"
s.license = "MIT"
s.authors = { 'Olivier Halligon' => 'olivier.halligon+ae@gmail.com' }
s.source = { :git => "https://github.com/AliSoftware/OHHTTPStubs.git", :tag => s.version.to_s }
s.source_files = "OHHTTPStubs/Sources/*.{h,m}"
s.public_header_files = "OHHTTPStubs/Sources/*.h"
s.frameworks = 'Foundation', 'CFNetwork'
s.requires_arc = true
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.7'
end