<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Ruby on Ayman Bagabas</title><link>https://aymanbagabas.com/tags/ruby/</link><description>Recent content in Ruby on Ayman Bagabas</description><generator>Hugo</generator><language>en-us</language><lastBuildDate>Fri, 09 Jun 2017 18:12:00 +0000</lastBuildDate><atom:link href="https://aymanbagabas.com/tags/ruby/index.xml" rel="self" type="application/rss+xml"/><item><title>What is Jekyll?</title><link>https://aymanbagabas.com/blog/2017/06/09/what-is-jekyll/</link><pubDate>Fri, 09 Jun 2017 18:12:00 +0000</pubDate><guid>https://aymanbagabas.com/blog/2017/06/09/what-is-jekyll/</guid><description>&lt;p&gt;&lt;a href="https://jekyllrb.com/"&gt;Jekyll&lt;/a&gt; is a static website builder, it assembeles and combines multiple pages to form one unified HTML page. Jekyll uses YAML language to organize the structure of the page. &lt;a href="https://daringfireball.net/projects/markdown/"&gt;Markdown&lt;/a&gt; language, which is a text-to-HTML converter, makes webpages easy to write and adapt.&lt;/p&gt;
&lt;p&gt;Jekyll is writen in Ruby and can be installed using &lt;code&gt;gem&lt;/code&gt;. On a Linux machine that already has Ruby installed, Jekyll can be installed as the following:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="background-color:#f7f7f7;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"&gt;&lt;code class="language-sh" data-lang="sh"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;gem install jekyll bundler
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;jekyll new my-awesome-site
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;&lt;span style="color:#6639ba"&gt;cd&lt;/span&gt; my-awesome-site
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;bundle &lt;span style="color:#6639ba"&gt;exec&lt;/span&gt; jekyll serve
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Now you can visualize the page using &lt;a href="http://localhost:4000"&gt;http://localhost:4000&lt;/a&gt;&lt;/p&gt;</description></item></channel></rss>