educatic-info/docs/jekyll/README.md

27 lines
611 B
Markdown
Raw Normal View History

2022-04-08 18:41:29 +02:00
# Jekyll
Enlaces de interés
* [Alojamiento de la gema Ruby](https://rubygems.org/gems/jekyll)
* [Página principal](https://jekyllrb.com/)
## Instalación
1. Tener Ruby instalado.
2022-04-08 18:45:45 +02:00
2. Se require tener
* El compilador de g++ instalado (`zypper in gcc-c++`)
* `libffi-devel`
2022-04-08 18:41:29 +02:00
3. Instalar la gema.
* Se puede instalar teniendo el [Gemfile](Gemfile) con `bundler install` o
* Se puede hacer mediante el comando `sudo gem install jenkins`.
## Demo
```
gem install bundler jekyll
jekyll new my-awesome-site
cd my-awesome-site
bundle exec jekyll serve
# => Now browse to http://localhost:4000
```