-
-
Notifications
You must be signed in to change notification settings - Fork 197
Support brew version of Cocoapods #3276
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Hey @jaxondu ,
const cocoapodVersion = await this.$sysInfo.getCocoapodVersion();
const xcodeProjVersion = await this.$sysInfo.getXCodeProjGemVersion();
if (!(cocoapodVersion || xcodeProjVersion)) {
this.$errors.failWithoutHelp("CocoaPods or ruby gem 'xcodeproj' is not installed. Run `sudo gem install cocoapods` and try again.");
} It should be pretty straightforward, so we'll be glad to review PRs in case you want to give it a try. |
Fatme
pushed a commit
to telerik/mobile-cli-lib
that referenced
this issue
Feb 14, 2018
Support brew version of Cocoapods Fixes NativeScript/nativescript-cli#3276
Fatme
added a commit
that referenced
this issue
Feb 14, 2018
Support brew version of Cocoapods Fixes #3276
This was referenced Feb 14, 2018
Fatme
added a commit
that referenced
this issue
Feb 14, 2018
Support brew version of Cocoapods Fixes #3276
Fatme
added a commit
that referenced
this issue
Feb 14, 2018
Support brew version of Cocoapods Fixes #3276
Fatme
added a commit
that referenced
this issue
Feb 14, 2018
Support brew version of Cocoapods Fixes #3276
Fatme
pushed a commit
to telerik/mobile-cli-lib
that referenced
this issue
Feb 28, 2018
Support brew version of Cocoapods Fixes NativeScript/nativescript-cli#3276
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm using the brew version of Cocoapods on macOS instead of Ruby gem version. The brew version also has xcodeproj binary installed in the path. tns CLI however is expecting the gem version of xcodeproj when you run "tns doctor" and "tns run ios". Please support brew version of cocoapods by checking xcodeproj in the path instead of in the gem list.
The text was updated successfully, but these errors were encountered: