Class: Hellgrid::Project
- Inherits:
-
Object
- Object
- Hellgrid::Project
- Defined in:
- lib/hellgrid/project.rb
Instance Attribute Summary collapse
-
#path ⇒ Object
readonly
Returns the value of attribute path.
Instance Method Summary collapse
- #dependency_matrix ⇒ Object
-
#initialize(root, path) ⇒ Project
constructor
A new instance of Project.
- #name ⇒ Object
Constructor Details
#initialize(root, path) ⇒ Project
Returns a new instance of Project.
5 6 7 8 |
# File 'lib/hellgrid/project.rb', line 5 def initialize(root, path) @root = root @path = path end |
Instance Attribute Details
#path ⇒ Object (readonly)
Returns the value of attribute path.
3 4 5 |
# File 'lib/hellgrid/project.rb', line 3 def path @path end |
Instance Method Details
#dependency_matrix ⇒ Object
14 15 16 |
# File 'lib/hellgrid/project.rb', line 14 def dependency_matrix @dependency_matrix ||= specs.inject(Hash.new) { |h,spec| h.merge!(spec.name.to_s => spec.version.version) } end |
#name ⇒ Object
10 11 12 |
# File 'lib/hellgrid/project.rb', line 10 def name File.(path).gsub(File.(root) + '/', '') end |