module Chef::Mixin::GetSourceFromPackage

def initialize(new_resource, run_context)

subclass directive instead
this code is deprecated, check out the :use_package_names_for_source
- it does not support multipackage arrays
- it mutates the new_resource
- it does too much in the initializer
FIXME: this is some bad code that I wrote a long time ago.
def initialize(new_resource, run_context)
  super
  return if new_resource.package_name.is_a?(Array)
  # if we're passed something that looks like a filesystem path, with no source, use it
  #  - require at least one '/' in the path to avoid gem_package "foo" breaking if a file named 'foo' exists in the cwd
  if new_resource.source.nil? && new_resource.package_name.include?(::File::SEPARATOR) && ::File.exist?(new_resource.package_name)
    Chef::Log.trace("No package source specified, but #{new_resource.package_name} exists on the filesystem, copying to package source")
    new_resource.source(new_resource.package_name)
  end
end