Reasons to learn Ruby
Hi All
I am looking for a new language to learn and add to my language set that already contains PHP & C# in much depth. Ruby is one language i was thinking of learning.
Can you guys please give me practical uses and/or applications that use/may use Ruby.
I believe knowing this before learning it will surely give me some inspiration and direction when i begin my Ruby lessons.
Thanks.
wilch
Junior Poster in Training
84 posts since Aug 2007
Reputation Points: 25
Solved Threads: 17
Skill Endorsements: 0
-- Brilliant community (check out ruby forums)
-- The code imo looks really nice, and there are alot of very helpful functions built in.
For example i was writing a script that would get the first day of the week and last day of the week.
In PHP i eventually managed to cut it down to 7 lines which is not bad at all.
In ruby I can just do this, 4 lines if you include the space :)
require 'active_support'
start_of_week = at_the_beginning_of_week
end_of_week = at_end_of_week
There are also many more functions that save you time like this
check out active support documentation
benjaminFowl87
Junior Poster in Training
74 posts since Aug 2010
Reputation Points: 17
Solved Threads: 1
Skill Endorsements: 0
Question Answered as of 2 Years Ago by
benjaminFowl87
and
snippsat