forked from luisobo/Nocilla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Nocilla.podspec
31 lines (25 loc) · 1.02 KB
/
Nocilla.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 = "Nocilla"
s.version = "0.8.1"
s.summary = "Stunning HTTP stubbing for iOS. Testing HTTP requests has never been easier."
s.homepage = "https://github.com/luisobo/Nocilla"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Luis Solano" => "contact@luissolano.com" }
s.source = { :git => "https://github.com/luisobo/Nocilla.git", :tag => "0.8.1" }
s.ios.deployment_target = '4.0'
s.osx.deployment_target = '10.7'
s.source_files = 'Nocilla/**/*.{h,m}'
s.public_header_files = ['Nocilla/Nocilla.h',
'Nocilla/LSNocilla.h',
'Nocilla/DSL/DSL.h',
'Nocilla/DSL/LSStubRequestDSL.h',
'Nocilla/DSL/LSStubResponseDSL.h',
'Nocilla/Matchers/*.h',
'Nocilla/Model/LSHTTPBody.h',
'Nocilla/Categories/NSString+Nocilla.h',
'Nocilla/Categories/NSData+Nocilla.h',
'Nocilla/Hooks/LSHTTPClientHook.h',
'Nocilla/Hooks/ASIHTTPRequest/LSASIHTTPRequestHook.h']
s.requires_arc = true
s.frameworks = 'CFNetwork'
end