class ErpDevSvcs::Commands::Git

Public Class Methods

execute() click to toggle source
# File lib/erp_dev_svcs/commands/git.rb, line 7
def self.execute
  new()
end
new() click to toggle source
# File lib/erp_dev_svcs/commands/git.rb, line 11
def initialize
  ErpDevSvcs::Commands::Helper.exec_in_dirs do
    git_result = %x[git #{ARGV[0]}]
    puts git_result
  end
end