Is there an online reference for dollar ($) variables?

L

Larry Fast

Is there an online reference that describes all the Ruby $... variables?
Are there any search engines that allow you to search for something like
$: ? Is there anything in the Rdocs?

Personally, I'm very happy with the list of $... variables found in the
2nd edition of Ruby Programming. However a few of my colleagues do not
have a copy of this book. While I try to avoid using them there are
times when it's almost unavoidable. For example, I haven't found any way
to append new directories to the Load Path $: within my Ruby code
(specifically my Rakefile).

Thanks,
Larry
 
H

hemant

Is there an online reference that describes all the Ruby $... variables?
Are there any search engines that allow you to search for something like
$: ? Is there anything in the Rdocs?

Personally, I'm very happy with the list of $... variables found in the
2nd edition of Ruby Programming. However a few of my colleagues do not
have a copy of this book. While I try to avoid using them there are
times when it's almost unavoidable. For example, I haven't found any way
to append new directories to the Load Path $: within my Ruby code
(specifically my Rakefile).

Thanks,
Larry

I hate to break it you, but probably you are looking for :

http://www.zenspider.com/Languages/Ruby/QuickRef.html

ahoy zenspider... :)


--
Let them talk of their oriental summer climes of everlasting
conservatories; give me the privilege of making my own summer with my
own coals.

http://blog.gnufied.org
 
O

Olivier Renaud

Le samedi 01 septembre 2007 04:24, Larry Fast a =C3=A9crit=C2=A0:
Is there an online reference that describes all the Ruby $... variables?
Are there any search engines that allow you to search for something like
$: ? Is there anything in the Rdocs?

Personally, I'm very happy with the list of $... variables found in the
2nd edition of Ruby Programming. However a few of my colleagues do not
have a copy of this book. While I try to avoid using them there are
times when it's almost unavoidable. For example, I haven't found any way
to append new directories to the Load Path $: within my Ruby code
(specifically my Rakefile).

Thanks,
Larry

You also may take a look at the 'English' library, from the stdlib=20
(http://ruby-doc.org/stdlib/). It gives explicit names to the predefined=20
global variables. At the same time, it's a good resource for describing the=
ir=20
meanings.

eg :
$! -> $ERROR_INFO
$@ -> $ERROR_POSITION
$_ -> $LAST_READ_LINE

=2D-=20
Olivier Renaud
 
L

Larry Fast

Thank you all. Those are great references that I added to our local
Wiki. Here are some diagnostics on the links:

Ruby Central was inaccessible when I tried it, 8:30 PDT Saturday.

Ruby.org's copy of the Pragmantic Programmer's Guide is different
(older?) than phrogz.

This link:
http://phrogz.net/ProgrammingRuby/language.html#predefinedvariables
takes me to the right page but the #... didn't work.

English looks great but it seems to be missing $: and probably a few
other internal variables.

Again, thank you all very much.
Larry Fast
 
O

Olivier Renaud

Le dimanche 02 septembre 2007 05:44, Larry Fast a =C3=A9crit=C2=A0:
Thank you all. Those are great references that I added to our local
Wiki. Here are some diagnostics on the links:

Ruby Central was inaccessible when I tried it, 8:30 PDT Saturday.

Ruby.org's copy of the Pragmantic Programmer's Guide is different
(older?) than phrogz.

This link:
http://phrogz.net/ProgrammingRuby/language.html#predefinedvariables
takes me to the right page but the #... didn't work.

English looks great but it seems to be missing $: and probably a few
other internal variables.

Again, thank you all very much.
Larry Fast

English doesn't define a name for $: because there's already an alias for t=
his=20
one, in the core ruby : $LOAD_PATH

=2D-=20
Olivier Renaud
 
P

Phrogz

Ruby.org's copy of the Pragmantic Programmer's Guide is different
(older?) than phrogz.

I did a lot of custom markup and CSS from the source code (awesomely)
offered up for free by the original authors, but I think the source
file is likely the same.
This link:http://phrogz.net/ProgrammingRuby/language.html#predefinedvariables
takes me to the right page but the #... didn't work.

Can't imagine why. What OS/browser/version? That page validates as
correct HTML 4.01 Transitional, and there is 1 and only 1 element on
that page with the ID "predefinedvariables".

The sub-page anchor works for me in both Safari and Firefox on the Mac.
 
L

Larry Fast

Gavin said:
...but I think the source file is likely the same.

Hmmm. On the Language page in particular, phrogz version is very
different. The ruby-doc and ruby-central versions seem to be the same.
The Language page stops after:
Variables and Constants
Scope of Variables and Constants
---end of page---
Next link goes to Classes and Objects

But in phrogz version Variables and Constants appears at the 1/3 mark on
the page. Also the index interface is completely different. Phrogz
copy goes on to list
Predefined Variables (the very next section)
Expressions
Method Definition
Class Definition
Module Definition
Access Control
Blocks, Closures & Procs
Exceptions
---end of page---
Next link goes to Classes and Objects - same as the other copies
I went back and it worked this time. Must have been Gremlins :-o

Thanks for mentioning $LOAD_PATH, Olivier. Googling it turned up
multiple hits but none in any 'standard' Ruby sites. Searching on
ruby-lang.org came up blank as well. Like sooo many things it's
community knowledge.

Thank you again,
Larry
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,579
Members
45,053
Latest member
BrodieSola

Latest Threads

Top