SlideShare a Scribd company logo
1 of 16
Download to read offline
‘Exception Handling in RUBY’




                           ‘Exception Handling in RUBY’

                                          Joy Menon

                   Department of Computer Science and Engineering, IIT Mumbai.


                                     24 November 2004
‘Exception Handling in RUBY’




A Brief Outline

             Exception Handling: WHY?
                     Errors and Error Codes
                     The Need for Exception Handling

             Exception Handling in Ruby:
                     The Exception Class
                     Exception Class Heirarchy
                     Handling Exceptions
                     Raising Exceptions
                     Catch/Throw Clauses


             Conclusions
‘Exception Handling in RUBY’
  Exception Handling: WHY?
     Errors and Error Codes



Errors and Error Codes

              In any programming, occurance of errors is a distinct reality.
              Errors need to be handled gracefully to avoid abrupt failures.
              Code that detects error may not have context to handle it.
                     For example, attempting to open a file that doesn’t exist is
                     acceptable in some circumstances and is a fatal error at other
                     times. What does the file-handling module do?

              Conventionally it was done using error-checking and
              return-codes mechanism.
              Functions were checked for return values, and if the return
              code indicated failure, this code was interpreted and passed
              up the call stack.
‘Exception Handling in RUBY’
  Exception Handling: WHY?
     The Need for Exception Handling



The Need for Exception Handling

             However Error-codes mechanism has following shortcomings:
                     Handling all errors through error codes is simply not possible.
                     Moving error codes up the function call stack is complicated.
                     Managing all the error-codes and associated code is tedious.

             The Exception Handling mechanism addresses these
             shortcomings.
                     Exceptions allow packaging info about error in an object.
                     Exception handling helps propagate object up the call stack.
                     Runtime system locates code that knows to handle the error.


             Exception handling is essential for achieving well-designed object
             oriented code, and therefore Ruby provides a mechanism for same.
‘Exception Handling in RUBY’
  Exception Handling in Ruby
     The Exception Class



The Exception Class

             As in other object oriented languages, Ruby offers a
             mechanism for exception handling.

             When an exception occurs..
                     Object of class Exception, or one of it’s children, created.
                     Exception is associated to message string & a stack backtrace.
                     All information about the exception is packaged in this object.

             IOError, ZeroDivisionError, TypeError, SystemCallError, etc
             are examples of exceptions derived from class Exception.

             Ruby predefines a hierarchy of exceptions: see next slide.
‘Exception Handling in RUBY’
  Exception Class Heirarchy




Exception Class Heirarchy
‘Exception Handling in RUBY’
  User Defined Exceptions




User Defined Exceptions


      User-Defined Exception
             Users can create exception classes of their own.

             These must inherit from class StandardError or its children.

             If they dont, such exceptions will not be detected by default.

             They may include more specific information about the
             exception.
‘Exception Handling in RUBY’
  User Defined Exceptions
     Handling Exceptions



Handling Exceptions
             The basic approach to exception handling involves the use of:
                     Enclose candidate code in begin/end block.
                     Use rescue block to handle specific class of exceptions,
                     where:
                               Report the error,
                               Code to handle detected error,
                               Raise the exception using raise.
                     Use ensure block to ensure execution of some essential code
                     after handling, like deallocation of resources such as DB
                     connections, etc.

             We can draw analogies to C++/Java exception handling:
                 begin/end block for candidate code. (like try block)
                 rescue blocks for handling code. (like catch blocks)
                 raise command for raising the exception. (like throw)
                 ensure command for necessary handling. (like final)
‘Exception Handling in RUBY’
  User Defined Exceptions
     Handling Exceptions



Example: Using rescue, raise and ensure
‘Exception Handling in RUBY’
  User Defined Exceptions
     Handling Exceptions



Handling Exceptions (continued..)


             Variables
                     $ refers to the default global variable that stores the exception
                     object for the exception.
                     stderrobj is an example of user-defined variable storing the
                     reference to the exception object.


             Matching exceptions to correct rescue block is like the case
             statement mechanism,
             object.kindof? result compared to exception types in
             rescue statements.
‘Exception Handling in RUBY’
  User Defined Exceptions
     Raising Exceptions



Raising Exceptions
              Raising exceptions deliberately in code help to trigger alerts
              where errors are expected and need to be handled.

              The raise statement can take the following forms:
                     raise
                     Raises current exception again, or RuntimeError if none.

                     raise <message>
                     Creates new RuntimeError exception, associates it with
                     mentioned string, and raises the exception up the call stack.

                     raise <exception class>, <message>, <call stack>
                     Creates exception with arg-1 used as required exception type,
                     arg-2 as message string, and arg-3 as stack trace.
‘Exception Handling in RUBY’
  User Defined Exceptions
     Raising Exceptions



Example: Typical Usage of raise
‘Exception Handling in RUBY’
  User Defined Exceptions
     The Catch/Throw Clauses



