Last active
November 27, 2016 14:02
-
-
Save anhskohbo/ba35e7a8e80ee2327cccbd9f75a2ce64 to your computer and use it in GitHub Desktop.
Homestead + Jekyll For Frontend
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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