croaker-aws-s3 0.5.2.20090127001 → 0.5.2.20090127002
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/aws/s3/object.rb +1 -1
- data/lib/aws/s3/version.rb +1 -1
- metadata +1 -1
data/lib/aws/s3/object.rb
CHANGED
@@ -187,7 +187,7 @@ module AWS
|
|
187
187
|
target_bucket = options[:target_bucket] ? bucket_name(options[:target_bucket]) : bucket
|
188
188
|
target_key = path!(target_bucket, copy_key)
|
189
189
|
returning put(target_key, default_options) do
|
190
|
-
acl(copy_key,
|
190
|
+
acl(copy_key, target_bucket, acl(key, bucket)) if options[:copy_acl]
|
191
191
|
end
|
192
192
|
end
|
193
193
|
|
data/lib/aws/s3/version.rb
CHANGED