module Bixby

Attributes

manager_uri[RW]

Public Class Methods

home()
Alias for: root
path(*args) click to toggle source

Helper for creating absolute paths inside BIXBY_HOME

# File lib/bixby-common/bixby.rb, line 18
def path(*args)
  File.expand_path(File.join(root, *args))
end
repo(*args) click to toggle source
# File lib/bixby-common/bixby.rb, line 6
def repo(*args)
  path("repo", *args)
end
Also aliased as: repo_path
repo_path(*args)
Alias for: repo
root() click to toggle source

Path to BIXBY_HOME

# File lib/bixby-common/bixby.rb, line 12
def root
  ENV["BIXBY_HOME"]
end
Also aliased as: home