Skip to content

ruby/ruby

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
October 26, 2022 18:57
June 7, 2021 10:22
September 10, 2022 09:32
doc
March 20, 2023 15:40
April 1, 2023 15:13
April 1, 2023 00:23
July 27, 2022 18:42
March 6, 2023 23:44
February 6, 2020 11:46
March 6, 2023 23:44
March 31, 2023 00:52
March 6, 2023 23:44
February 2, 2019 06:38
February 2, 2019 06:38
March 6, 2023 23:44
March 6, 2023 23:44
March 17, 2021 18:52
April 13, 2020 16:06
February 27, 2023 09:56
March 8, 2023 14:02
March 24, 2023 11:18
February 28, 2023 10:05
March 31, 2023 11:28
March 24, 2021 20:13
July 21, 2022 09:42
July 24, 2018 05:38
July 21, 2022 09:42
November 27, 2014 20:02
July 21, 2022 09:42
July 21, 2022 09:42
January 18, 2023 08:49
March 15, 2023 09:53
January 16, 2018 08:35
July 21, 2022 09:42
July 21, 2022 09:42
July 21, 2022 09:42
December 24, 2020 01:59
March 3, 2023 00:08
March 31, 2023 18:08
November 9, 2022 23:21
January 18, 2018 11:44
December 10, 2016 17:47
September 10, 2021 20:00
March 16, 2023 18:37
February 9, 2023 10:32
July 21, 2022 09:42
March 6, 2023 23:44
March 31, 2023 11:28
November 16, 2022 18:58
March 6, 2023 23:44
March 13, 2023 20:54

Actions Status: MinGW Actions Status: RJIT Actions Status: Ubuntu Actions Status: Windows AppVeyor status Travis Status Cirrus Status

What is Ruby?

Ruby is an interpreted object-oriented programming language often used for web development. It also offers many scripting features to process plain text and serialized files, or manage system tasks. It is simple, straightforward, and extensible.

Features of Ruby

  • Simple Syntax
  • Normal Object-oriented Features (e.g. class, method calls)
  • Advanced Object-oriented Features (e.g. mix-in, singleton-method)
  • Operator Overloading
  • Exception Handling
  • Iterators and Closures
  • Garbage Collection
  • Dynamic Loading of Object Files (on some architectures)
  • Highly Portable (works on many Unix-like/POSIX compatible platforms as well as Windows, macOS, etc.) cf. https://github.com/ruby/ruby/blob/master/doc/maintainers.md#platform-maintainers

How to get Ruby

For a complete list of ways to install Ruby, including using third-party tools like rvm, see:

https://www.ruby-lang.org/en/downloads/

You can download release packages and the snapshot of the repository. If you want to download whole versions of Ruby, please visit https://www.ruby-lang.org/en/downloads/releases/.

Download with Git

The mirror of the Ruby source tree can be checked out with the following command:

$ git clone https://github.com/ruby/ruby.git

There are some other branches under development. Try the following command to see the list of branches:

$ git ls-remote https://github.com/ruby/ruby.git

You may also want to use https://git.ruby-lang.org/ruby.git (actual master of Ruby source) if you are a committer.

How to build

see Building Ruby

Ruby home page

https://www.ruby-lang.org/

Documentation

Mailing list

There is a mailing list to discuss Ruby. To subscribe to this list, please send the following phrase:

subscribe

in the mail body (not subject) to the address ruby-talk-request@ruby-lang.org.

Copying

See the file COPYING.

Feedback

Questions about the Ruby language can be asked on the Ruby-Talk mailing list or on websites like https://stackoverflow.com.

Bugs should be reported at https://bugs.ruby-lang.org. Read "Reporting Issues" for more information.

Contributing

See "Contributing to Ruby", which includes setup and build instructions.

The Author

Ruby was originally designed and developed by Yukihiro Matsumoto (Matz) in 1995.

matz@ruby-lang.org