class Bundler::Source::Path

def initialize(options)

def initialize(options)
  @options = options
  @glob = options["glob"] || DEFAULT_GLOB
  @allow_cached = false
  @allow_remote = false
  if options["path"]
    @path = Pathname.new(options["path"])
    @path = expand(@path) unless @path.relative?
  end
  @name    = options["name"]
  @version = options["version"]
  # Stores the original path. If at any point we move to the
  # cached directory, we still have the original path to copy from.
  @original_path = @path
end