method

parse_PLATFORMS

parse_PLATFORMS()
public

No documentation available.

# File lib/rubygems/request_set/lockfile.rb, line 473
  def parse_PLATFORMS # :nodoc:
    while not @tokens.empty? and :text == peek.first do
      _, name, = get :text

      @platforms << name

      skip :newline
    end
  end