class Bundler::LockfileParser

def self.sections_in_lockfile(lockfile_contents)

def self.sections_in_lockfile(lockfile_contents)
  sections = lockfile_contents.scan(/^\w[\w ]*$/)
  sections.uniq!
  sections
end