My first take at ROR

I took for a spin ROR (Ruby on Rails) tonight since I had some free time, I started installing it along with a XAMPP installation that I already have running. At first they didn’t want to talk to each other but in the end they both end up working just fine. I would like to [...]

RubyOnRails Controllers

when creating a new controller the file name of the controller has to be the same as the controller itself and it can be either xxxxx_controller or just xxxxxx
For example
mytest_controller.rb – ok
mytest.rb – ok
mytest_co.rb – not ok
also make sure you add ::BASE after the class name definition or you will get a horrifying error… well [...]