1
0
mirror of https://github.com/minio/mc.git synced 2025-11-13 12:22:45 +03:00

Remove docs directory, approaching self documentation

This commit is contained in:
Harshavardhana
2015-04-10 21:09:45 -07:00
parent 1ab9abf304
commit 1e8c803478
16 changed files with 8 additions and 515 deletions

View File

@@ -1,10 +0,0 @@
#!/usr/bin/env ruby
require 'aws-sdk'
s3 = Aws::S3::Client.new(endpoint: "http://localhost:9000/",
require_https_for_sse_cpk: false,
region: "minio")
resp = s3.list_buckets
resp.buckets.each do |bucket|
puts "#{bucket.name} => #{bucket.creation_date}"
end