Class: Soul::Project

Inherits:
Object
  • Object
show all
Defined in:
lib/soul/project.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, project_file_path) ⇒ Project

Returns a new instance of Project.



4
5
6
7
# File 'lib/soul/project.rb', line 4

def initialize(name, project_file_path)
  @name = name
  @project_file_path = project_file_path
end

Instance Attribute Details

#nameObject

Returns the value of attribute name.



2
3
4
# File 'lib/soul/project.rb', line 2

def name
  @name
end

#project_file_pathObject

Returns the value of attribute project_file_path.



2
3
4
# File 'lib/soul/project.rb', line 2

def project_file_path
  @project_file_path
end