Class: Hellgrid::Project

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

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#pathObject (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_matrixObject



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

#nameObject



10
11
12
# File 'lib/hellgrid/project.rb', line 10

def name
  File.expand_path(path).gsub(File.expand_path(root) + '/', '')
end