This method is deprecated or moved on the latest stable version.
The last existing version (v1_9_3_392) is shown here.
install(wildcard, dest_dir, mode)
public
Install all the files matching wildcard into the dest_dir
directory. The permission mode is set to mode.
# File lib/rake/contrib/sys.rb, line 29
def install(wildcard, dest_dir, mode)
Dir[wildcard].each do |fn|
File.install(fn, dest_dir, mode, $verbose)
end
end