method

parse_PLATFORMS

ruby latest stable - Class: Gem::RequestSet::Lockfile

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v2_2_9) is shown here.

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