method

parse_PLATFORMS

ruby latest stable - Class: Gem::RequestSet::Lockfile::Parser
parse_PLATFORMS()
public

No documentation available.

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

      @platforms << name

      skip :newline
    end
  end