ruby 및 thirdparty lib 설치하기
이미지 출처: https://github.com/jekyll/brand
01. ruby download 및 설치(윈도우 기준)
- 다운로드 링크
https://rubyinstaller.org/downloads/
- 설치
02. bundler 설치
gem install bundler
03. jekyll 폴더이동(Gemfile에 define된 dependency 설치)
1 2 3 4 5 6 7 8 9 10 11 | # Gemfile 예시 source 'https://rubygems.org' gem 'jekyll', '3.3.1' group :jekyll_plugins do gem 'jekyll-feed', '0.6.0' gem 'jekyll-seo-tag', '2.1.0' gem 'jekyll-paginate', '1.1.0' gem 'jekyll-sitemap', '1.0.0' end | cs |
bundle install