forked from e-mission/e-mission-phone
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request e-mission#920 from shankari/upgrade_2023
Lock down the version of ruby used instead of "the default"
- Loading branch information
Showing
5 changed files
with
44 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,14 @@ | ||
export NVM_VERSION=0.39.0 | ||
export NODE_VERSION=14.18.1 | ||
export NPM_VERSION=6.14.15 | ||
export RUBY_VERSION=2.6.0 | ||
# make sure that this is a stable version from | ||
# so that https://github.com/postmodern/ruby-versions | ||
# ideally, this would be the same version as the CI | ||
# Looks like brew supports only major and minor, not patch version | ||
export RUBY_VERSION=2.7 | ||
export COCOAPODS_VERSION=1.11.2 | ||
export GRADLE_VERSION=7.1.1 | ||
export OSX_EXP_VERSION=12 | ||
|
||
export NVM_DIR="$HOME/.nvm" | ||
export RUBY_PATH=$HOME/.gem/ruby/$RUBY_VERSION/bin | ||
export RUBY_PATH=$HOME/.gem/ruby/$RUBY_VERSION.0/bin |
This file contains 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