Starting Ruby On Rails
From Logic Wiki
Contents
Start up Videos & Tutorials
https://www.youtube.com/watch?v=LADHwoN2LMM
Installation
Ubuntu
installing Ruby On Rails on Ubuntu can be watched from this location
https://www.youtube.com/watch?v=hiPQynmnsiI
First Steps
https://www.youtube.com/watch?v=UQ8_VOGj5H8
mkdir MyFirstApp cd MyFirstApp
and scaffold it
rails new HelloWorld
irb (Interactive Ruby)
it's a command line interpreter of ruby. simply write irb in the command prompt to use it and CTRL+D to exit
10.times do print "logicmade" end
in basic English the code above can be understand how it's read.