module Gem

Public Class Methods

all_load_paths() click to toggle source
# File lib/rbot/load-gettext.rb, line 59
def self.all_load_paths
  result = []

  Gem.path.each do |gemdir|
    each_load_path all_partials(gemdir) do |load_path|
      result << load_path
    end
  end

  result
end