Created
March 3, 2016 11:39
-
-
Save ValCanBuild/89e6bfb23f514b406d0c to your computer and use it in GitHub Desktop.
Using variables in your 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
platform :ios, '9.0' | |
use_frameworks! | |
$rxVersion = '~> 2.2.0' | |
target 'MyProject' do | |
pod 'RxSwift', $rxVersion | |
pod 'RxCocoa', $rxVersion | |
end |
Thank you
@ValCanBuild you don't need to use the $
, right? Can the variable simply be called rxVersion
?
Thanks 👍
Thanks
Thanks.
Thanks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks you !