Skip to content

Instantly share code, notes, and snippets.

View ChanceArthur's full-sized avatar

Chance Arthur ChanceArthur

View GitHub Profile
#!/bin/bash
sudo apt install -y autoconf bison build-essential libssl-dev libyaml-dev libreadline6-dev zlib1g-dev libncurses5-dev libffi-dev libgdbm5 libgdbm-dev
# Install rbenv
git clone https://github.com/rbenv/rbenv.git ~/.rbenv
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_profile
echo 'eval "$(rbenv init -)"' >> ~/.bash_profile
source ~/.bash_profile
git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build
@ChanceArthur
ChanceArthur / .gitlab-ci.yml
Created August 15, 2018 14:19
GitLab CI configuration for Jekyll with Gulp asset pipeline
image: jekyll/jekyll:latest
variables:
JEKYLL_ENV: production
cache:
paths:
- node_modules/
before_script: