class Binpkgbot::Tasks::Install

Public Instance Methods

run() click to toggle source
# File lib/binpkgbot/tasks/install.rb, line 9
def run
  name = @options[:name] || @options[:atom]
  unless name
    raise ArgumentError, "install task is missing :name and :atom -- what to install?"
  end

  emerge(name)
end