forked from braintree/braintree_ios
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
41 lines (34 loc) · 791 Bytes
/
Podfile
File metadata and controls
41 lines (34 loc) · 791 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '7.0'
workspace 'Braintree.xcworkspace'
def demo_pods
pod 'HockeySDK'
pod 'AFNetworking', '~> 2.6.0'
pod 'CardIO'
pod 'NSURL+QueryDictionary', '~> 1.0'
pod 'PureLayout'
pod 'FLEX'
pod 'InAppSettingsKit'
pod 'iOS-Slide-Menu'
end
def test_pods
pod 'Specta'
pod 'Expecta'
pod 'OCMock'
pod 'OHHTTPStubs'
end
target 'Demo' do
link_with 'Demo', 'Demo-StaticLibrary'
demo_pods
end
target 'Test-Deps' do
link_with 'UnitTests', 'IntegrationTests', 'UnitTests-StaticLibrary'
test_pods
end
target 'UnitTests-CocoaPods' do
test_pods
pod 'Braintree', :path => '.'
pod 'Braintree/3D-Secure', :path => '.'
pod 'Braintree/Apple-Pay', :path => '.'
pod 'Braintree/DataCollector', :path => '.'
end