Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v1_9_3_392) is shown here.
copy(file_name, dest_file)
public
Copy a single file from file_name to dest_file.
# File lib/rake/contrib/sys.rb, line 47
def copy(file_name, dest_file)
log "Copying file #{file_name} to #{dest_file}"
File.copy(file_name, dest_file)
end