-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
58 lines (47 loc) · 1.19 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
# open source
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
use_frameworks!
target 'Shrubbery' do
# For Reactive Programming
pod 'RxSwift', '~> 4.1.2'
pod 'RxCocoa', '~> 4.1.2'
# For Image
pod 'RxKingfisher', '~> 0.1.1'
pod 'Kingfisher', '~> 4.8.0'
# For Logging
pod 'SwiftyBeaver'
# For Dependency Injection
pod 'Swinject', '~> 2.4.0'
target 'DataManager' do
inherit! :search_paths
# For RESTful Internet Request
pod 'Alamofire', '~> 4.7.2'
pod 'RxAlamofire', '~> 4.2.0'
pod 'ObjectMapper', '~> 3.1'
pod 'Moya/RxSwift', '~> 11.0.2'
# pod 'Moya-ObjectMapper/RxSwift'
# For Json
pod 'SwiftyJSON', '~> 4.1.0'
# For Data Storage
pod 'Realm', '~> 3.5.0'
pod 'RealmSwift', '~> 3.5.0'
pod 'RxCoreData', '~> 0.4.0'
# For Dependency Injection
pod 'Swinject', '~> 2.4.0'
end
target 'CommonUtil' do
inherit! :search_paths
# For Logging
pod 'SwiftyBeaver'
end
# target 'ShrubberyTests' do
# inherit! :search_paths
# pod 'RxBlocking', '~> 4.0'
# pod 'RxTest', '~> 4.0'
# end
# target 'ShrubberyUITests' do
# inherit! :search_paths
# # Pods for testing
# end
end