forked from luisobo/Nocilla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Nocilla.podspec
33 lines (27 loc) · 1.06 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
32
33
Pod::Spec.new do |s|
s.name = "Nocilla"
s.version = "0.10.0"
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" => "[email protected]" }
s.source = { :git => "https://github.com/luisobo/Nocilla.git", :tag => "0.10.0" }
s.ios.deployment_target = '4.0'
s.osx.deployment_target = '10.7'
s.source_files = 'Nocilla/**/*.{h,m}'
s.public_header_files = [
'Nocilla/Categories/NSData+Nocilla.h',
'Nocilla/Categories/NSString+Nocilla.h',
'Nocilla/DSL/LSStubRequestDSL.h',
'Nocilla/DSL/LSStubResponseDSL.h',
'Nocilla/LSNocilla.h',
'Nocilla/Matchers/LSMatcheable.h',
'Nocilla/Matchers/NSData+Matcheable.h',
'Nocilla/Matchers/NSRegularExpression+Matcheable.h',
'Nocilla/Matchers/NSString+Matcheable.h',
'Nocilla/Model/LSHTTPBody.h',
'Nocilla/Nocilla.h'
]
s.requires_arc = true
s.frameworks = 'CFNetwork'
end