Created
January 22, 2017 04:53
-
-
Save hassanabidpk/c2dd3d17b55a6867d5c21bf5d926cda0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
platform :ios, '9.0' | |
target 'TestPodsVersion' do | |
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks | |
use_frameworks! | |
pod 'ObjectMapper', '~> 2.2' | |
pod 'RxSwift', '~> 3.0' | |
pod 'Moya/RxSwift' | |
pod 'Moya-ObjectMapper/RxSwift' | |
pod 'NSObject+Rx' | |
pod 'RxOptional' | |
pod 'Result' | |
pod 'Kanna', '~> 2.1.0' | |
pod 'RxCocoa', '~> 3.0' | |
pod 'Kingfisher', '~> 3.0' | |
pod 'SnapKit', '~> 3.1.2' | |
pod 'Device', '~> 2.0.1' | |
pod 'Fabric' | |
pod 'Crashlytics' | |
pod 'KeychainSwift', '~> 7.0' | |
pod 'RxDataSources', '~> 1.0' | |
pod 'DateTools' | |
pod 'RxAlamofire' | |
# pod 'Cell+Rx', '~> 1.2.1' | |
pod 'AsyncSwift' | |
pod 'SwiftGen' | |
pod 'MarkdownKit' | |
pod 'TTTAttributedLabel' | |
# pod 'RxTimer' | |
# pod 'RxResult', '~> 2.0.3' | |
# pod 'RxColor' | |
pod 'ZLSwipeableViewSwift' | |
pod 'Localizable' | |
# pod 'TextStyle/RxSwift' | |
# Pods for TestPodsVersion | |
target 'TestPodsVersionTests' do | |
inherit! :search_paths | |
pod 'Quick' | |
pod 'Nimble' | |
end | |
target 'TestPodsVersionUITests' do | |
inherit! :search_paths | |
# Pods for testing | |
end | |
end | |
post_install do |installer| | |
installer.pods_project.targets.each do |target| | |
target.build_configurations.each do |config| | |
config.build_settings['SWIFT_VERSION'] = '3.0' | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment