module Parstack

Constants

APPNAME
COMMAND
INPUT

Your code goes here…

VERSION

Public Class Methods

run() click to toggle source
# File lib/parstack.rb, line 8
def self.run
  setup if COMMAND == 'new'
end
setup() click to toggle source
# File lib/parstack.rb, line 12
def self.setup
  system 'git clone https://github.com/kevinkang88/par-stack.git'
  system "mv par-stack #{APPNAME}"
  system "rm -rf #{APPNAME}/.git"
  system "rm -rf #{APPNAME}/.gitignore"
end