I’ve experimenting web developing on Ruby on Rails as a hobby. Last few days I’ve work with ruby 1.9.3 and ROR 3.2.x and felt that I must move to ruby version 2.x.x and ROR 5 because ROR community fastly moved to new ROR version and old version is being deprecated. So here I’ve show you what is on it. Before that below screenshot shows that how the old ROR 4 start page looks like . Because I loved that very much :-).
Let’s rock on!
Here firstly I’ve fully removed ruby 1.8.7 and ROR 4 from my machine. After that I’ve installed ruby 2.2.4 and ROR 5.0.0.1
After that in the terminal I’ve issued the following command
>rails new first_app
So it creates a new rails app
Oh looo..ong Screenshot 😀
After that move to that newly created rails app folder and issue the following command in the windows or linux terminal.
first_app>rails server
After that type the following url in your web browser
http://localhost:3000/
Now you can see the browser screen as below.
Yay 😀 it rocks !
The main difference is the welcome page is been changed and it’s clean and simple .Also the web server moved to “WEBRICK” to “PUMA”.
Thats it !