Skip to content
Snippets Groups Projects
Commit d6b6f9f9 authored by Jan Tattermusch's avatar Jan Tattermusch
Browse files

install ruby in rc script

parent ea20cafb
No related branches found
No related tags found
No related merge requests found
...@@ -21,8 +21,24 @@ ...@@ -21,8 +21,24 @@
yes | ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" yes | ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew install autoconf automake libtool ccache cmake gflags gpg wget brew install autoconf automake libtool ccache cmake gflags gpg wget
# TODO(jtattermusch): install rvm & ruby # TODO(jtattermusch): hkp://keys.gnupg.net fails with "No route to host"
# TODO(jtattermusch): install cocoapods gpg --keyserver hkp://193.164.133.100 --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
curl -sSL https://get.rvm.io | sudo bash -s stable
# add ourselves to rvm group to prevent later "access denied" errors.
sudo dseditgroup -o edit -a `whoami` -t user rvm
set +ex
source /etc/profile.d/rvm.sh
rvm install ruby-2.3
gem install bundler
rvm osx-ssl-certs status all
rvm osx-ssl-certs update all
set -ex
# cocoapods
gem install cocoapods --version 1.0.0
# python # python
wget -q https://bootstrap.pypa.io/get-pip.py wget -q https://bootstrap.pypa.io/get-pip.py
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment