1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/rackspace/requests/storage/put_object_manifest.rb
2013-12-20 12:18:35 -05:00

24 lines
490 B
Ruby

module Fog
module Storage
class Rackspace
module Common
# Create a new dynamic large object manifest
#
# This is an alias for {#put_dynamic_obj_manifest} for backward compatibility.
def put_object_manifest(container, object, options = {})
put_dynamic_obj_manifest(container, object, options)
end
end
class Real
include Common
end
class Mock
include Common
end
end
end
end