Sha256: 91b19dec375cb7aba1820187a726e0fbc102c3376ebf42f29733466bb7932608
Contents?: true
Size: 739 Bytes
Versions: 102
Compression:
Stored size: 739 Bytes
Contents
# frozen_string_literal: true require 'avm/tools/core_ext' require 'avm/launcher/git/base' module Avm module Tools class Runner class Git require_sub __FILE__ runner_with :help, :subcommands do desc 'Git utilities for AVM.' arg_opt '-C', '--path', 'Path to Git repository.' subcommands end def repository_path repository_path? ? parsed.path : '.' end def repository_path? parsed.path.present? end def git @git ||= ::Avm::Launcher::Git::Base.by_root(repository_path) end # @return [[EacGit::Local]] def git_repo git.eac_git end end end end end
Version data entries
102 entries across 102 versions & 2 rubygems