1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

[rackspace|storage|file] copy method now use the options hash and apply content type

This commit is contained in:
Matthias Gröbner 2012-05-23 23:29:57 +02:00
parent d58ffbef47
commit 79aefc2d10

View file

@ -31,7 +31,8 @@ module Fog
def copy(target_directory_key, target_file_key, options={})
requires :directory, :key
connection.copy_object(directory.key, key, target_directory_key, target_file_key)
options['Content-Type'] ||= content_type if content_type
connection.copy_object(directory.key, key, target_directory_key, target_file_key, options)
target_directory = connection.directories.new(:key => target_directory_key)
target_directory.files.get(target_file_key)
end