class Rsense::Client::Client

Constants

Config

Attributes

config[RW]

Public Instance Methods

gather_info() click to toggle source
# File lib/rsense/client.rb, line 14
def gather_info
  @config = Config.new(gem_home, gem_path, $:.join(File::PATH_SEPARATOR))
end
gem_home() click to toggle source
# File lib/rsense/client.rb, line 18
def gem_home
  ENV["GEM_HOME"]
end
gem_path() click to toggle source
# File lib/rsense/client.rb, line 22
def gem_path
  gem_pth = []
  gem_pth << ENV["GEM_PATH"]
  gem_pth << Gem.path
  gem_pth.join(File::PATH_SEPARATOR)
end