class RuAUR::Error::MissingDependency
Public Class Methods
new(dep = nil)
click to toggle source
Calls superclass method
# File lib/ruaur/error/missing_dependency.rb, line 2 def initialize(dep = nil) super("Dependency not found: #{dep}") if (dep) super("Dependency not found") if (dep.nil?) end