RubyGems current load paths

I

Intransition

Hi--

I need to get a list of the "current" gem load paths. I learned that I
can get a list of all the latest load paths via:

Gem.latest_load_paths

which is great. But lets say I specify an older version of a lib, eg:

gem "RubyInline", "= 3.7.0"

Gem.latest_load_paths doesn't change. How can I get a list of latest
load paths but adjusted to reflect any specified gem versions?

Thanks.
 
E

Eric Hodel

I need to get a list of the "current" gem load paths. I learned that I
can get a list of all the latest load paths via:

Gem.latest_load_paths

which is great. But lets say I specify an older version of a lib, eg:

gem "RubyInline", "= 3.7.0"

Gem.latest_load_paths doesn't change. How can I get a list of latest
load paths but adjusted to reflect any specified gem versions?

Gem.latest_load_paths works for all installed gems, even if they're
not activated. You'll need to use Gem::Specification#full_gem_path
and Gem::Specification#require_path.

Needing to know where the gem lives is a sign that you're doing
something wrong though.
 
I

Intransition

Gem.latest_load_paths works for all installed gems, even if they're =A0
not activated. =A0You'll need to use Gem::Specification#full_gem_path =A0
and Gem::Specification#require_path.

Needing to know where the gem lives is a sign that you're doing =A0
something wrong though.

I'm doing a little meta-programming in this case -- I've created a
function to find "plugins". So I need to search through the $LOAD_PATH
and Gems. But I'm all ears if there is another way to do it. Here's
the code:

# =3D Plugin Handler
#
# Find plugins across various library managers.
#
module Plugin

extend self

DIRECTORY =3D 'plugin'

# Find plugins, searching through standard $LOAD_PATH,
# Roll Libraries and RubyGems.
#
# Provide a +match+ file glob to find plugins.
#
# Plugins.find('syckle/*')
#
def find(match)
plugins =3D []

# Standard $LOAD_PATH
$LOAD_PATH.uniq.each do |path|
list =3D Dir.glob(File.join(path, DIRECTORY, match))
#dirs =3D dirs.select{ |d| File.directory?(d) }
list =3D list.map{ |d| d.chomp('/') }
plugins.concat(list)
end

# ROLL (load latest or current versions only)
if defined?:):Roll)
::Roll::Library.ledger.each do |name, lib|
lib =3D lib.sort.first if Array=3D=3D=3Dlib
lib.load_path.each do |path|
find =3D File.join(lib.location, path, DIRECTORY, match)
list =3D Dir.glob(find)
list =3D list.map{ |d| d.chomp('/') }
plugins.concat(list)
end
end
end

# RubyGems (load latest versions only)
# TODO: need current versions
if defined?:):Gem)
Gem.latest_load_paths do |path|
list =3D Dir.glob(File.join(path, DIRECTORY, match))
list =3D list.map{ |d| d.chomp('/') }
plugins.concat(list)
end
end

plugins
end

# Shortcut for #find.
#
# Plugins['syckle/*']
#
alias_method :[], :find

end

Also, I wonder how Ruby 1.9 might effect this. Are the latest gem
paths added to the $LOAD_PATH by default in 1.9?
 
J

John Barnette

I'm doing a little meta-programming in this case -- I've created a
function to find "plugins". So I need to search through the $LOAD_PATH
and Gems. But I'm all ears if there is another way to do it.

Have you looked at Gem.find_files? It was written to solve this problem.


~ j.
 
R

Ryan Davis

I'm doing a little meta-programming in this case -- I've created a
function to find "plugins". So I need to search through the $LOAD_PATH
and Gems. But I'm all ears if there is another way to do it. Here's
the code:

Gem.find_files(glob)
 
I

Intransition

Have you looked at Gem.find_files? It was written to solve this problem.

Yes, I looked at that. But there is a problem. The docs say,

"Note that find_files will return all files even if they are from
different versions of the same gem."

I want only the active or latest gem versions.

However, short of a better solution, I guess I can look at the code
behind that method for some ideas.
 
E

Eric Hodel

Yes, I looked at that. But there is a problem. The docs say,

"Note that find_files will return all files even if they are from
different versions of the same gem."

I want only the active or latest gem versions.

It's an encouragement to make your plugin files as light as possible,
such as requiring an additional file or calling some very stable API.
 

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,755
Messages
2,569,536
Members
45,012
Latest member
RoxanneDzm

Latest Threads

Top