[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Ruby methods and Properties

Talib Hussain

12/16/2008 6:41:00 AM

Dear Experts,

I am new to Ruby, could you please let me know where I can find list of
Classes, objects,properties and methods used in Ruby scripting.

Foe example: method1(arg1, arg2... argN) with small example snippets to
use these methods and properties smiliar to provided by Microsoft (MSDN)
--
Posted via http://www.ruby-....

2 Answers

Einar Magnús Boson

12/16/2008 7:06:00 AM

0

I really liked this site. Thank you whoever it was that posted it here
before! :)

http://tinyurl....


On 16.12.2008, at 06:40 , Talib Hussain wrote:

> Dear Experts,
>
> I am new to Ruby, could you please let me know where I can find list
> of
> Classes, objects,properties and methods used in Ruby scripting.
>
> Foe example: method1(arg1, arg2... argN) with small example snippets
> to
> use these methods and properties smiliar to provided by Microsoft
> (MSDN)
> --
> Posted via http://www.ruby-....
>

einarmagnus




Brian Candler

12/16/2008 8:30:00 AM

0

Talib Hussain wrote:
> I am new to Ruby, could you please let me know where I can find list of
> Classes, objects,properties and methods used in Ruby scripting.
>
> Foe example: method1(arg1, arg2... argN) with small example snippets to
> use these methods and properties smiliar to provided by Microsoft (MSDN)

There is built-in help: just type ri methodname at the shell prompt, or
within irb try

irb_help "methodname"

(with the quotes)

For something to browse, try
http://www.ruby-doc.org/docs/Progra...

in particular select the sections "Built-in Classes and Methods", and
"Standard Library". This version of the book is quite old and is for
ruby 1.6, but that just means you're missing some new classes and
methods. The second edition (for ruby 1.8) and third edition (for ruby
1.9) are available to buy as either PDF or paper books from
www.pragprog.com
--
Posted via http://www.ruby-....