Skip to content

Instantly share code, notes, and snippets.

@anhskohbo
Last active November 27, 2016 14:02
Show Gist options
  • Save anhskohbo/ba35e7a8e80ee2327cccbd9f75a2ce64 to your computer and use it in GitHub Desktop.
Save anhskohbo/ba35e7a8e80ee2327cccbd9f75a2ce64 to your computer and use it in GitHub Desktop.
Homestead + Jekyll For Frontend
#!/bin/bash
# Install Ruby v2.3.0
sudo apt-get -y update
sudo apt-get -y install build-essential zlib1g-dev libssl-dev libreadline6-dev libyaml-dev
cd /tmp
wget https://cache.ruby-lang.org/pub/ruby/2.3/ruby-2.3.0.tar.gz
tar -xvzf ruby-2.3.0.tar.gz
cd ruby-2.3.0/
./configure --prefix=/usr/local
make
sudo make install
# Install Jekyll
sudo gem install jekyll
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment