Skip to content

Instantly share code, notes, and snippets.

@mitolog
Created December 19, 2018 10:16
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 mitolog/a756a78cfad99c1d7b6106bc90049cdf to your computer and use it in GitHub Desktop.
Save mitolog/a756a78cfad99c1d7b6106bc90049cdf to your computer and use it in GitHub Desktop.
JellyTalkのPodfile晒します
# Uncomment this line to define a global platform for your project
platform :ios, '10.0'
swift_version = '4.0'
target 'JellyTalk' do
# Comment this line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
inhibit_all_warnings!
# Pods for JellyTalk
pod 'Firebase/Core'
pod 'Firebase/Firestore'
pod 'Firebase/Storage'
pod 'Firebase/Auth'
pod 'Firebase/DynamicLinks'
pod 'Firebase/Database'
pod 'FirebaseUI/Storage', '~> 4.0'
pod 'Firebase/Messaging'
pod 'Fabric', '~> 1.7.2'
pod 'Crashlytics', '~> 3.9.3'
pod 'Firebase/RemoteConfig'
pod 'RxSwift', '~> 4.0'
pod 'RxCocoa', '~> 4.0'
pod 'RxDataSources', '~> 3.0'
pod 'RxKeyboard'
pod 'Validator'
pod 'FacebookLogin'
pod 'lottie-ios'
pod 'MBProgressHUD', '~> 1.1.0'
pod 'SwiftDate'
pod 'TwilioVideo', '~> 1.3.3'
# pod 'CryptoSwift', '~> 0.7.1'
pod 'Himotoki', '~> 3.1'
pod 'Alamofire', '~> 4.5'
pod 'SwiftMessages'
pod 'R.swift'
pod 'Alertift', '~> 3.0'
pod 'NVActivityIndicatorView'
pod 'Shimmer'
pod 'BWWalkthrough'
pod 'KYNavigationProgress'
pod 'SkyFloatingLabelTextField', :git => 'https://github.com/mitolog/SkyFloatingLabelTextField.git', :branch => 'edge-inset'
pod 'Stripe'
pod 'BulletinBoard', :git => 'https://github.com/mitolog/BulletinBoard.git', :branch => 'dev'
pod 'LicensePlist'
pod 'ZendeskSDK'
pod 'ZDCChat'
pod 'SwiftLint'
# pod 'RazzleDazzle', :git => 'https://github.com/mitolog/RazzleDazzle.git', :branch => 'swift4'
# post_install do |installer|
# installer.pods_project.targets.each do |target|
# if target.name == 'RxSwift'
# target.build_configurations.each do |config|
# if config.name == 'Debug'
# config.build_settings['OTHER_SWIFT_FLAGS'] ||= ['-D', 'TRACE_RESOURCES']
# end
# end
# end
# end
# end
def testing_pods
pod 'Quick'
pod 'Nimble'
pod 'RxBlocking', '~> 4.0'
pod 'RxTest', '~> 4.0'
end
target 'JellyTalkTests' do
inherit! :search_paths
# Pods for testing
testing_pods
end
target 'JellyTalkUITests' do
inherit! :search_paths
# Pods for testing
testing_pods
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment