Ruby (programming language)

From Wikipedia, the free encyclopedia
Ruby
Ruby logo.svg
ParadigmMulti-paradigm: functional, imperative, object-oriented, reflective
Designed byYukihiro Matsumoto
DeveloperYukihiro Matsumoto, et al.
First appeared1995; 26 years ago (1995)
Stable release
3.0.1[1] Edit this on Wikidata / 5 April 2021; 4 months ago (5 April 2021)
Typing disciplineDuck, dynamic, strong
ScopeLexical, sometimes dynamic
Implementation languageC
OSCross-platform
LicenseRuby License
Filename extensions.rb
Websitewww.ruby-lang.org
Major implementations
Ruby MRI, TruffleRuby, YARV, Rubinius, MagLev, JRuby, MacRuby, RubyMotion, Mruby, IronRuby
Influenced by
Ada,[2] Basic,[3] C++,[2] CLU,[4] Dylan,[4] Eiffel,[2] Lisp,[4] Lua, Perl,[4] Python,[4] Smalltalk[4]
Influenced
Clojure, CoffeeScript, Crystal, D, Elixir, Groovy, ,[5] Julia,[6] Mirah, Nu,[7] Ring,[8] Rust,[9] Swift[10]

Ruby is an interpreted, high-level, general-purpose programming language. It was designed and developed in the mid-1990s by Yukihiro "Matz" Matsumoto in Japan.

Ruby is dynamically typed and uses garbage collection and just-in-time compilation. It supports multiple programming paradigms, including procedural, object-oriented, and functional programming. According to the creator, Ruby was influenced by Perl, Smalltalk, Eiffel, Ada, BASIC, and Lisp.[11][3]

History[]

Early concept[]

Matsumoto has said that Ruby was conceived in 1993. In a 1999 post to the ruby-talk mailing list, he describes some of his early ideas about the language:[12]

I was talking with my colleague about the possibility of an object-oriented scripting language. I knew Perl (Perl4, not Perl5), but I didn't like it really, because it had the smell of a toy language (it still has). The object-oriented language seemed very promising. I knew Python then. But I didn't like it, because I didn't think it was a true object-oriented language – OO features appeared to be add-on to the language. As a language maniac and OO fan for 15 years, I really wanted a genuine object-oriented, easy-to-use scripting language. I looked for but couldn't find one. So I decided to make it.

Matsumoto describes the design of Ruby as being like a simple Lisp language at its core, with an object system like that of Smalltalk, blocks inspired by higher-order functions, and practical utility like that of Perl.[13]

The name "Ruby" originated during an online chat session between Matsumoto and Keiju Ishitsuka on February 24, 1993, before any code had been written for the language.[14] Initially two names were proposed: "Coral" and "Ruby". Matsumoto chose the latter in a later e-mail to Ishitsuka.[15] Matsumoto later noted a factor in choosing the name "Ruby" – it was the birthstone of one of his colleagues.[16][17]

Early releases[]

The first public release of Ruby 0.95 was announced on Japanese domestic newsgroups on December 21, 1995.[18][19] Subsequently, three more versions of Ruby were released in two days.[14] The release coincided with the launch of the Japanese-language ruby-list mailing list, which was the first mailing list for the new language.

Already present at this stage of development were many of the features familiar in later releases of Ruby, including object-oriented design, classes with inheritance, mixins, iterators, closures, exception handling and garbage collection.[20]

Following the release of Ruby 0.95 in 1995, several stable versions of Ruby were released in the following years:

  • Ruby 1.0: December 25, 1996[14]
  • Ruby 1.2: December 1998
  • Ruby 1.4: August 1999
  • Ruby 1.6: September 2000

In 1997, the first article about Ruby was published on the Web. In the same year, Matsumoto was hired by netlab.jp to work on Ruby as a full-time developer.[14]

In 1998, the Ruby Application Archive was launched by Matsumoto, along with a simple English-language homepage for Ruby.[14]

In 1999, the first English language mailing list ruby-talk began, which signaled a growing interest in the language outside Japan.[21] In this same year, Matsumoto and Keiju Ishitsuka wrote the first book on Ruby, The Object-oriented Scripting Language Ruby (オブジェクト指向スクリプト言語 Ruby), which was published in Japan in October 1999. It would be followed in the early 2000s by around 20 books on Ruby published in Japanese.[14]

