module LicenseScout::DependencyManager

The DependencyManager module (or more accurately, implementations of it) are responsible for recognizing when a dependency manager such as Bundler, Rebar, Berkshelf, etc is managing dependencies for source code in the given directory.

Public Class Methods

implementations() click to toggle source
# File lib/license_scout/dependency_manager.rb, line 35
def self.implementations
  [
    Berkshelf,
    Bundler,
    Cargo,
    Cpanm,
    Dep,
    Glide,
    Godep,
    Gomod,
    Habitat,
    Mix,
    Rebar,
    Npm,
  ]
end