Oct
30
Well, after spending a week with ruby on rails I find it is very easy to pickup and start using. I don’t think I will have a release of any products with it, yet. I found the hardest part for me was learning the syntax and not putting a “;” behind every line. But I have the same learning curve with ASP, altogether it’s a nice programming language! I will continue to work on my skills, and share with you.
Here is a small validation trick I have picked up.
-
validates_presence_of :your_table -
validates_length_of :your_table, :minimum => 10 -
validates_length_of :your_table, :maximum=> 200 - Validation (Ruby on Rails)



Leave A Comment!