-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBeKindRewind.podspec
36 lines (33 loc) · 1.44 KB
/
BeKindRewind.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
30
31
32
33
34
35
36
#
# Be sure to run `pod lib lint BeKindRewind.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "BeKindRewind"
s.version = "2.3.2"
s.summary = "A simple way to record and replay network requests for testing and debugging."
s.description = <<-DESC
Provides an XCTestCase subclass for easily
recording and then replaying network events
during testing and development.
DESC
s.homepage = "https://github.com/jzucker2/BeKindRewind"
s.license = 'MIT'
s.author = { "Jordan Zucker" => "[email protected]" }
s.source = { :git => "https://github.com/jzucker2/BeKindRewind.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/jzucker'
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
s.osx.deployment_target = '10.9'
s.requires_arc = true
s.dependency 'OHHTTPStubs', '~> 5.0.0'
s.framework = 'XCTest'
s.source_files = 'BeKindRewind/Core/**/*'
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '$(PLATFORM_DIR)/Developer/Library/Frameworks' }
s.private_header_files = [
'BeKindRewind/Core/OHHTTPStubs/BKRResponseStub+Private.h'
]
end