Skip to content

Commit

Permalink
iOS Guide: Install cocoapods with homebrew
Browse files Browse the repository at this point in the history
- cocoapods are not installable with the current system ruby version on macOS. When trying to install with sudo gem install cocoapods, the error message will appear: securerandom requires Ruby version >= 3.1.0. The current ruby version is 2.6.10.210.
- On stackoverflow it is suggested to install it instead with homebrew: https://stackoverflow.com/questions/77339560/error-installing-cocoapodsdrb-requires-ruby-version-2-7-0-the-current-ruby
  • Loading branch information
GitToTheHub committed Feb 12, 2025
1 parent 90a70a0 commit b5b3bac
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion www/docs/en/12.x-2025.01/guide/platforms/ios/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ The [CocoaPods](https://cocoapods.org/#install) tools are needed to build iOS ap
To install CocoaPods, run the following from command-line terminal:

```bash
$ sudo gem install cocoapods
$ brew install cocoapods
```

## Project Configuration
Expand Down
2 changes: 1 addition & 1 deletion www/docs/en/12.x/guide/platforms/ios/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ The [CocoaPods](https://cocoapods.org/#install) tools are needed to build iOS ap
To install CocoaPods, run the following from command-line terminal:

```bash
$ sudo gem install cocoapods
$ brew install cocoapods
```

## Project Configuration
Expand Down
2 changes: 1 addition & 1 deletion www/docs/en/dev/guide/platforms/ios/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ The [CocoaPods](https://cocoapods.org/#install) tools are needed to build iOS ap
To install CocoaPods, run the following from command-line terminal:

```bash
$ sudo gem install cocoapods
$ brew install cocoapods
```

## Project Configuration
Expand Down

0 comments on commit b5b3bac

Please sign in to comment.