Sha256: eb0d86e84890a1bc04779ab007220a892a4a1581c8a6785d176d4789daa6ecee
Contents?: true
Size: 478 Bytes
Versions: 65
Compression:
Stored size: 478 Bytes
Contents
require 'rubygems' require 'rubygems/installer' module Rails # 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) class GemBuilder < Gem::Installer def initialize(spec, gem_dir) @spec = spec @gem_dir = gem_dir end # silence the underlying builder def say(message) end end end
Version data entries
65 entries across 64 versions & 11 rubygems