class Gem::RequestSet::Lockfile::Parser

def parse_PLATFORMS # :nodoc:

:nodoc:
def parse_PLATFORMS # :nodoc:
  while not @tokens.empty? and :text == peek.first do
    name = get(:text).value
    @platforms << name
    skip :newline
  end
end