From: Joel VanderWerf Date: 2008-06-03T05:42:02+09:00 Subject: interrupt during require_gem Bad timing I guess: I happened to interrupt a program presumably during require_gem or whatever method happens when you have RUBYOPT=rubygems. This caused a huge dump of warnings about invalid gem specs (not even gems I was using in my code). Could this be handled in a way that doesn't dump all these messages (shown below)? I'm not including the backtrace, because it didn't show where these warnings were generated. WARNING: Interrupt Gem::Specification.new do |s| s.name = %q{columnize} s.version = "0.1" s.specification_version = 1 if s.respond_to? :specification_version= s.required_rubygems_version = nil if s.respond_to? :required_rubygems_version= s.authors = ["R. Bernstein"] s.cert_chain = nil s.date = %q{2007-12-08} s.description = %q{Columnize is a module for reading and caching lines. This may be useful for example in a debugger where the same lines are shown many times.} s.email = %q{rockyb@rubyforge.net} s.extra_rdoc_files = ["README", "lib/columnize.rb"] s.files = ["AUTHORS", "COPYING", "ChangeLog", "NEWS", "README", "Rakefile", "VERSION", "lib/columnize.rb", "test/test-columnize.rb"] s.has_rdoc = true s.homepage = %q{http://rubyforge.org/projects/rocky-hacks/columnize} s.require_paths = ["lib"] s.required_ruby_version = Gem::Requirement.new(">= 1.8.2") s.rubyforge_project = %q{rocky-hacks} s.rubygems_version = %q{1.1.0} s.summary = %q{Read file with caching} end WARNING: Invalid .gemspec format in '/usr/local/lib/ruby/gems/1.8/specifications/columnize-0.1.gemspec' WARNING: Interrupt Gem::Specification.new do |s| s.name = %q{mongrel} s.version = "1.1.4" s.specification_version = 2 if s.respond_to? :specification_version= ... ... (and much more like this) -- vjoel : Joel VanderWerf : path berkeley edu : 510 665 3407