lib/technologist/repository.rb in technologist-0.5.0 vs lib/technologist/repository.rb in technologist-0.6.0
- old
+ new
@@ -8,9 +8,13 @@
def initialize(repository_path)
@git_repository = GitRepository.new(repository_path)
@framework_detector = FrameworkDetector.new(@git_repository)
end
+ def frameworks
+ framework_detector.frameworks
+ end
+
def primary_frameworks
framework_detector.primary_frameworks
end
def secondary_frameworks