forked from alexgerrese/GoBringIt-Delivery
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Podfile
41 lines (34 loc) · 1.07 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
# Uncomment this line to define a global platform for your project
platform :ios, '11.0'
target 'BringIt' do
# Comment this line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for BringIt
# Old Pods
#pod 'B68UIFloatLabelTextField'
#pod 'EZSwiftExtensions'
pod 'IQKeyboardManagerSwift'
#pod 'IDZSwiftCommonCrypto'
#pod 'CVCalendar'
#pod 'GMStepper'
pod 'Stripe'
# pod 'CryptoSwift'
# New Pods
pod 'RealmSwift' # for local database
#pod 'Timepiece' # for simple date management
#pod 'Hero' # for elegant transitions
pod 'Moya' # for an abstracted netowrk layer
pod 'Alamofire' # for better networking
#pod 'ObjectMapper' # for JSON object mapping
pod 'SendGrid', :git => 'https://github.com/scottkawai/sendgrid-swift.git' # for sending emails
pod 'SkeletonView' # For skeleton loading
pod 'Siren' # for forcing app updates
target 'BringItTests' do
inherit! :search_paths
# Pods for testing
end
target 'BringItUITests' do
inherit! :search_paths
# Pods for testing
end
end