-
Notifications
You must be signed in to change notification settings - Fork 191
/
Podfile
executable file
·63 lines (53 loc) · 2.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
59
60
61
62
63
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
target 'OpenShop' do
# pod 'AFNetworking', '~> 3.0'
pod 'SSKeychain', '~> 1.2.3'
# custom MMRecord repo fixes check for NULL before setting a primary key value for a child entity
pod 'MMRecord/Core', :git => 'https://github.com/Skornos/MMRecord.git'
pod 'MMRecord/SessionManagerServer', :git => 'https://github.com/Skornos/MMRecord.git'
pod 'Mantle', '~> 2.0.5'
pod 'MagicalRecord', '~> 2.3.2'
pod 'MagicalRecord/ShorthandMethodAliases'
pod 'MagicalRecord/CocoaLumberjack'
pod 'FBSDKCoreKit', '~> 4.10.0'
pod 'FBSDKLoginKit', '~> 4.10.0'
pod 'FBSDKShareKit', '~> 4.10.0'
pod 'MZFormSheetPresentationController', '~> 2.3.0'
pod 'CRToast', '~> 0.0.9'
pod 'MRProgress', '~> 0.8.2'
pod 'DZNEmptyDataSet', '~> 1.7.3'
pod 'MGSwipeTableCell', '~> 1.5.3'
pod 'pop', :git => 'https://github.com/facebook/pop.git'
pod 'RETableViewManager', :git => 'https://github.com/Skornos/RETableViewManager.git'
pod 'TPKeyboardAvoiding', '~> 1.2.11'
pod 'BLKFlexibleHeightBar', '~> 1.0.2'
pod 'Masonry', '~> 0.6.4'
pod 'SDWebImage', '~> 3.8.0'
pod 'IDMPhotoBrowser', '~> 1.8.1'
pod 'SwipeView', '~> 1.3.2'
pod 'NMRangeSlider', :git => 'https://github.com/muZZkat/NMRangeSlider.git'
pod 'ActionSheetPicker-3.0', '~> 2.0.4'
pod 'DTCoreText', '~> 1.6.17'
pod 'XMLDictionary', '~> 1.4'
pod 'Firebase/Core'
pod 'GoogleIDFASupport'
pod 'Onboard', :git => 'https://github.com/Skornos/Onboard.git'
pod 'AFNetworkActivityLogger', :git => 'https://github.com/AFNetworking/AFNetworkActivityLogger.git', :branch => '3_0_0'
pod 'CocoaLumberjack'
# clean status bar from the screenshots on simulator
pod 'SimulatorStatusMagic', :configurations => ['Debug']
# Crashlytics Cocoapods
# pod 'Fabric'
# pod 'Crashlytics'
# pod 'CrashlyticsLumberjack', '~> 2.0.0'
end
target 'OpenShopUITests' do
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['GCC_NO_COMMON_BLOCKS'] = 'NO'
end
end
end