Class: Licensee::FSProject
- Defined in:
- lib/licensee/projects/fs_project.rb
Instance Attribute Summary collapse
-
#path ⇒ Object
readonly
Returns the value of attribute path.
Attributes inherited from Project
#detect_packages, #detect_readme
Instance Method Summary collapse
-
#initialize(path, **args) ⇒ FSProject
constructor
A new instance of FSProject.
Methods inherited from Project
#license, #license_file, #matched_file, #package_file, #readme
Constructor Details
#initialize(path, **args) ⇒ FSProject
Returns a new instance of FSProject.
8 9 10 11 |
# File 'lib/licensee/projects/fs_project.rb', line 8 def initialize(path, **args) @path = path super(**args) end |
Instance Attribute Details
#path ⇒ Object (readonly)
Returns the value of attribute path.
6 7 8 |
# File 'lib/licensee/projects/fs_project.rb', line 6 def path @path end |