module Just

Constants

VERSION

Public Class Methods

aliases() click to toggle source
# File lib/just.rb, line 17
def self.aliases
  path("aliases")
end
directory() click to toggle source
# File lib/just.rb, line 9
def self.directory
  File.expand_path(File.join(ENV['HOME'], ".just"))
end
git(*paths) click to toggle source
# File lib/just.rb, line 25
def self.git(*paths)
  File.join(git_url, *paths)
end
git_url() click to toggle source
# File lib/just.rb, line 21
def self.git_url
  "https://github.com"
end
path(*paths) click to toggle source
# File lib/just.rb, line 13
def self.path(*paths)
  File.expand_path(File.join(directory, *paths))
end
progress_bar() click to toggle source
# File lib/just.rb, line 5
def self.progress_bar
   ProgressBar::Outputs::Tty
end