Ruby: Programmers' Best Friend

Ruby is a pure, clean and very powerful object-oriented scripting language, which lets you concentrate on what you want to implement.

Here is a piece of example ruby code:

open("/etc/group") { |file|
  file.each_line { |line|
    next if /^\s*#/ =~ line

    name, pw, gid, = line.chomp.split(':')

    puts "#{gid}: #{name}"
  }
}
    

This site is reserved for future use. Please visit the official site to get further information about the Ruby language.

Here is the project page.


Akinori MUSHA <knu@ruby-lang.org>

SourceForge Logo