Skip to content

Instantly share code, notes, and snippets.

@esafirm
Created October 26, 2016 03:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save esafirm/670c099c92eed2326dc1e03ebe7f2f92 to your computer and use it in GitHub Desktop.
Save esafirm/670c099c92eed2326dc1e03ebe7f2f92 to your computer and use it in GitHub Desktop.
Podfile for Rame to achieve Swift 3 compatibility
# Uncomment this line to define a global platform for your project
platform :ios, '8.0'
# Uncomment this line if you're using Swift
use_frameworks!
target 'Rame' do
pod 'Alamofire', :git => 'https://github.com/Homely/Alamofire.git', :branch => 'ios8'
pod "SWSegmentedControl"
pod 'Google/SignIn'
pod 'Charts', :git => 'https://github.com/danielgindi/Charts.git', :tag => 'v3.0.0'
pod 'Fabric'
pod 'Digits'
pod 'Crashlytics'
pod 'TwitterCore'
pod 'TwitterKit'
pod 'RealmSwift', :git => 'https://github.com/realm/realm-cocoa.git', :tag => 'v1.1.0', :submodules => true
pod 'ImagePicker', :git => 'https://github.com/hyperoslo/ImagePicker.git', :tag => '2.0.0'
pod "Popover"
pod 'BXProgressHUD', :git => 'https://github.com/banxi1988/BXProgressHUD.git', :tag => '2.0'
end
target 'RameTests' do
end
@esafirm
Copy link
Author

esafirm commented Oct 26, 2016

Usage

pod update && pod install

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment