Sha256: fdc5ed9b11c3e5884e6bc2cdf3e138efe988e69f0e91773e7ee1768358df7098
Contents?: true
Size: 739 Bytes
Versions: 119
Compression:
Stored size: 739 Bytes
Contents
# frozen_string_literal: true require 'avm/tools/core_ext' require 'avm/git/launcher/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::Git::Launcher::Base.by_root(repository_path) end # @return [[EacGit::Local]] def git_repo git.eac_git end end end end end
Version data entries
119 entries across 119 versions & 2 rubygems