Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.ruby > #2644
| From | 7stud -- <bbxx789_05ss@yahoo.com> |
|---|---|
| Newsgroups | comp.lang.ruby |
| Subject | Re: Beginner's Beginner |
| Date | 2011-04-11 18:23 -0500 |
| Organization | Service de news de lacave.net |
| Message-ID | <4a277f7435d09ffe2508e24ebe321c96@ruby-forum.com> (permalink) |
| References | <5eb7523dd74392a56e954a3486b4830f@ruby-forum.com> <ab0373fb31c334955b289bb9cc4f9095@ruby-forum.com> |
7stud -- wrote in post #992150: > 1) Add the directory containing the file you want to require() to the > directories that are searched by default: > > $LOAD_PATH << "/some_dir/sub_dir/my_ruby_programs/" > $LOAD_PATH is an array, and the << is like calling push() on an array--for instance: arr.push(additional_element) The result is that the $LOAD_PATH array will contain an additional string, which is the name of the directory you want to add. However, the $LOAD_PATH array will be changed only for the duration of your program; when you run another program, the $LOAD_PATH array will be reconstructed with the default directories plus whatever directory is the current directory. > For a more permanent solution, you can also: > > 2) Add the directory containing the file you want to require, to your > system's PATH environment variable. > > 3) Create a new environment variable called RUBYPATH, which specifies > additional directories that you want ruby to search. > > -- Posted via http://www.ruby-forum.com/.
Back to comp.lang.ruby | Previous | Next — Previous in thread | Find similar | Unroll thread
Beginner's Beginner william nelson <wanelson23@gmail.com> - 2011-04-11 04:26 -0500
Re: Beginner's Beginner 7stud -- <bbxx789_05ss@yahoo.com> - 2011-04-11 15:04 -0500
Re: Beginner's Beginner 7stud -- <bbxx789_05ss@yahoo.com> - 2011-04-11 18:23 -0500
csiph-web