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/resolver_algorithm.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/resolver_algorithm.rb')
-rw-r--r-- | lib/bundler/resolver_algorithm.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/bundler/resolver_algorithm.rb b/lib/bundler/resolver_algorithm.rb new file mode 100644 index 0000000000..7286215fe5 --- /dev/null +++ b/lib/bundler/resolver_algorithm.rb @@ -0,0 +1,7 @@ +module Bundler + module ResolverAlgorithm + autoload :Base, "bundler/resolver_algorithm/base" + autoload :RecursiveResolver, "bundler/resolver_algorithm/recursive_resolver" + autoload :SatResolver, "bundler/resolver_algorithm/sat_resolver" + end +end |