RVM 설치(루비 버전 관리)

    $ curl -L https://get.rvm.io | bash -s stable

터미널 나갔다 들어오기 3. 루비 2.1.1 설치

    $ rvm install 2.1.1

~/.bashrc에 아래 스크립트 추가

    $ source ~/.rvm/scripts/rvm

기본 루비 버전 지정

    $ rvm --default use 2.1.1

번들러 설치

    $ gem install bundler

Gemfile 작성

    source 'https://rubygems.org'
    gem 'jekyll', '2.4.0'
    gem 'jekyll-coffeescript', '1.0.1'
    gem 'jekyll-sass-converter', '1.2.0'
    gem 'kramdown', '1.5.0'
    gem 'liquid', '2.6.2'
    gem 'maruku', '0.7.0'
    gem 'rdiscount', '2.1.7'
    gem 'redcarpet', '3.1.2'
    gem 'RedCloth', '4.2.9'
    gem 'pygments.rb', '0.6.1'
    gem 'jemoji', '0.4.0'
    gem 'jekyll-mentions', '0.2.1'
    gem 'jekyll-redirect-from', '0.6.2'
    gem 'jekyll-sitemap', '0.8.1'
    gem 'github-pages', '35'

설치

    $ bundle install

참고문서

http://stackoverflow.com/questions/18947072/error-while-installing-ruby-using-rvm

https://pages.github.com/versions/