forked from WeTransfer/Mocker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMocker.podspec
19 lines (17 loc) · 883 Bytes
/
Mocker.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |spec|
spec.name = 'Mocker'
spec.version = '1.3.0'
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 = '9.0'
spec.source_files = 'Sources/**/*'
spec.swift_version = '4.2'
end