Skip to content

Instantly share code, notes, and snippets.

@Jimmy-Prime
Created May 13, 2019 08:54
Show Gist options
  • Save Jimmy-Prime/1d0ae0fac73eb096fe2d82607f5b3b68 to your computer and use it in GitHub Desktop.
Save Jimmy-Prime/1d0ae0fac73eb096fe2d82607f5b3b68 to your computer and use it in GitHub Desktop.
Podfile of Crawler project
platform :ios, '11.0'
use_frameworks!
def crawler
pod 'SwiftSoup'
end
def reactivex
pod 'RxCocoa'
pod 'RxRelay'
pod 'RxSwift'
end
def reactive_test
pod 'RxBlocking'
pod 'RxTest'
end
def swiftlint
pod 'SwiftLint', '0.32.0'
end
def uilib
pod 'Kingfisher'
pod 'NVActivityIndicatorView'
pod 'Reusable'
pod 'SnapKit'
end
workspace 'Crawler'
target 'Crawler' do
project 'Crawler'
crawler
reactivex
reactive_test
swiftlint
uilib
end
target 'PostKit' do
project 'PostKit/PostKit'
crawler
reactivex
target 'PostKitTests' do
crawler
reactivex
reactive_test
end
end
target 'PostKitUI' do
project 'PostKitUI/PostKitUI'
reactivex
uilib
target 'PostKitUITests' do
reactivex
reactive_test
uilib
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment