Flowdock
method

get_candidate_gems

Importance_0
v2_2_9 - Show latest stable - 0 notes - Class: CleanupCommand
get_candidate_gems() public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rubygems/commands/cleanup_command.rb, line 99
  def get_candidate_gems
    @candidate_gems = unless options[:args].empty? then
                        options[:args].map do |gem_name|
                          Gem::Specification.find_all_by_name gem_name
                        end.flatten
                      else
                        Gem::Specification.to_a
                      end
  end
Register or log in to add new notes.