diff options
author | Hemant Kumar <gethemant@gmail.com> | 2013-07-26 09:37:16 +0530 |
---|---|---|
committer | Hemant Kumar <gethemant@gmail.com> | 2013-07-29 23:44:27 +0530 |
commit | 1c121ea4d860b47efc13340e07e80c9e4de5a5d1 (patch) | |
tree | 2643b12038e723c370f9ce5817f0813bbd367e83 /lib/bundler.rb | |
parent | 6608516a379d6cd4bd2b35c8b913b6c284197e00 (diff) | |
download | bundler-refactor-resolver.tar.gz |
Refactor resolver algorithm in its ownrefactor-resolver
It should be possible now to switch resolver algorithms.
It is still somewhat rough because I really need another
algorithm working to really understand how much of data needs
to be shared.
Diffstat (limited to 'lib/bundler.rb')
-rw-r--r-- | lib/bundler.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/bundler.rb b/lib/bundler.rb index cfc645b75e..79ee46a6d9 100644 --- a/lib/bundler.rb +++ b/lib/bundler.rb @@ -1,6 +1,7 @@ require 'fileutils' require 'pathname' require 'rbconfig' +require 'minisat' require 'bundler/gem_path_manipulation' require 'bundler/rubygems_ext' require 'bundler/rubygems_integration' @@ -40,6 +41,7 @@ module Bundler autoload :SharedHelpers, 'bundler/shared_helpers' autoload :SpecSet, 'bundler/spec_set' autoload :Source, 'bundler/source' + autoload :ResolverAlgorithm, 'bundler/resolver_algorithm' autoload :Specification, 'bundler/shared_helpers' autoload :SystemRubyVersion, 'bundler/ruby_version' autoload :UI, 'bundler/ui' |