forked from kylef/Mockingjay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Mockingjay.podspec
30 lines (27 loc) · 1.18 KB
/
Mockingjay.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
Pod::Spec.new do |spec|
spec.name = 'Mockingjay'
spec.version = '1.2.1'
spec.summary = 'An elegant library for stubbing HTTP requests with ease in Swift.'
spec.homepage = 'https://github.com/kylef/Mockingjay'
spec.license = { :type => 'BSD', :file => 'LICENSE' }
spec.author = { 'Kyle Fuller' => '[email protected]' }
spec.social_media_url = 'http://twitter.com/kylefuller'
spec.source = { :git => 'https://github.com/kylef/Mockingjay.git', :tag => "#{spec.version}" }
spec.ios.deployment_target = '8.0'
spec.osx.deployment_target = '10.9'
spec.requires_arc = true
spec.subspec 'Core' do |core_spec|
core_spec.dependency 'URITemplate', '~> 1.3'
core_spec.source_files = 'Mockingjay/Mockingjay.{h,swift}',
'Mockingjay/MockingjayProtocol.swift',
'Mockingjay/{Matchers,Builders}.swift',
'Mockingjay/NSURLSessionConfiguration.swift'
'Mockingjay/MockingjayURLSessionConfiguration.m'
end
spec.subspec 'XCTest' do |xctest_spec|
xctest_spec.dependency 'Mockingjay/Core'
xctest_spec.source_files = 'Mockingjay/XCTest.swift'
xctest_spec.frameworks = 'XCTest'
xctest_spec.pod_target_xcconfig = { 'ENABLE_BITCODE' => 'NO' }
end
end