-
Notifications
You must be signed in to change notification settings - Fork 45
/
Podfile
32 lines (27 loc) · 1.21 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
# Uncomment this line to define a global platform for your project
# platform :ios, '7.0'
# ignore all warnings from all pods
inhibit_all_warnings!
source 'https://github.com/CocoaPods/Specs.git'
target 'ArcBit' do
pod 'AFNetworking', '2.5.3', :inhibit_warnings => true
pod 'CoreBitcoin', :podspec => 'https://raw.github.com/oleganza/CoreBitcoin/master/CoreBitcoin.podspec', :inhibit_warnings => true
pod 'MBProgressHUD', '~> 0.9', :inhibit_warnings => true
pod 'RNCryptor', '2.2', :inhibit_warnings => true
pod 'ECSlidingViewController', '~> 2.0.3', :inhibit_warnings => true
pod 'iCloudDocumentSync', :inhibit_warnings => true
pod 'SwiftTryCatch', :inhibit_warnings => true
pod 'Fabric'
pod 'Crashlytics'
end
target 'ArcBitTests' do
pod 'AFNetworking', '2.5.3', :inhibit_warnings => true
pod 'CoreBitcoin', :podspec => 'https://raw.github.com/oleganza/CoreBitcoin/master/CoreBitcoin.podspec', :inhibit_warnings => true
pod 'MBProgressHUD', '~> 0.9', :inhibit_warnings => true
pod 'RNCryptor', '2.2', :inhibit_warnings => true
pod 'ECSlidingViewController', '~> 2.0.3', :inhibit_warnings => true
pod 'iCloudDocumentSync', :inhibit_warnings => true
pod 'SwiftTryCatch', :inhibit_warnings => true
pod 'Fabric'
pod 'Crashlytics'
end