Skip to content

Instantly share code, notes, and snippets.

@amirbehzad
Created April 18, 2016 15:42
Show Gist options
  • Select an option

  • Save amirbehzad/4e4dfc0db35a618a3d6429a84c3fc506 to your computer and use it in GitHub Desktop.

Select an option

Save amirbehzad/4e4dfc0db35a618a3d6429a84c3fc506 to your computer and use it in GitHub Desktop.

Revisions

  1. amirbehzad created this gist Apr 18, 2016.
    28 changes: 28 additions & 0 deletions Jekyll-OSX.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,28 @@
    ```bash
    /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

    echo "gem: --no-document" >> ~/.gemrc
    curl -L https://get.rvm.io | bash -s stable --auto-dotfiles --autolibs=enable

    rvm install ruby --latest
    rvm requirements

    brew update

    sudo gem update --system

    sudo gem uninstall sass
    sudo gem uninstall compass

    sudo xcode-select --install
    sudo xcodebuild -license

    brew install gcc
    brew install coreutils
    brew install apple-gcc42

    sudo gem install ffi
    sudo gem install sass
    sudo gem install compass
    sudo gem install jekyll
    ```