Skip to content

Instantly share code, notes, and snippets.

@y13i
Last active August 29, 2015 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save y13i/b421074486635585b89d to your computer and use it in GitHub Desktop.
Save y13i/b421074486635585b89d to your computer and use it in GitHub Desktop.
S3の総使用容量を取得する
s3.buckets.inject(0) do |account_total, bucket|
account_total + bucket.objects.inject(0) do |bucket_total, object|
bucket_total + object.content_length
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment