Class: Gitflash::Git::BashCommand

Inherits:
Object
  • Object
show all
Defined in:
lib/gitflash/git/bash_command.rb

Class Method Summary collapse

Class Method Details

.exec(command) ⇒ Object



7
8
9
# File 'lib/gitflash/git/bash_command.rb', line 7

def exec(command)
  `#{command}`
end

.system_exec(*args) ⇒ Object



11
12
13
# File 'lib/gitflash/git/bash_command.rb', line 11

def system_exec(*args)
  system(*args)
end