summaryrefslogtreecommitdiff
path: root/lib/bundler/remote_specification.rb
diff options
context:
space:
mode:
authorCarlhuda <carlhuda@engineyard.com>2010-03-09 12:05:35 -0800
committerCarlhuda <carlhuda@engineyard.com>2010-03-09 12:07:51 -0800
commitd56104cf29a88ac434cbed80a0ee3623ec1d902d (patch)
tree921099cc0b09fd56f0c6396470efb9ccd4467f96 /lib/bundler/remote_specification.rb
parentfe81be9dfeae10c7092b78d61a9869506d3ac33f (diff)
downloadbundler-d56104cf29a88ac434cbed80a0ee3623ec1d902d.tar.gz
Always sort rake first in the dependency list
Diffstat (limited to 'lib/bundler/remote_specification.rb')
-rw-r--r--lib/bundler/remote_specification.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/bundler/remote_specification.rb b/lib/bundler/remote_specification.rb
index ece422aab0..cac0f99b30 100644
--- a/lib/bundler/remote_specification.rb
+++ b/lib/bundler/remote_specification.rb
@@ -34,13 +34,6 @@ module Bundler
private
- def _remote_uri
- # "#{@source_uri}/quick/Marshal.4.8/#{@name}-#{@version}.gemspec.rz"
- tuple = [@name, @version, @platform]
- tuple = tuple - [nil, 'ruby', '']
- "#{@source_uri}/quick/Marshal.4.8/#{tuple.join("-")}.gemspec.rz"
- end
-
def _remote_specification
@specification ||= begin
Gem::SpecFetcher.new.fetch_spec([@name, @version, @platform], URI(@source_uri.to_s))