| advertise add site services publishers database health videos | ![]() | about toolbar stats live show health store more stuff JOIN/LOGIN |
'Ruby, ruby, ruby, ruby!' bodyconfidential.co.uk | Preschool Language Program - Speech-Language Pathology Program -... childrenshospital.org | Ruby Laser - Information about Ruby Laser skin-care-tips.org |
Ruby is a dynamic, reflective, general purpose object-oriented programming language that combines syntax inspired by Perl with Smalltalk-like features. Ruby originated in Japan during the mid-1990s and was initially developed and designed by Yukihiro "Matz" Matsumoto. It is based on Perl, Smalltalk, Eiffel, Ada, and Lisp. Ruby supports multiple programming paradigms, including functional, object oriented, imperative and reflective. It also has a dynamic type system and automatic memory management; it is therefore similar in varying respects to Python, Perl, Lisp, Dylan, and CLU. The standard 1.8.7 implementation is written in C, as a single-pass interpreted language. There is currently no specification of the Ruby language, so the original implementation is considered to be the de facto reference. As of 2010[update], there are a number of complete or upcoming alternative implementations of the Ruby language, including YARV, JRuby, Rubinius, IronRuby, MacRuby and HotRuby, each of which takes a different approach, with IronRuby, JRuby and MacRuby providing just-in-time compilation and MacRuby also providing ahead-of-time compilation. The official 1.9 branch uses YARV, as will 2.0 (development), and will eventually supersede the slower Ruby MRI.
[edit] HistoryRuby was conceived on February 24, 1993 by Yukihiro Matsumoto who wished to create a new language that balanced functional programming with imperative programming.[1] Matsumoto has stated, "I wanted a scripting language that was more powerful than Perl, and more object-oriented than Python. That's why I decided to design my own language".[2] [edit] Etymology of the name "Ruby"The name "Ruby" was decided on during an online chat session between Matsumoto and Keiju Ishitsuka on February 24, 1993, before any code had been written for the language.[3] Initially two names were proposed: "Coral" and "Ruby", with the latter being chosen by Matsumoto in a later email to Ishitsuka.[4] Coral already had a long history as the name of a programming language originating in 1964 at the Royal Radar Establishment in the UK, so it was fortunate that the other name was chosen to eliminate confusion. Matsumoto has later stated that a factor in choosing the name "Ruby" was because it was the birthstone of one of his colleagues.[5] [edit] First publicationThe first public release of Ruby 0.95 was announced on Japanese domestic newsgroups on December 21, 1995.[6][7] Subsequently three more versions of Ruby were released in two days.[3] 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.[8] [edit] Ruby 1.0Ruby reached version 1.0 on December 25, 1996.[3] Following the release of Ruby 1.3 in 1999 the first English language mailing list ruby-talk began,[2] which signalled a growing interest in the language outside of Japan. 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. [edit] Ruby 1.9.1As of 5 January 2010[update], the latest stable version of the reference implementation is 1.9.1. Ruby 1.9.1 introduces many significant changes over version 1.8.6. Some examples are:
[edit] PhilosophyMatsumoto has said that Ruby is designed for programmer productivity and fun, following the principles of good user interface design.[9] He stresses that systems design needs to emphasize human, rather than computer, needs:[10]
Ruby is said to follow the principle of least surprise (POLS), 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 which he himself enjoyed using, by minimizing programmer work and possible confusion. He has said that he had not applied the principle of least surprise to the design of Ruby,[10] 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 comp.lang.ruby newsgroup, Matsumoto attempted to distance Ruby from POLS, 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 will be few surprises for those familiar with the standard.[11] Matsumoto defined it this way in an interview[10]:
[edit] Features
[edit] SemanticsRuby is object-oriented: every data type is an object, including classes and types which many other languages designate as primitives (such as integers, booleans, and "nil"). Every function is a method. Named values (variables) always designate references to objects, not the objects themselves. 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. Procedural syntax is supported, but all methods defined outside of the scope of a particular object are actually methods of the Object class. Since this class is parent to every other class, the changes become visible to all classes and objects. 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[17] threads. Ruby features dynamic typing, and supports parametric polymorphism. According to the Ruby FAQ,[18] "If you like Perl, you will like Ruby and be right at home with its syntax. If you like Smalltalk, you will like Ruby and be right at home with its semantics. If you like Python, you may or may not be put off by the huge difference in design philosophy between Python and Ruby/Perl." [edit] SyntaxThe syntax of Ruby is broadly similar to Perl and Python. Class and method definitions are signaled by keywords. In contrast to Perl, variables are not obligatorily prefixed with a sigil. When used, the sigil changes the semantics of scope of the variable. The most striking difference from C and Perl is that keywords are typically used to define logical code blocks, without braces (i.e., pair of { and }). For practical purposes there is no distinction between expressions and statements[19]. 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 of Ruby compared to 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 are created with a single line of code via metaprogramming. 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 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 tradeoff 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 removes this design decision by forcing 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 of it. Rather one passes a message to the class and receives a response. See the examples section for samples of code demonstrating Ruby syntax. [edit] Deviations from behaviour elsewhereSome features which differ notably from languages such as C or Perl:
Some features which differ notably from other languages:
A list of so-called gotchas may be found in Hal Fulton's book The Ruby Way, 2nd ed (ISBN 0-672-32884-4), Section 1.5. A similar list in the 1st edition pertained to an older version of Ruby (version 1.6), some problems of which have been fixed in the meantime. [edit] InteractionSee also: Interactive Ruby Shell The Ruby official distribution also includes " $ irb irb(main):001:0> puts "Hello, World" Hello, World => nil irb(main):002:0> 1+2 => 3 [edit] ExamplesThe following examples can be run in a Ruby shell such as Interactive Ruby Shell or saved in a file and run from the command line by typing Classic Hello world example: puts "Hello World!" Some basic Ruby code: # Everything, including a literal, is an object, so this works: -199.abs # 199 "ruby is cool".length # 12 "Your mother is nice.".index("u") # 2 "Nice Day Isn't It?".downcase.split("").sort.uniq.join # " '?acdeinsty" Conversions: puts "What's your favorite number?" number = gets.chomp output_number = number.to_i + 1 puts output_number.to_s + ' is a bigger and better favorite number.' [edit] StringsThere are a variety of methods of defining strings in Ruby The below conventions are equivalent for double quoted strings: a = "\nThis is a double quoted string\n" a = %{\nThis is a double quoted string\n} a = %Q{\nThis is a double quoted string\n} a = <<BLOCK This is a multi-line double quoted string BLOCK a = %/\nThis is a double quoted string\n/ The below conventions are equivalent for single quoted strings: a = 'This is a single quoted string' a = %q{This is a single quoted string} [edit] CollectionsConstructing and using an array: a = [1, 'hi', 3.14, 1, 2, [4, 5]] puts a[2] # 3.14 puts a.[](2) # 3.14 puts a.reverse # [[4, 5], 2, 1, 3.14, 'hi', 1] puts a.flatten.uniq # [1, 'hi', 3.14, 2, 4, 5] Constructing and using an associative array (called hashes in Ruby): hash = { :water => 'wet', :fire => 'hot' } puts hash[:fire] # Prints: hot hash.each_pair do |key, value| # Or: hash.each do |key, value| puts "#{key} is #{value}" end # Prints: water is wet # fire is hot hash.delete :water # Deletes :water => 'wet' hash.delete_if {|key,value| value=='hot'} # Deletes :fire => 'hot' [edit] Blocks and iteratorsThe two syntaxes for creating a code block: { puts "Hello, World!" } # Note the { braces } #or do puts "Hello, World!" end When a code block is created it is always attached to a method as an optional block argument. Parameter-passing a block to be a closure: # In an object instance variable (denoted with '@'), remember a block. def remember(&a_block) @block = a_block end # Invoke the above method, giving it a block which takes a name. remember {|name| puts "Hello, #{name}!"} # When the time is right (for the object) -- call the closure! @block.call("Jon") # => "Hello, Jon!" Creating an anonymous function: proc {|arg| print arg} Proc.new {|arg| print arg} lambda {|arg| print arg} Returning closures from a method: def create_set_and_get(initial_value=0) # Note the default value of 0 closure_value = initial_value return Proc.new {|x| closure_value = x}, Proc.new { closure_value } end setter, getter = create_set_and_get # ie. returns two values setter.call(21) getter.call # => 21 #You can also use a parameter variable as a binding for the closure. #So the above can be rewritten as... def create_set_and_get(closure_value=0) proc {|x| closure_value = x } , proc { closure_value } end Yielding the flow of program control to a block which was provided at calling time: def use_hello yield "hello" end # Invoke the above method, passing it a block. use_hello {|string| puts string} # => 'hello' Iterating over enumerations and arrays using blocks: array = [1, 'hi', 3.14] array.each {|item| puts item } # => 1 # => 'hi' # => 3.14 array.each_index {|index| puts "#{index}: #{array[index]}" } # => 0: 1 # => 1: 'hi' # => 2: 3.14 (3..6).each {|num| puts num } # => 3 # => 4 # => 5 # => 6 A method such as inject() can accept both a parameter and a block. Inject iterates over each member of a list, performing some function on while retaining an aggregate. This is analogous to the foldl function in functional programming languages. For example: [1,3,5].inject(10) {|sum, element| sum + element} # => 19 On the first pass, the block receives 10 (the argument to inject) as sum, and 1 (the first element of the array) as element; this returns 11. 11 then becomes sum on the next pass, which is added to 3 to get 14. 14 is then added to 5, to finally return 19. Blocks work with many built-in methods: File.open('file.txt', 'w') do |file| # 'w' denotes "write mode". file.puts 'Wrote some text.' end # File is automatically closed here File.readlines('file.txt').each do |line| puts line end # => Wrote some text. Using an enumeration and a block to square the numbers 1 to 10: (1..10).collect {|x| x*x} # => [1, 4, 9, 16, 25, 36, 49, 64, 81, 100] [edit] ClassesThe following code defines a class named Person. In addition to 'initialize', the usual constructor to create new objects, it has two methods: one to override the <=> comparison operator (so class Person attr_reader :name, :age def initialize(name, age) @name, @age = name, age end def <=>(person) # Comparison operator for sorting @age <=> person.age end def to_s "#@name (#@age)" end end group = [ Person.new("Bob", 33), Person.new("Chris", 16), Person.new("Ash", 23) ] puts group.sort.reverse The above prints three names in reverse age order: Bob (33) Ash (23) Chris (16) [edit] Open classesIn Ruby, classes are never closed: you can always add methods to an existing class. This applies to the classes you write as well as the standard, built-in classes. All you have to do is open up a class definition for an existing class, and the new contents you specify will be added to whatever's there. A simple example of adding a new method to the standard library's Time class: # re-open Ruby's Time class class Time def yesterday self - 86400 end end today = Time.now # => Thu Aug 14 16:51:50 +1200 2008 yesterday = today.yesterday # => Wed Aug 13 16:51:50 +1200 2008 Adding methods to previously defined classes is often called monkey-patching. This practice, however, can lead to possible collisions of behavior and subsequent unexpected results, and is a concern for code scalability if performed recklessly. [edit] ExceptionsAn exception is raised with a raise An optional message can be added to the exception: raise "This is a message" You can also specify which type of exception you want to raise: raise ArgumentError, "Illegal arguments!" Alternatively, you can pass an exception instance to the raise method: raise ArgumentError.new("Illegal arguments!") This last construct is useful when you need to raise a custom exception class featuring a constructor which takes more than one argument: class ParseError < Exception def initialize input, line, pos super "Could not parse '#{input}' at line #{line}, position #{pos}" end end raise ParseError.new("Foo", 3, 9) Exceptions are handled by the begin # Do something rescue # Handle exception else # Do this if no exception was raised ensure # Do this whether or not an exception was raised end It is a common mistake to attempt to catch all exceptions with a simple rescue clause. To catch all exceptions one must write: begin # Do something rescue Exception # don't write just rescue -- that only catches StandardError, a subclass of Exception # Handle exception end Or catch particular exceptions: begin # ... rescue RuntimeError # handling end It is also possible to specify that the exception object be made available to the handler clause: begin # ... rescue RuntimeError => e # handling, possibly involving e, such as "print e.to_s" end Alternatively, the most recent exception is stored in the magic global You can also catch several exceptions: begin # ... rescue RuntimeError, Timeout::Error => e # handling, possibly involving e end [edit] MetaprogrammingRuby provides a programmer the ability to add to or modify methods in the language's standard library during runtime, as well for a Ruby program to modify itself during its operation without generating source code, techniques known as metaprogramming. [edit] More examplesMore sample Ruby code is available as algorithms in the following articles: [edit] ImplementationsSee also: Ruby MRI#Operating systems The newest version of Ruby, the recently released version 1.9, has a single working implementation written in C that utilizes a Ruby-specific virtual machine. Ruby version 1.8 has two main implementations: The official Ruby interpreter often referred to as the Matz's Ruby Interpreter or MRI, which is the most widely used, and JRuby, a Java-based implementation that runs on the Java Virtual Machine. There are other less-known or upcoming implementations such as Cardinal (an implementation for the Parrot virtual machine), IronRuby (alpha version available since July 24, 2008[20]), MacRuby (0.5 experimental), MagLev, Rubinius, Ruby.NET, XRuby and HotRuby (runs Ruby source code on a web browser and Flash). The maturity of Ruby implementations tends to be measured by their ability to run the Ruby on Rails (Rails) framework, because it is a complex framework to implement, and it uses a lot of Ruby-specific features. The point when a particular implementation achieves this goal is called The Rails singularity. As of January 2009, only the reference implementation (MRI) and JRuby are able to run Rails unmodified in a production environment.[21] IronRuby[22][23] and Rubinius[24] starting to be able to run Rails test cases, but they still are far from being production-ready. Ruby is available on many operating systems such as Linux, Mac OS X, Microsoft Windows, Windows CE and most flavors of Unix. Ruby 1.9 has recently been ported onto Symbian OS 9.x[25]. [edit] Repositories and librariesThe Ruby Application Archive (RAA), as well as RubyForge, serve as repositories for a wide range of Ruby applications and libraries, containing more than seven thousand items. Although the number of applications available does not match the volume of material available in the Perl or Python community, there are a wide range of tools and utilities which serve to foster further development in the language. RubyGems has become the standard package manager for Ruby libraries. It is very similar in purpose to Perl's CPAN, although its usage is more like apt-get. Recently, many new and existing libraries have found a home on GitHub, which is focused on Git and used to have native support for RubyGems packaging.[26] [edit] See also
[edit] References
[edit] Bibliography
[edit] External links
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ↑ top of page ↑ | about thumbshots |