forked from braintree/braintree_ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
56 lines (51 loc) · 1.66 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
52
53
54
55
56
source 'https://github.com/CocoaPods/Specs.git'
workspace 'Braintree.xcworkspace'
target 'Tests' do
link_with 'Braintree-Specs',
'Braintree-API-Specs',
'Braintree-API-Integration-Specs',
'Braintree-Payments-Specs',
'Braintree-Payments-UI-Specs',
'Braintree-PayPal-Specs',
'Braintree-PayPal-Integration-Specs',
'Braintree-PayPal-Acceptance-Specs',
'Braintree-Venmo-Specs',
'Braintree-Data-Specs'
pod 'Braintree', :path => '.'
pod 'Braintree/Data', :path => '.'
pod 'Specta', :git => 'https://github.com/specta/specta.git', :commit => 'v0.3.0.beta1'
pod 'Expecta', '~> 0.3.0'
pod 'OCMock', '~> 2.2.3'
pod 'OCHamcrest', '~> 3.0.1'
pod 'OHHTTPStubs', '~> 3.1.0'
pod 'KIF', '~> 3.0'
pod 'NSURL+QueryDictionary', '~> 1.0'
end
target 'Braintree-Dev' do
link_with 'Braintree-Demo',
'Braintree-API-Demo',
'Braintree-PayPal-Demo',
'Braintree-Data-Demo',
'Braintree-UI-Demo'
pod 'Braintree', :path => '.'
pod 'Braintree/Data', :path => '.'
pod 'HockeySDK'
pod 'AFNetworking', '~> 2.2'
pod 'NSURL+QueryDictionary', '~> 1.0'
pod 'PureLayout'
pod 'UIActionSheet+Blocks'
pod 'UIAlertView+Blocks'
pod 'FLEX'
end
post_install do |installer|
targets = installer.project.targets.select{ |t| t.to_s.end_with? "-Braintree" }
if (targets.count > 0)
targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['RUN_CLANG_STATIC_ANALYZER'] = 'YES'
end
end
else
puts "WARNING: Braintree targets not found"
end
end