mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
9694bb8cac
* test/rubygems*: ditto. * common.mk (prelude): Updated for RubyGems 2.0 source rearrangement. * tool/change_maker.rb: Allow invalid UTF-8 characters in source files. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37976 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
40 lines
927 B
Ruby
40 lines
927 B
Ruby
require 'rubygems/command'
|
|
require 'rubygems/version_option'
|
|
require 'rubygems/validator'
|
|
|
|
class Gem::Commands::CheckCommand < Gem::Command
|
|
|
|
include Gem::VersionOption
|
|
|
|
def initialize
|
|
super 'check', 'Check installed gems',
|
|
:alien => true
|
|
|
|
add_option('-a', '--alien', "Report 'unmanaged' or rogue files in the",
|
|
"gem repository") do |value, options|
|
|
options[:alien] = true
|
|
end
|
|
|
|
add_version_option 'check'
|
|
end
|
|
|
|
def execute
|
|
say "Checking gems..."
|
|
say
|
|
gems = get_all_gem_names rescue []
|
|
|
|
Gem::Validator.new.alien(gems).sort.each do |key, val|
|
|
unless val.empty? then
|
|
say "#{key} has #{val.size} problems"
|
|
val.each do |error_entry|
|
|
say " #{error_entry.path}:"
|
|
say " #{error_entry.problem}"
|
|
end
|
|
else
|
|
say "#{key} is error-free" if Gem.configuration.verbose
|
|
end
|
|
say
|
|
end
|
|
end
|
|
|
|
end
|