Created
June 14, 2020 10:53
-
-
Save mnaruse/e192b4b8f0157dcbb6dbf614e00bfe7c to your computer and use it in GitHub Desktop.
My favorit "Podfile".
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
# 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