forked from venmo/DVR
-
Notifications
You must be signed in to change notification settings - Fork 1
/
DVR.podspec
24 lines (19 loc) · 963 Bytes
/
DVR.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
Pod::Spec.new do |s|
s.name = 'DVR'
s.version = '2.1.0'
s.summary = 'Network testing for Swift'
s.description = <<-DESC
DVR is a simple Swift framework for making fake NSURLSession requests for iOS, watchOS, and OS X based on VCR.
Easy dependency injection is the main design goal. The API is the same as NSURLSession.
DVR.Session is a subclass of NSURLSession so you can use it as a drop in replacement anywhere. (Currently only data tasks are supported.)
DESC
s.homepage = 'https://github.com/venmo/DVR'
s.license = { type: 'MIT', file: 'LICENSE' }
s.author = { 'Venmo' => '[email protected]' }
s.source = { git: 'https://github.com/venmo/DVR.git',
tag: "v#{s.version}" }
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
s.osx.deployment_target = '10.10'
s.source_files = 'Sources/DVR/*.{swift}'
end