Module: EacLauncher::Git::Base::Underlying

Included in:
EacLauncher::Git::Base
Defined in:
lib/eac_launcher/git/base/underlying.rb

Instance Method Summary collapse

Instance Method Details

#execute!(*args) ⇒ Object



11
12
13
14
# File 'lib/eac_launcher/git/base/underlying.rb', line 11

def execute!(*args)
  args, options = build_args(args)
  ::EacRubyUtils::Envs.local.command(*args).execute!(options)
end

#initObject



21
22
23
24
# File 'lib/eac_launcher/git/base/underlying.rb', line 21

def init
  git
  self
end

#system!(*args) ⇒ Object



16
17
18
19
# File 'lib/eac_launcher/git/base/underlying.rb', line 16

def system!(*args)
  args, options = build_args(args)
  ::EacRubyUtils::Envs.local.command(*args).system!(options)
end