Module: WatchTower::Project::Init::InstanceMethods

Defined in:
lib/watch_tower/project/init.rb

Instance Method Summary collapse

Instance Method Details

#initialize(name, path) ⇒ Object

Initialize a project using a name and a path

Parameters:

  • name: (String)

    the name of the project

  • path: (String)

    The path of the project



32
33
34
35
36
# File 'lib/watch_tower/project/init.rb', line 32

def initialize(name, path)
  LOG.debug("#{__FILE__}:#{__LINE__}: Created project #{name} located at #{path}")
  @name = name
  @path = path
end