forked from WeTransfer/Mocker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMocker.podspec
20 lines (18 loc) · 917 Bytes
/
Mocker.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |spec|
spec.name = 'Mocker'
spec.version = '2.5.5'
spec.summary = 'Mock data requests using a custom URLProtocol and run them offline.'
spec.description = 'Mocker is a library written in Swift which makes it possible to mock data requests using a custom URLProtocol and run them offline.'
spec.homepage = 'https://github.com/WeTransfer/Mocker'
spec.license = { :type => 'MIT', :file => 'LICENSE' }
spec.authors = {
'Antoine van der Lee' => '[email protected]',
'Samuel Beek' => '[email protected]'
}
spec.source = { :git => 'https://github.com/WeTransfer/Mocker.git', :tag => spec.version.to_s }
spec.social_media_url = 'https://twitter.com/WeTransfer'
spec.ios.deployment_target = '10.0'
spec.source_files = 'Sources/**/*'
spec.swift_version = '5.1'
spec.weak_framework = 'XCTest'
end