Class: Bundler::GemBundle

Inherits:
Array
  • Object
show all
Defined in:
lib/bowline/bundler/gem_bundle.rb

Instance Method Summary collapse

Instance Method Details

#downloadObject



3
4
5
6
7
8
9
# File 'lib/bowline/bundler/gem_bundle.rb', line 3

def download
  sort_by {|s| s.full_name.downcase }.each do |spec|
    spec.source.download(spec)
  end

  self
end