mirror of
https://github.com/kremalicious/dotfiles.git
synced 2024-11-22 09:47:21 +01:00
13 lines
187 B
Plaintext
13 lines
187 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
# Install RVM
|
||
|
curl -sSL https://get.rvm.io | bash
|
||
|
|
||
|
# Install a Ruby
|
||
|
rvm install 2.1.0
|
||
|
rvm use 2.1.0
|
||
|
rvm rubygems latest
|
||
|
|
||
|
# Install gems
|
||
|
gem install bundler
|
||
|
gem install jekyll
|