Skip to content
This repository has been archived by the owner on Apr 14, 2021. It is now read-only.

Commit

Permalink
[Resolver] Ordering and 1.8.7 arent friends
Browse files Browse the repository at this point in the history
  • Loading branch information
segiddins committed Aug 1, 2015
1 parent 4c53d07 commit ef5b0ea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/bundler/resolver.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def message
o << %(\n)
end
o << %( In Gemfile:\n)
o << conflict.requirement_trees.map do |tree|
o << conflict.requirement_trees.sort_by {|t| t.reverse.map(&:name) }.map do |tree|
t = ""
depth = 2
tree.each do |req|
Expand Down
4 changes: 2 additions & 2 deletions spec/install/bundler_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,10 @@
Resolving dependencies...
Bundler could not find compatible versions for gem "activesupport":
In Gemfile:
activesupport (= 2.3.5)
rails_fail was resolved to 1.0, which depends on
activesupport (= 1.2.3)
activesupport (= 2.3.5)
E
expect(out).to eq(nice_error)
end
Expand Down

0 comments on commit ef5b0ea

Please sign in to comment.