class Brice::Config::PackageConfig

Public Instance Methods

each { |entry| ... } → pkgconfig click to toggle source

Iterates over all entries in pkgconfig. Returns pkgconfig.

    # File lib/brice/config.rb
170 def each
171   @table.keys.each { |key| yield key.to_s }
172   self
173 end
empty? → true | false click to toggle source

Checks whether pkgconfig is empty?

    # File lib/brice/config.rb
179 def empty?
180   @table.empty?
181 end