class Object

Public Instance Methods

git() click to toggle source
# File lib/mundler/cached_git/git, line 3
def git
  dir = __dir__
  File.expand_path(File.join(dir, "cached_git"))
end
main() click to toggle source
# File lib/mundler/cached_git/git, line 8
def main
  system("#{git} #{ARGV.join(" ")}")
  exit($?.exitstatus || 0)
end