Yeah, Google doesn't care for punctuation of any kind really. $. is used to denote the load path for Ruby libraries, so the line that you have there is to prepend the lib/ directory, which is a peer to the directory your script is in, to the front of the load path.
FYI, it's aliased as $LOAD_PATH in case you want to change it for better clarity. On Thu, Feb 10, 2011 at 4:21 PM, Walter Lee Davis <[email protected]>wrote: > I have a script with the first line as follows: > > $:.unshift(File.dirname(__FILE__) + '/../lib') > > This must mean something nasty to Google, because I can't seem to get > anything useful if I include it in a search string, even quoted. Ditto > stackoverflow and rubytips. > > Having this line at the beginning of this script seems to treat the require > <gem name> statements that follow it differently than a normal require > would, or at least I am not getting the same errors as I do when I require > the gems without this line. > > What does it do? > > Thanks, > > Walter > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/rubyonrails-talk?hl=en. > > -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

