1
0
mirror of https://github.com/kremalicious/dotfiles.git synced 2024-11-22 09:47:21 +01:00
dotfiles/bin/install-ruby.sh

18 lines
246 B
Bash
Raw Normal View History

2016-10-14 21:59:34 +02:00
#!/usr/bin/env bash
2014-02-24 17:35:21 +01:00
# Install RVM
curl -sSL https://get.rvm.io | bash
2014-11-03 17:40:13 +01:00
# handle requirements
rvm requirements
2014-02-24 17:35:21 +01:00
# Install a Ruby
2017-09-10 00:59:34 +02:00
rvm install 2.4.0
rvm use --default 2.4.0
2014-02-24 17:35:21 +01:00
rvm rubygems latest
# Install gems
2017-09-10 14:35:46 +02:00
gem install \
bundler \
jekyll