Class: Soul::Project
- Inherits:
-
Object
- Object
- Soul::Project
- Defined in:
- lib/soul/project.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
Returns the value of attribute name.
-
#project_file_path ⇒ Object
Returns the value of attribute project_file_path.
Instance Method Summary collapse
-
#initialize(name, project_file_path) ⇒ Project
constructor
A new instance of Project.
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
#name ⇒ Object
Returns the value of attribute name.
2 3 4 |
# File 'lib/soul/project.rb', line 2 def name @name end |
#project_file_path ⇒ Object
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 |