Skip to content
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

Update for linux dependencies and newer ruby versions for all supported OS's. #26

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion archlinux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ fancy_echo "Installing dependencies ..."
install "cmake"

## Ruby environment
RUBY_VERSION="2.5.1"
RUBY_VERSION="3.1.0"

fancy_echo "Preveting gem system from installing documentation ..."
echo 'gem: --no-ri --no-doc' >> $HOME/.gemrc
Expand Down
4 changes: 2 additions & 2 deletions linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ fancy_echo "Installing ImageMagick, to crop and resize images ..."
sudo aptitude install -y imagemagick

fancy_echo "Installing libraries for common gem dependencies ..."
sudo aptitude install -y libxslt1-dev libcurl4-openssl-dev libksba8 libksba-dev libqtwebkit-dev libreadline-dev libpq-dev
sudo aptitude install -y libxslt1-dev libcurl4-openssl-dev libksba8 libksba-dev libqt5webkit5-dev libreadline-dev libpq-dev

fancy_echo "Installing watch, to execute a program periodically and show the output ..."
sudo aptitude install -y watch
Expand Down Expand Up @@ -110,7 +110,7 @@ fancy_echo "Installing Ruby dependencies ..."
## Ruby environment
RUBY_VERSION="3.1.0"

fancy_echo "Preveting gem system from installing documentation ..."
fancy_echo "Preventing gem system from installing documentation ..."
echo 'gem: --no-ri --no-doc' >> ~/.gemrc

fancy_echo "Installing Ruby $RUBY_VERSION ..."
Expand Down
8 changes: 4 additions & 4 deletions mac.sh
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,11 @@ fancy_echo "Upgrading and linking OpenSSL ..."
#export CC=gcc-4.2

## Ruby environment
fancy_echo "Installing Ruby 2.5.1 ..."
rbenv install 2.5.1
fancy_echo "Installing Ruby 3.1.0 ..."
rbenv install 3.1.0

fancy_echo "Setting Ruby 2.5.1 as global default Ruby ..."
rbenv global 2.5.1
fancy_echo "Setting Ruby 3.1.0 as global default Ruby ..."
rbenv global 3.1.0
rbenv rehash

fancy_echo "Updating to latest Rubygems version ..."
Expand Down