class Dependabot::CLI::Application

Public Instance Methods

scan(path = Pathname.pwd) click to toggle source
# File lib/dependabot/cli.rb, line 15
def scan(path = Pathname.pwd)
  Dependabot.logger.level = :debug if options[:verbose]
  ::Dependabot::CLI::Scan.new(path, options).run
end
version() click to toggle source
# File lib/dependabot/cli.rb, line 21
def version
  $stdout.puts "v#{Dependabot::VERSION}"
end