Class: Skeletor::Tasks

Inherits:
Object
  • Object
show all
Defined in:
lib/skeletor/tasks.rb

Class Method Summary collapse

Class Method Details

.capify(path) ⇒ Object



10
11
12
# File 'lib/skeletor/tasks.rb', line 10

def self.capify(path)
  system "capify " + path
end

.git_init(path) ⇒ Object



5
6
7
8
# File 'lib/skeletor/tasks.rb', line 5

def self.git_init(path)
  system "cd " + path + '
          git init'
end