From 08da3f8dd5fdaad4b2f6f0423267e8a438c20688 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 8 Dec 2015 09:37:49 +0100 Subject: [PATCH] Minor update --- README.markdown | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/README.markdown b/README.markdown index b5708b93e7c..7618a5e423b 100644 --- a/README.markdown +++ b/README.markdown @@ -21,9 +21,11 @@ $ bundle $ rake preview ``` +The preview is now available on [http://127.0.0.1:4000](http://127.0.0.1:4000). + ## Steps for the deployment of the site -All developers with write access to the repositories are able to deploy the website. +All developers with write access to the repositories are able to deploy the website. The deploy process is fully automated with `rake generate && rake deploy`. ```bash $ git submodule update --init @@ -34,23 +36,23 @@ $ cd .. $ rake generate && rake deploy ``` -### Preparation on Fedora and CentOS -On Fedora 22 or CentOS 7.1.1503 Ruby is not available by default. Please take the notes here as a little guide for the Ruby installation process. +### Setup on Fedora and CentOS +On Fedora > 22 or CentOS 7.1.1503 Ruby is not available by default. Please take the notes here as a little guide for the Ruby installation process. ```bash $ curl -sSL https://rvm.io/mpapis.asc | gpg2 --import - $ curl -L get.rvm.io | bash -s stable $ source ~/.profile $ rvm requirements -$ rvm install ruby-2.2.2 -$ rvm use ruby-2.2.2 --default +$ rvm install ruby-2.2.3 +$ rvm use ruby-2.2.3 --default $ ruby -v ``` -The last command will give you something like this `ruby 2.2.2p95 (2015-04-13 revision 50295) [x86_64-linux]`. Then install `bundler`. +The last command will give you something like this `ruby 2.2.3p173 (2015-08-18 revision 51636) [x86_64-linux]`. Then install `bundler`. ```bash $ gem install bundler ``` -Now please follow the instruction above. +Now please follow the instructions above.