Flowdock
method

requests

Importance_0
v2_1_10 - Show latest stable - 0 notes - Class: Resolver
requests(s, act, reqs=nil) public

No documentation

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

Hide source
# File lib/rubygems/resolver.rb, line 142
  def requests s, act, reqs=nil # :nodoc:
    return reqs if @ignore_dependencies

    s.dependencies.reverse_each do |d|
      next if d.type == :development and not @development
      reqs.add Gem::Resolver::DependencyRequest.new(d, act)
      @stats.requirement!
    end

    @set.prefetch reqs

    @stats.record_requirements reqs

    reqs
  end
Register or log in to add new notes.