-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathPodfile
32 lines (27 loc) · 951 Bytes
/
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
# Uncomment this line to define a global platform for your project
platform :ios, "7.0"
# http://stackoverflow.com/questions/13208202/ignore-xcode-warnings-when-using-cocoapods
# ignore all warnings from all pods
inhibit_all_warnings!
source 'https://github.com/CocoaPods/Specs.git'
xcodeproj 'BalancedPayments/BalancedPayments'
target 'BalancedPayments' do
pod 'CocoaLumberjack', '~> 1.9'
pod 'AFNetworking', '~> 2.0'
pod 'PromiseKit', '~> 0.9'
pod 'PromiseKit-AFNetworking', '~> 0.1'
pod 'SWRevealViewController', '~> 2.3'
pod 'CAAnimationBlocks'
end
target 'BalancedPaymentsTests' do
pod 'CocoaLumberjack', '~> 1.9'
pod 'AFNetworking', '~> 2.0'
pod 'PromiseKit', '~> 0.9'
pod 'PromiseKit-AFNetworking', '~> 0.1'
pod 'proj4', '~> 4.8'
pod 'SWRevealViewController', '~> 2.3'
pod 'CAAnimationBlocks'
pod 'OHHTTPStubs'
pod 'OHHTTPStubs/XCTestExpectation'
pod 'AGAsyncTestHelper'
end