class Technologist::Repository

Attributes

framework_detector[R]
git_repository[R]

Public Class Methods

new(repository_path) click to toggle source
# File lib/technologist/repository.rb, line 8
def initialize(repository_path)
  @git_repository = GitRepository.new(repository_path)
  @framework_detector = FrameworkDetector.new(@git_repository)
end

Public Instance Methods

frameworks() click to toggle source
# File lib/technologist/repository.rb, line 13
def frameworks
  framework_detector.frameworks
end
primary_frameworks() click to toggle source
# File lib/technologist/repository.rb, line 17
def primary_frameworks
  framework_detector.primary_frameworks
end
secondary_frameworks() click to toggle source
# File lib/technologist/repository.rb, line 21
def secondary_frameworks
  framework_detector.secondary_frameworks
end