bundler 0.7.3.pre2 → 0.8.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of bundler might be problematic. Click here for more details.

data/Rakefile CHANGED
@@ -77,3 +77,5 @@ task :make_spec do
77
77
  file.puts spec.to_ruby
78
78
  end
79
79
  end
80
+
81
+ task :gem => :make_spec
@@ -19,7 +19,7 @@ require "bundler/dependency"
19
19
  require "bundler/remote_specification"
20
20
 
21
21
  module Bundler
22
- VERSION = "0.7.3.pre2"
22
+ VERSION = "0.8.0"
23
23
 
24
24
  class << self
25
25
  attr_writer :logger
@@ -33,7 +33,7 @@ module Bundler
33
33
  end
34
34
 
35
35
  def sources
36
- @priority_sources + @sources + @default_sources + [SystemGemSource.new(@bundle)]
36
+ @priority_sources + [SystemGemSource.new(@bundle)] + @sources + @default_sources
37
37
  end
38
38
 
39
39
  def add_source(source)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bundler
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.3.pre2
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yehuda Katz