class Bundler::Audit::Task

def define


Defines the `bundle:audit` task.
def define
  namespace :bundle do
    desc 'Updates the ruby-advisory-db then runs bundle-audit'
    task :audit do
      require 'bundler/audit/cli'
      %w(update check).each do |command|
        Bundler::Audit::CLI.start [command]
      end
    end
  end
end

def initialize


Initializes the task.
def initialize
  define
end