By 2000, Ruby was more popular than Python in Japan.[22] In September 2000, the first English language book Programming Ruby was printed, which was later freely released to the public, further widening the adoption of Ruby amongst English speakers. In early 2002, the English-language ruby-talk mailing list was receiving more messages than the Japanese-language ruby-list, demonstrating Ruby's increasing popularity in the non-Japanese speaking world.

Ruby 1.8 and 1.9[]

Ruby 1.8 was initially released August 2003, was stable for a long time, and was retired June 2013.[23] Although deprecated, there is still code based on it. Ruby 1.8 is only partially compatible with Ruby 1.9.

Ruby 1.8 has been the subject of several industry standards. The language specifications for Ruby were developed by the Open Standards Promotion Center of the Information-Technology Promotion Agency (a Japanese government agency) for submission to the Japanese Industrial Standards Committee (JISC) and then to the International Organization for Standardization (ISO). It was accepted as a Japanese Industrial Standard (JIS X 3017) in 2011[24] and an international standard () in 2012.[25][26]

Around 2005, interest in the Ruby language surged in tandem with Ruby on Rails, a web framework written in Ruby. Rails is frequently credited with increasing awareness of Ruby.[27]

Effective with Ruby 1.9.3, released October 31, 2011,[28] Ruby switched from being dual-licensed under the Ruby License and the GPL to being dual-licensed under the Ruby License and the two-clause BSD license.[29] Adoption of 1.9 was slowed by changes from 1.8 that required many popular third party gems to be rewritten. Ruby 1.9 introduces many significant changes over the 1.8 series. Examples include:[30]

  • block local variables (variables that are local to the block in which they are declared)
  • an additional lambda syntax: f = ->(a,b) { puts a + b }
  • an additional Hash literal syntax using colons for symbol keys: {symbol_key: "value"} == {:symbol_key => "value"}
  • per-string character encodings are supported
  • new socket API (IPv6 support)
  • require_relative import security

Ruby 2[]

Ruby 2.0 was intended to be fully backward compatible with Ruby 1.9.3. As of the official 2.0.0 release on February 24, 2013, there were only five known (minor) incompatibilities.[31] Ruby 2.0 added several new features, including:

  • method keyword arguments,
  • a new method, Module#prepend, for extending a class,
  • a new literal for creating an array of symbols,
  • new API for the lazy evaluation of Enumerables, and
  • a new convention of using #to_h to convert objects to Hashes.[32]

Starting with 2.1.0, Ruby's versioning policy is more like semantic versioning.[33] Although similar, Ruby's versioning policy is not compatible with semantic versioning:

Ruby Semantic versioning
MAJOR: Increased when incompatible change which can't be released in MINOR. Reserved for special events. MAJOR: Increased when you make incompatible API changes.
MINOR: increased every Christmas, may be API incompatible. MINOR: increased when you add functionality in a backwards-compatible manner.
TEENY: security or bug fix which maintains API compatibility. May be increased more than 10 (such as 2.1.11), and will be released every 2–3 months. PATCH: increased when you make backwards-compatible bug fixes.
PATCH: number of commits since last MINOR release (will be reset at 0 when releasing MINOR). -

Semantic versioning also provides additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format, not available at Ruby.

Ruby 2.2.0 includes speed-ups, bugfixes, and library updates and removes some deprecated APIs. Most notably, Ruby 2.2.0 introduces changes to memory handling – an incremental garbage collector, support for garbage collection of symbols and the option to compile directly against jemalloc. It also contains experimental support for using vfork(2) with system() and spawn(), and added support for the Unicode 7.0 specification. Since version 2.2.1,[34] Ruby MRI performance on PowerPC64 was improved.[35][36][37] Features that were made obsolete or removed include callcc, the DL library, Digest::HMAC, lib/rational.rb, lib/complex.rb, GServer, Logger::Application as well as various C API functions.[38]

Ruby 2.3.0 includes many performance improvements, updates, and bugfixes including changes to Proc#call, Socket and IO use of exception keywords, Thread#name handling, default passive Net::FTP connections, and Rake being removed from stdlib.[39] Other notable changes in include:

  • The ability to mark all string literals as frozen by default with a consequently large performance increase in string operations.[40]
  • Hash comparison to allow direct checking of key/value pairs instead of just keys.
  • A new safe navigation operator &. that can ease nil handling (e.g. instead of if obj && obj.foo && obj.foo.bar, we can use if obj&.foo&.bar).
  • The did_you_mean gem is now bundled by default and required on startup to automatically suggest similar name matches on a NameError or NoMethodError.
  • Hash#dig and Array#dig to easily extract deeply nested values (e.g. given profile = { social: { wikipedia: { name: 'Foo Baz' } } }, the value Foo Baz can now be retrieved by profile.dig(:social, :wikipedia, :name)).
  • .grep_v(regexp) which will match all negative examples of a given regular expression in addition to other new features.

Ruby 2.4.0 includes performance improvements to hash table, Array#max, Array#min, and instance variable access.[41] Other notable changes include:

  • Binding#irb: Start a REPL session similar to binding.pry
  • Unify Fixnum and Bignum into Integer class
  • String supports Unicode case mappings, not just ASCII
  • A new method, Regexp#match?, which is a faster boolean version of Regexp#match
  • Thread deadlock detection now shows threads with their backtrace and dependency

A few notable changes in Ruby 2.5.0 include rescue and ensure statements automatically use a surrounding do-end block (less need for extra begin-end blocks), method-chaining with yield_self, support for branch coverage and method coverage measurement, and easier Hash transformations with Hash#slice and Hash#transform_keys On top of that come a lot of performance improvements like faster block passing (3 times faster), faster Mutexes, faster ERB templates and improvements on some concatenation methods.

A few notable changes in Ruby 2.6.0 include an experimental just-in-time compiler (JIT), and RubyVM::AbstractSyntaxTree (experimental).

A few notable changes in Ruby 2.7.0 include pattern Matching (experimental), REPL improvements, a compaction GC, and separation of positional and keyword arguments.

Ruby 3[]

Ruby 3.0.0 was released on Christmas Day in 2020.[42] It is known as Ruby 3x3. One of its main aims was to switch the interpreter to a Just-In-Time Compiler, to make programs faster.

Table of versions[]

Version Latest teeny version Initial release date End of support phase End of security maintenance phase
Old version, no longer maintained: 1.0 NA 1996-12-25[43] NA NA
Old version, no longer maintained: 1.8 1.8.7-p375[44] 2003-08-04[45] 2012-06[46] 2014-07-01[47]
Old version, no longer maintained: 1.9 1.9.3-p551[48] 2007-12-25[49] 2014-02-23[50] 2015-02-23[51]
Old version, no longer maintained: 2.0 2.0.0-p648[52] 2013-02-24[53] 2015-02-24[52] 2016-02-24[52]
Old version, no longer maintained: 2.1 2.1.10[54] 2013-12-25[55] 2016-03-30[56][57] 2017-03-31[58][59]
Old version, no longer maintained: 2.2 2.2.10[60] 2014-12-25[61] 2017-03-28[62] 2018-03-31[59]
Old version, no longer maintained: 2.3 2.3.8[63] 2015-12-25[64] 2018-06-20[65] 2019-03-31[65]
Old version, no longer maintained: 2.4 2.4.10[66] 2016-12-25[67] 2019-04-01[68] 2020-04-01[68]
Old version, no longer maintained: 2.5 2.5.9[69] 2017-12-25[70] 2021-04-05[69] 2021-04-05[69]
Older version, yet still maintained: 2.6 2.6.8[71] 2018-12-25[72] 2021-04-05[71] 2022-04-05[71]
Older version, yet still maintained: 2.7 2.7.4[73] 2019-12-25[74] TBA TBA
Current stable version: 3.0 3.0.2[75] 2020-12-25[76] TBA TBA
Legend:
Old version
Older version, still maintained
Latest version
Latest preview version
Future release

Semantics and philosophy[]

Yukihiro Matsumoto, the creator of Ruby

Matsumoto has said that Ruby is designed for programmer productivity and fun, following the principles of good user interface design.[77] At a Google Tech Talk in 2008 Matsumoto further stated, "I hope to see Ruby help every programmer in the world to be productive, and to enjoy programming, and to be happy. That is the primary purpose of Ruby language."[78] He stresses that systems design needs to emphasize human, rather than computer, needs:[79]

Often people, especially computer engineers, focus on the machines. They think, "By doing this, the machine will run fast. By doing this, the machine will run more effectively. By doing this, the machine will something something something." They are focusing on machines. But in fact we need to focus on humans, on how humans care about doing programming or operating the application of the machines. We are the masters. They are the slaves.

Ruby is said to follow the principle of least astonishment (POLA), meaning that the language should behave in such a way as to minimize confusion for experienced users. Matsumoto has said his primary design goal was to make a language that he himself enjoyed using, by minimizing programmer work and possible confusion. He has said that he had not applied the principle of least astonishment to the design of Ruby,[79] but nevertheless the phrase has come to be closely associated with the Ruby programming language. The phrase has itself been a source of surprise, as novice users may take it to mean that Ruby's behaviors try to closely match behaviors familiar from other languages. In a May 2005 discussion on the newsgroup comp.lang.ruby, Matsumoto attempted to distance Ruby from POLA, explaining that because any design choice will be surprising to someone, he uses a personal standard in evaluating surprise. If that personal standard remains consistent, there would be few surprises for those familiar with the standard.[80]

Matsumoto defined it this way in an interview:[79]

Everyone has an individual background. Someone may come from Python, someone else may come from Perl, and they may be surprised by different aspects of the language. Then they come up to me and say, 'I was surprised by this feature of the language, so Ruby violates the principle of least surprise.' Wait. Wait. The principle of least surprise is not for you only. The principle of least surprise means principle of least my surprise. And it means the principle of least surprise after you learn Ruby very well. For example, I was a C++ programmer before I started designing Ruby. I programmed in C++ exclusively for two or three years. And after two years of C++ programming, it still surprises me.

Ruby is object-oriented: every value is an object, including classes and instances of types that many other languages designate as primitives (such as integers, booleans, and "null"). Variables always hold references to objects. Every function is a method and methods are always called on an object. Methods defined at the top level scope become methods of the Object class. Since this class is an ancestor of every other class, such methods can be called on any object. They are also visible in all scopes, effectively serving as "global" procedures. Ruby supports inheritance with dynamic dispatch, mixins and singleton methods (belonging to, and defined for, a single instance rather than being defined on the class). Though Ruby does not support multiple inheritance, classes can import modules as mixins.

Ruby has been described as a multi-paradigm programming language: it allows procedural programming (defining functions/variables outside classes makes them part of the root, 'self' Object), with object orientation (everything is an object) or functional programming (it has anonymous functions, closures, and continuations; statements all have values, and functions return the last evaluation). It has support for introspection, reflection and metaprogramming, as well as support for interpreter-based threads. Ruby features dynamic typing, and supports parametric polymorphism.

According to the Ruby FAQ, the syntax is similar to Perl and the semantics are similar to Smalltalk, but it differs greatly from Python.[81]

Features[]

  • Thoroughly object-oriented with inheritance, mixins and metaclasses[82]
  • Dynamic typing and duck typing
  • Everything is an expression (even statements) and everything is executed imperatively (even declarations)
  • Succinct and flexible syntax[83] that minimizes syntactic noise and serves as a foundation for domain-specific languages[84]
  • Dynamic reflection and alteration of objects to facilitate metaprogramming[85]
  • Lexical closures, iterators and generators, with a block syntax[86]
  • Literal notation for arrays, hashes, regular expressions and symbols
  • Embedding code in strings (interpolation)
  • Default arguments
  • Four levels of variable scope (global, class, instance, and local) denoted by sigils or the lack thereof
  • Garbage collection
  • First-class continuations
  • Strict boolean coercion rules (everything is true except false and nil)
  • Exception handling
  • Operator overloading[87]
  • Built-in support for rational numbers, complex numbers and arbitrary-precision arithmetic
  • Custom dispatch behavior (through method_missing and const_missing)
  • Native threads and cooperative fibers (fibers are a 1.9/YARV feature)
  • Support for Unicode and multiple character encodings.
  • Native plug-in API in C
  • Interactive Ruby Shell (a REPL)
  • Centralized package management through RubyGems
  • Implemented on all major platforms
  • Large standard library, including modules for YAML, JSON, XML, CGI, OpenSSL, HTTP, FTP, RSS, curses, zlib and Tk[88]
  • Just-in-time compilation
  • The Interactive Ruby Shell, irb, an interactive command-line interpreter that can be used to test code quickly

Syntax[]

The syntax of Ruby is broadly similar to that of Perl and Python. Class and method definitions are signaled by keywords, whereas code blocks can be defined by either keywords or braces. In contrast to Perl, variables are not obligatorily prefixed with a sigil. When used, the sigil changes the semantics of scope of the variable. For practical purposes there is no distinction between expressions and statements.[89][90] Line breaks are significant and taken as the end of a statement; a semicolon may be equivalently used. Unlike Python, indentation is not significant.

One of the differences from Python and Perl is that Ruby keeps all of its instance variables completely private to the class and only exposes them through accessor methods (attr_writer, attr_reader, etc.). Unlike the "getter" and "setter" methods of other languages like C++ or Java, accessor methods in Ruby can be created with a single line of code via metaprogramming; however, accessor methods can also be created in the traditional fashion of C++ and Java. As invocation of these methods does not require the use of parentheses, it is trivial to change an instance variable into a full function, without modifying a single line of calling code or having to do any refactoring achieving similar functionality to C# and VB.NET property members.

Python's property descriptors are similar, but come with a trade-off in the development process. If one begins in Python by using a publicly exposed instance variable, and later changes the implementation to use a private instance variable exposed through a property descriptor, code internal to the class may need to be adjusted to use the private variable rather than the public property. Ruby's design forces all instance variables to be private, but also provides a simple way to declare set and get methods. This is in keeping with the idea that in Ruby, one never directly accesses the internal members of a class from outside the class; rather, one passes a message to the class and receives a response.

Implementations[]

Matz's Ruby interpreter[]

The original Ruby interpreter is often referred to as Matz's Ruby Interpreter or MRI. This implementation is written in C and uses its own Ruby-specific virtual machine.

The standardized and retired Ruby 1.8 implementation was written in C, as a single-pass interpreted language.[23]

Starting with Ruby 1.9, and continuing with Ruby 2.x and above, the official Ruby interpreter has been YARV ("Yet Another Ruby VM"), and this implementation has superseded the slower virtual machine used in previous releases of MRI.

Alternate implementations[]

As of 2018, there are a number of alternative implementations of Ruby, including JRuby, Rubinius, and mruby. Each takes a different approach, with JRuby and Rubinius providing just-in-time compilation and mruby also providing ahead-of-time compilation.

Ruby has three major alternate implementations:

  • JRuby, a mixed Java and Ruby implementation that runs on the Java virtual machine. JRuby currently targets Ruby 2.5.
  • , a Java implementation using the Truffle language implementation framework with GraalVM
  • Rubinius, a C++ bytecode virtual machine that uses LLVM to compile to machine code at runtime. The bytecode compiler and most core classes are written in pure Ruby. Rubinius currently targets Ruby 2.3.1.

Other Ruby implementations include:

  • MagLev, a Smalltalk implementation that runs on ' GemStone/S VM
  • mruby, an implementation designed to be embedded into C code, in a similar vein to Lua. It is currently being developed by Yukihiro Matsumoto and others
  • RGSS, or Ruby Game Scripting System, a proprietary implementation that is used by the RPG Maker series of software for game design and modification of the RPG Maker engine
  • , a transpiler (partial) from Ruby to Julia. It can be used for a large speedup over e.g. Ruby or JRuby implementations (may only be useful for numerical code).[91]
  • , a Ruby implementation written in Python
  • , a web-based interpreter that compiles Ruby to JavaScript

Other now defunct Ruby implementations were:

  • MacRuby, a Mac OS X implementation on the Objective-C runtime. Its iOS counterpart is called RubyMotion
  • IronRuby an implementation on the .NET Framework
  • Cardinal, an implementation for the Parrot virtual machine
  • Ruby Enterprise Edition, often shortened to ree, an implementation optimized to handle large-scale Ruby on Rails projects
  • HotRuby, a JavaScript and ActionScript implementation of the Ruby programming language

The maturity of Ruby implementations tends to be measured by their ability to run the Ruby on Rails (Rails) framework, because it is complex to implement and uses many Ruby-specific features. The point when a particular implementation achieves this goal is called "the Rails singularity". The reference implementation, JRuby, and Rubinius[92] are all able to run Rails unmodified in a production environment.

Platform support[]

Matsumoto originally did Ruby development on the 4.3BSD-based Sony NEWS-OS 3.x, but later migrated his work to SunOS 4.x, and finally to Linux.[93][94]

By 1999, Ruby was known to work across many different operating systems, including NEWS-OS, SunOS, AIX, SVR4, Solaris, NEC , NeXTSTEP, BSD, Linux, Mac OS, DOS, Windows, and BeOS.[95]

Modern Ruby versions and implementations are available on many operating systems, such as Linux, BSD, Solaris, AIX, macOS, Windows, Windows Phone,[96] Windows CE, Symbian OS, BeOS, OpenVMS, and IBM i.

Ruby programming language is supported across a number of cloud hosting platforms like Jelastic, Heroku, Google Cloud Platform and others.

Repositories and libraries[]

RubyGems is Ruby's package manager. A Ruby package is called a "gem" and can be installed via the command line. Most gems are libraries, though a few exist that are applications, such as IDEs.[97] There are over 10,000 Ruby gems hosted on RubyGems.org.

Many new and existing Ruby libraries are hosted on GitHub, a service that offers version control repository hosting for Git.

The Ruby Application Archive, which hosted applications, documentation, and libraries for Ruby programming, was maintained until 2013, when its function was transferred to RubyGems.[98]

See also[]

References[]

  1. ^ https://www.ruby-lang.org/en/news/2021/04/05/ruby-3-0-1-released/.
  2. ^ Jump up to: a b c Cooper, Peter (2009). Beginning Ruby: From Novice to Professional. Beginning from Novice to Professional (2nd ed.). Berkeley: APress. p. 101. ISBN 978-1-4302-2363-4. To a lesser extent, Python, LISP, Eiffel, Ada, and C++ have also influenced Ruby.
  3. ^ Jump up to: a b "Reasons behind Ruby". Ruby Conference 2008. Confreaks TV. Retrieved 2019-06-25.
  4. ^ Jump up to: a b c d e f Bini, Ola (2007). Practical JRuby on Rails Web 2.0 Projects: Bringing Ruby on Rails to Java. Berkeley: APress. p. 3. ISBN 978-1-59059-881-8. It draws primarily on features from Perl, Smalltalk, Python, Lisp, Dylan, and CLU.
  5. ^ Bini, Ola. "Ioke". Ioke.org. Archived from the original on 2011-07-21. Retrieved 2011-07-21. inspired by Io, Smalltalk, Lisp and Ruby
  6. ^ "Julia 1.0 Documentation: Introduction". Retrieved 6 October 2018.
  7. ^ Burks, Tim. "About Nu™". Programming Nu™. Neon Design Technology, Inc. Retrieved 2011-07-21.
  8. ^ Ring Team (3 December 2017). "Ring and other languages". ring-lang.net. .
  9. ^ "The Rust Reference". Retrieved 16 November 2019.
  10. ^ Lattner, Chris (2014-06-03). "Chris Lattner's Homepage". Chris Lattner. Retrieved 2014-06-03. The Swift language is the product of tireless effort from a team of language experts, documentation gurus, compiler optimization ninjas, and an incredibly important internal dogfooding group who provided feedback to help refine and battle-test ideas. Of course, it also greatly benefited from the experiences hard-won by many other languages in the field, drawing ideas from Objective-C, Rust, Haskell, Ruby, Python, C#, CLU, and far too many others to list.
  11. ^ "About Ruby". Retrieved 15 February 2020.
  12. ^ Shugo Maeda (17 December 2002). "The Ruby Language FAQ". Retrieved 2 March 2014.
  13. ^ Matsumoto, Yukihiro (13 February 2006). "Re: Ruby's lisp features". Retrieved 15 February 2020.
  14. ^ Jump up to: a b c d e f "History of Ruby".
  15. ^ "[FYI: historic] The decisive moment of the language name Ruby. (Re: [ANN] ruby 1.8.1)" (E-mail from Hiroshi Sugihara to ruby-talk).
  16. ^ "1.3 Why the name 'Ruby'?". The Ruby Language FAQ. Ruby-Doc.org. Retrieved April 10, 2012.
  17. ^ Yukihiro Matsumoto (June 11, 1999). "Re: the name of Ruby?". Ruby-Talk (Mailing list). Retrieved April 10, 2012.
  18. ^ "More archeolinguistics: unearthing proto-Ruby". Archived from the original on 6 November 2015. Retrieved 2 May 2015.
  19. ^ "[ruby-talk:00382] Re: history of ruby". Retrieved 2 May 2015.
  20. ^ "[ruby-list:124] TUTORIAL — ruby's features". Retrieved 2 May 2015.
  21. ^ "An Interview with the Creator of Ruby".
  22. ^ Yukihiro Matsumoto (October 2000). "Programming Ruby: Forward". Retrieved 5 March 2014.
  23. ^ Jump up to: a b "We retire Ruby 1.8.7". Retrieved 2 May 2015.
  24. ^ "IPA 独立行政法人 情報処理推進機構:プレス発表 プログラム言語RubyのJIS規格(JIS X 3017)制定について". Retrieved 2 May 2015.
  25. ^ "IPA 独立行政法人 情報処理推進機構:プレス発表 プログラム言語Ruby、国際規格として承認". Retrieved 2 May 2015.
  26. ^ "ISO/IEC 30170:2012". Retrieved 2017-03-10.
  27. ^ Web Development: Ruby on Rails. Devarticles.com (2007-03-22). Retrieved on 2013-07-17.
  28. ^ "Ruby 1.9.3 p0 is released". ruby-lang.org. October 31, 2011. Retrieved February 20, 2013.
  29. ^ "v1_9_3_0/NEWS". Ruby Subversion source repository. ruby-lang.org. September 17, 2011. Retrieved February 20, 2013.
  30. ^ Ruby 1.9: What to Expect. slideshow.rubyforge.org. Retrieved on 2013-07-17.
  31. ^ Endoh, Yusuke. (2013-02-24) Ruby 2.0.0-p0 is released. Ruby-lang.org. Retrieved on 2013-07-17.
  32. ^ Endoh, Yusuke. (2013-02-24) Ruby 2.0.0-p0 is released. Ruby-lang.org. Retrieved on 2013-07-17.
  33. ^ "Semantic Versioning starting with Ruby 2.1.0". December 21, 2013. Retrieved December 27, 2013.
  34. ^ Gustavo Frederico Temple Pedrosa, Vitor de Lima, Leonardo Bianconi (2015). "Ruby 2.2.1 Released". Retrieved 12 July 2016.CS1 maint: multiple names: authors list (link)
  35. ^ Gustavo Frederico Temple Pedrosa, Vitor de Lima, Leonardo Bianconi (2015). "v2.2.1 ChangeLog". Retrieved 12 July 2016.CS1 maint: multiple names: authors list (link)
  36. ^ Gustavo Frederico Temple Pedrosa, Vitor de Lima, Leonardo Bianconi (2014). "Specifying non volatile registers for increase performance in ppc64". Retrieved 12 July 2016.CS1 maint: multiple names: authors list (link)
  37. ^ Gustavo Frederico Temple Pedrosa, Vitor de Lima, Leonardo Bianconi (2014). "Specifying MACRO for increase performance in ppc64". Retrieved 12 July 2016.CS1 maint: multiple names: authors list (link)
  38. ^ "ruby/NEWS at v2_2_0 · ruby/ruby · GitHub". GitHub. Retrieved 2 May 2015.
  39. ^ "Ruby/NEWS at v.2_3_0 - ruby/ruby". GitHub. Retrieved 25 December 2015.
  40. ^ "Ruby 2.3.0 changes and features". Running with Ruby. dev.mensfeld.pl.
  41. ^ "Ruby 2.4.0 Released". www.ruby-lang.org. Retrieved 2016-12-30.
  42. ^ "Ruby 3.0.0 Released". Ruby Programming Language. 2020-12-25. Retrieved 2020-12-25.
  43. ^ "The Ruby Community's Christmas Releases". www.rubyinside.com.
  44. ^ "A Patch in Time: Securing Ruby".
  45. ^ "ruby-1.8.0 released!". www.ruby-lang.org.
  46. ^ "Plans for 1.8.7". www.ruby-lang.org.
  47. ^ "EOL for Ruby 1.8.7 and 1.9.2". www.ruby-lang.org.
  48. ^ "Ruby 1.9.3-p551 Released". www.ruby-lang.org.
  49. ^ "Ruby 1.9.0 Released". www.ruby-lang.org.
  50. ^ "Support for Ruby version 1.9.3 will end on February 23, 2015". www.ruby-lang.org.
  51. ^ "Support for Ruby 1.9.3 has ended". www.ruby-lang.org.
  52. ^ Jump up to: a b c "Ruby 2.0.0-p648 Released". www.ruby-lang.org.
  53. ^ "Ruby 2.0.0-p0 is released". www.ruby-lang.org.
  54. ^ "Ruby 2.1.10 Released". www.ruby-lang.org.
  55. ^ "Ruby 2.1.0 is released". www.ruby-lang.org.
  56. ^ "Support plans for Ruby 2.0.0 and Ruby 2.1". www.ruby-lang.org.
  57. ^ "Ruby 2.1.9 Released". www.ruby-lang.org.
  58. ^ "Ruby Issue Tracking System". bugs.ruby-lang.org.
  59. ^ Jump up to: a b "Support of Ruby 2.1 has ended". www.ruby-lang.org.
  60. ^ "Ruby 2.2.10 Released". www.ruby-lang.org.
  61. ^ "Ruby 2.2.0 Released". www.ruby-lang.org.
  62. ^ "Ruby 2.2.7 Released". www.ruby-lang.org.
  63. ^ "Ruby 2.3.8 Released". www.ruby-lang.org.
  64. ^ "Ruby 2.3.0 Released". www.ruby-lang.org.
  65. ^ Jump up to: a b "Support of Ruby 2.2 has ended". www.ruby-lang.org.
  66. ^ "Ruby 2.4.10 Released". Ruby Programming Language. 2020-03-31. Retrieved 2020-04-01.
  67. ^ "Ruby 2.4.0 Released". www.ruby-lang.org.
  68. ^ Jump up to: a b "Support of Ruby 2.4 has ended". www.ruby-lang.org.
  69. ^ Jump up to: a b c "Ruby 2.5.9 Released". Ruby Programming Language. 2021-04-05. Retrieved 2021-04-05.
  70. ^ "Ruby 2.5.0 Released". www.ruby-lang.org.
  71. ^ Jump up to: a b c "Ruby 2.6.8 Released". Ruby Programming Language. 2021-07-07. Retrieved 2021-08-15.
  72. ^ "Ruby 2.6.0 Released". www.ruby-lang.org.
  73. ^ "Ruby 2.7.4 Released". Ruby Programming Language. 2021-07-07. Retrieved 2021-08-15.
  74. ^ "Ruby 2.7.0 Released". www.ruby-lang.org.
  75. ^ "Ruby 3.0.2 Released". Ruby Programming Language. 2021-07-07. Retrieved 2021-08-15.
  76. ^ "Ruby 3.0.0 Released". www.ruby-lang.org.
  77. ^ "The Ruby Programming Language". Retrieved 2 May 2015.
  78. ^ Google Tech Talks – Ruby 1.9 on YouTube
  79. ^ Jump up to: a b c Bill Venners. "The Philosophy of Ruby". Retrieved 2 May 2015.
  80. ^ "Welcome to RUBYWEEKLYNEWS.ORG". 4 July 2017. Archived from the original on 4 July 2017.CS1 maint: bot: original URL status unknown (link)
  81. ^ "The Ruby Language FAQ: How Does Ruby Stack Up Against...?". Retrieved 2 May 2015.
  82. ^ Bruce Stewart (29 November 2001). "An Interview with the Creator of Ruby". O'Reilly Media. Retrieved 2 May 2015.
  83. ^ Bill Venners. "Dynamic Productivity with Ruby". Retrieved 2 May 2015.
  84. ^ "Language Workbenches: The Killer-App for Domain Specific Languages?". martinfowler.com. Retrieved 2 May 2015.
  85. ^ "Ruby – Add class methods at runtime".
  86. ^ Bill Venners. "Blocks and Closures in Ruby". Retrieved 2 May 2015.
  87. ^ "Methods". Official Ruby FAQ.
  88. ^ Britt, James. "Ruby 2.0.0 Standard Library Documentation". Retrieved 2013-12-09.
  89. ^ "[ruby-talk:01120] Re: The value of while..." In Ruby's syntax, statement is just a special case of an expression that cannot appear as an argument (e.g. multiple assignment).
  90. ^ "[ruby-talk:02460] Re: Precedence question". statement [...] can not be part of expression unless grouped within parentheses.
  91. ^ "remove/virtual_module: Born to make your Ruby Code more than 3x faster. Hopefully".
  92. ^ Peter Cooper (2010-05-18). "The Why, What, and How of Rubinius 1.0's Release".
  93. ^ Maya Stodte (February 2000). "IBM developerWorks – Ruby: a new language". Archived from the original on August 18, 2000. Retrieved 3 March 2014.
  94. ^ Yukihiro Matsumoto (August 2002). "lang-ruby-general: Re: question about Ruby initial development". Retrieved 3 March 2014.
  95. ^ Yukihiro Matsumoto (5 January 1999). "ruby-talk: Re: hah, check these errors". Retrieved 3 March 2014.
  96. ^ "Iron Ruby on Windows Phone 7".
  97. ^ "The Ruby Toolbox". Retrieved 2015-04-04.
  98. ^ "We retire raa.ruby-lang.org". 2013-08-08. Retrieved 2016-01-03.

Further reading[]

External links[]

Retrieved from ""