The catch/throw Clauses
             The rescue and raise mechanism is thus used for
             abandoning execution when unwanted errors occur.
             The catch and throw mechanism is used to continue
             execution at some point up the call stack.

             Working of catch/throw:
                     catch defines a block with a specific label.
                     The block is exeuted, typically accross nested functions, till a
                     throw followed by the label is encountered.
                     The call stack is then scoured for a catch block with a
                     matching label.
                     On a match, Ruby rolls back execution to the point and
                     terminates the block.
                     If the throw had an optional 2nd argument, it is returned as
                     value of the catch block.
‘Exception Handling in RUBY’
  User Defined Exceptions
     The Catch/Throw Clauses



Example: Typical usage of catch/throw
‘Exception Handling in RUBY’
  Conclusions




Conclusions

                Exception Handling is essential for managing errors in
                object-oriented code.

                The Ruby Exception Handling mechanism includes:
                     rescue and final clauses - for handling unwanted errors and
                     exit gracefully.

                     raise - for deliberately creating and raising exceptions in
                     code.

                     catch and throw clause - for continuing execution at some
                     point up the function call stack.
‘Exception Handling in RUBY’
  Conclusions




References



             http://www.insula.cz/dali/material/rbycl/.
             http://www.ruby-lang.org/.
             Dave Thomas and Chad Fowler and Andy Hunt.
             Programming Ruby: The Pragmatic Programmers’ Guide.
             Pragmatic Bookshelf, Oct 2004.

More Related Content

Similar to Ruby Exceptions

Unit5 java
Unit5 javaUnit5 java
Unit5 javamrecedu
 
Class notes(week 8) on exception handling
Class notes(week 8) on exception handlingClass notes(week 8) on exception handling
Class notes(week 8) on exception handlingKuntal Bhowmick
 
Exceptions overview
Exceptions overviewExceptions overview
Exceptions overviewBharath K
 
Java Exception handling
Java Exception handlingJava Exception handling
Java Exception handlingkamal kotecha
 
Class notes(week 8) on exception handling
Class notes(week 8) on exception handlingClass notes(week 8) on exception handling
Class notes(week 8) on exception handlingKuntal Bhowmick
 
Ch-1_5.pdf this is java tutorials for all
Ch-1_5.pdf this is java tutorials for allCh-1_5.pdf this is java tutorials for all
Ch-1_5.pdf this is java tutorials for allHayomeTakele
 
Exception Handling in Java
Exception Handling in JavaException Handling in Java
Exception Handling in JavaJava2Blog
 
Java programming-Event Handling
Java programming-Event HandlingJava programming-Event Handling
Java programming-Event HandlingJava Programming
 
Exception Handling: Designing Robust Software in Ruby (with presentation note)
Exception Handling: Designing Robust Software in Ruby (with presentation note)Exception Handling: Designing Robust Software in Ruby (with presentation note)
Exception Handling: Designing Robust Software in Ruby (with presentation note)Wen-Tien Chang
 
Exception handling
Exception handlingException handling
Exception handlingzindadili
 

Similar to Ruby Exceptions (12)

Unit5 java
Unit5 javaUnit5 java
Unit5 java
 
Class notes(week 8) on exception handling
Class notes(week 8) on exception handlingClass notes(week 8) on exception handling
Class notes(week 8) on exception handling
 
Exceptions overview
Exceptions overviewExceptions overview
Exceptions overview
 
Java Exception handling
Java Exception handlingJava Exception handling
Java Exception handling
 
Exception handling
Exception handlingException handling
Exception handling
 
Class notes(week 8) on exception handling
Class notes(week 8) on exception handlingClass notes(week 8) on exception handling
Class notes(week 8) on exception handling
 
Ch-1_5.pdf this is java tutorials for all
Ch-1_5.pdf this is java tutorials for allCh-1_5.pdf this is java tutorials for all
Ch-1_5.pdf this is java tutorials for all
 
Exception Handling in Java
Exception Handling in JavaException Handling in Java
Exception Handling in Java
 
Exceptionhandling
ExceptionhandlingExceptionhandling
Exceptionhandling
 
Java programming-Event Handling
Java programming-Event HandlingJava programming-Event Handling
Java programming-Event Handling
 
Exception Handling: Designing Robust Software in Ruby (with presentation note)
Exception Handling: Designing Robust Software in Ruby (with presentation note)Exception Handling: Designing Robust Software in Ruby (with presentation note)
Exception Handling: Designing Robust Software in Ruby (with presentation note)
 
Exception handling
Exception handlingException handling
Exception handling
 

Recently uploaded

Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demoHarshalMandlekar2
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxBkGupta21
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersRaghuram Pandurangan
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 

Recently uploaded (20)

Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demo
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptx
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information Developers
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 

Ruby Exceptions

  • 1. ‘Exception Handling in RUBY’ ‘Exception Handling in RUBY’ Joy Menon Department of Computer Science and Engineering, IIT Mumbai. 24 November 2004
  • 2. ‘Exception Handling in RUBY’ A Brief Outline Exception Handling: WHY? Errors and Error Codes The Need for Exception Handling Exception Handling in Ruby: The Exception Class Exception Class Heirarchy Handling Exceptions Raising Exceptions Catch/Throw Clauses Conclusions
  • 3. ‘Exception Handling in RUBY’ Exception Handling: WHY? Errors and Error Codes Errors and Error Codes In any programming, occurance of errors is a distinct reality. Errors need to be handled gracefully to avoid abrupt failures. Code that detects error may not have context to handle it. For example, attempting to open a file that doesn’t exist is acceptable in some circumstances and is a fatal error at other times. What does the file-handling module do? Conventionally it was done using error-checking and return-codes mechanism. Functions were checked for return values, and if the return code indicated failure, this code was interpreted and passed up the call stack.
  • 4. ‘Exception Handling in RUBY’ Exception Handling: WHY? The Need for Exception Handling The Need for Exception Handling However Error-codes mechanism has following shortcomings: Handling all errors through error codes is simply not possible. Moving error codes up the function call stack is complicated. Managing all the error-codes and associated code is tedious. The Exception Handling mechanism addresses these shortcomings. Exceptions allow packaging info about error in an object. Exception handling helps propagate object up the call stack. Runtime system locates code that knows to handle the error. Exception handling is essential for achieving well-designed object oriented code, and therefore Ruby provides a mechanism for same.
  • 5. ‘Exception Handling in RUBY’ Exception Handling in Ruby The Exception Class The Exception Class As in other object oriented languages, Ruby offers a mechanism for exception handling. When an exception occurs.. Object of class Exception, or one of it’s children, created. Exception is associated to message string & a stack backtrace. All information about the exception is packaged in this object. IOError, ZeroDivisionError, TypeError, SystemCallError, etc are examples of exceptions derived from class Exception. Ruby predefines a hierarchy of exceptions: see next slide.
  • 6. ‘Exception Handling in RUBY’ Exception Class Heirarchy Exception Class Heirarchy
  • 7. ‘Exception Handling in RUBY’ User Defined Exceptions User Defined Exceptions User-Defined Exception Users can create exception classes of their own. These must inherit from class StandardError or its children. If they dont, such exceptions will not be detected by default. They may include more specific information about the exception.
  • 8. ‘Exception Handling in RUBY’ User Defined Exceptions Handling Exceptions Handling Exceptions The basic approach to exception handling involves the use of: Enclose candidate code in begin/end block. Use rescue block to handle specific class of exceptions, where: Report the error, Code to handle detected error, Raise the exception using raise. Use ensure block to ensure execution of some essential code after handling, like deallocation of resources such as DB connections, etc. We can draw analogies to C++/Java exception handling: begin/end block for candidate code. (like try block) rescue blocks for handling code. (like catch blocks) raise command for raising the exception. (like throw) ensure command for necessary handling. (like final)
  • 9. ‘Exception Handling in RUBY’ User Defined Exceptions Handling Exceptions Example: Using rescue, raise and ensure
  • 10. ‘Exception Handling in RUBY’ User Defined Exceptions Handling Exceptions Handling Exceptions (continued..) Variables $ refers to the default global variable that stores the exception object for the exception. stderrobj is an example of user-defined variable storing the reference to the exception object. Matching exceptions to correct rescue block is like the case statement mechanism, object.kindof? result compared to exception types in rescue statements.
  • 11. ‘Exception Handling in RUBY’ User Defined Exceptions Raising Exceptions Raising Exceptions Raising exceptions deliberately in code help to trigger alerts where errors are expected and need to be handled. The raise statement can take the following forms: raise Raises current exception again, or RuntimeError if none. raise <message> Creates new RuntimeError exception, associates it with mentioned string, and raises the exception up the call stack. raise <exception class>, <message>, <call stack> Creates exception with arg-1 used as required exception type, arg-2 as message string, and arg-3 as stack trace.
  • 12. ‘Exception Handling in RUBY’ User Defined Exceptions Raising Exceptions Example: Typical Usage of raise
  • 13. ‘Exception Handling in RUBY’ User Defined Exceptions The Catch/Throw Clauses The catch/throw Clauses The rescue and raise mechanism is thus used for abandoning execution when unwanted errors occur. The catch and throw mechanism is used to continue execution at some point up the call stack. Working of catch/throw: catch defines a block with a specific label. The block is exeuted, typically accross nested functions, till a throw followed by the label is encountered. The call stack is then scoured for a catch block with a matching label. On a match, Ruby rolls back execution to the point and terminates the block. If the throw had an optional 2nd argument, it is returned as value of the catch block.
  • 14. ‘Exception Handling in RUBY’ User Defined Exceptions The Catch/Throw Clauses Example: Typical usage of catch/throw
  • 15. ‘Exception Handling in RUBY’ Conclusions Conclusions Exception Handling is essential for managing errors in object-oriented code. The Ruby Exception Handling mechanism includes: rescue and final clauses - for handling unwanted errors and exit gracefully. raise - for deliberately creating and raising exceptions in code. catch and throw clause - for continuing execution at some point up the function call stack.
  • 16. ‘Exception Handling in RUBY’ Conclusions References http://www.insula.cz/dali/material/rbycl/. http://www.ruby-lang.org/. Dave Thomas and Chad Fowler and Andy Hunt. Programming Ruby: The Pragmatic Programmers’ Guide. Pragmatic Bookshelf, Oct 2004.