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

Version Path
eac_tools-0.6.0 sub/avm-tools/lib/avm/tools/runner/git.rb
avm-tools-0.121.2 lib/avm/tools/runner/git.rb
eac_tools-0.5.0 sub/avm-tools/lib/avm/tools/runner/git.rb
eac_tools-0.4.0 sub/avm-tools/lib/avm/tools/runner/git.rb
eac_tools-0.3.0 sub/avm-tools/lib/avm/tools/runner/git.rb
eac_tools-0.2.2 sub/avm-tools/lib/avm/tools/runner/git.rb
avm-tools-0.121.1 lib/avm/tools/runner/git.rb
avm-tools-0.121.0 lib/avm/tools/runner/git.rb
avm-tools-0.120.2 lib/avm/tools/runner/git.rb
avm-tools-0.120.1 lib/avm/tools/runner/git.rb
avm-tools-0.120.0 lib/avm/tools/runner/git.rb
avm-tools-0.119.0 lib/avm/tools/runner/git.rb
avm-tools-0.118.0 lib/avm/tools/runner/git.rb
avm-tools-0.117.3 lib/avm/tools/runner/git.rb
avm-tools-0.117.2 lib/avm/tools/runner/git.rb
avm-tools-0.117.1 lib/avm/tools/runner/git.rb
avm-tools-0.117.0 lib/avm/tools/runner/git.rb
avm-tools-0.116.2 lib/avm/tools/runner/git.rb
avm-tools-0.116.1 lib/avm/tools/runner/git.rb
avm-tools-0.116.0 lib/avm/tools/runner/git.rb