class PkgConfig::NotFound

Attributes

name[R]

Public Class Methods

new(name) click to toggle source
Calls superclass method
# File lib/autobuild/pkgconfig.rb, line 6
def initialize(name)
    @name = name
    super()
end

Public Instance Methods

to_s() click to toggle source
# File lib/autobuild/pkgconfig.rb, line 11
def to_s
    "#{name} is not available to pkg-config"
end