Module: Avm::Git::Launcher::Base::Underlying
- Included in:
- Avm::Git::Launcher::Base
- Defined in:
- lib/avm/git/launcher/base/underlying.rb
Instance Method Summary collapse
Instance Method Details
#command(*args) ⇒ Object
8 9 10 11 12 13 14 15 |
# File 'lib/avm/git/launcher/base/underlying.rb', line 8 def command(*args) args, = build_args(args) r = ::EacGit::Executables.git.command(*args) ([:exit_outputs] || {}).each do |status_code, result| r = r.status_result(status_code, result) end r end |
#init ⇒ Object
25 26 27 28 |
# File 'lib/avm/git/launcher/base/underlying.rb', line 25 def init git self end |