mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
24 lines
490 B
Ruby
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
|