-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
54 lines (40 loc) · 1.15 KB
/
Podfile
File metadata and controls
54 lines (40 loc) · 1.15 KB
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
source 'https://github.com/CocoaPods/Specs'
platform :ios, '9.0'
use_frameworks!
target 'Listify' do
#Rx Stuff
pod 'RxSwift', '~> 3.0'
pod 'RxCocoa', '~> 3.0'
pod 'NSObject+Rx'
pod 'Action'
pod 'RxDataSources', '~> 1.0'
#Realm
pod 'RealmSwift'
pod 'RxRealm'
#Misc
pod 'Google/SignIn'
pod 'SnapKit', '~> 3.1.0'
pod 'MBProgressHUD', '~> 1.0.0'
pod 'R.swift'
pod 'SwiftyBeaver'
pod 'Fakery'
pod 'Result', '~> 3.0.0'
#Analytics & Deployment
pod 'Fabric'
pod 'Crashlytics'
pod 'Firebase/Core'
target 'ListifyTests' do
pod 'RxSwift', '~> 3.0'
pod 'RxTest'
end
end
# Copy acknowledgements to the Settings.bundle
post_install do | installer |
require 'fileutils'
pods_acknowledgements_path = 'Pods/Target Support Files/Pods/Pods-Acknowledgements.plist'
settings_bundle_path = Dir.glob("**/*Settings.bundle*").first
if File.file?(pods_acknowledgements_path)
puts 'Copying acknowledgements to Settings.bundle'
FileUtils.cp_r(pods_acknowledgements_path, "#{settings_bundle_path}/Acknowledgements.plist", :remove_destination => true)
end
end