aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/gem_builder.rb
diff options
context:
space:
mode:
authorCarl Lerche <carllerche@mac.com>2009-10-16 18:10:12 -0700
committerCarl Lerche <carllerche@mac.com>2009-10-16 18:10:52 -0700
commite1fdc8bba3e427435927685e77937b3a478aa416 (patch)
tree75cb24d055729f56d06dbabd1afda56c757e9bf0 /railties/lib/rails/gem_builder.rb
parent29ba9c030704fb76dc2debbfecbb10fd70233d18 (diff)
downloadrails-e1fdc8bba3e427435927685e77937b3a478aa416.tar.gz
rails-e1fdc8bba3e427435927685e77937b3a478aa416.tar.bz2
rails-e1fdc8bba3e427435927685e77937b3a478aa416.zip
Remove config.gem in favor of using the bundler. This makes config/boot.rb obsolete.
The bundler library is at: http://github.com/wycats/bundler/ and is a rubygem.
Diffstat (limited to 'railties/lib/rails/gem_builder.rb')
-rw-r--r--railties/lib/rails/gem_builder.rb21
1 files changed, 0 insertions, 21 deletions
diff --git a/railties/lib/rails/gem_builder.rb b/railties/lib/rails/gem_builder.rb
deleted file mode 100644
index 79c61cc034..0000000000
--- a/railties/lib/rails/gem_builder.rb
+++ /dev/null
@@ -1,21 +0,0 @@
-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