Class Bundler::LockfileParser
In: lib/bundler/lockfile_parser.rb
Parent: Object

Methods

new  

Constants

DEPENDENCIES = "DEPENDENCIES"
PLATFORMS = "PLATFORMS"
GIT = "GIT"
GEM = "GEM"
PATH = "PATH"
SPECS = " specs:"
OPTIONS = /^ ([a-z]+): (.*)$/i
TYPES = { "GIT" => Bundler::Source::Git, "GEM" => Bundler::Source::Rubygems, "PATH" => Bundler::Source::Path
NAME_VERSION = '(?! )(.*?)(?: \(([^-]*)(?:-(.*))?\))?'
NAME_VERSION_2 = %r{^ {2}#{NAME_VERSION}(!)?$}
NAME_VERSION_4 = %r{^ {4}#{NAME_VERSION}$}
NAME_VERSION_6 = %r{^ {6}#{NAME_VERSION}$}

Attributes

dependencies  [R] 
platforms  [R] 
sources  [R] 
specs  [R] 

Public Class methods

[Validate]