class Skeletor::Tasks

The Tasks class contains the included tasks that may be run after the skeleton has been created.

Public Class Methods

capify(path) click to toggle source

Creates default capistrano deployment files in the new project directory

# File lib/skeletor/tasks.rb, line 14
def self.capify(path)
  system "capify " + path
end
git_init(path) click to toggle source

Initializes an empty git repository in the new project directory

# File lib/skeletor/tasks.rb, line 8
def self.git_init(path)
  system "cd " + path + '
          git init'
end