Skip to content

Instantly share code, notes, and snippets.

@mehdok
Created December 8, 2018 12:00
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 mehdok/0834c49e791a3b7269586ca8efbf8058 to your computer and use it in GitHub Desktop.
Save mehdok/0834c49e791a3b7269586ca8efbf8058 to your computer and use it in GitHub Desktop.
Podfile
def rx_swift
pod 'RxSwift', '~> 4.4'
end
target 'RKProfile' do
use_frameworks!
workspace 'REKAB'
project 'RKProfile/RKProfile.xcodeproj'
rx_swift
end
target 'RKMainScreen' do
use_frameworks!
workspace 'REKAB'
project 'RKMainScreen/RKMainScreen.xcodeproj'
rx_swift
end
target 'REKAB' do
use_frameworks!
workspace 'REKAB'
project 'REKAB.xcodeproj'
# Pods for REKAB
rx_swift
target 'REKABTests' do
inherit! :search_paths
# Pods for testing
end
target 'REKABUITests' do
inherit! :search_paths
# Pods for testing
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment