1
0
mirror of https://github.com/kremalicious/dotfiles.git synced 2024-11-25 11:28:32 +01:00
dotfiles/ruby.sh

16 lines
237 B
Bash
Raw Normal View History

2014-02-24 17:35:21 +01:00
#!/bin/bash
# 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
2014-11-03 17:40:13 +01:00
rvm install 2.1.4
rvm use --default 2.1.4
2014-02-24 17:35:21 +01:00
rvm rubygems latest
# Install gems
gem install bundler
gem install jekyll