mirror of
https://github.com/zhigang1992/braintree-ios-drop-in.git
synced 2026-01-12 17:12:48 +08:00
30 lines
481 B
Ruby
30 lines
481 B
Ruby
source 'https://cdn.cocoapods.org/'
|
|
|
|
platform :ios, '9.0'
|
|
inhibit_all_warnings!
|
|
|
|
workspace 'BraintreeDropIn.xcworkspace'
|
|
|
|
target 'DropInDemo' do
|
|
pod 'InAppSettingsKit'
|
|
|
|
pod "BraintreeDropIn", :path => "./"
|
|
|
|
pod 'Braintree/Apple-Pay'
|
|
pod 'Braintree/PayPal'
|
|
pod 'Braintree/Venmo'
|
|
pod 'Braintree/PaymentFlow'
|
|
end
|
|
|
|
abstract_target 'Tests' do
|
|
pod 'Specta'
|
|
pod 'Expecta'
|
|
pod 'OCMock'
|
|
pod 'OHHTTPStubs'
|
|
pod 'xcbeautify'
|
|
|
|
target 'UnitTests'
|
|
target 'UITests'
|
|
end
|
|
|