This repository has been archived by the owner on Jul 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Podfile
79 lines (66 loc) · 1.5 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
use_frameworks!
def library
pod 'KissXML', '~> 5.2.2'
pod 'ICSMainFramework', :path => "./Library/ICSMainFramework/"
pod 'MMWormhole', '~> 2.0.0'
pod 'KeychainAccess'
end
def tunnel
pod 'MMWormhole', '~> 2.0.0'
end
def socket
pod 'CocoaAsyncSocket', '~> 7.4.3'
end
def model
pod 'RealmSwift', '~> 2.10.2'
end
target "Potatso" do
pod 'Aspects', :path => "./Library/Aspects/"
pod 'Cartography'
pod 'AsyncSwift'
pod 'SwiftColor'
pod 'Appirater'
pod 'Eureka'
pod 'MBProgressHUD'
pod 'CallbackURLKit', :path => "./Library/CallbackURLKit"
pod 'ICDMaterialActivityIndicatorView', '~> 0.1.0'
pod 'Reveal-iOS-SDK', '~> 1.6.2', :configurations => ['Debug']
pod 'ICSPullToRefresh', '~> 0.6'
pod 'ISO8601DateFormatter', '~> 0.8'
pod 'Alamofire'
pod 'ObjectMapper'
pod 'CocoaLumberjack/Swift', '~> 3.0.0'
pod 'PSOperations'
tunnel
library
socket
model
end
target "PacketTunnel" do
tunnel
socket
end
target "PacketProcessor" do
socket
end
target "TodayWidget" do
pod 'Cartography'
pod 'SwiftColor'
library
socket
model
end
target "PotatsoLibrary" do
library
model
# YAML-Framework 0.0.3 is not available in cocoapods so we install it from local using git submodule
pod 'YAML-Framework', :path => "./Library/YAML-Framework"
end
target "PotatsoModel" do
model
end
target "PotatsoLibraryTests" do
library
end