forked from facebookarchive/WebDriverAgent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
51 lines (39 loc) · 1.38 KB
/
Podfile
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '7.0'
inhibit_all_warnings!
xcodeproj 'WebDriverAgent.xcodeproj'
# UIAutomation Testing
target :WebDriverAgent, :exclusive => true do
pod 'fishhook', :git => 'https://github.com/facebook/fishhook.git', :commit => '8dbd09b'
pod 'KissXML'
pod 'RoutingHTTPServer'
end
target :WebDriverAgentLib, :exclusive => true do
pod 'fishhook', :git => 'https://github.com/facebook/fishhook.git', :commit => '8dbd09b'
pod 'KissXML'
pod 'RoutingHTTPServer'
end
target :WebDriverAgentLibTests, :exclusive => true do
pod 'fishhook', :git => 'https://github.com/facebook/fishhook.git', :commit => '8dbd09b'
pod 'KissXML'
pod 'RoutingHTTPServer'
pod 'OCMock'
end
target :WebDriverAgentCoreTests, :exclusive => true do
pod 'fishhook', :git => 'https://github.com/facebook/fishhook.git', :commit => '8dbd09b'
pod 'KissXML'
pod 'PeerTalk', :git => 'https://github.com/rsms/peertalk.git', :commit => '5a0495a'
pod 'RoutingHTTPServer'
pod 'OCMock'
end
# XCT Testing
target :XCTWebDriverAgentLib, :exclusive => true do
pod 'KissXML'
pod 'PeerTalk', :git => 'https://github.com/rsms/peertalk.git', :commit => '5a0495a'
pod 'RoutingHTTPServer'
end
target :XCTUITestRunner, :exclusive => true do
pod 'KissXML'
pod 'PeerTalk', :git => 'https://github.com/rsms/peertalk.git', :commit => '5a0495a'
pod 'RoutingHTTPServer'
end