Sha256: fd7a88b2e4775093a5e0cb53fae33bb621e9c56c7682626aa3b790128e96eef6

Contents?: true

Size: 601 Bytes

Versions: 7

Compression:

Stored size: 601 Bytes

Contents

# frozen_string_literal: true

require 'eac_ruby_utils/console/docopt_runner'
Dir["#{File.dirname(__FILE__)}/#{::File.basename(__FILE__, '.*')}/*.rb"].each do |path|
  require path
end

module Avm
  module Tools
    class Runner < ::EacRubyUtils::Console::DocoptRunner
      class Git < ::EacRubyUtils::Console::DocoptRunner
        DOC = <<~DOCOPT
          Git utilities for AVM.

          Usage:
            __PROGRAM__ [options] __SUBCOMMANDS__
            __PROGRAM__ -h | --help

          Options:
            -h --help             Show this screen.
        DOCOPT
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
avm-tools-0.8.0 lib/avm/tools/runner/git.rb
avm-tools-0.7.0 lib/avm/tools/runner/git.rb
avm-tools-0.6.0 lib/avm/tools/runner/git.rb
avm-tools-0.4.1 lib/avm/tools/runner/git.rb
avm-tools-0.4.0 lib/avm/tools/runner/git.rb
avm-tools-0.3.0 lib/avm/tools/runner/git.rb
avm-tools-0.2.0 lib/avm/tools/runner/git.rb