First, where is there some api docs for rubygem related methods and
classes?
Second, I have a gem that bundles some required files for the gem. How
do I find the path of the installed gem, so that I can load the bundled
files. For example, I have one executable file, that needs to load some
files that were included (in the lib) dir. But I do I know what the path
of my gem is?
Hey Tom, Thanks, that information is definitely what I’m looking for.
How would I get that info from within a ruby script. Specifically the
“GEM PATH” is what I would need. Is there a method to get that?
Second, I have a gem that bundles some required files for the gem. How
do I find the path of the installed gem, so that I can load the bundled
files. For example, I have one executable file, that needs to load some
files that were included (in the lib) dir. But I do I know what the path
of my gem is?
Thanks all
~$ gen env
–
Tom C., MS MA, LMHC - Private practice Psychotherapist
Bellingham, Washington, U.S.A: (360) 920-1226
<< [email protected] >> (email)
<< TomCloyd.com >> (website)
<< sleightmind.wordpress.com >> (mental health weblog)
Hey Tom, Thanks, that information is definitely what I’m looking for.
How would I get that info from within a ruby script. Specifically the
“GEM PATH” is what I would need. Is there a method to get that?
or rather, the “INSTALLATION DIRECTORY.”
===========================
If you had any idea how paltry my knowledge of Ruby really is you would
ask me such questions! But…I got us this far, so…
I think I’d try a system call to “gem env”, and put the output in a
string, then locate “INSTALLATION DIRECTORY:” with StringScanner, and
take everything after that, up to the EOL as the path you’re after.
Easy, actually.
Only I’m momentarily stumped as to how to make the system call AND
capture the output. Thomas (Pickaxe 2) says it can be done using
backtics. I tried it in irb and got nothing. Still trying to figure it
out. It’d be a good trick to know.
t.
–
Tom C., MS MA, LMHC - Private practice Psychotherapist
Bellingham, Washington, U.S.A: (360) 920-1226
<< [email protected] >> (email)
<< TomCloyd.com >> (website)
<< sleightmind.wordpress.com >> (mental health weblog)
backtics. I tried it in irb and got nothing. Still trying to figure
VERSION: 1.8.7 (2008-08-11 patchlevel 72) [i486-linux]\n -
I leave it to you to get the code to have StringScanner find and
return the path. Somehow I keep thinking regular expressions might be
helpful here, but I dare not there. I think I hear the ice cracking
already.
there should be something that’s part of the rubygem api, so I don’t
have to call system commands. I see where you’re going with the regex on
the gem env command, but there has to be a better way.
If you had any idea how paltry my knowledge of Ruby really is you
out. It’d be a good trick to know.
t.
Bummer. In order to preserve my reputation, I managed to get irb a bit
hung up, so of course it didn’t perform gem env as I expected.
Ungummed, as it were, it works fine. E.g.:
I leave it to you to get the code to have StringScanner find and return
the path. Somehow I keep thinking regular expressions might be helpful
here, but I dare not there. I think I hear the ice cracking already.
t.
–
Tom C., MS MA, LMHC - Private practice Psychotherapist
Bellingham, Washington, U.S.A: (360) 920-1226
<< [email protected] >> (email)
<< TomCloyd.com >> (website)
<< sleightmind.wordpress.com >> (mental health weblog)
Super - easier. I do get 2 paths, though -
/home/tomc/.gem/ruby/1.8
/usr/lib/ruby/gems/1.8
So you’ll still have to locate and extract, but that’s nothing (and
maybe your install is set up differently…?)
Thanks for this thread - exactly what I needed as well. I think code to
find the particular library should try prepending the paths returned
from Gem.default_path in order they are returned, as a gem installed in
a user directory should trump a system gem.