class Commands

Public Class Methods

new(directory=Dir.pwd) click to toggle source
# File lib/commands.rb, line 18
def initialize directory=Dir.pwd
        Dir.chdir(directory) do
          self[:pull]=Pull.new
          self[:update]=Update.new
          self[:setup]=Setup.new
          self[:build]=Build.new
          self[:test]=Test.new
          self[:analyze]=Analyze.new
          self[:doc]=Doc.new
          self[:clean]=Clean.new
          self[:publish]=Publish.new
          self[:clobber]=Clobber.new
          self[:add]=Add.new
          self[:commit]=Commit.new
          self[:push]=Push.new
    end
end