Initial Commit

This commit is contained in:
Patrick McDonagh
2018-05-25 12:56:07 -05:00
commit 909925a334
642 changed files with 153969 additions and 0 deletions

25
Podfile Normal file
View File

@@ -0,0 +1,25 @@
# Uncomment the next line to define a global platform for your project
platform :ios, '10.0'
target 'pocloud' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for pocloud
pod 'SwiftyJSON'
pod 'SVProgressHUD'
pod 'ChameleonFramework'
pod 'Alamofire'
pod 'RealmSwift'
pod 'PromiseKit/Alamofire'
pod 'Kingfisher'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['CLANG_WARN_DOCUMENTATION_COMMENTS'] = 'NO'
end
end
end