forked from venmo/DVR
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDVR.podspec
More file actions
25 lines (16 loc) · 764 Bytes
/
DVR.podspec
File metadata and controls
25 lines (16 loc) · 764 Bytes
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
Pod::Spec.new do |s|
s.name = "DVR"
s.version = "0.0.4-czechboy0"
s.summary = "Network testing for Swift"
s.description = <<-DESC
DVR is a simple Swift framework for making fake NSURLSession requests based on VCR for iOS, watchOS, and OS X.
DESC
s.homepage = "https://github.com/czechboy0/DVR"
s.author = { "Honza Dvorsky" => "https://github.com/czechboy0" }
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
# s.watchos.deployment_target = "2.0"
s.source = { :git => "https://github.com/czechboy0/DVR.git", :tag => "v0.0.4-czechboy0" }
s.source_files = "DVR/*.{swift}"
end