mirror of
https://github.com/kremalicious/dotfiles.git
synced 2024-11-22 01:37:14 +01:00
18 lines
242 B
Bash
Executable File
18 lines
242 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Install RVM
|
|
curl -sSL https://get.rvm.io | bash
|
|
|
|
# handle requirements
|
|
rvm requirements
|
|
|
|
# Install a Ruby
|
|
rvm install 2.5
|
|
rvm use --default 2.5
|
|
rvm rubygems latest
|
|
|
|
# Install gems
|
|
gem install \
|
|
bundler \
|
|
jekyll
|