Sha256: fd8647db8eaae8d21cbb167d288db0d151d4fef9568b37c6f5f5669f11b5bac9

Contents?: true

Size: 353 Bytes

Versions: 139

Compression:

Stored size: 353 Bytes

Contents

require 'mixlib/shellout'

class Chef
  class ShellOut < Mixlib::ShellOut

    def initialize(*args)
      Chef::Log.warn("Chef::ShellOut is deprecated, please use Mixlib::ShellOut")
      called_from = caller[0..3].inject("Called from:\n") {|msg, trace_line| msg << "  #{trace_line}\n" }
      Chef::Log.warn(called_from)
      super
    end
  end
end

Version data entries

139 entries across 139 versions & 2 rubygems

Version Path
chef-11.6.0.rc.2 lib/chef/shell_out.rb
chef-11.6.0.rc.1 lib/chef/shell_out.rb
chef-11.6.0.rc.0 lib/chef/shell_out.rb
chef-11.4.4 lib/chef/shell_out.rb
chef-11.4.2 lib/chef/shell_out.rb
microwave-11.400.8 lib/chef/shell_out.rb
microwave-11.400.7 lib/chef/shell_out.rb
microwave-11.400.6 lib/chef/shell_out.rb
microwave-11.400.5 lib/chef/shell_out.rb
microwave-11.400.4 lib/chef/shell_out.rb
chef-11.4.0 lib/chef/shell_out.rb
chef-11.4.0.rc.0 lib/chef/shell_out.rb
chef-11.0.0.beta.2 lib/chef/shell_out.rb
chef-11.2.0 lib/chef/shell_out.rb
chef-11.2.0.rc.1 lib/chef/shell_out.rb
chef-11.0.0 lib/chef/shell_out.rb
chef-11.0.0.rc.0 lib/chef/shell_out.rb
chef-11.0.0.beta.1 lib/chef/shell_out.rb
chef-11.0.0.beta.0 lib/chef/shell_out.rb