Module: Avmtrf1::Patches::Avm::Launcher::Git::Base::InstanceMethods

Defined in:
lib/avmtrf1/patches/avm/launcher/git/base.rb

Instance Method Summary collapse

Instance Method Details

#status_filesObject



20
21
22
23
24
25
# File 'lib/avmtrf1/patches/avm/launcher/git/base.rb', line 20

def status_files
  execute!('-c', 'core.quotepath=off', 'status', '--porcelain')
    .each_line.map do |line|
    parse_status_file(line)
  end
end