diff options
author | danielsdeleo <dan@opscode.com> | 2013-05-03 11:53:53 -0700 |
---|---|---|
committer | danielsdeleo <dan@opscode.com> | 2013-05-03 11:53:53 -0700 |
commit | 3b373784b805b719c1a8821cbd831d66794347b3 (patch) | |
tree | c11568ff3d56c92450feb0ac0367fdf592c0093c /lib/chef/runner.rb | |
parent | 2c0040c95bb942d13ad8c47498df56be43e9a82e (diff) | |
download | chef-3b373784b805b719c1a8821cbd831d66794347b3.tar.gz |
[CHEF-4157] split Platform to prune dep graph
Many files/classes depend on Chef::Platform just to use the `windows?`
method. The part of Chef::Platform that maps providers to platforms has
very heavy dependencies (which may trigger circular deps when loading
some files) which are not needed for most users of Chef::Platform.
Diffstat (limited to 'lib/chef/runner.rb')
-rw-r--r-- | lib/chef/runner.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/chef/runner.rb b/lib/chef/runner.rb index daa928e7a3..6125fe59e1 100644 --- a/lib/chef/runner.rb +++ b/lib/chef/runner.rb @@ -22,7 +22,6 @@ require 'chef/exceptions' require 'chef/mixin/params_validate' require 'chef/node' require 'chef/resource_collection' -require 'chef/platform' class Chef # == Chef::Runner |