class RuGUI::GemBuilder

this class hijacks the functionality of Gem::Installer by overloading its initializer to only provide the information needed by Gem::Installer#build_extensions (which happens to be what we have)

Public Class Methods

new(spec, gem_dir) click to toggle source
# File lib/rugui/gem_builder.rb, line 11
def initialize(spec, gem_dir)
  @spec    = spec
  @gem_dir = gem_dir
end

Public Instance Methods

say(message) click to toggle source

silence the underlying builder

# File lib/rugui/gem_builder.rb, line 17
def say(message)
end