module Rsense::Server::GemPath

Public Instance Methods

fetch() click to toggle source
# File lib/rsense/server/gem_path.rb, line 12
def fetch
  Gem.path
end
paths() click to toggle source
# File lib/rsense/server/gem_path.rb, line 6
def paths
  fetch.map do |p|
    p unless p =~ /^file:/
  end
end