Skip to content

Instantly share code, notes, and snippets.

@mnaruse
Created June 14, 2020 10:53
Show Gist options
  • Save mnaruse/e192b4b8f0157dcbb6dbf614e00bfe7c to your computer and use it in GitHub Desktop.
Save mnaruse/e192b4b8f0157dcbb6dbf614e00bfe7c to your computer and use it in GitHub Desktop.
My favorit "Podfile".
# Uncomment the next line to define a global platform for your project
platform :ios, '12.0'
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
abstract_target 'All' do
# Pods for All
pod 'SwiftFormat/CLI'
pod 'SwiftLint'
pod 'Logging'
pod 'SwiftGen'
target 'Main' do
# Pods for A
pod 'RxCocoa'
pod 'RxSwift'
end
target 'Model' do
# Pods for Model
pod 'RealmSwift'
end
# target 'C' do
# # Pods for C
# target 'CTests' do
# inherit! :search_paths
# # Pods for testing
# end
# end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment