Ruby (programming language): Difference between revisions

From Citizendium
Jump to navigation Jump to search
imported>Pat Palmer
No edit summary
imported>Pat Palmer
Line 13: Line 13:
==Ruby Implementations==
==Ruby Implementations==


Like many "newer" [[programming language|programming languages]] (meaning those created or updated since 1990), Ruby is fully [[object-oriented]] and  requires the installation of a [[runtime environment]], or [[virtual machine]] before Ruby programs can be developed or run.  As of October 2007, ever-improving versions of the official open-source Ruby implementation have been released on several different operating systems.  Virtual machines have also been developed by other groups, including [[JRuby]] (an attempt to port Ruby to the [[Java (programming language)|Java]] platform), and [[Rubinius]] (an interpreter modeled after self-hosting [[Smalltalk]] virtual machines).
Like many "newer" [[programming language|programming languages]] (meaning those created or updated since 1990), Ruby is fully [[object-oriented]] and  requires the installation of a [[runtime environment]], or [[virtual machine]] before Ruby programs can be developed or run.  As of October 2007, ever-improving versions of the official open-source Ruby implementation have been released on several different operating systems.  Ruby implementations have also been developed by other groups, including [[JRuby]] (an attempt to port Ruby to the [[Java (programming language)|Java]] platform), and [[Rubinius]] (an interpreter modeled after self-hosting [[Smalltalk]] virtual machines).


==No formal specification==   
==No formal specification==   

Revision as of 11:28, 11 October 2007

Main Article
Talk Template:Default button 3
 
Template:Cell style

Ruby is a general-purpose computer programming language made available as an open-source project in 1995 by its creator, Yukihiro Matsumoto (commonly called Matz). Matz, a Japanese computer professional who had experience in creating open-source software and had developed a familiarity with a wide variety of programming languages, has closely managed Ruby releases in the years since it first appeared. By 2007, Ruby had risen to be tenth in usage among all programming languages, and its use is still growing[1].

Ruby's place in the U.S. computer industry was boosted by the independent release, in 2004, of Rails, a Ruby-based, open-source web application framework created by David Heinemeier Hansson, a Danish software engineer working in the United States. This article is an overview of Ruby's key aspects, independent of Rails, that may contribute to its growing marketplace acceptance, and for which it is sometimes both praised and criticized.

Ruby Implementations

Like many "newer" programming languages (meaning those created or updated since 1990), Ruby is fully object-oriented and requires the installation of a runtime environment, or virtual machine before Ruby programs can be developed or run. As of October 2007, ever-improving versions of the official open-source Ruby implementation have been released on several different operating systems. Ruby implementations have also been developed by other groups, including JRuby (an attempt to port Ruby to the Java platform), and Rubinius (an interpreter modeled after self-hosting Smalltalk virtual machines).

No formal specification

Matz' runtime is interpreted, rather than compiled, and as of 2007, still lacks a formal written specification. So although Ruby can potentially can be used to create platform-independent programs, it is not currently guaranteed to be identical across platforms, and newer versions are not always upwardly compatible with older versions. Furthermore, a burgeoning number of books, articles and other documentation are not always in complete agreement about the syntax, semantics, and conventions of the language.

Things people like about Ruby

Despite performance concerns, enthusiasts of Ruby wax eloquent in praising the language, including countless subjections statements like "it's fun". Something of Ruby's appeal may be seen in the brevity of this Hello World program:

puts "Hello, world"

But simple as it initially may seem, Ruby is described as having hidden depths, largely as a result of its support for a complex and powerful feature called closures. Peter Cooper, author of a 2007 book about Ruby, introduces the language by stating, "Ruby has more in common with more esoteric languages such as Lisp and Smalltalk than with better known languages such as PHP and C++"[2]. Cooper's book, and numerous other sources, claim that several haracteristics of Ruby allow them to develop programs more quickly than with other languages, including:

  1. closures
  2. a relatively permissive syntax, said to be "more like the way people think"
  3. loose typing
  4. good string handling and regular expressions
  5. extensive libraries for networking and web services
  6. powerful support for making calls out to the native operating system if needful

References

  1. "TIOBE Programming Community Index". TIOBE Software (2007). Retrieved on 2007-10-10.
  2. "Beginning Ruby: From Novice to Professional". Apress paperback book, Introduction p. xxix (2007). Retrieved on 2007-10-10.