# File lib/bundler/source.rb, line 189
    def initialize(bundle, options)
      super
      if options[:location]
        @location = Pathname.new(options[:location]).expand_path
      end
      @glob           = options[:glob] || "**/*.gemspec"
      @specs          = {}
      @required_specs = []
    end